blob: dff00c787867d5f7082fa9538ca8d28c63179542 [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>
Alexander Shishkin375637b2016-04-27 18:44:46 +030047#include <linux/namei.h>
48#include <linux/parser.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020049
Frederic Weisbecker76369132011-05-19 19:55:04 +020050#include "internal.h"
51
Ingo Molnarcdd6c482009-09-21 12:02:48 +020052#include <asm/irq_regs.h>
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) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010069 /* -EAGAIN */
70 if (task_cpu(p) != smp_processor_id())
71 return;
72
73 /*
74 * Now that we're on right CPU with IRQs disabled, we can test
75 * if we hit the right task without races.
76 */
77
78 tfc->ret = -ESRCH; /* No such (running) process */
79 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010080 return;
81 }
82
83 tfc->ret = tfc->func(tfc->info);
84}
85
86/**
87 * task_function_call - call a function on the cpu on which a task runs
88 * @p: the task to evaluate
89 * @func: the function to be called
90 * @info: the function call argument
91 *
92 * Calls the function @func when the task is currently running. This might
93 * be on the current CPU, which just calls the function directly
94 *
95 * returns: @func return value, or
96 * -ESRCH - when the process isn't running
97 * -EAGAIN - when the process moved away
98 */
99static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200100task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100101{
102 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200103 .p = p,
104 .func = func,
105 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100106 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100107 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100108 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100109
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 do {
111 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
112 if (!ret)
113 ret = data.ret;
114 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100115
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100116 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100117}
118
119/**
120 * cpu_function_call - call a function on the cpu
121 * @func: the function to be called
122 * @info: the function call argument
123 *
124 * Calls the function @func on the remote cpu.
125 *
126 * returns: @func return value or -ENXIO when the cpu is offline
127 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200128static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100129{
130 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200131 .p = NULL,
132 .func = func,
133 .info = info,
134 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100135 };
136
137 smp_call_function_single(cpu, remote_function, &data, 1);
138
139 return data.ret;
140}
141
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100142static inline struct perf_cpu_context *
143__get_cpu_context(struct perf_event_context *ctx)
144{
145 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
146}
147
148static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
149 struct perf_event_context *ctx)
150{
151 raw_spin_lock(&cpuctx->ctx.lock);
152 if (ctx)
153 raw_spin_lock(&ctx->lock);
154}
155
156static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
157 struct perf_event_context *ctx)
158{
159 if (ctx)
160 raw_spin_unlock(&ctx->lock);
161 raw_spin_unlock(&cpuctx->ctx.lock);
162}
163
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100164#define TASK_TOMBSTONE ((void *)-1L)
165
166static bool is_kernel_event(struct perf_event *event)
167{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100168 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100169}
170
Peter Zijlstra39a43642016-01-11 12:46:35 +0100171/*
172 * On task ctx scheduling...
173 *
174 * When !ctx->nr_events a task context will not be scheduled. This means
175 * we can disable the scheduler hooks (for performance) without leaving
176 * pending task ctx state.
177 *
178 * This however results in two special cases:
179 *
180 * - removing the last event from a task ctx; this is relatively straight
181 * forward and is done in __perf_remove_from_context.
182 *
183 * - adding the first event to a task ctx; this is tricky because we cannot
184 * rely on ctx->is_active and therefore cannot use event_function_call().
185 * See perf_install_in_context().
186 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100187 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
188 */
189
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100190typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
191 struct perf_event_context *, void *);
192
193struct event_function_struct {
194 struct perf_event *event;
195 event_f func;
196 void *data;
197};
198
199static int event_function(void *info)
200{
201 struct event_function_struct *efs = info;
202 struct perf_event *event = efs->event;
203 struct perf_event_context *ctx = event->ctx;
204 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
205 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100206 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100207
208 WARN_ON_ONCE(!irqs_disabled());
209
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100210 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100211 /*
212 * Since we do the IPI call without holding ctx->lock things can have
213 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100214 */
215 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100216 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100217 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100218 goto unlock;
219 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100220
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100221 /*
222 * We only use event_function_call() on established contexts,
223 * and event_function() is only ever called when active (or
224 * rather, we'll have bailed in task_function_call() or the
225 * above ctx->task != current test), therefore we must have
226 * ctx->is_active here.
227 */
228 WARN_ON_ONCE(!ctx->is_active);
229 /*
230 * And since we have ctx->is_active, cpuctx->task_ctx must
231 * match.
232 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100233 WARN_ON_ONCE(task_ctx != ctx);
234 } else {
235 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100236 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100237
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100238 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100239unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 perf_ctx_unlock(cpuctx, task_ctx);
241
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100242 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100243}
244
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100245static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100246{
247 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100248 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100249 struct event_function_struct efs = {
250 .event = event,
251 .func = func,
252 .data = data,
253 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100254
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100255 if (!event->parent) {
256 /*
257 * If this is a !child event, we must hold ctx::mutex to
258 * stabilize the the event->ctx relation. See
259 * perf_event_ctx_lock().
260 */
261 lockdep_assert_held(&ctx->mutex);
262 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100263
264 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100265 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100266 return;
267 }
268
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100269 if (task == TASK_TOMBSTONE)
270 return;
271
Peter Zijlstraa0963092016-02-24 18:45:50 +0100272again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100273 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100274 return;
275
276 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100277 /*
278 * Reload the task pointer, it might have been changed by
279 * a concurrent perf_event_context_sched_out().
280 */
281 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100282 if (task == TASK_TOMBSTONE) {
283 raw_spin_unlock_irq(&ctx->lock);
284 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100285 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100286 if (ctx->is_active) {
287 raw_spin_unlock_irq(&ctx->lock);
288 goto again;
289 }
290 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100291 raw_spin_unlock_irq(&ctx->lock);
292}
293
Peter Zijlstracca20942016-08-16 13:33:26 +0200294/*
295 * Similar to event_function_call() + event_function(), but hard assumes IRQs
296 * are already disabled and we're on the right CPU.
297 */
298static void event_function_local(struct perf_event *event, event_f func, void *data)
299{
300 struct perf_event_context *ctx = event->ctx;
301 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
302 struct task_struct *task = READ_ONCE(ctx->task);
303 struct perf_event_context *task_ctx = NULL;
304
305 WARN_ON_ONCE(!irqs_disabled());
306
307 if (task) {
308 if (task == TASK_TOMBSTONE)
309 return;
310
311 task_ctx = ctx;
312 }
313
314 perf_ctx_lock(cpuctx, task_ctx);
315
316 task = ctx->task;
317 if (task == TASK_TOMBSTONE)
318 goto unlock;
319
320 if (task) {
321 /*
322 * We must be either inactive or active and the right task,
323 * otherwise we're screwed, since we cannot IPI to somewhere
324 * else.
325 */
326 if (ctx->is_active) {
327 if (WARN_ON_ONCE(task != current))
328 goto unlock;
329
330 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
331 goto unlock;
332 }
333 } else {
334 WARN_ON_ONCE(&cpuctx->ctx != ctx);
335 }
336
337 func(event, cpuctx, ctx, data);
338unlock:
339 perf_ctx_unlock(cpuctx, task_ctx);
340}
341
Stephane Eraniane5d13672011-02-14 11:20:01 +0200342#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
343 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100344 PERF_FLAG_PID_CGROUP |\
345 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100347/*
348 * branch priv levels that need permission checks
349 */
350#define PERF_SAMPLE_BRANCH_PERM_PLM \
351 (PERF_SAMPLE_BRANCH_KERNEL |\
352 PERF_SAMPLE_BRANCH_HV)
353
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200354enum event_type_t {
355 EVENT_FLEXIBLE = 0x1,
356 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100357 EVENT_TIME = 0x4,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200358 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
359};
360
Stephane Eraniane5d13672011-02-14 11:20:01 +0200361/*
362 * perf_sched_events : >0 events exist
363 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
364 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100365
366static void perf_sched_delayed(struct work_struct *work);
367DEFINE_STATIC_KEY_FALSE(perf_sched_events);
368static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
369static DEFINE_MUTEX(perf_sched_mutex);
370static atomic_t perf_sched_count;
371
Stephane Eraniane5d13672011-02-14 11:20:01 +0200372static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500373static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700374static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200375
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200376static atomic_t nr_mmap_events __read_mostly;
377static atomic_t nr_comm_events __read_mostly;
378static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200379static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300380static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200381
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200382static LIST_HEAD(pmus);
383static DEFINE_MUTEX(pmus_lock);
384static struct srcu_struct pmus_srcu;
385
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200386/*
387 * perf event paranoia level:
388 * -1 - not paranoid at all
389 * 0 - disallow raw tracepoint access for unpriv
390 * 1 - disallow cpu events for unpriv
391 * 2 - disallow kernel profiling for unpriv
392 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700393int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200394
Frederic Weisbecker20443382011-03-31 03:33:29 +0200395/* Minimum for 512 kiB + 1 user control page */
396int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200397
398/*
399 * max perf event sample rate
400 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700401#define DEFAULT_MAX_SAMPLE_RATE 100000
402#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
403#define DEFAULT_CPU_TIME_MAX_PERCENT 25
404
405int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
406
407static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
408static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
409
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200410static int perf_sample_allowed_ns __read_mostly =
411 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700412
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800413static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700414{
415 u64 tmp = perf_sample_period_ns;
416
417 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100418 tmp = div_u64(tmp, 100);
419 if (!tmp)
420 tmp = 1;
421
422 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700423}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100424
Stephane Eranian9e630202013-04-03 14:21:33 +0200425static int perf_rotate_context(struct perf_cpu_context *cpuctx);
426
Peter Zijlstra163ec432011-02-16 11:22:34 +0100427int perf_proc_update_handler(struct ctl_table *table, int write,
428 void __user *buffer, size_t *lenp,
429 loff_t *ppos)
430{
Knut Petersen723478c2013-09-25 14:29:37 +0200431 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100432
433 if (ret || !write)
434 return ret;
435
Kan Liangab7fdef2016-05-03 00:26:06 -0700436 /*
437 * If throttling is disabled don't allow the write:
438 */
439 if (sysctl_perf_cpu_time_max_percent == 100 ||
440 sysctl_perf_cpu_time_max_percent == 0)
441 return -EINVAL;
442
Peter Zijlstra163ec432011-02-16 11:22:34 +0100443 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700444 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
445 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100446
447 return 0;
448}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200449
Dave Hansen14c63f12013-06-21 08:51:36 -0700450int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
451
452int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
453 void __user *buffer, size_t *lenp,
454 loff_t *ppos)
455{
456 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
457
458 if (ret || !write)
459 return ret;
460
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200461 if (sysctl_perf_cpu_time_max_percent == 100 ||
462 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100463 printk(KERN_WARNING
464 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
465 WRITE_ONCE(perf_sample_allowed_ns, 0);
466 } else {
467 update_perf_cpu_limits();
468 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700469
470 return 0;
471}
472
473/*
474 * perf samples are done in some very critical code paths (NMIs).
475 * If they take too much CPU time, the system can lock up and not
476 * get any real work done. This will drop the sample rate when
477 * we detect that events are taking too long.
478 */
479#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200480static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700481
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100482static u64 __report_avg;
483static u64 __report_allowed;
484
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100485static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700486{
David Ahern0d87d7e2016-08-01 13:49:29 -0700487 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100488 "perf: interrupt took too long (%lld > %lld), lowering "
489 "kernel.perf_event_max_sample_rate to %d\n",
490 __report_avg, __report_allowed,
491 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100492}
493
494static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
495
496void perf_sample_event_took(u64 sample_len_ns)
497{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100498 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
499 u64 running_len;
500 u64 avg_len;
501 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700502
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100503 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700504 return;
505
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100506 /* Decay the counter by 1 average sample. */
507 running_len = __this_cpu_read(running_sample_length);
508 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
509 running_len += sample_len_ns;
510 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700511
512 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100513 * Note: this will be biased artifically low until we have
514 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700515 * from having to maintain a count.
516 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100517 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
518 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700519 return;
520
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100521 __report_avg = avg_len;
522 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700523
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100524 /*
525 * Compute a throttle threshold 25% below the current duration.
526 */
527 avg_len += avg_len / 4;
528 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
529 if (avg_len < max)
530 max /= (u32)avg_len;
531 else
532 max = 1;
533
534 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
535 WRITE_ONCE(max_samples_per_tick, max);
536
537 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700538 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
539
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100540 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100541 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100542 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100543 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100544 sysctl_perf_event_sample_rate);
545 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700546}
547
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200548static atomic64_t perf_event_id;
549
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200550static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
551 enum event_type_t event_type);
552
553static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200554 enum event_type_t event_type,
555 struct task_struct *task);
556
557static void update_context_time(struct perf_event_context *ctx);
558static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200559
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200560void __weak perf_event_print_debug(void) { }
561
Matt Fleming84c79912010-10-03 21:41:13 +0100562extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200563{
Matt Fleming84c79912010-10-03 21:41:13 +0100564 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200565}
566
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200567static inline u64 perf_clock(void)
568{
569 return local_clock();
570}
571
Peter Zijlstra34f43922015-02-20 14:05:38 +0100572static inline u64 perf_event_clock(struct perf_event *event)
573{
574 return event->clock();
575}
576
Stephane Eraniane5d13672011-02-14 11:20:01 +0200577#ifdef CONFIG_CGROUP_PERF
578
Stephane Eraniane5d13672011-02-14 11:20:01 +0200579static inline bool
580perf_cgroup_match(struct perf_event *event)
581{
582 struct perf_event_context *ctx = event->ctx;
583 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
584
Tejun Heoef824fa2013-04-08 19:00:38 -0700585 /* @event doesn't care about cgroup */
586 if (!event->cgrp)
587 return true;
588
589 /* wants specific cgroup scope but @cpuctx isn't associated with any */
590 if (!cpuctx->cgrp)
591 return false;
592
593 /*
594 * Cgroup scoping is recursive. An event enabled for a cgroup is
595 * also enabled for all its descendant cgroups. If @cpuctx's
596 * cgroup is a descendant of @event's (the test covers identity
597 * case), it's a match.
598 */
599 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
600 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200601}
602
Stephane Eraniane5d13672011-02-14 11:20:01 +0200603static inline void perf_detach_cgroup(struct perf_event *event)
604{
Zefan Li4e2ba652014-09-19 16:53:14 +0800605 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200606 event->cgrp = NULL;
607}
608
609static inline int is_cgroup_event(struct perf_event *event)
610{
611 return event->cgrp != NULL;
612}
613
614static inline u64 perf_cgroup_event_time(struct perf_event *event)
615{
616 struct perf_cgroup_info *t;
617
618 t = per_cpu_ptr(event->cgrp->info, event->cpu);
619 return t->time;
620}
621
622static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
623{
624 struct perf_cgroup_info *info;
625 u64 now;
626
627 now = perf_clock();
628
629 info = this_cpu_ptr(cgrp->info);
630
631 info->time += now - info->timestamp;
632 info->timestamp = now;
633}
634
635static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
636{
637 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
638 if (cgrp_out)
639 __update_cgrp_time(cgrp_out);
640}
641
642static inline void update_cgrp_time_from_event(struct perf_event *event)
643{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200644 struct perf_cgroup *cgrp;
645
Stephane Eraniane5d13672011-02-14 11:20:01 +0200646 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200647 * ensure we access cgroup data only when needed and
648 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200649 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200650 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200651 return;
652
Stephane Eranian614e4c42015-11-12 11:00:04 +0100653 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200654 /*
655 * Do not update time when cgroup is not active
656 */
657 if (cgrp == event->cgrp)
658 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200659}
660
661static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200662perf_cgroup_set_timestamp(struct task_struct *task,
663 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200664{
665 struct perf_cgroup *cgrp;
666 struct perf_cgroup_info *info;
667
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200668 /*
669 * ctx->lock held by caller
670 * ensure we do not access cgroup data
671 * unless we have the cgroup pinned (css_get)
672 */
673 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200674 return;
675
Stephane Eranian614e4c42015-11-12 11:00:04 +0100676 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200677 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200678 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200679}
680
681#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
682#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
683
684/*
685 * reschedule events based on the cgroup constraint of task.
686 *
687 * mode SWOUT : schedule out everything
688 * mode SWIN : schedule in based on cgroup for next
689 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800690static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200691{
692 struct perf_cpu_context *cpuctx;
693 struct pmu *pmu;
694 unsigned long flags;
695
696 /*
697 * disable interrupts to avoid geting nr_cgroup
698 * changes via __perf_event_disable(). Also
699 * avoids preemption.
700 */
701 local_irq_save(flags);
702
703 /*
704 * we reschedule only in the presence of cgroup
705 * constrained events.
706 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200707
708 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200709 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200710 if (cpuctx->unique_pmu != pmu)
711 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200712
Stephane Eraniane5d13672011-02-14 11:20:01 +0200713 /*
714 * perf_cgroup_events says at least one
715 * context on this CPU has cgroup events.
716 *
717 * ctx->nr_cgroups reports the number of cgroup
718 * events for a context.
719 */
720 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200721 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
722 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200723
724 if (mode & PERF_CGROUP_SWOUT) {
725 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
726 /*
727 * must not be done before ctxswout due
728 * to event_filter_match() in event_sched_out()
729 */
730 cpuctx->cgrp = NULL;
731 }
732
733 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200734 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200735 /*
736 * set cgrp before ctxsw in to allow
737 * event_filter_match() to not have to pass
738 * task around
Stephane Eranian614e4c42015-11-12 11:00:04 +0100739 * we pass the cpuctx->ctx to perf_cgroup_from_task()
740 * because cgorup events are only per-cpu
Stephane Eraniane5d13672011-02-14 11:20:01 +0200741 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100742 cpuctx->cgrp = perf_cgroup_from_task(task, &cpuctx->ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200743 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
744 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200745 perf_pmu_enable(cpuctx->ctx.pmu);
746 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200747 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200748 }
749
Stephane Eraniane5d13672011-02-14 11:20:01 +0200750 local_irq_restore(flags);
751}
752
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200753static inline void perf_cgroup_sched_out(struct task_struct *task,
754 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200755{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200756 struct perf_cgroup *cgrp1;
757 struct perf_cgroup *cgrp2 = NULL;
758
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100759 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200760 /*
761 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100762 * we do not need to pass the ctx here because we know
763 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200764 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100765 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100766 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200767
768 /*
769 * only schedule out current cgroup events if we know
770 * that we are switching to a different cgroup. Otherwise,
771 * do no touch the cgroup events.
772 */
773 if (cgrp1 != cgrp2)
774 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100775
776 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200777}
778
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200779static inline void perf_cgroup_sched_in(struct task_struct *prev,
780 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200781{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200782 struct perf_cgroup *cgrp1;
783 struct perf_cgroup *cgrp2 = NULL;
784
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100785 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200786 /*
787 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100788 * we do not need to pass the ctx here because we know
789 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200790 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100791 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100792 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200793
794 /*
795 * only need to schedule in cgroup events if we are changing
796 * cgroup during ctxsw. Cgroup events were not scheduled
797 * out of ctxsw out if that was not the case.
798 */
799 if (cgrp1 != cgrp2)
800 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100801
802 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200803}
804
805static inline int perf_cgroup_connect(int fd, struct perf_event *event,
806 struct perf_event_attr *attr,
807 struct perf_event *group_leader)
808{
809 struct perf_cgroup *cgrp;
810 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400811 struct fd f = fdget(fd);
812 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200813
Al Viro2903ff02012-08-28 12:52:22 -0400814 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200815 return -EBADF;
816
Al Virob5830432014-10-31 01:22:04 -0400817 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400818 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800819 if (IS_ERR(css)) {
820 ret = PTR_ERR(css);
821 goto out;
822 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200823
824 cgrp = container_of(css, struct perf_cgroup, css);
825 event->cgrp = cgrp;
826
827 /*
828 * all events in a group must monitor
829 * the same cgroup because a task belongs
830 * to only one perf cgroup at a time
831 */
832 if (group_leader && group_leader->cgrp != cgrp) {
833 perf_detach_cgroup(event);
834 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200835 }
Li Zefan3db272c2011-03-03 14:25:37 +0800836out:
Al Viro2903ff02012-08-28 12:52:22 -0400837 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200838 return ret;
839}
840
841static inline void
842perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
843{
844 struct perf_cgroup_info *t;
845 t = per_cpu_ptr(event->cgrp->info, event->cpu);
846 event->shadow_ctx_time = now - t->timestamp;
847}
848
849static inline void
850perf_cgroup_defer_enabled(struct perf_event *event)
851{
852 /*
853 * when the current task's perf cgroup does not match
854 * the event's, we need to remember to call the
855 * perf_mark_enable() function the first time a task with
856 * a matching perf cgroup is scheduled in.
857 */
858 if (is_cgroup_event(event) && !perf_cgroup_match(event))
859 event->cgrp_defer_enabled = 1;
860}
861
862static inline void
863perf_cgroup_mark_enabled(struct perf_event *event,
864 struct perf_event_context *ctx)
865{
866 struct perf_event *sub;
867 u64 tstamp = perf_event_time(event);
868
869 if (!event->cgrp_defer_enabled)
870 return;
871
872 event->cgrp_defer_enabled = 0;
873
874 event->tstamp_enabled = tstamp - event->total_time_enabled;
875 list_for_each_entry(sub, &event->sibling_list, group_entry) {
876 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
877 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
878 sub->cgrp_defer_enabled = 0;
879 }
880 }
881}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700882
883/*
884 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
885 * cleared when last cgroup event is removed.
886 */
887static inline void
888list_update_cgroup_event(struct perf_event *event,
889 struct perf_event_context *ctx, bool add)
890{
891 struct perf_cpu_context *cpuctx;
892
893 if (!is_cgroup_event(event))
894 return;
895
896 if (add && ctx->nr_cgroups++)
897 return;
898 else if (!add && --ctx->nr_cgroups)
899 return;
900 /*
901 * Because cgroup events are always per-cpu events,
902 * this will always be called from the right CPU.
903 */
904 cpuctx = __get_cpu_context(ctx);
905 cpuctx->cgrp = add ? event->cgrp : NULL;
906}
907
Stephane Eraniane5d13672011-02-14 11:20:01 +0200908#else /* !CONFIG_CGROUP_PERF */
909
910static inline bool
911perf_cgroup_match(struct perf_event *event)
912{
913 return true;
914}
915
916static inline void perf_detach_cgroup(struct perf_event *event)
917{}
918
919static inline int is_cgroup_event(struct perf_event *event)
920{
921 return 0;
922}
923
924static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
925{
926 return 0;
927}
928
929static inline void update_cgrp_time_from_event(struct perf_event *event)
930{
931}
932
933static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
934{
935}
936
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200937static inline void perf_cgroup_sched_out(struct task_struct *task,
938 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200939{
940}
941
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200942static inline void perf_cgroup_sched_in(struct task_struct *prev,
943 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200944{
945}
946
947static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
948 struct perf_event_attr *attr,
949 struct perf_event *group_leader)
950{
951 return -EINVAL;
952}
953
954static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200955perf_cgroup_set_timestamp(struct task_struct *task,
956 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200957{
958}
959
960void
961perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
962{
963}
964
965static inline void
966perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
967{
968}
969
970static inline u64 perf_cgroup_event_time(struct perf_event *event)
971{
972 return 0;
973}
974
975static inline void
976perf_cgroup_defer_enabled(struct perf_event *event)
977{
978}
979
980static inline void
981perf_cgroup_mark_enabled(struct perf_event *event,
982 struct perf_event_context *ctx)
983{
984}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700985
986static inline void
987list_update_cgroup_event(struct perf_event *event,
988 struct perf_event_context *ctx, bool add)
989{
990}
991
Stephane Eraniane5d13672011-02-14 11:20:01 +0200992#endif
993
Stephane Eranian9e630202013-04-03 14:21:33 +0200994/*
995 * set default to be dependent on timer tick just
996 * like original code
997 */
998#define PERF_CPU_HRTIMER (1000 / HZ)
999/*
1000 * function must be called with interrupts disbled
1001 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001002static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001003{
1004 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001005 int rotations = 0;
1006
1007 WARN_ON(!irqs_disabled());
1008
1009 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001010 rotations = perf_rotate_context(cpuctx);
1011
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001012 raw_spin_lock(&cpuctx->hrtimer_lock);
1013 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001014 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001015 else
1016 cpuctx->hrtimer_active = 0;
1017 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001018
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001019 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001020}
1021
Peter Zijlstra272325c2015-04-15 11:41:58 +02001022static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001023{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001024 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001025 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001026 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001027
1028 /* no multiplexing needed for SW PMU */
1029 if (pmu->task_ctx_nr == perf_sw_context)
1030 return;
1031
Stephane Eranian62b85632013-04-03 14:21:34 +02001032 /*
1033 * check default is sane, if not set then force to
1034 * default interval (1/tick)
1035 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001036 interval = pmu->hrtimer_interval_ms;
1037 if (interval < 1)
1038 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001039
Peter Zijlstra272325c2015-04-15 11:41:58 +02001040 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001041
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001042 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1043 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001044 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001045}
1046
Peter Zijlstra272325c2015-04-15 11:41:58 +02001047static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001048{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001049 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001050 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001051 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001052
1053 /* not for SW PMU */
1054 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001055 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001056
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001057 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1058 if (!cpuctx->hrtimer_active) {
1059 cpuctx->hrtimer_active = 1;
1060 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1061 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1062 }
1063 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001064
Peter Zijlstra272325c2015-04-15 11:41:58 +02001065 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001066}
1067
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001068void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001069{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001070 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1071 if (!(*count)++)
1072 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001073}
1074
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001075void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001076{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001077 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1078 if (!--(*count))
1079 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001080}
1081
Mark Rutland2fde4f92015-01-07 15:01:54 +00001082static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001083
1084/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001085 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1086 * perf_event_task_tick() are fully serialized because they're strictly cpu
1087 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1088 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001089 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001090static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001091{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001092 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001093
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001094 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001095
Mark Rutland2fde4f92015-01-07 15:01:54 +00001096 WARN_ON(!list_empty(&ctx->active_ctx_list));
1097
1098 list_add(&ctx->active_ctx_list, head);
1099}
1100
1101static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1102{
1103 WARN_ON(!irqs_disabled());
1104
1105 WARN_ON(list_empty(&ctx->active_ctx_list));
1106
1107 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108}
1109
1110static void get_ctx(struct perf_event_context *ctx)
1111{
1112 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1113}
1114
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001115static void free_ctx(struct rcu_head *head)
1116{
1117 struct perf_event_context *ctx;
1118
1119 ctx = container_of(head, struct perf_event_context, rcu_head);
1120 kfree(ctx->task_ctx_data);
1121 kfree(ctx);
1122}
1123
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001124static void put_ctx(struct perf_event_context *ctx)
1125{
1126 if (atomic_dec_and_test(&ctx->refcount)) {
1127 if (ctx->parent_ctx)
1128 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001129 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001130 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001131 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001132 }
1133}
1134
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001135/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001136 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1137 * perf_pmu_migrate_context() we need some magic.
1138 *
1139 * Those places that change perf_event::ctx will hold both
1140 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1141 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001142 * Lock ordering is by mutex address. There are two other sites where
1143 * perf_event_context::mutex nests and those are:
1144 *
1145 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001146 * perf_event_exit_event()
1147 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001148 *
1149 * - perf_event_init_context() [ parent, 0 ]
1150 * inherit_task_group()
1151 * inherit_group()
1152 * inherit_event()
1153 * perf_event_alloc()
1154 * perf_init_event()
1155 * perf_try_init_event() [ child , 1 ]
1156 *
1157 * While it appears there is an obvious deadlock here -- the parent and child
1158 * nesting levels are inverted between the two. This is in fact safe because
1159 * life-time rules separate them. That is an exiting task cannot fork, and a
1160 * spawning task cannot (yet) exit.
1161 *
1162 * But remember that that these are parent<->child context relations, and
1163 * migration does not affect children, therefore these two orderings should not
1164 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001165 *
1166 * The change in perf_event::ctx does not affect children (as claimed above)
1167 * because the sys_perf_event_open() case will install a new event and break
1168 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1169 * concerned with cpuctx and that doesn't have children.
1170 *
1171 * The places that change perf_event::ctx will issue:
1172 *
1173 * perf_remove_from_context();
1174 * synchronize_rcu();
1175 * perf_install_in_context();
1176 *
1177 * to affect the change. The remove_from_context() + synchronize_rcu() should
1178 * quiesce the event, after which we can install it in the new location. This
1179 * means that only external vectors (perf_fops, prctl) can perturb the event
1180 * while in transit. Therefore all such accessors should also acquire
1181 * perf_event_context::mutex to serialize against this.
1182 *
1183 * However; because event->ctx can change while we're waiting to acquire
1184 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1185 * function.
1186 *
1187 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001188 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001189 * task_struct::perf_event_mutex
1190 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001191 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001192 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001193 * perf_event::mmap_mutex
1194 * mmap_sem
1195 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001196static struct perf_event_context *
1197perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001198{
1199 struct perf_event_context *ctx;
1200
1201again:
1202 rcu_read_lock();
1203 ctx = ACCESS_ONCE(event->ctx);
1204 if (!atomic_inc_not_zero(&ctx->refcount)) {
1205 rcu_read_unlock();
1206 goto again;
1207 }
1208 rcu_read_unlock();
1209
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001210 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001211 if (event->ctx != ctx) {
1212 mutex_unlock(&ctx->mutex);
1213 put_ctx(ctx);
1214 goto again;
1215 }
1216
1217 return ctx;
1218}
1219
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001220static inline struct perf_event_context *
1221perf_event_ctx_lock(struct perf_event *event)
1222{
1223 return perf_event_ctx_lock_nested(event, 0);
1224}
1225
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001226static void perf_event_ctx_unlock(struct perf_event *event,
1227 struct perf_event_context *ctx)
1228{
1229 mutex_unlock(&ctx->mutex);
1230 put_ctx(ctx);
1231}
1232
1233/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001234 * This must be done under the ctx->lock, such as to serialize against
1235 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1236 * calling scheduler related locks and ctx->lock nests inside those.
1237 */
1238static __must_check struct perf_event_context *
1239unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001240{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001241 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1242
1243 lockdep_assert_held(&ctx->lock);
1244
1245 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001246 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001247 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001248
1249 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001250}
1251
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001252static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1253{
1254 /*
1255 * only top level events have the pid namespace they were created in
1256 */
1257 if (event->parent)
1258 event = event->parent;
1259
1260 return task_tgid_nr_ns(p, event->ns);
1261}
1262
1263static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1264{
1265 /*
1266 * only top level events have the pid namespace they were created in
1267 */
1268 if (event->parent)
1269 event = event->parent;
1270
1271 return task_pid_nr_ns(p, event->ns);
1272}
1273
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001274/*
1275 * If we inherit events we want to return the parent event id
1276 * to userspace.
1277 */
1278static u64 primary_event_id(struct perf_event *event)
1279{
1280 u64 id = event->id;
1281
1282 if (event->parent)
1283 id = event->parent->id;
1284
1285 return id;
1286}
1287
1288/*
1289 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001290 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001291 * This has to cope with with the fact that until it is locked,
1292 * the context could get moved to another task.
1293 */
1294static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001295perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296{
1297 struct perf_event_context *ctx;
1298
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001299retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001300 /*
1301 * One of the few rules of preemptible RCU is that one cannot do
1302 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001303 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001304 * rcu_read_unlock_special().
1305 *
1306 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001307 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001308 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001309 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001310 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001311 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001312 if (ctx) {
1313 /*
1314 * If this context is a clone of another, it might
1315 * get swapped for another underneath us by
1316 * perf_event_task_sched_out, though the
1317 * rcu_read_lock() protects us from any context
1318 * getting freed. Lock the context and check if it
1319 * got swapped before we could get the lock, and retry
1320 * if so. If we locked the right context, then it
1321 * can't get swapped on us any more.
1322 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001323 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001324 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001325 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001326 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001327 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001328 goto retry;
1329 }
1330
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001331 if (ctx->task == TASK_TOMBSTONE ||
1332 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001333 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001334 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001335 } else {
1336 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001337 }
1338 }
1339 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001340 if (!ctx)
1341 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001342 return ctx;
1343}
1344
1345/*
1346 * Get the context for a task and increment its pin_count so it
1347 * can't get swapped to another task. This also increments its
1348 * reference count so that the context can't get freed.
1349 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001350static struct perf_event_context *
1351perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001352{
1353 struct perf_event_context *ctx;
1354 unsigned long flags;
1355
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001356 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001357 if (ctx) {
1358 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001359 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360 }
1361 return ctx;
1362}
1363
1364static void perf_unpin_context(struct perf_event_context *ctx)
1365{
1366 unsigned long flags;
1367
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001368 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001369 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001370 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001371}
1372
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001373/*
1374 * Update the record of the current time in a context.
1375 */
1376static void update_context_time(struct perf_event_context *ctx)
1377{
1378 u64 now = perf_clock();
1379
1380 ctx->time += now - ctx->timestamp;
1381 ctx->timestamp = now;
1382}
1383
Stephane Eranian41587552011-01-03 18:20:01 +02001384static u64 perf_event_time(struct perf_event *event)
1385{
1386 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001387
1388 if (is_cgroup_event(event))
1389 return perf_cgroup_event_time(event);
1390
Stephane Eranian41587552011-01-03 18:20:01 +02001391 return ctx ? ctx->time : 0;
1392}
1393
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001394/*
1395 * Update the total_time_enabled and total_time_running fields for a event.
1396 */
1397static void update_event_times(struct perf_event *event)
1398{
1399 struct perf_event_context *ctx = event->ctx;
1400 u64 run_end;
1401
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001402 lockdep_assert_held(&ctx->lock);
1403
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001404 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1405 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1406 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001407
Stephane Eraniane5d13672011-02-14 11:20:01 +02001408 /*
1409 * in cgroup mode, time_enabled represents
1410 * the time the event was enabled AND active
1411 * tasks were in the monitored cgroup. This is
1412 * independent of the activity of the context as
1413 * there may be a mix of cgroup and non-cgroup events.
1414 *
1415 * That is why we treat cgroup events differently
1416 * here.
1417 */
1418 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001419 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001420 else if (ctx->is_active)
1421 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001422 else
1423 run_end = event->tstamp_stopped;
1424
1425 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001426
1427 if (event->state == PERF_EVENT_STATE_INACTIVE)
1428 run_end = event->tstamp_stopped;
1429 else
Stephane Eranian41587552011-01-03 18:20:01 +02001430 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001431
1432 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001433
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001434}
1435
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001436/*
1437 * Update total_time_enabled and total_time_running for all events in a group.
1438 */
1439static void update_group_times(struct perf_event *leader)
1440{
1441 struct perf_event *event;
1442
1443 update_event_times(leader);
1444 list_for_each_entry(event, &leader->sibling_list, group_entry)
1445 update_event_times(event);
1446}
1447
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001448static struct list_head *
1449ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1450{
1451 if (event->attr.pinned)
1452 return &ctx->pinned_groups;
1453 else
1454 return &ctx->flexible_groups;
1455}
1456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457/*
1458 * Add a event from the lists for its context.
1459 * Must be called with ctx->mutex and ctx->lock held.
1460 */
1461static void
1462list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1463{
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001464
Peter Zijlstrac994d612016-01-08 09:20:23 +01001465 lockdep_assert_held(&ctx->lock);
1466
Peter Zijlstra8a495422010-05-27 15:47:49 +02001467 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1468 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001469
1470 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001471 * If we're a stand alone event or group leader, we go to the context
1472 * list, group events are kept attached to the group so that
1473 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001474 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001475 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001476 struct list_head *list;
1477
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001478 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001479
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001480 list = ctx_group_list(event, ctx);
1481 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001482 }
1483
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001484 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001485
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486 list_add_rcu(&event->event_entry, &ctx->event_list);
1487 ctx->nr_events++;
1488 if (event->attr.inherit_stat)
1489 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001490
1491 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001492}
1493
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001494/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001495 * Initialize event state based on the perf_event_attr::disabled.
1496 */
1497static inline void perf_event__state_init(struct perf_event *event)
1498{
1499 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1500 PERF_EVENT_STATE_INACTIVE;
1501}
1502
Peter Zijlstraa7239682015-09-09 19:06:33 +02001503static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001504{
1505 int entry = sizeof(u64); /* value */
1506 int size = 0;
1507 int nr = 1;
1508
1509 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1510 size += sizeof(u64);
1511
1512 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1513 size += sizeof(u64);
1514
1515 if (event->attr.read_format & PERF_FORMAT_ID)
1516 entry += sizeof(u64);
1517
1518 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001519 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001520 size += sizeof(u64);
1521 }
1522
1523 size += entry * nr;
1524 event->read_size = size;
1525}
1526
Peter Zijlstraa7239682015-09-09 19:06:33 +02001527static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001528{
1529 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001530 u16 size = 0;
1531
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001532 if (sample_type & PERF_SAMPLE_IP)
1533 size += sizeof(data->ip);
1534
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001535 if (sample_type & PERF_SAMPLE_ADDR)
1536 size += sizeof(data->addr);
1537
1538 if (sample_type & PERF_SAMPLE_PERIOD)
1539 size += sizeof(data->period);
1540
Andi Kleenc3feedf2013-01-24 16:10:28 +01001541 if (sample_type & PERF_SAMPLE_WEIGHT)
1542 size += sizeof(data->weight);
1543
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001544 if (sample_type & PERF_SAMPLE_READ)
1545 size += event->read_size;
1546
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001547 if (sample_type & PERF_SAMPLE_DATA_SRC)
1548 size += sizeof(data->data_src.val);
1549
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001550 if (sample_type & PERF_SAMPLE_TRANSACTION)
1551 size += sizeof(data->txn);
1552
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001553 event->header_size = size;
1554}
1555
Peter Zijlstraa7239682015-09-09 19:06:33 +02001556/*
1557 * Called at perf_event creation and when events are attached/detached from a
1558 * group.
1559 */
1560static void perf_event__header_size(struct perf_event *event)
1561{
1562 __perf_event_read_size(event,
1563 event->group_leader->nr_siblings);
1564 __perf_event_header_size(event, event->attr.sample_type);
1565}
1566
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001567static void perf_event__id_header_size(struct perf_event *event)
1568{
1569 struct perf_sample_data *data;
1570 u64 sample_type = event->attr.sample_type;
1571 u16 size = 0;
1572
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001573 if (sample_type & PERF_SAMPLE_TID)
1574 size += sizeof(data->tid_entry);
1575
1576 if (sample_type & PERF_SAMPLE_TIME)
1577 size += sizeof(data->time);
1578
Adrian Hunterff3d5272013-08-27 11:23:07 +03001579 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1580 size += sizeof(data->id);
1581
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001582 if (sample_type & PERF_SAMPLE_ID)
1583 size += sizeof(data->id);
1584
1585 if (sample_type & PERF_SAMPLE_STREAM_ID)
1586 size += sizeof(data->stream_id);
1587
1588 if (sample_type & PERF_SAMPLE_CPU)
1589 size += sizeof(data->cpu_entry);
1590
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001591 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001592}
1593
Peter Zijlstraa7239682015-09-09 19:06:33 +02001594static bool perf_event_validate_size(struct perf_event *event)
1595{
1596 /*
1597 * The values computed here will be over-written when we actually
1598 * attach the event.
1599 */
1600 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1601 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1602 perf_event__id_header_size(event);
1603
1604 /*
1605 * Sum the lot; should not exceed the 64k limit we have on records.
1606 * Conservative limit to allow for callchains and other variable fields.
1607 */
1608 if (event->read_size + event->header_size +
1609 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1610 return false;
1611
1612 return true;
1613}
1614
Peter Zijlstra8a495422010-05-27 15:47:49 +02001615static void perf_group_attach(struct perf_event *event)
1616{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001617 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001618
Peter Zijlstra74c33372010-10-15 11:40:29 +02001619 /*
1620 * We can have double attach due to group movement in perf_event_open.
1621 */
1622 if (event->attach_state & PERF_ATTACH_GROUP)
1623 return;
1624
Peter Zijlstra8a495422010-05-27 15:47:49 +02001625 event->attach_state |= PERF_ATTACH_GROUP;
1626
1627 if (group_leader == event)
1628 return;
1629
Peter Zijlstra652884f2015-01-23 11:20:10 +01001630 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1631
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001632 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001633
1634 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1635 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001636
1637 perf_event__header_size(group_leader);
1638
1639 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1640 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001641}
1642
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001643/*
1644 * Remove a event from the lists for its context.
1645 * Must be called with ctx->mutex and ctx->lock held.
1646 */
1647static void
1648list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1649{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001650 WARN_ON_ONCE(event->ctx != ctx);
1651 lockdep_assert_held(&ctx->lock);
1652
Peter Zijlstra8a495422010-05-27 15:47:49 +02001653 /*
1654 * We can have double detach due to exit/hot-unplug + close.
1655 */
1656 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001657 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001658
1659 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1660
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001661 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001663 ctx->nr_events--;
1664 if (event->attr.inherit_stat)
1665 ctx->nr_stat--;
1666
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001667 list_del_rcu(&event->event_entry);
1668
Peter Zijlstra8a495422010-05-27 15:47:49 +02001669 if (event->group_leader == event)
1670 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001672 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001673
1674 /*
1675 * If event was in error state, then keep it
1676 * that way, otherwise bogus counts will be
1677 * returned on read(). The only way to get out
1678 * of error state is by explicit re-enabling
1679 * of the event
1680 */
1681 if (event->state > PERF_EVENT_STATE_OFF)
1682 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001683
1684 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001685}
1686
Peter Zijlstra8a495422010-05-27 15:47:49 +02001687static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001688{
1689 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001690 struct list_head *list = NULL;
1691
1692 /*
1693 * We can have double detach due to exit/hot-unplug + close.
1694 */
1695 if (!(event->attach_state & PERF_ATTACH_GROUP))
1696 return;
1697
1698 event->attach_state &= ~PERF_ATTACH_GROUP;
1699
1700 /*
1701 * If this is a sibling, remove it from its group.
1702 */
1703 if (event->group_leader != event) {
1704 list_del_init(&event->group_entry);
1705 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001706 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001707 }
1708
1709 if (!list_empty(&event->group_entry))
1710 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001711
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001712 /*
1713 * If this was a group event with sibling events then
1714 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001715 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001716 */
1717 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001718 if (list)
1719 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001721
1722 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001723 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001724
1725 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001726 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001727
1728out:
1729 perf_event__header_size(event->group_leader);
1730
1731 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1732 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001733}
1734
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001735static bool is_orphaned_event(struct perf_event *event)
1736{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001737 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001738}
1739
Mark Rutland2c81a642016-06-14 16:10:41 +01001740static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001741{
1742 struct pmu *pmu = event->pmu;
1743 return pmu->filter_match ? pmu->filter_match(event) : 1;
1744}
1745
Mark Rutland2c81a642016-06-14 16:10:41 +01001746/*
1747 * Check whether we should attempt to schedule an event group based on
1748 * PMU-specific filtering. An event group can consist of HW and SW events,
1749 * potentially with a SW leader, so we must check all the filters, to
1750 * determine whether a group is schedulable:
1751 */
1752static inline int pmu_filter_match(struct perf_event *event)
1753{
1754 struct perf_event *child;
1755
1756 if (!__pmu_filter_match(event))
1757 return 0;
1758
1759 list_for_each_entry(child, &event->sibling_list, group_entry) {
1760 if (!__pmu_filter_match(child))
1761 return 0;
1762 }
1763
1764 return 1;
1765}
1766
Stephane Eranianfa66f072010-08-26 16:40:01 +02001767static inline int
1768event_filter_match(struct perf_event *event)
1769{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001770 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1771 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001772}
1773
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001774static void
1775event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001776 struct perf_cpu_context *cpuctx,
1777 struct perf_event_context *ctx)
1778{
Stephane Eranian41587552011-01-03 18:20:01 +02001779 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001780 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001781
1782 WARN_ON_ONCE(event->ctx != ctx);
1783 lockdep_assert_held(&ctx->lock);
1784
Stephane Eranianfa66f072010-08-26 16:40:01 +02001785 /*
1786 * An event which could not be activated because of
1787 * filter mismatch still needs to have its timings
1788 * maintained, otherwise bogus information is return
1789 * via read() for time_enabled, time_running:
1790 */
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001791 if (event->state == PERF_EVENT_STATE_INACTIVE &&
1792 !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001793 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001794 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001795 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001796 }
1797
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001798 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001799 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800
Alexander Shishkin44377272013-12-16 14:17:36 +02001801 perf_pmu_disable(event->pmu);
1802
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001803 event->tstamp_stopped = tstamp;
1804 event->pmu->del(event, 0);
1805 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806 event->state = PERF_EVENT_STATE_INACTIVE;
1807 if (event->pending_disable) {
1808 event->pending_disable = 0;
1809 event->state = PERF_EVENT_STATE_OFF;
1810 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001811
1812 if (!is_software_event(event))
1813 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001814 if (!--ctx->nr_active)
1815 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001816 if (event->attr.freq && event->attr.sample_freq)
1817 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001818 if (event->attr.exclusive || !cpuctx->active_oncpu)
1819 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001820
1821 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001822}
1823
1824static void
1825group_sched_out(struct perf_event *group_event,
1826 struct perf_cpu_context *cpuctx,
1827 struct perf_event_context *ctx)
1828{
1829 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001830 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001831
Mark Rutland3f005e72016-07-26 18:12:21 +01001832 perf_pmu_disable(ctx->pmu);
1833
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001834 event_sched_out(group_event, cpuctx, ctx);
1835
1836 /*
1837 * Schedule out siblings (if any):
1838 */
1839 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1840 event_sched_out(event, cpuctx, ctx);
1841
Mark Rutland3f005e72016-07-26 18:12:21 +01001842 perf_pmu_enable(ctx->pmu);
1843
Stephane Eranianfa66f072010-08-26 16:40:01 +02001844 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001845 cpuctx->exclusive = 0;
1846}
1847
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001848#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850/*
1851 * Cross CPU call to remove a performance event
1852 *
1853 * We disable the event on the hardware level first. After that we
1854 * remove it from the context list.
1855 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001856static void
1857__perf_remove_from_context(struct perf_event *event,
1858 struct perf_cpu_context *cpuctx,
1859 struct perf_event_context *ctx,
1860 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001861{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001862 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001865 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001866 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001867 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001868
Peter Zijlstra39a43642016-01-11 12:46:35 +01001869 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001870 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001871 if (ctx->task) {
1872 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1873 cpuctx->task_ctx = NULL;
1874 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001875 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001876}
1877
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001878/*
1879 * Remove the event from a task's (or a CPU's) list of events.
1880 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001881 * If event->ctx is a cloned context, callers must make sure that
1882 * every task struct that event->ctx->task could possibly point to
1883 * remains valid. This is OK when called from perf_release since
1884 * that only calls us on the top-level context, which can't be a clone.
1885 * When called from perf_event_exit_task, it's OK because the
1886 * context has been detached from its task.
1887 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001888static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001890 lockdep_assert_held(&event->ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001891
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001892 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001893}
1894
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001896 * Cross CPU call to disable a performance event
1897 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001898static void __perf_event_disable(struct perf_event *event,
1899 struct perf_cpu_context *cpuctx,
1900 struct perf_event_context *ctx,
1901 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001902{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001903 if (event->state < PERF_EVENT_STATE_INACTIVE)
1904 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001905
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001906 update_context_time(ctx);
1907 update_cgrp_time_from_event(event);
1908 update_group_times(event);
1909 if (event == event->group_leader)
1910 group_sched_out(event, cpuctx, ctx);
1911 else
1912 event_sched_out(event, cpuctx, ctx);
1913 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001914}
1915
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001916/*
1917 * Disable a event.
1918 *
1919 * If event->ctx is a cloned context, callers must make sure that
1920 * every task struct that event->ctx->task could possibly point to
1921 * remains valid. This condition is satisifed when called through
1922 * perf_event_for_each_child or perf_event_for_each because they
1923 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001924 * goes to exit will block in perf_event_exit_event().
1925 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001926 * When called from perf_pending_event it's OK because event->ctx
1927 * is the current context on this CPU and preemption is disabled,
1928 * hence we can't get into perf_event_task_sched_out for this context.
1929 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001930static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001931{
1932 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001933
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001934 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001935 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001936 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001937 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001938 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001939 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001940
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001941 event_function_call(event, __perf_event_disable, NULL);
1942}
1943
1944void perf_event_disable_local(struct perf_event *event)
1945{
1946 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001947}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001948
1949/*
1950 * Strictly speaking kernel users cannot create groups and therefore this
1951 * interface does not need the perf_event_ctx_lock() magic.
1952 */
1953void perf_event_disable(struct perf_event *event)
1954{
1955 struct perf_event_context *ctx;
1956
1957 ctx = perf_event_ctx_lock(event);
1958 _perf_event_disable(event);
1959 perf_event_ctx_unlock(event, ctx);
1960}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001961EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001962
Stephane Eraniane5d13672011-02-14 11:20:01 +02001963static void perf_set_shadow_time(struct perf_event *event,
1964 struct perf_event_context *ctx,
1965 u64 tstamp)
1966{
1967 /*
1968 * use the correct time source for the time snapshot
1969 *
1970 * We could get by without this by leveraging the
1971 * fact that to get to this function, the caller
1972 * has most likely already called update_context_time()
1973 * and update_cgrp_time_xx() and thus both timestamp
1974 * are identical (or very close). Given that tstamp is,
1975 * already adjusted for cgroup, we could say that:
1976 * tstamp - ctx->timestamp
1977 * is equivalent to
1978 * tstamp - cgrp->timestamp.
1979 *
1980 * Then, in perf_output_read(), the calculation would
1981 * work with no changes because:
1982 * - event is guaranteed scheduled in
1983 * - no scheduled out in between
1984 * - thus the timestamp would be the same
1985 *
1986 * But this is a bit hairy.
1987 *
1988 * So instead, we have an explicit cgroup call to remain
1989 * within the time time source all along. We believe it
1990 * is cleaner and simpler to understand.
1991 */
1992 if (is_cgroup_event(event))
1993 perf_cgroup_set_shadow_time(event, tstamp);
1994 else
1995 event->shadow_ctx_time = tstamp - ctx->timestamp;
1996}
1997
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001998#define MAX_INTERRUPTS (~0ULL)
1999
2000static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002001static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002003static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002004event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002005 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002006 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007{
Stephane Eranian41587552011-01-03 18:20:01 +02002008 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02002009 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002010
Peter Zijlstra63342412014-05-05 11:49:16 +02002011 lockdep_assert_held(&ctx->lock);
2012
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002013 if (event->state <= PERF_EVENT_STATE_OFF)
2014 return 0;
2015
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002016 WRITE_ONCE(event->oncpu, smp_processor_id());
2017 /*
2018 * Order event::oncpu write to happen before the ACTIVE state
2019 * is visible.
2020 */
2021 smp_wmb();
2022 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002023
2024 /*
2025 * Unthrottle events, since we scheduled we might have missed several
2026 * ticks already, also for a heavily scheduling task there is little
2027 * guarantee it'll get a tick in a timely manner.
2028 */
2029 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2030 perf_log_throttle(event, 1);
2031 event->hw.interrupts = 0;
2032 }
2033
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002034 /*
2035 * The new state must be visible before we turn it on in the hardware:
2036 */
2037 smp_wmb();
2038
Alexander Shishkin44377272013-12-16 14:17:36 +02002039 perf_pmu_disable(event->pmu);
2040
Shaohua Li72f669c2015-02-05 15:55:31 -08002041 perf_set_shadow_time(event, ctx, tstamp);
2042
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002043 perf_log_itrace_start(event);
2044
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002045 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002046 event->state = PERF_EVENT_STATE_INACTIVE;
2047 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002048 ret = -EAGAIN;
2049 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002050 }
2051
Peter Zijlstra00a29162015-07-27 10:35:07 +02002052 event->tstamp_running += tstamp - event->tstamp_stopped;
2053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002054 if (!is_software_event(event))
2055 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002056 if (!ctx->nr_active++)
2057 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002058 if (event->attr.freq && event->attr.sample_freq)
2059 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002060
2061 if (event->attr.exclusive)
2062 cpuctx->exclusive = 1;
2063
Alexander Shishkin44377272013-12-16 14:17:36 +02002064out:
2065 perf_pmu_enable(event->pmu);
2066
2067 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068}
2069
2070static int
2071group_sched_in(struct perf_event *group_event,
2072 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002073 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002074{
Lin Ming6bde9b62010-04-23 13:56:00 +08002075 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002076 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002077 u64 now = ctx->time;
2078 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002079
2080 if (group_event->state == PERF_EVENT_STATE_OFF)
2081 return 0;
2082
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002083 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002084
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002085 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002086 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002087 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002089 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002090
2091 /*
2092 * Schedule in siblings as one group (if any):
2093 */
2094 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002095 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002096 partial_group = event;
2097 goto group_error;
2098 }
2099 }
2100
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002101 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002102 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002103
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104group_error:
2105 /*
2106 * Groups can be scheduled in as one unit only, so undo any
2107 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002108 * The events up to the failed event are scheduled out normally,
2109 * tstamp_stopped will be updated.
2110 *
2111 * The failed events and the remaining siblings need to have
2112 * their timings updated as if they had gone thru event_sched_in()
2113 * and event_sched_out(). This is required to get consistent timings
2114 * across the group. This also takes care of the case where the group
2115 * could never be scheduled by ensuring tstamp_stopped is set to mark
2116 * the time the event was actually stopped, such that time delta
2117 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118 */
2119 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2120 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002121 simulate = true;
2122
2123 if (simulate) {
2124 event->tstamp_running += now - event->tstamp_stopped;
2125 event->tstamp_stopped = now;
2126 } else {
2127 event_sched_out(event, cpuctx, ctx);
2128 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002130 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002131
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002132 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002133
Peter Zijlstra272325c2015-04-15 11:41:58 +02002134 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002135
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002136 return -EAGAIN;
2137}
2138
2139/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140 * Work out whether we can put this event group on the CPU now.
2141 */
2142static int group_can_go_on(struct perf_event *event,
2143 struct perf_cpu_context *cpuctx,
2144 int can_add_hw)
2145{
2146 /*
2147 * Groups consisting entirely of software events can always go on.
2148 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002149 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150 return 1;
2151 /*
2152 * If an exclusive group is already on, no other hardware
2153 * events can go on.
2154 */
2155 if (cpuctx->exclusive)
2156 return 0;
2157 /*
2158 * If this group is exclusive and there are already
2159 * events on the CPU, it can't go on.
2160 */
2161 if (event->attr.exclusive && cpuctx->active_oncpu)
2162 return 0;
2163 /*
2164 * Otherwise, try to add it if all previous groups were able
2165 * to go on.
2166 */
2167 return can_add_hw;
2168}
2169
2170static void add_event_to_ctx(struct perf_event *event,
2171 struct perf_event_context *ctx)
2172{
Stephane Eranian41587552011-01-03 18:20:01 +02002173 u64 tstamp = perf_event_time(event);
2174
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002176 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002177 event->tstamp_enabled = tstamp;
2178 event->tstamp_running = tstamp;
2179 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002180}
2181
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002182static void ctx_sched_out(struct perf_event_context *ctx,
2183 struct perf_cpu_context *cpuctx,
2184 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002185static void
2186ctx_sched_in(struct perf_event_context *ctx,
2187 struct perf_cpu_context *cpuctx,
2188 enum event_type_t event_type,
2189 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002190
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002191static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2192 struct perf_event_context *ctx)
2193{
2194 if (!cpuctx->task_ctx)
2195 return;
2196
2197 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2198 return;
2199
2200 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2201}
2202
Peter Zijlstradce58552011-04-09 21:17:46 +02002203static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2204 struct perf_event_context *ctx,
2205 struct task_struct *task)
2206{
2207 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2208 if (ctx)
2209 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2210 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2211 if (ctx)
2212 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2213}
2214
Peter Zijlstra3e349502016-01-08 10:01:18 +01002215static void ctx_resched(struct perf_cpu_context *cpuctx,
2216 struct perf_event_context *task_ctx)
Peter Zijlstra00179602015-11-30 16:26:35 +01002217{
Peter Zijlstra3e349502016-01-08 10:01:18 +01002218 perf_pmu_disable(cpuctx->ctx.pmu);
2219 if (task_ctx)
2220 task_ctx_sched_out(cpuctx, task_ctx);
2221 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2222 perf_event_sched_in(cpuctx, task_ctx, current);
2223 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002224}
2225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002226/*
2227 * Cross CPU call to install and enable a performance event
2228 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002229 * Very similar to remote_function() + event_function() but cannot assume that
2230 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002231 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002232static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002234 struct perf_event *event = info;
2235 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002236 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002237 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002238 bool activate = true;
2239 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002240
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002241 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002242 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002243 raw_spin_lock(&ctx->lock);
2244 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002245
2246 /* If we're on the wrong CPU, try again */
2247 if (task_cpu(ctx->task) != smp_processor_id()) {
2248 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002249 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002250 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002251
Peter Zijlstra39a43642016-01-11 12:46:35 +01002252 /*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002253 * If we're on the right CPU, see if the task we target is
2254 * current, if not we don't have to activate the ctx, a future
2255 * context switch will do that for us.
Peter Zijlstra39a43642016-01-11 12:46:35 +01002256 */
Peter Zijlstraa0963092016-02-24 18:45:50 +01002257 if (ctx->task != current)
2258 activate = false;
2259 else
2260 WARN_ON_ONCE(cpuctx->task_ctx && cpuctx->task_ctx != ctx);
2261
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002262 } else if (task_ctx) {
2263 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002264 }
2265
Peter Zijlstraa0963092016-02-24 18:45:50 +01002266 if (activate) {
2267 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2268 add_event_to_ctx(event, ctx);
2269 ctx_resched(cpuctx, task_ctx);
2270 } else {
2271 add_event_to_ctx(event, ctx);
2272 }
2273
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002274unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002275 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002276
Peter Zijlstraa0963092016-02-24 18:45:50 +01002277 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278}
2279
2280/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002281 * Attach a performance event to a context.
2282 *
2283 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002284 */
2285static void
2286perf_install_in_context(struct perf_event_context *ctx,
2287 struct perf_event *event,
2288 int cpu)
2289{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002290 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002291
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002292 lockdep_assert_held(&ctx->mutex);
2293
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002294 if (event->cpu != -1)
2295 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002296
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002297 /*
2298 * Ensures that if we can observe event->ctx, both the event and ctx
2299 * will be 'complete'. See perf_iterate_sb_cpu().
2300 */
2301 smp_store_release(&event->ctx, ctx);
2302
Peter Zijlstraa0963092016-02-24 18:45:50 +01002303 if (!task) {
2304 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002305 return;
2306 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002307
Peter Zijlstraa0963092016-02-24 18:45:50 +01002308 /*
2309 * Should not happen, we validate the ctx is still alive before calling.
2310 */
2311 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2312 return;
2313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002314 /*
2315 * Installing events is tricky because we cannot rely on ctx->is_active
2316 * to be set in case this is the nr_events 0 -> 1 transition.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002317 */
Peter Zijlstraa0963092016-02-24 18:45:50 +01002318again:
2319 /*
2320 * Cannot use task_function_call() because we need to run on the task's
2321 * CPU regardless of whether its current or not.
2322 */
2323 if (!cpu_function_call(task_cpu(task), __perf_install_in_context, event))
2324 return;
2325
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002326 raw_spin_lock_irq(&ctx->lock);
2327 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002328 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2329 /*
2330 * Cannot happen because we already checked above (which also
2331 * cannot happen), and we hold ctx->mutex, which serializes us
2332 * against perf_event_exit_task_context().
2333 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002334 raw_spin_unlock_irq(&ctx->lock);
2335 return;
2336 }
Peter Zijlstra39a43642016-01-11 12:46:35 +01002337 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstraa0963092016-02-24 18:45:50 +01002338 /*
2339 * Since !ctx->is_active doesn't mean anything, we must IPI
2340 * unconditionally.
2341 */
2342 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002343}
2344
2345/*
2346 * Put a event into inactive state and update time fields.
2347 * Enabling the leader of a group effectively enables all
2348 * the group members that aren't explicitly disabled, so we
2349 * have to update their ->tstamp_enabled also.
2350 * Note: this works for group members as well as group leaders
2351 * since the non-leader members' sibling_lists will be empty.
2352 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002353static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002354{
2355 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002356 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357
2358 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002359 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002360 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002361 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2362 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002363 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002364}
2365
2366/*
2367 * Cross CPU call to enable a performance event
2368 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002369static void __perf_event_enable(struct perf_event *event,
2370 struct perf_cpu_context *cpuctx,
2371 struct perf_event_context *ctx,
2372 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002373{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002374 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002375 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002376
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002377 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2378 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002379 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002380
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002381 if (ctx->is_active)
2382 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2383
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002384 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002385
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002386 if (!ctx->is_active)
2387 return;
2388
Stephane Eraniane5d13672011-02-14 11:20:01 +02002389 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002390 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002391 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002392 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002393 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002394 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002396 /*
2397 * If the event is in a group and isn't the group leader,
2398 * then don't put it on unless the group is on.
2399 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002400 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2401 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002402 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002403 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002405 task_ctx = cpuctx->task_ctx;
2406 if (ctx->task)
2407 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002408
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002409 ctx_resched(cpuctx, task_ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002410}
2411
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002412/*
2413 * Enable a event.
2414 *
2415 * If event->ctx is a cloned context, callers must make sure that
2416 * every task struct that event->ctx->task could possibly point to
2417 * remains valid. This condition is satisfied when called through
2418 * perf_event_for_each_child or perf_event_for_each as described
2419 * for perf_event_disable.
2420 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002421static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422{
2423 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002424
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002425 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002426 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2427 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002428 raw_spin_unlock_irq(&ctx->lock);
2429 return;
2430 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002431
2432 /*
2433 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002434 *
2435 * That way, if we see the event in error state below, we know that it
2436 * has gone back into error state, as distinct from the task having
2437 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002438 */
2439 if (event->state == PERF_EVENT_STATE_ERROR)
2440 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002441 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002442
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002443 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002445
2446/*
2447 * See perf_event_disable();
2448 */
2449void perf_event_enable(struct perf_event *event)
2450{
2451 struct perf_event_context *ctx;
2452
2453 ctx = perf_event_ctx_lock(event);
2454 _perf_event_enable(event);
2455 perf_event_ctx_unlock(event, ctx);
2456}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002457EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002458
Alexander Shishkin375637b2016-04-27 18:44:46 +03002459struct stop_event_data {
2460 struct perf_event *event;
2461 unsigned int restart;
2462};
2463
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002464static int __perf_event_stop(void *info)
2465{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002466 struct stop_event_data *sd = info;
2467 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002468
Alexander Shishkin375637b2016-04-27 18:44:46 +03002469 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002470 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2471 return 0;
2472
2473 /* matches smp_wmb() in event_sched_in() */
2474 smp_rmb();
2475
2476 /*
2477 * There is a window with interrupts enabled before we get here,
2478 * so we need to check again lest we try to stop another CPU's event.
2479 */
2480 if (READ_ONCE(event->oncpu) != smp_processor_id())
2481 return -EAGAIN;
2482
2483 event->pmu->stop(event, PERF_EF_UPDATE);
2484
Alexander Shishkin375637b2016-04-27 18:44:46 +03002485 /*
2486 * May race with the actual stop (through perf_pmu_output_stop()),
2487 * but it is only used for events with AUX ring buffer, and such
2488 * events will refuse to restart because of rb::aux_mmap_count==0,
2489 * see comments in perf_aux_output_begin().
2490 *
2491 * Since this is happening on a event-local CPU, no trace is lost
2492 * while restarting.
2493 */
2494 if (sd->restart)
2495 event->pmu->start(event, PERF_EF_START);
2496
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002497 return 0;
2498}
2499
Alexander Shishkin375637b2016-04-27 18:44:46 +03002500static int perf_event_restart(struct perf_event *event)
2501{
2502 struct stop_event_data sd = {
2503 .event = event,
2504 .restart = 1,
2505 };
2506 int ret = 0;
2507
2508 do {
2509 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2510 return 0;
2511
2512 /* matches smp_wmb() in event_sched_in() */
2513 smp_rmb();
2514
2515 /*
2516 * We only want to restart ACTIVE events, so if the event goes
2517 * inactive here (event->oncpu==-1), there's nothing more to do;
2518 * fall through with ret==-ENXIO.
2519 */
2520 ret = cpu_function_call(READ_ONCE(event->oncpu),
2521 __perf_event_stop, &sd);
2522 } while (ret == -EAGAIN);
2523
2524 return ret;
2525}
2526
2527/*
2528 * In order to contain the amount of racy and tricky in the address filter
2529 * configuration management, it is a two part process:
2530 *
2531 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2532 * we update the addresses of corresponding vmas in
2533 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2534 * (p2) when an event is scheduled in (pmu::add), it calls
2535 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2536 * if the generation has changed since the previous call.
2537 *
2538 * If (p1) happens while the event is active, we restart it to force (p2).
2539 *
2540 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2541 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2542 * ioctl;
2543 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2544 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2545 * for reading;
2546 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2547 * of exec.
2548 */
2549void perf_event_addr_filters_sync(struct perf_event *event)
2550{
2551 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2552
2553 if (!has_addr_filter(event))
2554 return;
2555
2556 raw_spin_lock(&ifh->lock);
2557 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2558 event->pmu->addr_filters_sync(event);
2559 event->hw.addr_filters_gen = event->addr_filters_gen;
2560 }
2561 raw_spin_unlock(&ifh->lock);
2562}
2563EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2564
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002565static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002566{
2567 /*
2568 * not supported on inherited events
2569 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002570 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002571 return -EINVAL;
2572
2573 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002574 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575
2576 return 0;
2577}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002578
2579/*
2580 * See perf_event_disable()
2581 */
2582int perf_event_refresh(struct perf_event *event, int refresh)
2583{
2584 struct perf_event_context *ctx;
2585 int ret;
2586
2587 ctx = perf_event_ctx_lock(event);
2588 ret = _perf_event_refresh(event, refresh);
2589 perf_event_ctx_unlock(event, ctx);
2590
2591 return ret;
2592}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002593EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002594
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002595static void ctx_sched_out(struct perf_event_context *ctx,
2596 struct perf_cpu_context *cpuctx,
2597 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002598{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002599 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002600 struct perf_event *event;
2601
2602 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002603
Peter Zijlstra39a43642016-01-11 12:46:35 +01002604 if (likely(!ctx->nr_events)) {
2605 /*
2606 * See __perf_remove_from_context().
2607 */
2608 WARN_ON_ONCE(ctx->is_active);
2609 if (ctx->task)
2610 WARN_ON_ONCE(cpuctx->task_ctx);
2611 return;
2612 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002613
Peter Zijlstradb24d332011-04-09 21:17:45 +02002614 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002615 if (!(ctx->is_active & EVENT_ALL))
2616 ctx->is_active = 0;
2617
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002618 if (ctx->task) {
2619 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2620 if (!ctx->is_active)
2621 cpuctx->task_ctx = NULL;
2622 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002623
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002624 /*
2625 * Always update time if it was set; not only when it changes.
2626 * Otherwise we can 'forget' to update time for any but the last
2627 * context we sched out. For example:
2628 *
2629 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2630 * ctx_sched_out(.event_type = EVENT_PINNED)
2631 *
2632 * would only update time for the pinned events.
2633 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002634 if (is_active & EVENT_TIME) {
2635 /* update (and stop) ctx time */
2636 update_context_time(ctx);
2637 update_cgrp_time_from_cpuctx(cpuctx);
2638 }
2639
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002640 is_active ^= ctx->is_active; /* changed bits */
2641
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002642 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002643 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002644
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002645 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002646 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002647 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2648 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002649 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002650
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002651 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002652 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002653 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002654 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002655 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002656}
2657
2658/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002659 * Test whether two contexts are equivalent, i.e. whether they have both been
2660 * cloned from the same version of the same context.
2661 *
2662 * Equivalence is measured using a generation number in the context that is
2663 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2664 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002665 */
2666static int context_equiv(struct perf_event_context *ctx1,
2667 struct perf_event_context *ctx2)
2668{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002669 lockdep_assert_held(&ctx1->lock);
2670 lockdep_assert_held(&ctx2->lock);
2671
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002672 /* Pinning disables the swap optimization */
2673 if (ctx1->pin_count || ctx2->pin_count)
2674 return 0;
2675
2676 /* If ctx1 is the parent of ctx2 */
2677 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2678 return 1;
2679
2680 /* If ctx2 is the parent of ctx1 */
2681 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2682 return 1;
2683
2684 /*
2685 * If ctx1 and ctx2 have the same parent; we flatten the parent
2686 * hierarchy, see perf_event_init_context().
2687 */
2688 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2689 ctx1->parent_gen == ctx2->parent_gen)
2690 return 1;
2691
2692 /* Unmatched */
2693 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002694}
2695
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002696static void __perf_event_sync_stat(struct perf_event *event,
2697 struct perf_event *next_event)
2698{
2699 u64 value;
2700
2701 if (!event->attr.inherit_stat)
2702 return;
2703
2704 /*
2705 * Update the event value, we cannot use perf_event_read()
2706 * because we're in the middle of a context switch and have IRQs
2707 * disabled, which upsets smp_call_function_single(), however
2708 * we know the event must be on the current CPU, therefore we
2709 * don't need to use it.
2710 */
2711 switch (event->state) {
2712 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002713 event->pmu->read(event);
2714 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002715
2716 case PERF_EVENT_STATE_INACTIVE:
2717 update_event_times(event);
2718 break;
2719
2720 default:
2721 break;
2722 }
2723
2724 /*
2725 * In order to keep per-task stats reliable we need to flip the event
2726 * values when we flip the contexts.
2727 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002728 value = local64_read(&next_event->count);
2729 value = local64_xchg(&event->count, value);
2730 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002731
2732 swap(event->total_time_enabled, next_event->total_time_enabled);
2733 swap(event->total_time_running, next_event->total_time_running);
2734
2735 /*
2736 * Since we swizzled the values, update the user visible data too.
2737 */
2738 perf_event_update_userpage(event);
2739 perf_event_update_userpage(next_event);
2740}
2741
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002742static void perf_event_sync_stat(struct perf_event_context *ctx,
2743 struct perf_event_context *next_ctx)
2744{
2745 struct perf_event *event, *next_event;
2746
2747 if (!ctx->nr_stat)
2748 return;
2749
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002750 update_context_time(ctx);
2751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752 event = list_first_entry(&ctx->event_list,
2753 struct perf_event, event_entry);
2754
2755 next_event = list_first_entry(&next_ctx->event_list,
2756 struct perf_event, event_entry);
2757
2758 while (&event->event_entry != &ctx->event_list &&
2759 &next_event->event_entry != &next_ctx->event_list) {
2760
2761 __perf_event_sync_stat(event, next_event);
2762
2763 event = list_next_entry(event, event_entry);
2764 next_event = list_next_entry(next_event, event_entry);
2765 }
2766}
2767
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002768static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2769 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002770{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002771 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002773 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002774 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002775 int do_switch = 1;
2776
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002777 if (likely(!ctx))
2778 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002779
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002780 cpuctx = __get_cpu_context(ctx);
2781 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002782 return;
2783
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002784 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002785 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002786 if (!next_ctx)
2787 goto unlock;
2788
2789 parent = rcu_dereference(ctx->parent_ctx);
2790 next_parent = rcu_dereference(next_ctx->parent_ctx);
2791
2792 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002793 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002794 goto unlock;
2795
2796 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002797 /*
2798 * Looks like the two contexts are clones, so we might be
2799 * able to optimize the context switch. We lock both
2800 * contexts and check that they are clones under the
2801 * lock (including re-checking that neither has been
2802 * uncloned in the meantime). It doesn't matter which
2803 * order we take the locks because no other cpu could
2804 * be trying to lock both of these tasks.
2805 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002806 raw_spin_lock(&ctx->lock);
2807 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002808 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002809 WRITE_ONCE(ctx->task, next);
2810 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002811
2812 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2813
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002814 /*
2815 * RCU_INIT_POINTER here is safe because we've not
2816 * modified the ctx and the above modification of
2817 * ctx->task and ctx->task_ctx_data are immaterial
2818 * since those values are always verified under
2819 * ctx->lock which we're now holding.
2820 */
2821 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2822 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002824 do_switch = 0;
2825
2826 perf_event_sync_stat(ctx, next_ctx);
2827 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002828 raw_spin_unlock(&next_ctx->lock);
2829 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002830 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002831unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002832 rcu_read_unlock();
2833
2834 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002835 raw_spin_lock(&ctx->lock);
Peter Zijlstra8833d0e2016-01-08 10:02:37 +01002836 task_ctx_sched_out(cpuctx, ctx);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002837 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838 }
2839}
2840
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002841static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2842
Yan, Zhengba532502014-11-04 21:55:58 -05002843void perf_sched_cb_dec(struct pmu *pmu)
2844{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002845 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2846
Yan, Zhengba532502014-11-04 21:55:58 -05002847 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002848
2849 if (!--cpuctx->sched_cb_usage)
2850 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05002851}
2852
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002853
Yan, Zhengba532502014-11-04 21:55:58 -05002854void perf_sched_cb_inc(struct pmu *pmu)
2855{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002856 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2857
2858 if (!cpuctx->sched_cb_usage++)
2859 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
2860
Yan, Zhengba532502014-11-04 21:55:58 -05002861 this_cpu_inc(perf_sched_cb_usages);
2862}
2863
2864/*
2865 * This function provides the context switch callback to the lower code
2866 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02002867 *
2868 * This callback is relevant even to per-cpu events; for example multi event
2869 * PEBS requires this to provide PID/TID information. This requires we flush
2870 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05002871 */
2872static void perf_pmu_sched_task(struct task_struct *prev,
2873 struct task_struct *next,
2874 bool sched_in)
2875{
2876 struct perf_cpu_context *cpuctx;
2877 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05002878
2879 if (prev == next)
2880 return;
2881
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002882 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
2883 pmu = cpuctx->unique_pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05002884
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002885 if (WARN_ON_ONCE(!pmu->sched_task))
2886 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05002887
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002888 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2889 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05002890
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002891 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05002892
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002893 perf_pmu_enable(pmu);
2894 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05002895 }
Yan, Zhengba532502014-11-04 21:55:58 -05002896}
2897
Adrian Hunter45ac1402015-07-21 12:44:02 +03002898static void perf_event_switch(struct task_struct *task,
2899 struct task_struct *next_prev, bool sched_in);
2900
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002901#define for_each_task_context_nr(ctxn) \
2902 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2903
2904/*
2905 * Called from scheduler to remove the events of the current task,
2906 * with interrupts disabled.
2907 *
2908 * We stop each event and update the event value in event->count.
2909 *
2910 * This does not protect us against NMI, but disable()
2911 * sets the disabled bit in the control field of event _before_
2912 * accessing the event control register. If a NMI hits, then it will
2913 * not restart the event.
2914 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002915void __perf_event_task_sched_out(struct task_struct *task,
2916 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002917{
2918 int ctxn;
2919
Yan, Zhengba532502014-11-04 21:55:58 -05002920 if (__this_cpu_read(perf_sched_cb_usages))
2921 perf_pmu_sched_task(task, next, false);
2922
Adrian Hunter45ac1402015-07-21 12:44:02 +03002923 if (atomic_read(&nr_switch_events))
2924 perf_event_switch(task, next, false);
2925
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002926 for_each_task_context_nr(ctxn)
2927 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002928
2929 /*
2930 * if cgroup events exist on this CPU, then we need
2931 * to check if we have to switch out PMU state.
2932 * cgroup event are system-wide mode only
2933 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002934 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002935 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002936}
2937
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002938/*
2939 * Called with IRQs disabled
2940 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002941static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2942 enum event_type_t event_type)
2943{
2944 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002945}
2946
2947static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002948ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002949 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002950{
2951 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002952
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002953 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2954 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002955 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002956 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002957 continue;
2958
Stephane Eraniane5d13672011-02-14 11:20:01 +02002959 /* may need to reset tstamp_enabled */
2960 if (is_cgroup_event(event))
2961 perf_cgroup_mark_enabled(event, ctx);
2962
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002963 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002964 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002965
2966 /*
2967 * If this pinned group hasn't been scheduled,
2968 * put it in error state.
2969 */
2970 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2971 update_group_times(event);
2972 event->state = PERF_EVENT_STATE_ERROR;
2973 }
2974 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002975}
2976
2977static void
2978ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002979 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002980{
2981 struct perf_event *event;
2982 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002983
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002984 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2985 /* Ignore events in OFF or ERROR state */
2986 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002987 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002988 /*
2989 * Listen to the 'cpu' scheduling filter constraint
2990 * of events:
2991 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002992 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002993 continue;
2994
Stephane Eraniane5d13672011-02-14 11:20:01 +02002995 /* may need to reset tstamp_enabled */
2996 if (is_cgroup_event(event))
2997 perf_cgroup_mark_enabled(event, ctx);
2998
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002999 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003000 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003001 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003002 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003004}
3005
3006static void
3007ctx_sched_in(struct perf_event_context *ctx,
3008 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003009 enum event_type_t event_type,
3010 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003011{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003012 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003013 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003014
Peter Zijlstrac994d612016-01-08 09:20:23 +01003015 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003016
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003017 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003018 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003019
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003020 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003021 if (ctx->task) {
3022 if (!is_active)
3023 cpuctx->task_ctx = ctx;
3024 else
3025 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3026 }
3027
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003028 is_active ^= ctx->is_active; /* changed bits */
3029
3030 if (is_active & EVENT_TIME) {
3031 /* start ctx time */
3032 now = perf_clock();
3033 ctx->timestamp = now;
3034 perf_cgroup_set_timestamp(task, ctx);
3035 }
3036
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003037 /*
3038 * First go through the list and put on any pinned groups
3039 * in order to give them the best chance of going on.
3040 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003041 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003042 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003043
3044 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003045 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003046 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003047}
3048
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003049static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003050 enum event_type_t event_type,
3051 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003052{
3053 struct perf_event_context *ctx = &cpuctx->ctx;
3054
Stephane Eraniane5d13672011-02-14 11:20:01 +02003055 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003056}
3057
Stephane Eraniane5d13672011-02-14 11:20:01 +02003058static void perf_event_context_sched_in(struct perf_event_context *ctx,
3059 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003060{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003061 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003063 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003064 if (cpuctx->task_ctx == ctx)
3065 return;
3066
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003067 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003068 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003069 /*
3070 * We want to keep the following priority order:
3071 * cpu pinned (that don't need to move), task pinned,
3072 * cpu flexible, task flexible.
3073 */
3074 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003075 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003076 perf_pmu_enable(ctx->pmu);
3077 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003078}
3079
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003080/*
3081 * Called from scheduler to add the events of the current task
3082 * with interrupts disabled.
3083 *
3084 * We restore the event value and then enable it.
3085 *
3086 * This does not protect us against NMI, but enable()
3087 * sets the enabled bit in the control field of event _before_
3088 * accessing the event control register. If a NMI hits, then it will
3089 * keep the event running.
3090 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003091void __perf_event_task_sched_in(struct task_struct *prev,
3092 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003093{
3094 struct perf_event_context *ctx;
3095 int ctxn;
3096
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003097 /*
3098 * If cgroup events exist on this CPU, then we need to check if we have
3099 * to switch in PMU state; cgroup event are system-wide mode only.
3100 *
3101 * Since cgroup events are CPU events, we must schedule these in before
3102 * we schedule in the task events.
3103 */
3104 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3105 perf_cgroup_sched_in(prev, task);
3106
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003107 for_each_task_context_nr(ctxn) {
3108 ctx = task->perf_event_ctxp[ctxn];
3109 if (likely(!ctx))
3110 continue;
3111
Stephane Eraniane5d13672011-02-14 11:20:01 +02003112 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003113 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003114
Adrian Hunter45ac1402015-07-21 12:44:02 +03003115 if (atomic_read(&nr_switch_events))
3116 perf_event_switch(task, prev, true);
3117
Yan, Zhengba532502014-11-04 21:55:58 -05003118 if (__this_cpu_read(perf_sched_cb_usages))
3119 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003120}
3121
Peter Zijlstraabd50712010-01-26 18:50:16 +01003122static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3123{
3124 u64 frequency = event->attr.sample_freq;
3125 u64 sec = NSEC_PER_SEC;
3126 u64 divisor, dividend;
3127
3128 int count_fls, nsec_fls, frequency_fls, sec_fls;
3129
3130 count_fls = fls64(count);
3131 nsec_fls = fls64(nsec);
3132 frequency_fls = fls64(frequency);
3133 sec_fls = 30;
3134
3135 /*
3136 * We got @count in @nsec, with a target of sample_freq HZ
3137 * the target period becomes:
3138 *
3139 * @count * 10^9
3140 * period = -------------------
3141 * @nsec * sample_freq
3142 *
3143 */
3144
3145 /*
3146 * Reduce accuracy by one bit such that @a and @b converge
3147 * to a similar magnitude.
3148 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003149#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003150do { \
3151 if (a##_fls > b##_fls) { \
3152 a >>= 1; \
3153 a##_fls--; \
3154 } else { \
3155 b >>= 1; \
3156 b##_fls--; \
3157 } \
3158} while (0)
3159
3160 /*
3161 * Reduce accuracy until either term fits in a u64, then proceed with
3162 * the other, so that finally we can do a u64/u64 division.
3163 */
3164 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3165 REDUCE_FLS(nsec, frequency);
3166 REDUCE_FLS(sec, count);
3167 }
3168
3169 if (count_fls + sec_fls > 64) {
3170 divisor = nsec * frequency;
3171
3172 while (count_fls + sec_fls > 64) {
3173 REDUCE_FLS(count, sec);
3174 divisor >>= 1;
3175 }
3176
3177 dividend = count * sec;
3178 } else {
3179 dividend = count * sec;
3180
3181 while (nsec_fls + frequency_fls > 64) {
3182 REDUCE_FLS(nsec, frequency);
3183 dividend >>= 1;
3184 }
3185
3186 divisor = nsec * frequency;
3187 }
3188
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003189 if (!divisor)
3190 return dividend;
3191
Peter Zijlstraabd50712010-01-26 18:50:16 +01003192 return div64_u64(dividend, divisor);
3193}
3194
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003195static DEFINE_PER_CPU(int, perf_throttled_count);
3196static DEFINE_PER_CPU(u64, perf_throttled_seq);
3197
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003198static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003199{
3200 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003201 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003202 s64 delta;
3203
Peter Zijlstraabd50712010-01-26 18:50:16 +01003204 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003205
3206 delta = (s64)(period - hwc->sample_period);
3207 delta = (delta + 7) / 8; /* low pass filter */
3208
3209 sample_period = hwc->sample_period + delta;
3210
3211 if (!sample_period)
3212 sample_period = 1;
3213
3214 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003215
Peter Zijlstrae7850592010-05-21 14:43:08 +02003216 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003217 if (disable)
3218 event->pmu->stop(event, PERF_EF_UPDATE);
3219
Peter Zijlstrae7850592010-05-21 14:43:08 +02003220 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003221
3222 if (disable)
3223 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003224 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003225}
3226
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003227/*
3228 * combine freq adjustment with unthrottling to avoid two passes over the
3229 * events. At the same time, make sure, having freq events does not change
3230 * the rate of unthrottling as that would introduce bias.
3231 */
3232static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3233 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003234{
3235 struct perf_event *event;
3236 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003237 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003238 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003239
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003240 /*
3241 * only need to iterate over all events iff:
3242 * - context have events in frequency mode (needs freq adjust)
3243 * - there are events to unthrottle on this cpu
3244 */
3245 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003246 return;
3247
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003248 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003249 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003250
Paul Mackerras03541f82009-10-14 16:58:03 +11003251 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003252 if (event->state != PERF_EVENT_STATE_ACTIVE)
3253 continue;
3254
Stephane Eranian5632ab12011-01-03 18:20:01 +02003255 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003256 continue;
3257
Alexander Shishkin44377272013-12-16 14:17:36 +02003258 perf_pmu_disable(event->pmu);
3259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003260 hwc = &event->hw;
3261
Jiri Olsaae23bff2013-08-24 16:45:54 +02003262 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003263 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003264 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003265 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003266 }
3267
3268 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003269 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003270
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003271 /*
3272 * stop the event and update event->count
3273 */
3274 event->pmu->stop(event, PERF_EF_UPDATE);
3275
Peter Zijlstrae7850592010-05-21 14:43:08 +02003276 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003277 delta = now - hwc->freq_count_stamp;
3278 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003279
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003280 /*
3281 * restart the event
3282 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003283 * we have stopped the event so tell that
3284 * to perf_adjust_period() to avoid stopping it
3285 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003286 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003287 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003288 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003289
3290 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003291 next:
3292 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003294
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003295 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003296 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003297}
3298
3299/*
3300 * Round-robin a context's events:
3301 */
3302static void rotate_ctx(struct perf_event_context *ctx)
3303{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003304 /*
3305 * Rotate the first entry last of non-pinned groups. Rotation might be
3306 * disabled by the inheritance code.
3307 */
3308 if (!ctx->rotate_disable)
3309 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310}
3311
Stephane Eranian9e630202013-04-03 14:21:33 +02003312static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003313{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003314 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003315 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003317 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003318 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3319 rotate = 1;
3320 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003321
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003322 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003323 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003324 if (ctx->nr_events != ctx->nr_active)
3325 rotate = 1;
3326 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003328 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003329 goto done;
3330
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003331 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003332 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003333
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003334 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3335 if (ctx)
3336 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003337
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003338 rotate_ctx(&cpuctx->ctx);
3339 if (ctx)
3340 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003341
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003342 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003343
3344 perf_pmu_enable(cpuctx->ctx.pmu);
3345 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003346done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003347
3348 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003349}
3350
3351void perf_event_task_tick(void)
3352{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003353 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3354 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003355 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003356
3357 WARN_ON(!irqs_disabled());
3358
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003359 __this_cpu_inc(perf_throttled_seq);
3360 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003361 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003362
Mark Rutland2fde4f92015-01-07 15:01:54 +00003363 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003364 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365}
3366
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003367static int event_enable_on_exec(struct perf_event *event,
3368 struct perf_event_context *ctx)
3369{
3370 if (!event->attr.enable_on_exec)
3371 return 0;
3372
3373 event->attr.enable_on_exec = 0;
3374 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3375 return 0;
3376
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003377 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003378
3379 return 1;
3380}
3381
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003382/*
3383 * Enable all of a task's events that have been marked enable-on-exec.
3384 * This expects task == current.
3385 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003386static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003388 struct perf_event_context *ctx, *clone_ctx = NULL;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003389 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003390 struct perf_event *event;
3391 unsigned long flags;
3392 int enabled = 0;
3393
3394 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003395 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003396 if (!ctx || !ctx->nr_events)
3397 goto out;
3398
Peter Zijlstra3e349502016-01-08 10:01:18 +01003399 cpuctx = __get_cpu_context(ctx);
3400 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003401 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003402 list_for_each_entry(event, &ctx->event_list, event_entry)
3403 enabled |= event_enable_on_exec(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003404
3405 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003406 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003408 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003409 clone_ctx = unclone_ctx(ctx);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003410 ctx_resched(cpuctx, ctx);
3411 }
3412 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003413
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003414out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003415 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003416
3417 if (clone_ctx)
3418 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003419}
3420
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003421struct perf_read_data {
3422 struct perf_event *event;
3423 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003424 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003425};
3426
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003427static int find_cpu_to_read(struct perf_event *event, int local_cpu)
3428{
3429 int event_cpu = event->oncpu;
3430 u16 local_pkg, event_pkg;
3431
3432 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
3433 event_pkg = topology_physical_package_id(event_cpu);
3434 local_pkg = topology_physical_package_id(local_cpu);
3435
3436 if (event_pkg == local_pkg)
3437 return local_cpu;
3438 }
3439
3440 return event_cpu;
3441}
3442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003443/*
3444 * Cross CPU call to read the hardware event
3445 */
3446static void __perf_event_read(void *info)
3447{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003448 struct perf_read_data *data = info;
3449 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003450 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003451 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003452 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003453
3454 /*
3455 * If this is a task context, we need to check whether it is
3456 * the current task context of this cpu. If not it has been
3457 * scheduled out before the smp call arrived. In that case
3458 * event->count would have been updated to a recent sample
3459 * when the event was scheduled out.
3460 */
3461 if (ctx->task && cpuctx->task_ctx != ctx)
3462 return;
3463
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003464 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003465 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003466 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003467 update_cgrp_time_from_event(event);
3468 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003469
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003470 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003471 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003472 goto unlock;
3473
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003474 if (!data->group) {
3475 pmu->read(event);
3476 data->ret = 0;
3477 goto unlock;
3478 }
3479
3480 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3481
3482 pmu->read(event);
3483
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003484 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3485 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003486 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3487 /*
3488 * Use sibling's PMU rather than @event's since
3489 * sibling could be on different (eg: software) PMU.
3490 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003491 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003492 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003493 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003494
3495 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003496
3497unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003498 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003499}
3500
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003501static inline u64 perf_event_count(struct perf_event *event)
3502{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003503 if (event->pmu->count)
3504 return event->pmu->count(event);
3505
3506 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003507}
3508
Kaixu Xiaffe86902015-08-06 07:02:32 +00003509/*
3510 * NMI-safe method to read a local event, that is an event that
3511 * is:
3512 * - either for the current task, or for this CPU
3513 * - does not have inherit set, for inherited task events
3514 * will not be local and we cannot read them atomically
3515 * - must not have a pmu::count method
3516 */
3517u64 perf_event_read_local(struct perf_event *event)
3518{
3519 unsigned long flags;
3520 u64 val;
3521
3522 /*
3523 * Disabling interrupts avoids all counter scheduling (context
3524 * switches, timer based rotation and IPIs).
3525 */
3526 local_irq_save(flags);
3527
3528 /* If this is a per-task event, it must be for current */
3529 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3530 event->hw.target != current);
3531
3532 /* If this is a per-CPU event, it must be for this CPU */
3533 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3534 event->cpu != smp_processor_id());
3535
3536 /*
3537 * It must not be an event with inherit set, we cannot read
3538 * all child counters from atomic context.
3539 */
3540 WARN_ON_ONCE(event->attr.inherit);
3541
3542 /*
3543 * It must not have a pmu::count method, those are not
3544 * NMI safe.
3545 */
3546 WARN_ON_ONCE(event->pmu->count);
3547
3548 /*
3549 * If the event is currently on this CPU, its either a per-task event,
3550 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3551 * oncpu == -1).
3552 */
3553 if (event->oncpu == smp_processor_id())
3554 event->pmu->read(event);
3555
3556 val = local64_read(&event->count);
3557 local_irq_restore(flags);
3558
3559 return val;
3560}
3561
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003562static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003563{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003564 int ret = 0, cpu_to_read, local_cpu;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003566 /*
3567 * If event is enabled and currently active on a CPU, update the
3568 * value in the event structure:
3569 */
3570 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003571 struct perf_read_data data = {
3572 .event = event,
3573 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003574 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003575 };
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003576
3577 local_cpu = get_cpu();
3578 cpu_to_read = find_cpu_to_read(event, local_cpu);
3579 put_cpu();
3580
Peter Zijlstra58763142016-08-30 10:15:03 +02003581 /*
3582 * Purposely ignore the smp_call_function_single() return
3583 * value.
3584 *
3585 * If event->oncpu isn't a valid CPU it means the event got
3586 * scheduled out and that will have updated the event count.
3587 *
3588 * Therefore, either way, we'll have an up-to-date event count
3589 * after this.
3590 */
Ingo Molnar2cc53842016-09-05 12:09:59 +02003591 (void)smp_call_function_single(cpu_to_read, __perf_event_read, &data, 1);
Peter Zijlstra58763142016-08-30 10:15:03 +02003592 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003593 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003594 struct perf_event_context *ctx = event->ctx;
3595 unsigned long flags;
3596
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003597 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003598 /*
3599 * may read while context is not active
3600 * (e.g., thread is blocked), in that case
3601 * we cannot update context time
3602 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003603 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003604 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003605 update_cgrp_time_from_event(event);
3606 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003607 if (group)
3608 update_group_times(event);
3609 else
3610 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003611 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003612 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003613
3614 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003615}
3616
3617/*
3618 * Initialize the perf_event context in a task_struct:
3619 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003620static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003621{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003622 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003623 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003624 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003625 INIT_LIST_HEAD(&ctx->pinned_groups);
3626 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003627 INIT_LIST_HEAD(&ctx->event_list);
3628 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003629}
3630
Peter Zijlstraeb184472010-09-07 15:55:13 +02003631static struct perf_event_context *
3632alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003633{
3634 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003635
3636 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3637 if (!ctx)
3638 return NULL;
3639
3640 __perf_event_init_context(ctx);
3641 if (task) {
3642 ctx->task = task;
3643 get_task_struct(task);
3644 }
3645 ctx->pmu = pmu;
3646
3647 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648}
3649
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003650static struct task_struct *
3651find_lively_task_by_vpid(pid_t vpid)
3652{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003653 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003654
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003655 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003656 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003657 task = current;
3658 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003659 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003660 if (task)
3661 get_task_struct(task);
3662 rcu_read_unlock();
3663
3664 if (!task)
3665 return ERR_PTR(-ESRCH);
3666
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003667 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003668}
3669
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003670/*
3671 * Returns a matching context with refcount and pincount.
3672 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003673static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003674find_get_context(struct pmu *pmu, struct task_struct *task,
3675 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003676{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003677 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003678 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003679 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003680 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003681 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003682 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003683
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003684 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003685 /* Must be root to operate on a CPU event: */
3686 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3687 return ERR_PTR(-EACCES);
3688
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003689 /*
3690 * We could be clever and allow to attach a event to an
3691 * offline CPU and activate it when the CPU comes up, but
3692 * that's for later.
3693 */
3694 if (!cpu_online(cpu))
3695 return ERR_PTR(-ENODEV);
3696
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003697 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003698 ctx = &cpuctx->ctx;
3699 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003700 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003701
3702 return ctx;
3703 }
3704
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003705 err = -EINVAL;
3706 ctxn = pmu->task_ctx_nr;
3707 if (ctxn < 0)
3708 goto errout;
3709
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003710 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3711 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3712 if (!task_ctx_data) {
3713 err = -ENOMEM;
3714 goto errout;
3715 }
3716 }
3717
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003718retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003719 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003720 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003721 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003722 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003723
3724 if (task_ctx_data && !ctx->task_ctx_data) {
3725 ctx->task_ctx_data = task_ctx_data;
3726 task_ctx_data = NULL;
3727 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003728 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003729
3730 if (clone_ctx)
3731 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003732 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003733 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003734 err = -ENOMEM;
3735 if (!ctx)
3736 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003737
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003738 if (task_ctx_data) {
3739 ctx->task_ctx_data = task_ctx_data;
3740 task_ctx_data = NULL;
3741 }
3742
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003743 err = 0;
3744 mutex_lock(&task->perf_event_mutex);
3745 /*
3746 * If it has already passed perf_event_exit_task().
3747 * we must see PF_EXITING, it takes this mutex too.
3748 */
3749 if (task->flags & PF_EXITING)
3750 err = -ESRCH;
3751 else if (task->perf_event_ctxp[ctxn])
3752 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003753 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003754 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003755 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003756 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003757 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003758 mutex_unlock(&task->perf_event_mutex);
3759
3760 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003761 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003762
3763 if (err == -EAGAIN)
3764 goto retry;
3765 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003766 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003767 }
3768
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003769 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003770 return ctx;
3771
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003772errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003773 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774 return ERR_PTR(err);
3775}
3776
Li Zefan6fb29152009-10-15 11:21:42 +08003777static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003778static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003779
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003780static void free_event_rcu(struct rcu_head *head)
3781{
3782 struct perf_event *event;
3783
3784 event = container_of(head, struct perf_event, rcu_head);
3785 if (event->ns)
3786 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003787 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003788 kfree(event);
3789}
3790
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003791static void ring_buffer_attach(struct perf_event *event,
3792 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003793
Kan Liangf2fb6be2016-03-23 11:24:37 -07003794static void detach_sb_event(struct perf_event *event)
3795{
3796 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3797
3798 raw_spin_lock(&pel->lock);
3799 list_del_rcu(&event->sb_list);
3800 raw_spin_unlock(&pel->lock);
3801}
3802
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003803static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003804{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003805 struct perf_event_attr *attr = &event->attr;
3806
Kan Liangf2fb6be2016-03-23 11:24:37 -07003807 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003808 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003809
3810 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003811 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003812
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003813 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3814 attr->comm || attr->comm_exec ||
3815 attr->task ||
3816 attr->context_switch)
3817 return true;
3818 return false;
3819}
3820
3821static void unaccount_pmu_sb_event(struct perf_event *event)
3822{
3823 if (is_sb_event(event))
3824 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003825}
3826
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003827static void unaccount_event_cpu(struct perf_event *event, int cpu)
3828{
3829 if (event->parent)
3830 return;
3831
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003832 if (is_cgroup_event(event))
3833 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3834}
3835
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003836#ifdef CONFIG_NO_HZ_FULL
3837static DEFINE_SPINLOCK(nr_freq_lock);
3838#endif
3839
3840static void unaccount_freq_event_nohz(void)
3841{
3842#ifdef CONFIG_NO_HZ_FULL
3843 spin_lock(&nr_freq_lock);
3844 if (atomic_dec_and_test(&nr_freq_events))
3845 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3846 spin_unlock(&nr_freq_lock);
3847#endif
3848}
3849
3850static void unaccount_freq_event(void)
3851{
3852 if (tick_nohz_full_enabled())
3853 unaccount_freq_event_nohz();
3854 else
3855 atomic_dec(&nr_freq_events);
3856}
3857
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003858static void unaccount_event(struct perf_event *event)
3859{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003860 bool dec = false;
3861
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003862 if (event->parent)
3863 return;
3864
3865 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003866 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003867 if (event->attr.mmap || event->attr.mmap_data)
3868 atomic_dec(&nr_mmap_events);
3869 if (event->attr.comm)
3870 atomic_dec(&nr_comm_events);
3871 if (event->attr.task)
3872 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003873 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003874 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003875 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003876 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003877 atomic_dec(&nr_switch_events);
3878 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003879 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003880 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003881 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003882 dec = true;
3883
Peter Zijlstra9107c892016-02-24 18:45:45 +01003884 if (dec) {
3885 if (!atomic_add_unless(&perf_sched_count, -1, 1))
3886 schedule_delayed_work(&perf_sched_work, HZ);
3887 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003888
3889 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003890
3891 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003892}
3893
Peter Zijlstra9107c892016-02-24 18:45:45 +01003894static void perf_sched_delayed(struct work_struct *work)
3895{
3896 mutex_lock(&perf_sched_mutex);
3897 if (atomic_dec_and_test(&perf_sched_count))
3898 static_branch_disable(&perf_sched_events);
3899 mutex_unlock(&perf_sched_mutex);
3900}
3901
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003902/*
3903 * The following implement mutual exclusion of events on "exclusive" pmus
3904 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3905 * at a time, so we disallow creating events that might conflict, namely:
3906 *
3907 * 1) cpu-wide events in the presence of per-task events,
3908 * 2) per-task events in the presence of cpu-wide events,
3909 * 3) two matching events on the same context.
3910 *
3911 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003912 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003913 */
3914static int exclusive_event_init(struct perf_event *event)
3915{
3916 struct pmu *pmu = event->pmu;
3917
3918 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3919 return 0;
3920
3921 /*
3922 * Prevent co-existence of per-task and cpu-wide events on the
3923 * same exclusive pmu.
3924 *
3925 * Negative pmu::exclusive_cnt means there are cpu-wide
3926 * events on this "exclusive" pmu, positive means there are
3927 * per-task events.
3928 *
3929 * Since this is called in perf_event_alloc() path, event::ctx
3930 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3931 * to mean "per-task event", because unlike other attach states it
3932 * never gets cleared.
3933 */
3934 if (event->attach_state & PERF_ATTACH_TASK) {
3935 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3936 return -EBUSY;
3937 } else {
3938 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3939 return -EBUSY;
3940 }
3941
3942 return 0;
3943}
3944
3945static void exclusive_event_destroy(struct perf_event *event)
3946{
3947 struct pmu *pmu = event->pmu;
3948
3949 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3950 return;
3951
3952 /* see comment in exclusive_event_init() */
3953 if (event->attach_state & PERF_ATTACH_TASK)
3954 atomic_dec(&pmu->exclusive_cnt);
3955 else
3956 atomic_inc(&pmu->exclusive_cnt);
3957}
3958
3959static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3960{
3961 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3962 (e1->cpu == e2->cpu ||
3963 e1->cpu == -1 ||
3964 e2->cpu == -1))
3965 return true;
3966 return false;
3967}
3968
3969/* Called under the same ctx::mutex as perf_install_in_context() */
3970static bool exclusive_event_installable(struct perf_event *event,
3971 struct perf_event_context *ctx)
3972{
3973 struct perf_event *iter_event;
3974 struct pmu *pmu = event->pmu;
3975
3976 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3977 return true;
3978
3979 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3980 if (exclusive_event_match(iter_event, event))
3981 return false;
3982 }
3983
3984 return true;
3985}
3986
Alexander Shishkin375637b2016-04-27 18:44:46 +03003987static void perf_addr_filters_splice(struct perf_event *event,
3988 struct list_head *head);
3989
Peter Zijlstra683ede42014-05-05 12:11:24 +02003990static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003991{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003992 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003993
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003994 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003995
Frederic Weisbecker76369132011-05-19 19:55:04 +02003996 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003997 /*
3998 * Can happen when we close an event with re-directed output.
3999 *
4000 * Since we have a 0 refcount, perf_mmap_close() will skip
4001 * over us; possibly making our ring_buffer_put() the last.
4002 */
4003 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004004 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004005 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004006 }
4007
Stephane Eraniane5d13672011-02-14 11:20:01 +02004008 if (is_cgroup_event(event))
4009 perf_detach_cgroup(event);
4010
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004011 if (!event->parent) {
4012 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4013 put_callchain_buffers();
4014 }
4015
4016 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004017 perf_addr_filters_splice(event, NULL);
4018 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004019
4020 if (event->destroy)
4021 event->destroy(event);
4022
4023 if (event->ctx)
4024 put_ctx(event->ctx);
4025
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004026 exclusive_event_destroy(event);
4027 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004028
4029 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004030}
4031
Peter Zijlstra683ede42014-05-05 12:11:24 +02004032/*
4033 * Used to free events which have a known refcount of 1, such as in error paths
4034 * where the event isn't exposed yet and inherited events.
4035 */
4036static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004037{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004038 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4039 "unexpected event refcount: %ld; ptr=%p\n",
4040 atomic_long_read(&event->refcount), event)) {
4041 /* leak to avoid use-after-free */
4042 return;
4043 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004044
Peter Zijlstra683ede42014-05-05 12:11:24 +02004045 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004046}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004047
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004048/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004049 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004050 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004051static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004052{
Peter Zijlstra88821352010-11-09 19:01:43 +01004053 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004054
Peter Zijlstra88821352010-11-09 19:01:43 +01004055 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004056 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004057 * Matches the smp_store_release() in perf_event_exit_task(). If we
4058 * observe !owner it means the list deletion is complete and we can
4059 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004060 * owner->perf_event_mutex.
4061 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004062 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004063 if (owner) {
4064 /*
4065 * Since delayed_put_task_struct() also drops the last
4066 * task reference we can safely take a new reference
4067 * while holding the rcu_read_lock().
4068 */
4069 get_task_struct(owner);
4070 }
4071 rcu_read_unlock();
4072
4073 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004074 /*
4075 * If we're here through perf_event_exit_task() we're already
4076 * holding ctx->mutex which would be an inversion wrt. the
4077 * normal lock order.
4078 *
4079 * However we can safely take this lock because its the child
4080 * ctx->mutex.
4081 */
4082 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4083
Peter Zijlstra88821352010-11-09 19:01:43 +01004084 /*
4085 * We have to re-check the event->owner field, if it is cleared
4086 * we raced with perf_event_exit_task(), acquiring the mutex
4087 * ensured they're done, and we can proceed with freeing the
4088 * event.
4089 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004090 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004091 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004092 smp_store_release(&event->owner, NULL);
4093 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004094 mutex_unlock(&owner->perf_event_mutex);
4095 put_task_struct(owner);
4096 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004097}
4098
Jiri Olsaf8697762014-08-01 14:33:01 +02004099static void put_event(struct perf_event *event)
4100{
Jiri Olsaf8697762014-08-01 14:33:01 +02004101 if (!atomic_long_dec_and_test(&event->refcount))
4102 return;
4103
Peter Zijlstra683ede42014-05-05 12:11:24 +02004104 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004105}
4106
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004107/*
4108 * Kill an event dead; while event:refcount will preserve the event
4109 * object, it will not preserve its functionality. Once the last 'user'
4110 * gives up the object, we'll destroy the thing.
4111 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004112int perf_event_release_kernel(struct perf_event *event)
4113{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004114 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004115 struct perf_event *child, *tmp;
4116
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004117 /*
4118 * If we got here through err_file: fput(event_file); we will not have
4119 * attached to a context yet.
4120 */
4121 if (!ctx) {
4122 WARN_ON_ONCE(event->attach_state &
4123 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4124 goto no_ctx;
4125 }
4126
Peter Zijlstra88821352010-11-09 19:01:43 +01004127 if (!is_kernel_event(event))
4128 perf_remove_from_owner(event);
4129
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004130 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004131 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004132 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004133
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004134 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004135 /*
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004136 * Mark this even as STATE_DEAD, there is no external reference to it
4137 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004138 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004139 * Anybody acquiring event->child_mutex after the below loop _must_
4140 * also see this, most importantly inherit_event() which will avoid
4141 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004142 *
4143 * Thus this guarantees that we will in fact observe and kill _ALL_
4144 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004145 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004146 event->state = PERF_EVENT_STATE_DEAD;
4147 raw_spin_unlock_irq(&ctx->lock);
4148
4149 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004150
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004151again:
4152 mutex_lock(&event->child_mutex);
4153 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004154
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004155 /*
4156 * Cannot change, child events are not migrated, see the
4157 * comment with perf_event_ctx_lock_nested().
4158 */
4159 ctx = lockless_dereference(child->ctx);
4160 /*
4161 * Since child_mutex nests inside ctx::mutex, we must jump
4162 * through hoops. We start by grabbing a reference on the ctx.
4163 *
4164 * Since the event cannot get freed while we hold the
4165 * child_mutex, the context must also exist and have a !0
4166 * reference count.
4167 */
4168 get_ctx(ctx);
4169
4170 /*
4171 * Now that we have a ctx ref, we can drop child_mutex, and
4172 * acquire ctx::mutex without fear of it going away. Then we
4173 * can re-acquire child_mutex.
4174 */
4175 mutex_unlock(&event->child_mutex);
4176 mutex_lock(&ctx->mutex);
4177 mutex_lock(&event->child_mutex);
4178
4179 /*
4180 * Now that we hold ctx::mutex and child_mutex, revalidate our
4181 * state, if child is still the first entry, it didn't get freed
4182 * and we can continue doing so.
4183 */
4184 tmp = list_first_entry_or_null(&event->child_list,
4185 struct perf_event, child_list);
4186 if (tmp == child) {
4187 perf_remove_from_context(child, DETACH_GROUP);
4188 list_del(&child->child_list);
4189 free_event(child);
4190 /*
4191 * This matches the refcount bump in inherit_event();
4192 * this can't be the last reference.
4193 */
4194 put_event(event);
4195 }
4196
4197 mutex_unlock(&event->child_mutex);
4198 mutex_unlock(&ctx->mutex);
4199 put_ctx(ctx);
4200 goto again;
4201 }
4202 mutex_unlock(&event->child_mutex);
4203
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004204no_ctx:
4205 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004206 return 0;
4207}
4208EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4209
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004210/*
4211 * Called when the last reference to the file is gone.
4212 */
Al Viroa6fa9412012-08-20 14:59:25 +01004213static int perf_release(struct inode *inode, struct file *file)
4214{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004215 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004216 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004217}
4218
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004219u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004220{
4221 struct perf_event *child;
4222 u64 total = 0;
4223
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004224 *enabled = 0;
4225 *running = 0;
4226
Peter Zijlstra6f105812009-11-20 22:19:56 +01004227 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004228
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004229 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004230 total += perf_event_count(event);
4231
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004232 *enabled += event->total_time_enabled +
4233 atomic64_read(&event->child_total_time_enabled);
4234 *running += event->total_time_running +
4235 atomic64_read(&event->child_total_time_running);
4236
4237 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004238 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004239 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004240 *enabled += child->total_time_enabled;
4241 *running += child->total_time_running;
4242 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004243 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004244
4245 return total;
4246}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004247EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004248
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004249static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004250 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004251{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004252 struct perf_event *sub;
4253 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004254 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004255
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004256 ret = perf_event_read(leader, true);
4257 if (ret)
4258 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004259
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004260 /*
4261 * Since we co-schedule groups, {enabled,running} times of siblings
4262 * will be identical to those of the leader, so we only publish one
4263 * set.
4264 */
4265 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4266 values[n++] += leader->total_time_enabled +
4267 atomic64_read(&leader->child_total_time_enabled);
4268 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004270 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4271 values[n++] += leader->total_time_running +
4272 atomic64_read(&leader->child_total_time_running);
4273 }
4274
4275 /*
4276 * Write {count,id} tuples for every sibling.
4277 */
4278 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004279 if (read_format & PERF_FORMAT_ID)
4280 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004281
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004282 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004283 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004284 if (read_format & PERF_FORMAT_ID)
4285 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004286 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004287
4288 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004289}
4290
4291static int perf_read_group(struct perf_event *event,
4292 u64 read_format, char __user *buf)
4293{
4294 struct perf_event *leader = event->group_leader, *child;
4295 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004296 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004297 u64 *values;
4298
4299 lockdep_assert_held(&ctx->mutex);
4300
4301 values = kzalloc(event->read_size, GFP_KERNEL);
4302 if (!values)
4303 return -ENOMEM;
4304
4305 values[0] = 1 + leader->nr_siblings;
4306
4307 /*
4308 * By locking the child_mutex of the leader we effectively
4309 * lock the child list of all siblings.. XXX explain how.
4310 */
4311 mutex_lock(&leader->child_mutex);
4312
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004313 ret = __perf_read_group_add(leader, read_format, values);
4314 if (ret)
4315 goto unlock;
4316
4317 list_for_each_entry(child, &leader->child_list, child_list) {
4318 ret = __perf_read_group_add(child, read_format, values);
4319 if (ret)
4320 goto unlock;
4321 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004322
4323 mutex_unlock(&leader->child_mutex);
4324
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004325 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004326 if (copy_to_user(buf, values, event->read_size))
4327 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004328 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004329
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004330unlock:
4331 mutex_unlock(&leader->child_mutex);
4332out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004333 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004334 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004335}
4336
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004337static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004338 u64 read_format, char __user *buf)
4339{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004340 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004341 u64 values[4];
4342 int n = 0;
4343
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004344 values[n++] = perf_event_read_value(event, &enabled, &running);
4345 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4346 values[n++] = enabled;
4347 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4348 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004349 if (read_format & PERF_FORMAT_ID)
4350 values[n++] = primary_event_id(event);
4351
4352 if (copy_to_user(buf, values, n * sizeof(u64)))
4353 return -EFAULT;
4354
4355 return n * sizeof(u64);
4356}
4357
Jiri Olsadc633982014-09-12 13:18:26 +02004358static bool is_event_hup(struct perf_event *event)
4359{
4360 bool no_children;
4361
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004362 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004363 return false;
4364
4365 mutex_lock(&event->child_mutex);
4366 no_children = list_empty(&event->child_list);
4367 mutex_unlock(&event->child_mutex);
4368 return no_children;
4369}
4370
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004371/*
4372 * Read the performance event - simple non blocking version for now
4373 */
4374static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004375__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004376{
4377 u64 read_format = event->attr.read_format;
4378 int ret;
4379
4380 /*
4381 * Return end-of-file for a read on a event that is in
4382 * error state (i.e. because it was pinned but it couldn't be
4383 * scheduled on to the CPU at some point).
4384 */
4385 if (event->state == PERF_EVENT_STATE_ERROR)
4386 return 0;
4387
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004388 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004389 return -ENOSPC;
4390
4391 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004392 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004393 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004394 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004395 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004396
4397 return ret;
4398}
4399
4400static ssize_t
4401perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4402{
4403 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004404 struct perf_event_context *ctx;
4405 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004406
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004407 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004408 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004409 perf_event_ctx_unlock(event, ctx);
4410
4411 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004412}
4413
4414static unsigned int perf_poll(struct file *file, poll_table *wait)
4415{
4416 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004417 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004418 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004419
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004420 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004421
Jiri Olsadc633982014-09-12 13:18:26 +02004422 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004423 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004424
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004425 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004426 * Pin the event->rb by taking event->mmap_mutex; otherwise
4427 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004428 */
4429 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004430 rb = event->rb;
4431 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004432 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004433 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004434 return events;
4435}
4436
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004437static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004438{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004439 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004440 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004441 perf_event_update_userpage(event);
4442}
4443
4444/*
4445 * Holding the top-level event's child_mutex means that any
4446 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004447 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004448 * task existence requirements of perf_event_enable/disable.
4449 */
4450static void perf_event_for_each_child(struct perf_event *event,
4451 void (*func)(struct perf_event *))
4452{
4453 struct perf_event *child;
4454
4455 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004457 mutex_lock(&event->child_mutex);
4458 func(event);
4459 list_for_each_entry(child, &event->child_list, child_list)
4460 func(child);
4461 mutex_unlock(&event->child_mutex);
4462}
4463
4464static void perf_event_for_each(struct perf_event *event,
4465 void (*func)(struct perf_event *))
4466{
4467 struct perf_event_context *ctx = event->ctx;
4468 struct perf_event *sibling;
4469
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004470 lockdep_assert_held(&ctx->mutex);
4471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472 event = event->group_leader;
4473
4474 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004475 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004476 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004477}
4478
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004479static void __perf_event_period(struct perf_event *event,
4480 struct perf_cpu_context *cpuctx,
4481 struct perf_event_context *ctx,
4482 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004483{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004484 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004485 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004486
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004487 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004488 event->attr.sample_freq = value;
4489 } else {
4490 event->attr.sample_period = value;
4491 event->hw.sample_period = value;
4492 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004493
4494 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4495 if (active) {
4496 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004497 /*
4498 * We could be throttled; unthrottle now to avoid the tick
4499 * trying to unthrottle while we already re-started the event.
4500 */
4501 if (event->hw.interrupts == MAX_INTERRUPTS) {
4502 event->hw.interrupts = 0;
4503 perf_log_throttle(event, 1);
4504 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004505 event->pmu->stop(event, PERF_EF_UPDATE);
4506 }
4507
4508 local64_set(&event->hw.period_left, 0);
4509
4510 if (active) {
4511 event->pmu->start(event, PERF_EF_RELOAD);
4512 perf_pmu_enable(ctx->pmu);
4513 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004514}
4515
4516static int perf_event_period(struct perf_event *event, u64 __user *arg)
4517{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004518 u64 value;
4519
4520 if (!is_sampling_event(event))
4521 return -EINVAL;
4522
4523 if (copy_from_user(&value, arg, sizeof(value)))
4524 return -EFAULT;
4525
4526 if (!value)
4527 return -EINVAL;
4528
4529 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4530 return -EINVAL;
4531
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004532 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004533
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004534 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535}
4536
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004537static const struct file_operations perf_fops;
4538
Al Viro2903ff02012-08-28 12:52:22 -04004539static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004540{
Al Viro2903ff02012-08-28 12:52:22 -04004541 struct fd f = fdget(fd);
4542 if (!f.file)
4543 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004544
Al Viro2903ff02012-08-28 12:52:22 -04004545 if (f.file->f_op != &perf_fops) {
4546 fdput(f);
4547 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004548 }
Al Viro2903ff02012-08-28 12:52:22 -04004549 *p = f;
4550 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004551}
4552
4553static int perf_event_set_output(struct perf_event *event,
4554 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004555static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004556static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004557
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004558static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004559{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004560 void (*func)(struct perf_event *);
4561 u32 flags = arg;
4562
4563 switch (cmd) {
4564 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004565 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004566 break;
4567 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004568 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004569 break;
4570 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004571 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004572 break;
4573
4574 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004575 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004576
4577 case PERF_EVENT_IOC_PERIOD:
4578 return perf_event_period(event, (u64 __user *)arg);
4579
Jiri Olsacf4957f2012-10-24 13:37:58 +02004580 case PERF_EVENT_IOC_ID:
4581 {
4582 u64 id = primary_event_id(event);
4583
4584 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4585 return -EFAULT;
4586 return 0;
4587 }
4588
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004589 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004590 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004591 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004592 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004593 struct perf_event *output_event;
4594 struct fd output;
4595 ret = perf_fget_light(arg, &output);
4596 if (ret)
4597 return ret;
4598 output_event = output.file->private_data;
4599 ret = perf_event_set_output(event, output_event);
4600 fdput(output);
4601 } else {
4602 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004603 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004604 return ret;
4605 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004606
Li Zefan6fb29152009-10-15 11:21:42 +08004607 case PERF_EVENT_IOC_SET_FILTER:
4608 return perf_event_set_filter(event, (void __user *)arg);
4609
Alexei Starovoitov25415172015-03-25 12:49:20 -07004610 case PERF_EVENT_IOC_SET_BPF:
4611 return perf_event_set_bpf_prog(event, arg);
4612
Wang Nan86e79722016-03-28 06:41:29 +00004613 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4614 struct ring_buffer *rb;
4615
4616 rcu_read_lock();
4617 rb = rcu_dereference(event->rb);
4618 if (!rb || !rb->nr_pages) {
4619 rcu_read_unlock();
4620 return -EINVAL;
4621 }
4622 rb_toggle_paused(rb, !!arg);
4623 rcu_read_unlock();
4624 return 0;
4625 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004626 default:
4627 return -ENOTTY;
4628 }
4629
4630 if (flags & PERF_IOC_FLAG_GROUP)
4631 perf_event_for_each(event, func);
4632 else
4633 perf_event_for_each_child(event, func);
4634
4635 return 0;
4636}
4637
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004638static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4639{
4640 struct perf_event *event = file->private_data;
4641 struct perf_event_context *ctx;
4642 long ret;
4643
4644 ctx = perf_event_ctx_lock(event);
4645 ret = _perf_ioctl(event, cmd, arg);
4646 perf_event_ctx_unlock(event, ctx);
4647
4648 return ret;
4649}
4650
Pawel Mollb3f20782014-06-13 16:03:32 +01004651#ifdef CONFIG_COMPAT
4652static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4653 unsigned long arg)
4654{
4655 switch (_IOC_NR(cmd)) {
4656 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4657 case _IOC_NR(PERF_EVENT_IOC_ID):
4658 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4659 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4660 cmd &= ~IOCSIZE_MASK;
4661 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4662 }
4663 break;
4664 }
4665 return perf_ioctl(file, cmd, arg);
4666}
4667#else
4668# define perf_compat_ioctl NULL
4669#endif
4670
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004671int perf_event_task_enable(void)
4672{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004673 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004674 struct perf_event *event;
4675
4676 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004677 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4678 ctx = perf_event_ctx_lock(event);
4679 perf_event_for_each_child(event, _perf_event_enable);
4680 perf_event_ctx_unlock(event, ctx);
4681 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004682 mutex_unlock(&current->perf_event_mutex);
4683
4684 return 0;
4685}
4686
4687int perf_event_task_disable(void)
4688{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004689 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004690 struct perf_event *event;
4691
4692 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004693 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4694 ctx = perf_event_ctx_lock(event);
4695 perf_event_for_each_child(event, _perf_event_disable);
4696 perf_event_ctx_unlock(event, ctx);
4697 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004698 mutex_unlock(&current->perf_event_mutex);
4699
4700 return 0;
4701}
4702
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004703static int perf_event_index(struct perf_event *event)
4704{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004705 if (event->hw.state & PERF_HES_STOPPED)
4706 return 0;
4707
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004708 if (event->state != PERF_EVENT_STATE_ACTIVE)
4709 return 0;
4710
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004711 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004712}
4713
Eric B Munsonc4794292011-06-23 16:34:38 -04004714static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004715 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004716 u64 *enabled,
4717 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004718{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004719 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004720
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004721 *now = perf_clock();
4722 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004723 *enabled = ctx_time - event->tstamp_enabled;
4724 *running = ctx_time - event->tstamp_running;
4725}
4726
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004727static void perf_event_init_userpage(struct perf_event *event)
4728{
4729 struct perf_event_mmap_page *userpg;
4730 struct ring_buffer *rb;
4731
4732 rcu_read_lock();
4733 rb = rcu_dereference(event->rb);
4734 if (!rb)
4735 goto unlock;
4736
4737 userpg = rb->user_page;
4738
4739 /* Allow new userspace to detect that bit 0 is deprecated */
4740 userpg->cap_bit0_is_deprecated = 1;
4741 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004742 userpg->data_offset = PAGE_SIZE;
4743 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004744
4745unlock:
4746 rcu_read_unlock();
4747}
4748
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004749void __weak arch_perf_update_userpage(
4750 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004751{
4752}
4753
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004754/*
4755 * Callers need to ensure there can be no nesting of this function, otherwise
4756 * the seqlock logic goes bad. We can not serialize this because the arch
4757 * code calls this from NMI context.
4758 */
4759void perf_event_update_userpage(struct perf_event *event)
4760{
4761 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004762 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004763 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004764
4765 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004766 rb = rcu_dereference(event->rb);
4767 if (!rb)
4768 goto unlock;
4769
Eric B Munson0d641202011-06-24 12:26:26 -04004770 /*
4771 * compute total_time_enabled, total_time_running
4772 * based on snapshot values taken when the event
4773 * was last scheduled in.
4774 *
4775 * we cannot simply called update_context_time()
4776 * because of locking issue as we can be called in
4777 * NMI context
4778 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004779 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004780
Frederic Weisbecker76369132011-05-19 19:55:04 +02004781 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004782 /*
4783 * Disable preemption so as to not let the corresponding user-space
4784 * spin too long if we get preempted.
4785 */
4786 preempt_disable();
4787 ++userpg->lock;
4788 barrier();
4789 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004790 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004791 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004792 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004793
Eric B Munson0d641202011-06-24 12:26:26 -04004794 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004795 atomic64_read(&event->child_total_time_enabled);
4796
Eric B Munson0d641202011-06-24 12:26:26 -04004797 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004798 atomic64_read(&event->child_total_time_running);
4799
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004800 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004801
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004802 barrier();
4803 ++userpg->lock;
4804 preempt_enable();
4805unlock:
4806 rcu_read_unlock();
4807}
4808
Peter Zijlstra906010b2009-09-21 16:08:49 +02004809static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4810{
4811 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004812 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004813 int ret = VM_FAULT_SIGBUS;
4814
4815 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4816 if (vmf->pgoff == 0)
4817 ret = 0;
4818 return ret;
4819 }
4820
4821 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004822 rb = rcu_dereference(event->rb);
4823 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004824 goto unlock;
4825
4826 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4827 goto unlock;
4828
Frederic Weisbecker76369132011-05-19 19:55:04 +02004829 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004830 if (!vmf->page)
4831 goto unlock;
4832
4833 get_page(vmf->page);
4834 vmf->page->mapping = vma->vm_file->f_mapping;
4835 vmf->page->index = vmf->pgoff;
4836
4837 ret = 0;
4838unlock:
4839 rcu_read_unlock();
4840
4841 return ret;
4842}
4843
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004844static void ring_buffer_attach(struct perf_event *event,
4845 struct ring_buffer *rb)
4846{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004847 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004848 unsigned long flags;
4849
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004850 if (event->rb) {
4851 /*
4852 * Should be impossible, we set this when removing
4853 * event->rb_entry and wait/clear when adding event->rb_entry.
4854 */
4855 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004856
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004857 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004858 spin_lock_irqsave(&old_rb->event_lock, flags);
4859 list_del_rcu(&event->rb_entry);
4860 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004861
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004862 event->rcu_batches = get_state_synchronize_rcu();
4863 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004864 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004865
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004866 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004867 if (event->rcu_pending) {
4868 cond_synchronize_rcu(event->rcu_batches);
4869 event->rcu_pending = 0;
4870 }
4871
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004872 spin_lock_irqsave(&rb->event_lock, flags);
4873 list_add_rcu(&event->rb_entry, &rb->event_list);
4874 spin_unlock_irqrestore(&rb->event_lock, flags);
4875 }
4876
4877 rcu_assign_pointer(event->rb, rb);
4878
4879 if (old_rb) {
4880 ring_buffer_put(old_rb);
4881 /*
4882 * Since we detached before setting the new rb, so that we
4883 * could attach the new rb, we could have missed a wakeup.
4884 * Provide it now.
4885 */
4886 wake_up_all(&event->waitq);
4887 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004888}
4889
4890static void ring_buffer_wakeup(struct perf_event *event)
4891{
4892 struct ring_buffer *rb;
4893
4894 rcu_read_lock();
4895 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004896 if (rb) {
4897 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4898 wake_up_all(&event->waitq);
4899 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004900 rcu_read_unlock();
4901}
4902
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004903struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004904{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004905 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004906
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004907 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004908 rb = rcu_dereference(event->rb);
4909 if (rb) {
4910 if (!atomic_inc_not_zero(&rb->refcount))
4911 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004912 }
4913 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004914
Frederic Weisbecker76369132011-05-19 19:55:04 +02004915 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004916}
4917
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004918void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004919{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004920 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004921 return;
4922
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004923 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004924
Frederic Weisbecker76369132011-05-19 19:55:04 +02004925 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926}
4927
4928static void perf_mmap_open(struct vm_area_struct *vma)
4929{
4930 struct perf_event *event = vma->vm_file->private_data;
4931
4932 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004933 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004934
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004935 if (vma->vm_pgoff)
4936 atomic_inc(&event->rb->aux_mmap_count);
4937
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004938 if (event->pmu->event_mapped)
4939 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004940}
4941
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004942static void perf_pmu_output_stop(struct perf_event *event);
4943
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004944/*
4945 * A buffer can be mmap()ed multiple times; either directly through the same
4946 * event, or through other events by use of perf_event_set_output().
4947 *
4948 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4949 * the buffer here, where we still have a VM context. This means we need
4950 * to detach all events redirecting to us.
4951 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004952static void perf_mmap_close(struct vm_area_struct *vma)
4953{
4954 struct perf_event *event = vma->vm_file->private_data;
4955
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004956 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004957 struct user_struct *mmap_user = rb->mmap_user;
4958 int mmap_locked = rb->mmap_locked;
4959 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004960
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004961 if (event->pmu->event_unmapped)
4962 event->pmu->event_unmapped(event);
4963
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004964 /*
4965 * rb->aux_mmap_count will always drop before rb->mmap_count and
4966 * event->mmap_count, so it is ok to use event->mmap_mutex to
4967 * serialize with perf_mmap here.
4968 */
4969 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4970 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004971 /*
4972 * Stop all AUX events that are writing to this buffer,
4973 * so that we can free its AUX pages and corresponding PMU
4974 * data. Note that after rb::aux_mmap_count dropped to zero,
4975 * they won't start any more (see perf_aux_output_begin()).
4976 */
4977 perf_pmu_output_stop(event);
4978
4979 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004980 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4981 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4982
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004983 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004984 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004985 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
4986
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004987 mutex_unlock(&event->mmap_mutex);
4988 }
4989
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004990 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004991
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004992 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004993 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004994
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004995 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004996 mutex_unlock(&event->mmap_mutex);
4997
4998 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004999 if (atomic_read(&rb->mmap_count))
5000 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005001
5002 /*
5003 * No other mmap()s, detach from all other events that might redirect
5004 * into the now unreachable buffer. Somewhat complicated by the
5005 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5006 */
5007again:
5008 rcu_read_lock();
5009 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5010 if (!atomic_long_inc_not_zero(&event->refcount)) {
5011 /*
5012 * This event is en-route to free_event() which will
5013 * detach it and remove it from the list.
5014 */
5015 continue;
5016 }
5017 rcu_read_unlock();
5018
5019 mutex_lock(&event->mmap_mutex);
5020 /*
5021 * Check we didn't race with perf_event_set_output() which can
5022 * swizzle the rb from under us while we were waiting to
5023 * acquire mmap_mutex.
5024 *
5025 * If we find a different rb; ignore this event, a next
5026 * iteration will no longer find it on the list. We have to
5027 * still restart the iteration to make sure we're not now
5028 * iterating the wrong list.
5029 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005030 if (event->rb == rb)
5031 ring_buffer_attach(event, NULL);
5032
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005033 mutex_unlock(&event->mmap_mutex);
5034 put_event(event);
5035
5036 /*
5037 * Restart the iteration; either we're on the wrong list or
5038 * destroyed its integrity by doing a deletion.
5039 */
5040 goto again;
5041 }
5042 rcu_read_unlock();
5043
5044 /*
5045 * It could be there's still a few 0-ref events on the list; they'll
5046 * get cleaned up by free_event() -- they'll also still have their
5047 * ref on the rb and will free it whenever they are done with it.
5048 *
5049 * Aside from that, this buffer is 'fully' detached and unmapped,
5050 * undo the VM accounting.
5051 */
5052
5053 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5054 vma->vm_mm->pinned_vm -= mmap_locked;
5055 free_uid(mmap_user);
5056
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005057out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005058 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005059}
5060
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005061static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005062 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005063 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005064 .fault = perf_mmap_fault,
5065 .page_mkwrite = perf_mmap_fault,
5066};
5067
5068static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5069{
5070 struct perf_event *event = file->private_data;
5071 unsigned long user_locked, user_lock_limit;
5072 struct user_struct *user = current_user();
5073 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005074 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005075 unsigned long vma_size;
5076 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005077 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005078 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005079
Peter Zijlstrac7920612010-05-18 10:33:24 +02005080 /*
5081 * Don't allow mmap() of inherited per-task counters. This would
5082 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005083 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005084 */
5085 if (event->cpu == -1 && event->attr.inherit)
5086 return -EINVAL;
5087
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005088 if (!(vma->vm_flags & VM_SHARED))
5089 return -EINVAL;
5090
5091 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005092
5093 if (vma->vm_pgoff == 0) {
5094 nr_pages = (vma_size / PAGE_SIZE) - 1;
5095 } else {
5096 /*
5097 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5098 * mapped, all subsequent mappings should have the same size
5099 * and offset. Must be above the normal perf buffer.
5100 */
5101 u64 aux_offset, aux_size;
5102
5103 if (!event->rb)
5104 return -EINVAL;
5105
5106 nr_pages = vma_size / PAGE_SIZE;
5107
5108 mutex_lock(&event->mmap_mutex);
5109 ret = -EINVAL;
5110
5111 rb = event->rb;
5112 if (!rb)
5113 goto aux_unlock;
5114
5115 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
5116 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
5117
5118 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5119 goto aux_unlock;
5120
5121 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5122 goto aux_unlock;
5123
5124 /* already mapped with a different offset */
5125 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5126 goto aux_unlock;
5127
5128 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5129 goto aux_unlock;
5130
5131 /* already mapped with a different size */
5132 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5133 goto aux_unlock;
5134
5135 if (!is_power_of_2(nr_pages))
5136 goto aux_unlock;
5137
5138 if (!atomic_inc_not_zero(&rb->mmap_count))
5139 goto aux_unlock;
5140
5141 if (rb_has_aux(rb)) {
5142 atomic_inc(&rb->aux_mmap_count);
5143 ret = 0;
5144 goto unlock;
5145 }
5146
5147 atomic_set(&rb->aux_mmap_count, 1);
5148 user_extra = nr_pages;
5149
5150 goto accounting;
5151 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152
5153 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005154 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005155 * can do bitmasks instead of modulo.
5156 */
Kan Liang2ed11312015-03-02 02:14:26 -05005157 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158 return -EINVAL;
5159
5160 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5161 return -EINVAL;
5162
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005163 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005164again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005165 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005166 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005167 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005169 goto unlock;
5170 }
5171
5172 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5173 /*
5174 * Raced against perf_mmap_close() through
5175 * perf_event_set_output(). Try again, hope for better
5176 * luck.
5177 */
5178 mutex_unlock(&event->mmap_mutex);
5179 goto again;
5180 }
5181
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005182 goto unlock;
5183 }
5184
5185 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005186
5187accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5189
5190 /*
5191 * Increase the limit linearly with more CPUs:
5192 */
5193 user_lock_limit *= num_online_cpus();
5194
5195 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5196
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005197 if (user_locked > user_lock_limit)
5198 extra = user_locked - user_lock_limit;
5199
Jiri Slaby78d7d402010-03-05 13:42:54 -08005200 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005201 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005202 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005203
5204 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5205 !capable(CAP_IPC_LOCK)) {
5206 ret = -EPERM;
5207 goto unlock;
5208 }
5209
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005210 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005211
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005212 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005213 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005214
Frederic Weisbecker76369132011-05-19 19:55:04 +02005215 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005216 rb = rb_alloc(nr_pages,
5217 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5218 event->cpu, flags);
5219
5220 if (!rb) {
5221 ret = -ENOMEM;
5222 goto unlock;
5223 }
5224
5225 atomic_set(&rb->mmap_count, 1);
5226 rb->mmap_user = get_current_user();
5227 rb->mmap_locked = extra;
5228
5229 ring_buffer_attach(event, rb);
5230
5231 perf_event_init_userpage(event);
5232 perf_event_update_userpage(event);
5233 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005234 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5235 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005236 if (!ret)
5237 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005238 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005239
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005240unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005241 if (!ret) {
5242 atomic_long_add(user_extra, &user->locked_vm);
5243 vma->vm_mm->pinned_vm += extra;
5244
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005245 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005246 } else if (rb) {
5247 atomic_dec(&rb->mmap_count);
5248 }
5249aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005250 mutex_unlock(&event->mmap_mutex);
5251
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005252 /*
5253 * Since pinned accounting is per vm we cannot allow fork() to copy our
5254 * vma.
5255 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005256 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005257 vma->vm_ops = &perf_mmap_vmops;
5258
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005259 if (event->pmu->event_mapped)
5260 event->pmu->event_mapped(event);
5261
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005262 return ret;
5263}
5264
5265static int perf_fasync(int fd, struct file *filp, int on)
5266{
Al Viro496ad9a2013-01-23 17:07:38 -05005267 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268 struct perf_event *event = filp->private_data;
5269 int retval;
5270
Al Viro59551022016-01-22 15:40:57 -05005271 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005272 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005273 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005274
5275 if (retval < 0)
5276 return retval;
5277
5278 return 0;
5279}
5280
5281static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005282 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005283 .release = perf_release,
5284 .read = perf_read,
5285 .poll = perf_poll,
5286 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005287 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 .mmap = perf_mmap,
5289 .fasync = perf_fasync,
5290};
5291
5292/*
5293 * Perf event wakeup
5294 *
5295 * If there's data, ensure we set the poll() state and publish everything
5296 * to user-space before waking everybody up.
5297 */
5298
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005299static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5300{
5301 /* only the parent has fasync state */
5302 if (event->parent)
5303 event = event->parent;
5304 return &event->fasync;
5305}
5306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005307void perf_event_wakeup(struct perf_event *event)
5308{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005309 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005310
5311 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005312 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005313 event->pending_kill = 0;
5314 }
5315}
5316
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005317static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005318{
5319 struct perf_event *event = container_of(entry,
5320 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005321 int rctx;
5322
5323 rctx = perf_swevent_get_recursion_context();
5324 /*
5325 * If we 'fail' here, that's OK, it means recursion is already disabled
5326 * and we won't recurse 'further'.
5327 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005328
5329 if (event->pending_disable) {
5330 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005331 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005332 }
5333
5334 if (event->pending_wakeup) {
5335 event->pending_wakeup = 0;
5336 perf_event_wakeup(event);
5337 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005338
5339 if (rctx >= 0)
5340 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005341}
5342
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005343/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005344 * We assume there is only KVM supporting the callbacks.
5345 * Later on, we might change it to a list if there is
5346 * another virtualization implementation supporting the callbacks.
5347 */
5348struct perf_guest_info_callbacks *perf_guest_cbs;
5349
5350int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5351{
5352 perf_guest_cbs = cbs;
5353 return 0;
5354}
5355EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5356
5357int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5358{
5359 perf_guest_cbs = NULL;
5360 return 0;
5361}
5362EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5363
Jiri Olsa40189942012-08-07 15:20:37 +02005364static void
5365perf_output_sample_regs(struct perf_output_handle *handle,
5366 struct pt_regs *regs, u64 mask)
5367{
5368 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305369 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005370
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305371 bitmap_from_u64(_mask, mask);
5372 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005373 u64 val;
5374
5375 val = perf_reg_value(regs, bit);
5376 perf_output_put(handle, val);
5377 }
5378}
5379
Stephane Eranian60e23642014-09-24 13:48:37 +02005380static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005381 struct pt_regs *regs,
5382 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005383{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005384 if (user_mode(regs)) {
5385 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005386 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005387 } else if (current->mm) {
5388 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005389 } else {
5390 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5391 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005392 }
5393}
5394
Stephane Eranian60e23642014-09-24 13:48:37 +02005395static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5396 struct pt_regs *regs)
5397{
5398 regs_intr->regs = regs;
5399 regs_intr->abi = perf_reg_abi(current);
5400}
5401
5402
Jiri Olsac5ebced2012-08-07 15:20:40 +02005403/*
5404 * Get remaining task size from user stack pointer.
5405 *
5406 * It'd be better to take stack vma map and limit this more
5407 * precisly, but there's no way to get it safely under interrupt,
5408 * so using TASK_SIZE as limit.
5409 */
5410static u64 perf_ustack_task_size(struct pt_regs *regs)
5411{
5412 unsigned long addr = perf_user_stack_pointer(regs);
5413
5414 if (!addr || addr >= TASK_SIZE)
5415 return 0;
5416
5417 return TASK_SIZE - addr;
5418}
5419
5420static u16
5421perf_sample_ustack_size(u16 stack_size, u16 header_size,
5422 struct pt_regs *regs)
5423{
5424 u64 task_size;
5425
5426 /* No regs, no stack pointer, no dump. */
5427 if (!regs)
5428 return 0;
5429
5430 /*
5431 * Check if we fit in with the requested stack size into the:
5432 * - TASK_SIZE
5433 * If we don't, we limit the size to the TASK_SIZE.
5434 *
5435 * - remaining sample size
5436 * If we don't, we customize the stack size to
5437 * fit in to the remaining sample size.
5438 */
5439
5440 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5441 stack_size = min(stack_size, (u16) task_size);
5442
5443 /* Current header size plus static size and dynamic size. */
5444 header_size += 2 * sizeof(u64);
5445
5446 /* Do we fit in with the current stack dump size? */
5447 if ((u16) (header_size + stack_size) < header_size) {
5448 /*
5449 * If we overflow the maximum size for the sample,
5450 * we customize the stack dump size to fit in.
5451 */
5452 stack_size = USHRT_MAX - header_size - sizeof(u64);
5453 stack_size = round_up(stack_size, sizeof(u64));
5454 }
5455
5456 return stack_size;
5457}
5458
5459static void
5460perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5461 struct pt_regs *regs)
5462{
5463 /* Case of a kernel thread, nothing to dump */
5464 if (!regs) {
5465 u64 size = 0;
5466 perf_output_put(handle, size);
5467 } else {
5468 unsigned long sp;
5469 unsigned int rem;
5470 u64 dyn_size;
5471
5472 /*
5473 * We dump:
5474 * static size
5475 * - the size requested by user or the best one we can fit
5476 * in to the sample max size
5477 * data
5478 * - user stack dump data
5479 * dynamic size
5480 * - the actual dumped size
5481 */
5482
5483 /* Static size. */
5484 perf_output_put(handle, dump_size);
5485
5486 /* Data. */
5487 sp = perf_user_stack_pointer(regs);
5488 rem = __output_copy_user(handle, (void *) sp, dump_size);
5489 dyn_size = dump_size - rem;
5490
5491 perf_output_skip(handle, rem);
5492
5493 /* Dynamic size. */
5494 perf_output_put(handle, dyn_size);
5495 }
5496}
5497
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005498static void __perf_event_header__init_id(struct perf_event_header *header,
5499 struct perf_sample_data *data,
5500 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005501{
5502 u64 sample_type = event->attr.sample_type;
5503
5504 data->type = sample_type;
5505 header->size += event->id_header_size;
5506
5507 if (sample_type & PERF_SAMPLE_TID) {
5508 /* namespace issues */
5509 data->tid_entry.pid = perf_event_pid(event, current);
5510 data->tid_entry.tid = perf_event_tid(event, current);
5511 }
5512
5513 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005514 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005515
Adrian Hunterff3d5272013-08-27 11:23:07 +03005516 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005517 data->id = primary_event_id(event);
5518
5519 if (sample_type & PERF_SAMPLE_STREAM_ID)
5520 data->stream_id = event->id;
5521
5522 if (sample_type & PERF_SAMPLE_CPU) {
5523 data->cpu_entry.cpu = raw_smp_processor_id();
5524 data->cpu_entry.reserved = 0;
5525 }
5526}
5527
Frederic Weisbecker76369132011-05-19 19:55:04 +02005528void perf_event_header__init_id(struct perf_event_header *header,
5529 struct perf_sample_data *data,
5530 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005531{
5532 if (event->attr.sample_id_all)
5533 __perf_event_header__init_id(header, data, event);
5534}
5535
5536static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5537 struct perf_sample_data *data)
5538{
5539 u64 sample_type = data->type;
5540
5541 if (sample_type & PERF_SAMPLE_TID)
5542 perf_output_put(handle, data->tid_entry);
5543
5544 if (sample_type & PERF_SAMPLE_TIME)
5545 perf_output_put(handle, data->time);
5546
5547 if (sample_type & PERF_SAMPLE_ID)
5548 perf_output_put(handle, data->id);
5549
5550 if (sample_type & PERF_SAMPLE_STREAM_ID)
5551 perf_output_put(handle, data->stream_id);
5552
5553 if (sample_type & PERF_SAMPLE_CPU)
5554 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005555
5556 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5557 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005558}
5559
Frederic Weisbecker76369132011-05-19 19:55:04 +02005560void perf_event__output_id_sample(struct perf_event *event,
5561 struct perf_output_handle *handle,
5562 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005563{
5564 if (event->attr.sample_id_all)
5565 __perf_event__output_id_sample(handle, sample);
5566}
5567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005568static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005569 struct perf_event *event,
5570 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005571{
5572 u64 read_format = event->attr.read_format;
5573 u64 values[4];
5574 int n = 0;
5575
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005576 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005577 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005578 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005579 atomic64_read(&event->child_total_time_enabled);
5580 }
5581 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005582 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583 atomic64_read(&event->child_total_time_running);
5584 }
5585 if (read_format & PERF_FORMAT_ID)
5586 values[n++] = primary_event_id(event);
5587
Frederic Weisbecker76369132011-05-19 19:55:04 +02005588 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005589}
5590
5591/*
5592 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5593 */
5594static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005595 struct perf_event *event,
5596 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597{
5598 struct perf_event *leader = event->group_leader, *sub;
5599 u64 read_format = event->attr.read_format;
5600 u64 values[5];
5601 int n = 0;
5602
5603 values[n++] = 1 + leader->nr_siblings;
5604
5605 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005606 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005607
5608 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005609 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005610
5611 if (leader != event)
5612 leader->pmu->read(leader);
5613
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005614 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005615 if (read_format & PERF_FORMAT_ID)
5616 values[n++] = primary_event_id(leader);
5617
Frederic Weisbecker76369132011-05-19 19:55:04 +02005618 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005619
5620 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5621 n = 0;
5622
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005623 if ((sub != event) &&
5624 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005625 sub->pmu->read(sub);
5626
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005627 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005628 if (read_format & PERF_FORMAT_ID)
5629 values[n++] = primary_event_id(sub);
5630
Frederic Weisbecker76369132011-05-19 19:55:04 +02005631 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005632 }
5633}
5634
Stephane Eranianeed01522010-10-26 16:08:01 +02005635#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5636 PERF_FORMAT_TOTAL_TIME_RUNNING)
5637
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005638static void perf_output_read(struct perf_output_handle *handle,
5639 struct perf_event *event)
5640{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005641 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005642 u64 read_format = event->attr.read_format;
5643
5644 /*
5645 * compute total_time_enabled, total_time_running
5646 * based on snapshot values taken when the event
5647 * was last scheduled in.
5648 *
5649 * we cannot simply called update_context_time()
5650 * because of locking issue as we are called in
5651 * NMI context
5652 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005653 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005654 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005655
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005656 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005657 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005658 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005659 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005660}
5661
5662void perf_output_sample(struct perf_output_handle *handle,
5663 struct perf_event_header *header,
5664 struct perf_sample_data *data,
5665 struct perf_event *event)
5666{
5667 u64 sample_type = data->type;
5668
5669 perf_output_put(handle, *header);
5670
Adrian Hunterff3d5272013-08-27 11:23:07 +03005671 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5672 perf_output_put(handle, data->id);
5673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005674 if (sample_type & PERF_SAMPLE_IP)
5675 perf_output_put(handle, data->ip);
5676
5677 if (sample_type & PERF_SAMPLE_TID)
5678 perf_output_put(handle, data->tid_entry);
5679
5680 if (sample_type & PERF_SAMPLE_TIME)
5681 perf_output_put(handle, data->time);
5682
5683 if (sample_type & PERF_SAMPLE_ADDR)
5684 perf_output_put(handle, data->addr);
5685
5686 if (sample_type & PERF_SAMPLE_ID)
5687 perf_output_put(handle, data->id);
5688
5689 if (sample_type & PERF_SAMPLE_STREAM_ID)
5690 perf_output_put(handle, data->stream_id);
5691
5692 if (sample_type & PERF_SAMPLE_CPU)
5693 perf_output_put(handle, data->cpu_entry);
5694
5695 if (sample_type & PERF_SAMPLE_PERIOD)
5696 perf_output_put(handle, data->period);
5697
5698 if (sample_type & PERF_SAMPLE_READ)
5699 perf_output_read(handle, event);
5700
5701 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5702 if (data->callchain) {
5703 int size = 1;
5704
5705 if (data->callchain)
5706 size += data->callchain->nr;
5707
5708 size *= sizeof(u64);
5709
Frederic Weisbecker76369132011-05-19 19:55:04 +02005710 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005711 } else {
5712 u64 nr = 0;
5713 perf_output_put(handle, nr);
5714 }
5715 }
5716
5717 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005718 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005719
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005720 if (raw) {
5721 struct perf_raw_frag *frag = &raw->frag;
5722
5723 perf_output_put(handle, raw->size);
5724 do {
5725 if (frag->copy) {
5726 __output_custom(handle, frag->copy,
5727 frag->data, frag->size);
5728 } else {
5729 __output_copy(handle, frag->data,
5730 frag->size);
5731 }
5732 if (perf_raw_frag_last(frag))
5733 break;
5734 frag = frag->next;
5735 } while (1);
5736 if (frag->pad)
5737 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005738 } else {
5739 struct {
5740 u32 size;
5741 u32 data;
5742 } raw = {
5743 .size = sizeof(u32),
5744 .data = 0,
5745 };
5746 perf_output_put(handle, raw);
5747 }
5748 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005749
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005750 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5751 if (data->br_stack) {
5752 size_t size;
5753
5754 size = data->br_stack->nr
5755 * sizeof(struct perf_branch_entry);
5756
5757 perf_output_put(handle, data->br_stack->nr);
5758 perf_output_copy(handle, data->br_stack->entries, size);
5759 } else {
5760 /*
5761 * we always store at least the value of nr
5762 */
5763 u64 nr = 0;
5764 perf_output_put(handle, nr);
5765 }
5766 }
Jiri Olsa40189942012-08-07 15:20:37 +02005767
5768 if (sample_type & PERF_SAMPLE_REGS_USER) {
5769 u64 abi = data->regs_user.abi;
5770
5771 /*
5772 * If there are no regs to dump, notice it through
5773 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5774 */
5775 perf_output_put(handle, abi);
5776
5777 if (abi) {
5778 u64 mask = event->attr.sample_regs_user;
5779 perf_output_sample_regs(handle,
5780 data->regs_user.regs,
5781 mask);
5782 }
5783 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005784
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005785 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005786 perf_output_sample_ustack(handle,
5787 data->stack_user_size,
5788 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005789 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005790
5791 if (sample_type & PERF_SAMPLE_WEIGHT)
5792 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005793
5794 if (sample_type & PERF_SAMPLE_DATA_SRC)
5795 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005796
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005797 if (sample_type & PERF_SAMPLE_TRANSACTION)
5798 perf_output_put(handle, data->txn);
5799
Stephane Eranian60e23642014-09-24 13:48:37 +02005800 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5801 u64 abi = data->regs_intr.abi;
5802 /*
5803 * If there are no regs to dump, notice it through
5804 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5805 */
5806 perf_output_put(handle, abi);
5807
5808 if (abi) {
5809 u64 mask = event->attr.sample_regs_intr;
5810
5811 perf_output_sample_regs(handle,
5812 data->regs_intr.regs,
5813 mask);
5814 }
5815 }
5816
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005817 if (!event->attr.watermark) {
5818 int wakeup_events = event->attr.wakeup_events;
5819
5820 if (wakeup_events) {
5821 struct ring_buffer *rb = handle->rb;
5822 int events = local_inc_return(&rb->events);
5823
5824 if (events >= wakeup_events) {
5825 local_sub(wakeup_events, &rb->events);
5826 local_inc(&rb->wakeup);
5827 }
5828 }
5829 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005830}
5831
5832void perf_prepare_sample(struct perf_event_header *header,
5833 struct perf_sample_data *data,
5834 struct perf_event *event,
5835 struct pt_regs *regs)
5836{
5837 u64 sample_type = event->attr.sample_type;
5838
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005839 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005840 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005841
5842 header->misc = 0;
5843 header->misc |= perf_misc_flags(regs);
5844
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005845 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005846
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005847 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005848 data->ip = perf_instruction_pointer(regs);
5849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005850 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5851 int size = 1;
5852
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005853 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005854
5855 if (data->callchain)
5856 size += data->callchain->nr;
5857
5858 header->size += size * sizeof(u64);
5859 }
5860
5861 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005862 struct perf_raw_record *raw = data->raw;
5863 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005864
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005865 if (raw) {
5866 struct perf_raw_frag *frag = &raw->frag;
5867 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005868
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005869 do {
5870 sum += frag->size;
5871 if (perf_raw_frag_last(frag))
5872 break;
5873 frag = frag->next;
5874 } while (1);
5875
5876 size = round_up(sum + sizeof(u32), sizeof(u64));
5877 raw->size = size - sizeof(u32);
5878 frag->pad = raw->size - sum;
5879 } else {
5880 size = sizeof(u64);
5881 }
5882
5883 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005884 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005885
5886 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5887 int size = sizeof(u64); /* nr */
5888 if (data->br_stack) {
5889 size += data->br_stack->nr
5890 * sizeof(struct perf_branch_entry);
5891 }
5892 header->size += size;
5893 }
Jiri Olsa40189942012-08-07 15:20:37 +02005894
Peter Zijlstra25657112014-09-24 13:48:42 +02005895 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005896 perf_sample_regs_user(&data->regs_user, regs,
5897 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005898
Jiri Olsa40189942012-08-07 15:20:37 +02005899 if (sample_type & PERF_SAMPLE_REGS_USER) {
5900 /* regs dump ABI info */
5901 int size = sizeof(u64);
5902
Jiri Olsa40189942012-08-07 15:20:37 +02005903 if (data->regs_user.regs) {
5904 u64 mask = event->attr.sample_regs_user;
5905 size += hweight64(mask) * sizeof(u64);
5906 }
5907
5908 header->size += size;
5909 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005910
5911 if (sample_type & PERF_SAMPLE_STACK_USER) {
5912 /*
5913 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5914 * processed as the last one or have additional check added
5915 * in case new sample type is added, because we could eat
5916 * up the rest of the sample size.
5917 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005918 u16 stack_size = event->attr.sample_stack_user;
5919 u16 size = sizeof(u64);
5920
Jiri Olsac5ebced2012-08-07 15:20:40 +02005921 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005922 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005923
5924 /*
5925 * If there is something to dump, add space for the dump
5926 * itself and for the field that tells the dynamic size,
5927 * which is how many have been actually dumped.
5928 */
5929 if (stack_size)
5930 size += sizeof(u64) + stack_size;
5931
5932 data->stack_user_size = stack_size;
5933 header->size += size;
5934 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005935
5936 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5937 /* regs dump ABI info */
5938 int size = sizeof(u64);
5939
5940 perf_sample_regs_intr(&data->regs_intr, regs);
5941
5942 if (data->regs_intr.regs) {
5943 u64 mask = event->attr.sample_regs_intr;
5944
5945 size += hweight64(mask) * sizeof(u64);
5946 }
5947
5948 header->size += size;
5949 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950}
5951
Wang Nan9ecda412016-04-05 14:11:18 +00005952static void __always_inline
5953__perf_event_output(struct perf_event *event,
5954 struct perf_sample_data *data,
5955 struct pt_regs *regs,
5956 int (*output_begin)(struct perf_output_handle *,
5957 struct perf_event *,
5958 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005959{
5960 struct perf_output_handle handle;
5961 struct perf_event_header header;
5962
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005963 /* protect the callchain buffers */
5964 rcu_read_lock();
5965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966 perf_prepare_sample(&header, data, event, regs);
5967
Wang Nan9ecda412016-04-05 14:11:18 +00005968 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005969 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005970
5971 perf_output_sample(&handle, &header, data, event);
5972
5973 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005974
5975exit:
5976 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005977}
5978
Wang Nan9ecda412016-04-05 14:11:18 +00005979void
5980perf_event_output_forward(struct perf_event *event,
5981 struct perf_sample_data *data,
5982 struct pt_regs *regs)
5983{
5984 __perf_event_output(event, data, regs, perf_output_begin_forward);
5985}
5986
5987void
5988perf_event_output_backward(struct perf_event *event,
5989 struct perf_sample_data *data,
5990 struct pt_regs *regs)
5991{
5992 __perf_event_output(event, data, regs, perf_output_begin_backward);
5993}
5994
5995void
5996perf_event_output(struct perf_event *event,
5997 struct perf_sample_data *data,
5998 struct pt_regs *regs)
5999{
6000 __perf_event_output(event, data, regs, perf_output_begin);
6001}
6002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006003/*
6004 * read event_id
6005 */
6006
6007struct perf_read_event {
6008 struct perf_event_header header;
6009
6010 u32 pid;
6011 u32 tid;
6012};
6013
6014static void
6015perf_event_read_event(struct perf_event *event,
6016 struct task_struct *task)
6017{
6018 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006019 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006020 struct perf_read_event read_event = {
6021 .header = {
6022 .type = PERF_RECORD_READ,
6023 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006024 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006025 },
6026 .pid = perf_event_pid(event, task),
6027 .tid = perf_event_tid(event, task),
6028 };
6029 int ret;
6030
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006031 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006032 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006033 if (ret)
6034 return;
6035
6036 perf_output_put(&handle, read_event);
6037 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006038 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006039
6040 perf_output_end(&handle);
6041}
6042
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006043typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006044
6045static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006046perf_iterate_ctx(struct perf_event_context *ctx,
6047 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006048 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006049{
6050 struct perf_event *event;
6051
6052 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006053 if (!all) {
6054 if (event->state < PERF_EVENT_STATE_INACTIVE)
6055 continue;
6056 if (!event_filter_match(event))
6057 continue;
6058 }
6059
Jiri Olsa67516842013-07-09 18:56:31 +02006060 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006061 }
6062}
6063
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006064static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006065{
6066 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6067 struct perf_event *event;
6068
6069 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006070 /*
6071 * Skip events that are not fully formed yet; ensure that
6072 * if we observe event->ctx, both event and ctx will be
6073 * complete enough. See perf_install_in_context().
6074 */
6075 if (!smp_load_acquire(&event->ctx))
6076 continue;
6077
Kan Liangf2fb6be2016-03-23 11:24:37 -07006078 if (event->state < PERF_EVENT_STATE_INACTIVE)
6079 continue;
6080 if (!event_filter_match(event))
6081 continue;
6082 output(event, data);
6083 }
6084}
6085
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006086/*
6087 * Iterate all events that need to receive side-band events.
6088 *
6089 * For new callers; ensure that account_pmu_sb_event() includes
6090 * your event, otherwise it might not get delivered.
6091 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006092static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006093perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006094 struct perf_event_context *task_ctx)
6095{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006096 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006097 int ctxn;
6098
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006099 rcu_read_lock();
6100 preempt_disable();
6101
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006102 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006103 * If we have task_ctx != NULL we only notify the task context itself.
6104 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006105 * context.
6106 */
6107 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006108 perf_iterate_ctx(task_ctx, output, data, false);
6109 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006110 }
6111
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006112 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006113
6114 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006115 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6116 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006117 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006118 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006119done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006120 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006121 rcu_read_unlock();
6122}
6123
Alexander Shishkin375637b2016-04-27 18:44:46 +03006124/*
6125 * Clear all file-based filters at exec, they'll have to be
6126 * re-instated when/if these objects are mmapped again.
6127 */
6128static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6129{
6130 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6131 struct perf_addr_filter *filter;
6132 unsigned int restart = 0, count = 0;
6133 unsigned long flags;
6134
6135 if (!has_addr_filter(event))
6136 return;
6137
6138 raw_spin_lock_irqsave(&ifh->lock, flags);
6139 list_for_each_entry(filter, &ifh->list, entry) {
6140 if (filter->inode) {
6141 event->addr_filters_offs[count] = 0;
6142 restart++;
6143 }
6144
6145 count++;
6146 }
6147
6148 if (restart)
6149 event->addr_filters_gen++;
6150 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6151
6152 if (restart)
6153 perf_event_restart(event);
6154}
6155
6156void perf_event_exec(void)
6157{
6158 struct perf_event_context *ctx;
6159 int ctxn;
6160
6161 rcu_read_lock();
6162 for_each_task_context_nr(ctxn) {
6163 ctx = current->perf_event_ctxp[ctxn];
6164 if (!ctx)
6165 continue;
6166
6167 perf_event_enable_on_exec(ctxn);
6168
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006169 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006170 true);
6171 }
6172 rcu_read_unlock();
6173}
6174
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006175struct remote_output {
6176 struct ring_buffer *rb;
6177 int err;
6178};
6179
6180static void __perf_event_output_stop(struct perf_event *event, void *data)
6181{
6182 struct perf_event *parent = event->parent;
6183 struct remote_output *ro = data;
6184 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006185 struct stop_event_data sd = {
6186 .event = event,
6187 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006188
6189 if (!has_aux(event))
6190 return;
6191
6192 if (!parent)
6193 parent = event;
6194
6195 /*
6196 * In case of inheritance, it will be the parent that links to the
6197 * ring-buffer, but it will be the child that's actually using it:
6198 */
6199 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006200 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006201}
6202
6203static int __perf_pmu_output_stop(void *info)
6204{
6205 struct perf_event *event = info;
6206 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006207 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006208 struct remote_output ro = {
6209 .rb = event->rb,
6210 };
6211
6212 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006213 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006214 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006215 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006216 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006217 rcu_read_unlock();
6218
6219 return ro.err;
6220}
6221
6222static void perf_pmu_output_stop(struct perf_event *event)
6223{
6224 struct perf_event *iter;
6225 int err, cpu;
6226
6227restart:
6228 rcu_read_lock();
6229 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6230 /*
6231 * For per-CPU events, we need to make sure that neither they
6232 * nor their children are running; for cpu==-1 events it's
6233 * sufficient to stop the event itself if it's active, since
6234 * it can't have children.
6235 */
6236 cpu = iter->cpu;
6237 if (cpu == -1)
6238 cpu = READ_ONCE(iter->oncpu);
6239
6240 if (cpu == -1)
6241 continue;
6242
6243 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6244 if (err == -EAGAIN) {
6245 rcu_read_unlock();
6246 goto restart;
6247 }
6248 }
6249 rcu_read_unlock();
6250}
6251
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006252/*
6253 * task tracking -- fork/exit
6254 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006255 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006256 */
6257
6258struct perf_task_event {
6259 struct task_struct *task;
6260 struct perf_event_context *task_ctx;
6261
6262 struct {
6263 struct perf_event_header header;
6264
6265 u32 pid;
6266 u32 ppid;
6267 u32 tid;
6268 u32 ptid;
6269 u64 time;
6270 } event_id;
6271};
6272
Jiri Olsa67516842013-07-09 18:56:31 +02006273static int perf_event_task_match(struct perf_event *event)
6274{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006275 return event->attr.comm || event->attr.mmap ||
6276 event->attr.mmap2 || event->attr.mmap_data ||
6277 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006278}
6279
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006280static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006281 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006282{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006283 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006284 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006285 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006286 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006287 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006288
Jiri Olsa67516842013-07-09 18:56:31 +02006289 if (!perf_event_task_match(event))
6290 return;
6291
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006292 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006293
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006294 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006295 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006296 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006297 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006298
6299 task_event->event_id.pid = perf_event_pid(event, task);
6300 task_event->event_id.ppid = perf_event_pid(event, current);
6301
6302 task_event->event_id.tid = perf_event_tid(event, task);
6303 task_event->event_id.ptid = perf_event_tid(event, current);
6304
Peter Zijlstra34f43922015-02-20 14:05:38 +01006305 task_event->event_id.time = perf_event_clock(event);
6306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006307 perf_output_put(&handle, task_event->event_id);
6308
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006309 perf_event__output_id_sample(event, &handle, &sample);
6310
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006311 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006312out:
6313 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006314}
6315
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006316static void perf_event_task(struct task_struct *task,
6317 struct perf_event_context *task_ctx,
6318 int new)
6319{
6320 struct perf_task_event task_event;
6321
6322 if (!atomic_read(&nr_comm_events) &&
6323 !atomic_read(&nr_mmap_events) &&
6324 !atomic_read(&nr_task_events))
6325 return;
6326
6327 task_event = (struct perf_task_event){
6328 .task = task,
6329 .task_ctx = task_ctx,
6330 .event_id = {
6331 .header = {
6332 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6333 .misc = 0,
6334 .size = sizeof(task_event.event_id),
6335 },
6336 /* .pid */
6337 /* .ppid */
6338 /* .tid */
6339 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006340 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006341 },
6342 };
6343
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006344 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006345 &task_event,
6346 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006347}
6348
6349void perf_event_fork(struct task_struct *task)
6350{
6351 perf_event_task(task, NULL, 1);
6352}
6353
6354/*
6355 * comm tracking
6356 */
6357
6358struct perf_comm_event {
6359 struct task_struct *task;
6360 char *comm;
6361 int comm_size;
6362
6363 struct {
6364 struct perf_event_header header;
6365
6366 u32 pid;
6367 u32 tid;
6368 } event_id;
6369};
6370
Jiri Olsa67516842013-07-09 18:56:31 +02006371static int perf_event_comm_match(struct perf_event *event)
6372{
6373 return event->attr.comm;
6374}
6375
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006377 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006378{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006379 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006380 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006381 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006382 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006383 int ret;
6384
Jiri Olsa67516842013-07-09 18:56:31 +02006385 if (!perf_event_comm_match(event))
6386 return;
6387
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006388 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6389 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006390 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006391
6392 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006393 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006394
6395 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6396 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6397
6398 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006399 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006400 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006401
6402 perf_event__output_id_sample(event, &handle, &sample);
6403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006404 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006405out:
6406 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006407}
6408
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006409static void perf_event_comm_event(struct perf_comm_event *comm_event)
6410{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006411 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006412 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006413
6414 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006415 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006416 size = ALIGN(strlen(comm)+1, sizeof(u64));
6417
6418 comm_event->comm = comm;
6419 comm_event->comm_size = size;
6420
6421 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006422
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006423 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006424 comm_event,
6425 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006426}
6427
Adrian Hunter82b89772014-05-28 11:45:04 +03006428void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006429{
6430 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006431
6432 if (!atomic_read(&nr_comm_events))
6433 return;
6434
6435 comm_event = (struct perf_comm_event){
6436 .task = task,
6437 /* .comm */
6438 /* .comm_size */
6439 .event_id = {
6440 .header = {
6441 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006442 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006443 /* .size */
6444 },
6445 /* .pid */
6446 /* .tid */
6447 },
6448 };
6449
6450 perf_event_comm_event(&comm_event);
6451}
6452
6453/*
6454 * mmap tracking
6455 */
6456
6457struct perf_mmap_event {
6458 struct vm_area_struct *vma;
6459
6460 const char *file_name;
6461 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006462 int maj, min;
6463 u64 ino;
6464 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006465 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006466
6467 struct {
6468 struct perf_event_header header;
6469
6470 u32 pid;
6471 u32 tid;
6472 u64 start;
6473 u64 len;
6474 u64 pgoff;
6475 } event_id;
6476};
6477
Jiri Olsa67516842013-07-09 18:56:31 +02006478static int perf_event_mmap_match(struct perf_event *event,
6479 void *data)
6480{
6481 struct perf_mmap_event *mmap_event = data;
6482 struct vm_area_struct *vma = mmap_event->vma;
6483 int executable = vma->vm_flags & VM_EXEC;
6484
6485 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006486 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006487}
6488
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006489static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006490 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006491{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006492 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006493 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006494 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006495 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006496 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006497
Jiri Olsa67516842013-07-09 18:56:31 +02006498 if (!perf_event_mmap_match(event, data))
6499 return;
6500
Stephane Eranian13d7a242013-08-21 12:10:24 +02006501 if (event->attr.mmap2) {
6502 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6503 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6504 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6505 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006506 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006507 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6508 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006509 }
6510
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006511 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6512 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006513 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006514 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006515 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006516
6517 mmap_event->event_id.pid = perf_event_pid(event, current);
6518 mmap_event->event_id.tid = perf_event_tid(event, current);
6519
6520 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006521
6522 if (event->attr.mmap2) {
6523 perf_output_put(&handle, mmap_event->maj);
6524 perf_output_put(&handle, mmap_event->min);
6525 perf_output_put(&handle, mmap_event->ino);
6526 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006527 perf_output_put(&handle, mmap_event->prot);
6528 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006529 }
6530
Frederic Weisbecker76369132011-05-19 19:55:04 +02006531 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006532 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006533
6534 perf_event__output_id_sample(event, &handle, &sample);
6535
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006536 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006537out:
6538 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006539}
6540
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006541static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6542{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006543 struct vm_area_struct *vma = mmap_event->vma;
6544 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006545 int maj = 0, min = 0;
6546 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006547 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006548 unsigned int size;
6549 char tmp[16];
6550 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006551 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006552
6553 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006554 struct inode *inode;
6555 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006556
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006557 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006558 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006559 name = "//enomem";
6560 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006561 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006562 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006563 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006564 * need to add enough zero bytes after the string to handle
6565 * the 64bit alignment we do later.
6566 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006567 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006568 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006569 name = "//toolong";
6570 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006571 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006572 inode = file_inode(vma->vm_file);
6573 dev = inode->i_sb->s_dev;
6574 ino = inode->i_ino;
6575 gen = inode->i_generation;
6576 maj = MAJOR(dev);
6577 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006578
6579 if (vma->vm_flags & VM_READ)
6580 prot |= PROT_READ;
6581 if (vma->vm_flags & VM_WRITE)
6582 prot |= PROT_WRITE;
6583 if (vma->vm_flags & VM_EXEC)
6584 prot |= PROT_EXEC;
6585
6586 if (vma->vm_flags & VM_MAYSHARE)
6587 flags = MAP_SHARED;
6588 else
6589 flags = MAP_PRIVATE;
6590
6591 if (vma->vm_flags & VM_DENYWRITE)
6592 flags |= MAP_DENYWRITE;
6593 if (vma->vm_flags & VM_MAYEXEC)
6594 flags |= MAP_EXECUTABLE;
6595 if (vma->vm_flags & VM_LOCKED)
6596 flags |= MAP_LOCKED;
6597 if (vma->vm_flags & VM_HUGETLB)
6598 flags |= MAP_HUGETLB;
6599
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006600 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006601 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006602 if (vma->vm_ops && vma->vm_ops->name) {
6603 name = (char *) vma->vm_ops->name(vma);
6604 if (name)
6605 goto cpy_name;
6606 }
6607
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006608 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006609 if (name)
6610 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006612 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006613 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006614 name = "[heap]";
6615 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006616 }
6617 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006618 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006619 name = "[stack]";
6620 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006621 }
6622
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006623 name = "//anon";
6624 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006625 }
6626
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006627cpy_name:
6628 strlcpy(tmp, name, sizeof(tmp));
6629 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006630got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006631 /*
6632 * Since our buffer works in 8 byte units we need to align our string
6633 * size to a multiple of 8. However, we must guarantee the tail end is
6634 * zero'd out to avoid leaking random bits to userspace.
6635 */
6636 size = strlen(name)+1;
6637 while (!IS_ALIGNED(size, sizeof(u64)))
6638 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006639
6640 mmap_event->file_name = name;
6641 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006642 mmap_event->maj = maj;
6643 mmap_event->min = min;
6644 mmap_event->ino = ino;
6645 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006646 mmap_event->prot = prot;
6647 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006648
Stephane Eranian2fe85422013-01-24 16:10:39 +01006649 if (!(vma->vm_flags & VM_EXEC))
6650 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6651
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006652 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6653
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006654 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006655 mmap_event,
6656 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006657
6658 kfree(buf);
6659}
6660
Alexander Shishkin375637b2016-04-27 18:44:46 +03006661/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03006662 * Check whether inode and address range match filter criteria.
6663 */
6664static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6665 struct file *file, unsigned long offset,
6666 unsigned long size)
6667{
6668 if (filter->inode != file->f_inode)
6669 return false;
6670
6671 if (filter->offset > offset + size)
6672 return false;
6673
6674 if (filter->offset + filter->size < offset)
6675 return false;
6676
6677 return true;
6678}
6679
6680static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6681{
6682 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6683 struct vm_area_struct *vma = data;
6684 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6685 struct file *file = vma->vm_file;
6686 struct perf_addr_filter *filter;
6687 unsigned int restart = 0, count = 0;
6688
6689 if (!has_addr_filter(event))
6690 return;
6691
6692 if (!file)
6693 return;
6694
6695 raw_spin_lock_irqsave(&ifh->lock, flags);
6696 list_for_each_entry(filter, &ifh->list, entry) {
6697 if (perf_addr_filter_match(filter, file, off,
6698 vma->vm_end - vma->vm_start)) {
6699 event->addr_filters_offs[count] = vma->vm_start;
6700 restart++;
6701 }
6702
6703 count++;
6704 }
6705
6706 if (restart)
6707 event->addr_filters_gen++;
6708 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6709
6710 if (restart)
6711 perf_event_restart(event);
6712}
6713
6714/*
6715 * Adjust all task's events' filters to the new vma
6716 */
6717static void perf_addr_filters_adjust(struct vm_area_struct *vma)
6718{
6719 struct perf_event_context *ctx;
6720 int ctxn;
6721
Mathieu Poirier12b40a22016-07-18 10:43:06 -06006722 /*
6723 * Data tracing isn't supported yet and as such there is no need
6724 * to keep track of anything that isn't related to executable code:
6725 */
6726 if (!(vma->vm_flags & VM_EXEC))
6727 return;
6728
Alexander Shishkin375637b2016-04-27 18:44:46 +03006729 rcu_read_lock();
6730 for_each_task_context_nr(ctxn) {
6731 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6732 if (!ctx)
6733 continue;
6734
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006735 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006736 }
6737 rcu_read_unlock();
6738}
6739
Eric B Munson3af9e852010-05-18 15:30:49 +01006740void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006741{
6742 struct perf_mmap_event mmap_event;
6743
6744 if (!atomic_read(&nr_mmap_events))
6745 return;
6746
6747 mmap_event = (struct perf_mmap_event){
6748 .vma = vma,
6749 /* .file_name */
6750 /* .file_size */
6751 .event_id = {
6752 .header = {
6753 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006754 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006755 /* .size */
6756 },
6757 /* .pid */
6758 /* .tid */
6759 .start = vma->vm_start,
6760 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006761 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006762 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006763 /* .maj (attr_mmap2 only) */
6764 /* .min (attr_mmap2 only) */
6765 /* .ino (attr_mmap2 only) */
6766 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006767 /* .prot (attr_mmap2 only) */
6768 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006769 };
6770
Alexander Shishkin375637b2016-04-27 18:44:46 +03006771 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006772 perf_event_mmap_event(&mmap_event);
6773}
6774
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006775void perf_event_aux_event(struct perf_event *event, unsigned long head,
6776 unsigned long size, u64 flags)
6777{
6778 struct perf_output_handle handle;
6779 struct perf_sample_data sample;
6780 struct perf_aux_event {
6781 struct perf_event_header header;
6782 u64 offset;
6783 u64 size;
6784 u64 flags;
6785 } rec = {
6786 .header = {
6787 .type = PERF_RECORD_AUX,
6788 .misc = 0,
6789 .size = sizeof(rec),
6790 },
6791 .offset = head,
6792 .size = size,
6793 .flags = flags,
6794 };
6795 int ret;
6796
6797 perf_event_header__init_id(&rec.header, &sample, event);
6798 ret = perf_output_begin(&handle, event, rec.header.size);
6799
6800 if (ret)
6801 return;
6802
6803 perf_output_put(&handle, rec);
6804 perf_event__output_id_sample(event, &handle, &sample);
6805
6806 perf_output_end(&handle);
6807}
6808
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006809/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006810 * Lost/dropped samples logging
6811 */
6812void perf_log_lost_samples(struct perf_event *event, u64 lost)
6813{
6814 struct perf_output_handle handle;
6815 struct perf_sample_data sample;
6816 int ret;
6817
6818 struct {
6819 struct perf_event_header header;
6820 u64 lost;
6821 } lost_samples_event = {
6822 .header = {
6823 .type = PERF_RECORD_LOST_SAMPLES,
6824 .misc = 0,
6825 .size = sizeof(lost_samples_event),
6826 },
6827 .lost = lost,
6828 };
6829
6830 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6831
6832 ret = perf_output_begin(&handle, event,
6833 lost_samples_event.header.size);
6834 if (ret)
6835 return;
6836
6837 perf_output_put(&handle, lost_samples_event);
6838 perf_event__output_id_sample(event, &handle, &sample);
6839 perf_output_end(&handle);
6840}
6841
6842/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006843 * context_switch tracking
6844 */
6845
6846struct perf_switch_event {
6847 struct task_struct *task;
6848 struct task_struct *next_prev;
6849
6850 struct {
6851 struct perf_event_header header;
6852 u32 next_prev_pid;
6853 u32 next_prev_tid;
6854 } event_id;
6855};
6856
6857static int perf_event_switch_match(struct perf_event *event)
6858{
6859 return event->attr.context_switch;
6860}
6861
6862static void perf_event_switch_output(struct perf_event *event, void *data)
6863{
6864 struct perf_switch_event *se = data;
6865 struct perf_output_handle handle;
6866 struct perf_sample_data sample;
6867 int ret;
6868
6869 if (!perf_event_switch_match(event))
6870 return;
6871
6872 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6873 if (event->ctx->task) {
6874 se->event_id.header.type = PERF_RECORD_SWITCH;
6875 se->event_id.header.size = sizeof(se->event_id.header);
6876 } else {
6877 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6878 se->event_id.header.size = sizeof(se->event_id);
6879 se->event_id.next_prev_pid =
6880 perf_event_pid(event, se->next_prev);
6881 se->event_id.next_prev_tid =
6882 perf_event_tid(event, se->next_prev);
6883 }
6884
6885 perf_event_header__init_id(&se->event_id.header, &sample, event);
6886
6887 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6888 if (ret)
6889 return;
6890
6891 if (event->ctx->task)
6892 perf_output_put(&handle, se->event_id.header);
6893 else
6894 perf_output_put(&handle, se->event_id);
6895
6896 perf_event__output_id_sample(event, &handle, &sample);
6897
6898 perf_output_end(&handle);
6899}
6900
6901static void perf_event_switch(struct task_struct *task,
6902 struct task_struct *next_prev, bool sched_in)
6903{
6904 struct perf_switch_event switch_event;
6905
6906 /* N.B. caller checks nr_switch_events != 0 */
6907
6908 switch_event = (struct perf_switch_event){
6909 .task = task,
6910 .next_prev = next_prev,
6911 .event_id = {
6912 .header = {
6913 /* .type */
6914 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6915 /* .size */
6916 },
6917 /* .next_prev_pid */
6918 /* .next_prev_tid */
6919 },
6920 };
6921
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006922 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03006923 &switch_event,
6924 NULL);
6925}
6926
6927/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006928 * IRQ throttle logging
6929 */
6930
6931static void perf_log_throttle(struct perf_event *event, int enable)
6932{
6933 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006934 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935 int ret;
6936
6937 struct {
6938 struct perf_event_header header;
6939 u64 time;
6940 u64 id;
6941 u64 stream_id;
6942 } throttle_event = {
6943 .header = {
6944 .type = PERF_RECORD_THROTTLE,
6945 .misc = 0,
6946 .size = sizeof(throttle_event),
6947 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006948 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006949 .id = primary_event_id(event),
6950 .stream_id = event->id,
6951 };
6952
6953 if (enable)
6954 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6955
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006956 perf_event_header__init_id(&throttle_event.header, &sample, event);
6957
6958 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006959 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006960 if (ret)
6961 return;
6962
6963 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006964 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006965 perf_output_end(&handle);
6966}
6967
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006968static void perf_log_itrace_start(struct perf_event *event)
6969{
6970 struct perf_output_handle handle;
6971 struct perf_sample_data sample;
6972 struct perf_aux_event {
6973 struct perf_event_header header;
6974 u32 pid;
6975 u32 tid;
6976 } rec;
6977 int ret;
6978
6979 if (event->parent)
6980 event = event->parent;
6981
6982 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6983 event->hw.itrace_started)
6984 return;
6985
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006986 rec.header.type = PERF_RECORD_ITRACE_START;
6987 rec.header.misc = 0;
6988 rec.header.size = sizeof(rec);
6989 rec.pid = perf_event_pid(event, current);
6990 rec.tid = perf_event_tid(event, current);
6991
6992 perf_event_header__init_id(&rec.header, &sample, event);
6993 ret = perf_output_begin(&handle, event, rec.header.size);
6994
6995 if (ret)
6996 return;
6997
6998 perf_output_put(&handle, rec);
6999 perf_event__output_id_sample(event, &handle, &sample);
7000
7001 perf_output_end(&handle);
7002}
7003
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007004/*
7005 * Generic event overflow handling, sampling.
7006 */
7007
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007008static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007009 int throttle, struct perf_sample_data *data,
7010 struct pt_regs *regs)
7011{
7012 int events = atomic_read(&event->event_limit);
7013 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007014 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007015 int ret = 0;
7016
Peter Zijlstra96398822010-11-24 18:55:29 +01007017 /*
7018 * Non-sampling counters might still use the PMI to fold short
7019 * hardware counters, ignore those.
7020 */
7021 if (unlikely(!is_sampling_event(event)))
7022 return 0;
7023
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007024 seq = __this_cpu_read(perf_throttled_seq);
7025 if (seq != hwc->interrupts_seq) {
7026 hwc->interrupts_seq = seq;
7027 hwc->interrupts = 1;
7028 } else {
7029 hwc->interrupts++;
7030 if (unlikely(throttle
7031 && hwc->interrupts >= max_samples_per_tick)) {
7032 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007033 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007034 hwc->interrupts = MAX_INTERRUPTS;
7035 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007036 ret = 1;
7037 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007038 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007039
7040 if (event->attr.freq) {
7041 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007042 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007043
Peter Zijlstraabd50712010-01-26 18:50:16 +01007044 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007045
Peter Zijlstraabd50712010-01-26 18:50:16 +01007046 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007047 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007048 }
7049
7050 /*
7051 * XXX event_limit might not quite work as expected on inherited
7052 * events
7053 */
7054
7055 event->pending_kill = POLL_IN;
7056 if (events && atomic_dec_and_test(&event->event_limit)) {
7057 ret = 1;
7058 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007059 event->pending_disable = 1;
7060 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007061 }
7062
Wang Nan18794452016-03-28 06:41:30 +00007063 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007064
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007065 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007066 event->pending_wakeup = 1;
7067 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007068 }
7069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007070 return ret;
7071}
7072
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007073int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007074 struct perf_sample_data *data,
7075 struct pt_regs *regs)
7076{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007077 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007078}
7079
7080/*
7081 * Generic software event infrastructure
7082 */
7083
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007084struct swevent_htable {
7085 struct swevent_hlist *swevent_hlist;
7086 struct mutex hlist_mutex;
7087 int hlist_refcount;
7088
7089 /* Recursion avoidance in each contexts */
7090 int recursion[PERF_NR_CONTEXTS];
7091};
7092
7093static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7094
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007095/*
7096 * We directly increment event->count and keep a second value in
7097 * event->hw.period_left to count intervals. This period event
7098 * is kept in the range [-sample_period, 0] so that we can use the
7099 * sign as trigger.
7100 */
7101
Jiri Olsaab573842013-05-01 17:25:44 +02007102u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007103{
7104 struct hw_perf_event *hwc = &event->hw;
7105 u64 period = hwc->last_period;
7106 u64 nr, offset;
7107 s64 old, val;
7108
7109 hwc->last_period = hwc->sample_period;
7110
7111again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007112 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007113 if (val < 0)
7114 return 0;
7115
7116 nr = div64_u64(period + val, period);
7117 offset = nr * period;
7118 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007119 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007120 goto again;
7121
7122 return nr;
7123}
7124
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007125static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007126 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007127 struct pt_regs *regs)
7128{
7129 struct hw_perf_event *hwc = &event->hw;
7130 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007131
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007132 if (!overflow)
7133 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007134
7135 if (hwc->interrupts == MAX_INTERRUPTS)
7136 return;
7137
7138 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007139 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007140 data, regs)) {
7141 /*
7142 * We inhibit the overflow from happening when
7143 * hwc->interrupts == MAX_INTERRUPTS.
7144 */
7145 break;
7146 }
7147 throttle = 1;
7148 }
7149}
7150
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007151static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007152 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007153 struct pt_regs *regs)
7154{
7155 struct hw_perf_event *hwc = &event->hw;
7156
Peter Zijlstrae7850592010-05-21 14:43:08 +02007157 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007158
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007159 if (!regs)
7160 return;
7161
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007162 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007163 return;
7164
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007165 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7166 data->period = nr;
7167 return perf_swevent_overflow(event, 1, data, regs);
7168 } else
7169 data->period = event->hw.last_period;
7170
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007171 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007172 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007173
Peter Zijlstrae7850592010-05-21 14:43:08 +02007174 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007175 return;
7176
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007177 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007178}
7179
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007180static int perf_exclude_event(struct perf_event *event,
7181 struct pt_regs *regs)
7182{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007183 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007184 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007185
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007186 if (regs) {
7187 if (event->attr.exclude_user && user_mode(regs))
7188 return 1;
7189
7190 if (event->attr.exclude_kernel && !user_mode(regs))
7191 return 1;
7192 }
7193
7194 return 0;
7195}
7196
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007197static int perf_swevent_match(struct perf_event *event,
7198 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007199 u32 event_id,
7200 struct perf_sample_data *data,
7201 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007202{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007203 if (event->attr.type != type)
7204 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007205
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007206 if (event->attr.config != event_id)
7207 return 0;
7208
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007209 if (perf_exclude_event(event, regs))
7210 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007211
7212 return 1;
7213}
7214
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007215static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007216{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007217 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007218
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007219 return hash_64(val, SWEVENT_HLIST_BITS);
7220}
7221
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007222static inline struct hlist_head *
7223__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007224{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007225 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007226
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007227 return &hlist->heads[hash];
7228}
7229
7230/* For the read side: events when they trigger */
7231static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007232find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007233{
7234 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007235
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007236 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007237 if (!hlist)
7238 return NULL;
7239
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007240 return __find_swevent_head(hlist, type, event_id);
7241}
7242
7243/* For the event head insertion and removal in the hlist */
7244static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007245find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007246{
7247 struct swevent_hlist *hlist;
7248 u32 event_id = event->attr.config;
7249 u64 type = event->attr.type;
7250
7251 /*
7252 * Event scheduling is always serialized against hlist allocation
7253 * and release. Which makes the protected version suitable here.
7254 * The context lock guarantees that.
7255 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007256 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007257 lockdep_is_held(&event->ctx->lock));
7258 if (!hlist)
7259 return NULL;
7260
7261 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007262}
7263
7264static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007265 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007266 struct perf_sample_data *data,
7267 struct pt_regs *regs)
7268{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007269 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007270 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007271 struct hlist_head *head;
7272
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007273 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007274 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007275 if (!head)
7276 goto end;
7277
Sasha Levinb67bfe02013-02-27 17:06:00 -08007278 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007279 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007280 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007281 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007282end:
7283 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007284}
7285
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007286DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7287
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007288int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007289{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007290 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007291
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007292 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007293}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007294EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007295
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007296void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007297{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007298 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007299
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007300 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007301}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007303void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007304{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007305 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007306
7307 if (WARN_ON_ONCE(!regs))
7308 return;
7309
7310 perf_sample_data_init(&data, addr, 0);
7311 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7312}
7313
7314void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7315{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007316 int rctx;
7317
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007318 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007319 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007320 if (unlikely(rctx < 0))
7321 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007322
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007323 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007324
7325 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007326fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007327 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007328}
7329
7330static void perf_swevent_read(struct perf_event *event)
7331{
7332}
7333
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007334static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007335{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007336 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007337 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007338 struct hlist_head *head;
7339
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007340 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007341 hwc->last_period = hwc->sample_period;
7342 perf_swevent_set_period(event);
7343 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007344
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007345 hwc->state = !(flags & PERF_EF_START);
7346
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007347 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007348 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007349 return -EINVAL;
7350
7351 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007352 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007354 return 0;
7355}
7356
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007357static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007358{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007359 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007360}
7361
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007362static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007363{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007364 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007365}
7366
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007367static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007368{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007369 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007370}
7371
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007372/* Deref the hlist from the update side */
7373static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007374swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007375{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007376 return rcu_dereference_protected(swhash->swevent_hlist,
7377 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007378}
7379
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007380static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007381{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007382 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007383
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007384 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007385 return;
7386
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007387 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007388 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007389}
7390
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007391static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007392{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007393 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007394
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007395 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007396
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007397 if (!--swhash->hlist_refcount)
7398 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007399
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007400 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007401}
7402
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007403static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007404{
7405 int cpu;
7406
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007407 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007408 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007409}
7410
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007411static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007412{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007413 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007414 int err = 0;
7415
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007416 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007417 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007418 struct swevent_hlist *hlist;
7419
7420 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7421 if (!hlist) {
7422 err = -ENOMEM;
7423 goto exit;
7424 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007425 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007426 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007427 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007428exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007429 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007430
7431 return err;
7432}
7433
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007434static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007435{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007436 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007437
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007438 get_online_cpus();
7439 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007440 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007441 if (err) {
7442 failed_cpu = cpu;
7443 goto fail;
7444 }
7445 }
7446 put_online_cpus();
7447
7448 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007449fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007450 for_each_possible_cpu(cpu) {
7451 if (cpu == failed_cpu)
7452 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007453 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007454 }
7455
7456 put_online_cpus();
7457 return err;
7458}
7459
Ingo Molnarc5905af2012-02-24 08:31:31 +01007460struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007461
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007462static void sw_perf_event_destroy(struct perf_event *event)
7463{
7464 u64 event_id = event->attr.config;
7465
7466 WARN_ON(event->parent);
7467
Ingo Molnarc5905af2012-02-24 08:31:31 +01007468 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007469 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007470}
7471
7472static int perf_swevent_init(struct perf_event *event)
7473{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007474 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007475
7476 if (event->attr.type != PERF_TYPE_SOFTWARE)
7477 return -ENOENT;
7478
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007479 /*
7480 * no branch sampling for software events
7481 */
7482 if (has_branch_stack(event))
7483 return -EOPNOTSUPP;
7484
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007485 switch (event_id) {
7486 case PERF_COUNT_SW_CPU_CLOCK:
7487 case PERF_COUNT_SW_TASK_CLOCK:
7488 return -ENOENT;
7489
7490 default:
7491 break;
7492 }
7493
Dan Carpenterce677832010-10-24 21:50:42 +02007494 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007495 return -ENOENT;
7496
7497 if (!event->parent) {
7498 int err;
7499
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007500 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007501 if (err)
7502 return err;
7503
Ingo Molnarc5905af2012-02-24 08:31:31 +01007504 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007505 event->destroy = sw_perf_event_destroy;
7506 }
7507
7508 return 0;
7509}
7510
7511static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007512 .task_ctx_nr = perf_sw_context,
7513
Peter Zijlstra34f43922015-02-20 14:05:38 +01007514 .capabilities = PERF_PMU_CAP_NO_NMI,
7515
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007516 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007517 .add = perf_swevent_add,
7518 .del = perf_swevent_del,
7519 .start = perf_swevent_start,
7520 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007521 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007522};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007523
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007524#ifdef CONFIG_EVENT_TRACING
7525
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007526static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007527 struct perf_sample_data *data)
7528{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007529 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007530
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007531 /* only top level events have filters set */
7532 if (event->parent)
7533 event = event->parent;
7534
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007535 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7536 return 1;
7537 return 0;
7538}
7539
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007540static int perf_tp_event_match(struct perf_event *event,
7541 struct perf_sample_data *data,
7542 struct pt_regs *regs)
7543{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007544 if (event->hw.state & PERF_HES_STOPPED)
7545 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007546 /*
7547 * All tracepoints are from kernel-space.
7548 */
7549 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007550 return 0;
7551
7552 if (!perf_tp_filter_match(event, data))
7553 return 0;
7554
7555 return 1;
7556}
7557
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007558void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7559 struct trace_event_call *call, u64 count,
7560 struct pt_regs *regs, struct hlist_head *head,
7561 struct task_struct *task)
7562{
7563 struct bpf_prog *prog = call->prog;
7564
7565 if (prog) {
7566 *(struct pt_regs **)raw_data = regs;
7567 if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) {
7568 perf_swevent_put_recursion_context(rctx);
7569 return;
7570 }
7571 }
7572 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
7573 rctx, task);
7574}
7575EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7576
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007577void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007578 struct pt_regs *regs, struct hlist_head *head, int rctx,
7579 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007580{
7581 struct perf_sample_data data;
7582 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007583
7584 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007585 .frag = {
7586 .size = entry_size,
7587 .data = record,
7588 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007589 };
7590
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007591 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007592 data.raw = &raw;
7593
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007594 perf_trace_buf_update(record, event_type);
7595
Sasha Levinb67bfe02013-02-27 17:06:00 -08007596 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007597 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007598 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007599 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007600
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007601 /*
7602 * If we got specified a target task, also iterate its context and
7603 * deliver this event there too.
7604 */
7605 if (task && task != current) {
7606 struct perf_event_context *ctx;
7607 struct trace_entry *entry = record;
7608
7609 rcu_read_lock();
7610 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7611 if (!ctx)
7612 goto unlock;
7613
7614 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7615 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7616 continue;
7617 if (event->attr.config != entry->type)
7618 continue;
7619 if (perf_tp_event_match(event, &data, regs))
7620 perf_swevent_event(event, count, &data, regs);
7621 }
7622unlock:
7623 rcu_read_unlock();
7624 }
7625
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007626 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007627}
7628EXPORT_SYMBOL_GPL(perf_tp_event);
7629
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007630static void tp_perf_event_destroy(struct perf_event *event)
7631{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007632 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007633}
7634
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007635static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007636{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007637 int err;
7638
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007639 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7640 return -ENOENT;
7641
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007642 /*
7643 * no branch sampling for tracepoint events
7644 */
7645 if (has_branch_stack(event))
7646 return -EOPNOTSUPP;
7647
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007648 err = perf_trace_init(event);
7649 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007650 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007651
7652 event->destroy = tp_perf_event_destroy;
7653
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007654 return 0;
7655}
7656
7657static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007658 .task_ctx_nr = perf_sw_context,
7659
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007660 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007661 .add = perf_trace_add,
7662 .del = perf_trace_del,
7663 .start = perf_swevent_start,
7664 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007665 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007666};
7667
7668static inline void perf_tp_register(void)
7669{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007670 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007671}
Li Zefan6fb29152009-10-15 11:21:42 +08007672
Li Zefan6fb29152009-10-15 11:21:42 +08007673static void perf_event_free_filter(struct perf_event *event)
7674{
7675 ftrace_profile_free_filter(event);
7676}
7677
Alexei Starovoitov25415172015-03-25 12:49:20 -07007678static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7679{
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007680 bool is_kprobe, is_tracepoint;
Alexei Starovoitov25415172015-03-25 12:49:20 -07007681 struct bpf_prog *prog;
7682
7683 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7684 return -EINVAL;
7685
7686 if (event->tp_event->prog)
7687 return -EEXIST;
7688
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007689 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
7690 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
7691 if (!is_kprobe && !is_tracepoint)
7692 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007693 return -EINVAL;
7694
7695 prog = bpf_prog_get(prog_fd);
7696 if (IS_ERR(prog))
7697 return PTR_ERR(prog);
7698
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007699 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
7700 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007701 /* valid fd, but invalid bpf program type */
7702 bpf_prog_put(prog);
7703 return -EINVAL;
7704 }
7705
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07007706 if (is_tracepoint) {
7707 int off = trace_event_get_offsets(event->tp_event);
7708
7709 if (prog->aux->max_ctx_offset > off) {
7710 bpf_prog_put(prog);
7711 return -EACCES;
7712 }
7713 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07007714 event->tp_event->prog = prog;
7715
7716 return 0;
7717}
7718
7719static void perf_event_free_bpf_prog(struct perf_event *event)
7720{
7721 struct bpf_prog *prog;
7722
7723 if (!event->tp_event)
7724 return;
7725
7726 prog = event->tp_event->prog;
7727 if (prog) {
7728 event->tp_event->prog = NULL;
Daniel Borkmann1aacde32016-06-30 17:24:43 +02007729 bpf_prog_put(prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07007730 }
7731}
7732
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007733#else
Li Zefan6fb29152009-10-15 11:21:42 +08007734
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007735static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007736{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007737}
Li Zefan6fb29152009-10-15 11:21:42 +08007738
Li Zefan6fb29152009-10-15 11:21:42 +08007739static void perf_event_free_filter(struct perf_event *event)
7740{
7741}
7742
Alexei Starovoitov25415172015-03-25 12:49:20 -07007743static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7744{
7745 return -ENOENT;
7746}
7747
7748static void perf_event_free_bpf_prog(struct perf_event *event)
7749{
7750}
Li Zefan07b139c2009-12-21 14:27:35 +08007751#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007752
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007753#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007754void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007755{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007756 struct perf_sample_data sample;
7757 struct pt_regs *regs = data;
7758
Robert Richterfd0d0002012-04-02 20:19:08 +02007759 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007760
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007761 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007762 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007763}
7764#endif
7765
Alexander Shishkin375637b2016-04-27 18:44:46 +03007766/*
7767 * Allocate a new address filter
7768 */
7769static struct perf_addr_filter *
7770perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
7771{
7772 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
7773 struct perf_addr_filter *filter;
7774
7775 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
7776 if (!filter)
7777 return NULL;
7778
7779 INIT_LIST_HEAD(&filter->entry);
7780 list_add_tail(&filter->entry, filters);
7781
7782 return filter;
7783}
7784
7785static void free_filters_list(struct list_head *filters)
7786{
7787 struct perf_addr_filter *filter, *iter;
7788
7789 list_for_each_entry_safe(filter, iter, filters, entry) {
7790 if (filter->inode)
7791 iput(filter->inode);
7792 list_del(&filter->entry);
7793 kfree(filter);
7794 }
7795}
7796
7797/*
7798 * Free existing address filters and optionally install new ones
7799 */
7800static void perf_addr_filters_splice(struct perf_event *event,
7801 struct list_head *head)
7802{
7803 unsigned long flags;
7804 LIST_HEAD(list);
7805
7806 if (!has_addr_filter(event))
7807 return;
7808
7809 /* don't bother with children, they don't have their own filters */
7810 if (event->parent)
7811 return;
7812
7813 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
7814
7815 list_splice_init(&event->addr_filters.list, &list);
7816 if (head)
7817 list_splice(head, &event->addr_filters.list);
7818
7819 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
7820
7821 free_filters_list(&list);
7822}
7823
7824/*
7825 * Scan through mm's vmas and see if one of them matches the
7826 * @filter; if so, adjust filter's address range.
7827 * Called with mm::mmap_sem down for reading.
7828 */
7829static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
7830 struct mm_struct *mm)
7831{
7832 struct vm_area_struct *vma;
7833
7834 for (vma = mm->mmap; vma; vma = vma->vm_next) {
7835 struct file *file = vma->vm_file;
7836 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7837 unsigned long vma_size = vma->vm_end - vma->vm_start;
7838
7839 if (!file)
7840 continue;
7841
7842 if (!perf_addr_filter_match(filter, file, off, vma_size))
7843 continue;
7844
7845 return vma->vm_start;
7846 }
7847
7848 return 0;
7849}
7850
7851/*
7852 * Update event's address range filters based on the
7853 * task's existing mappings, if any.
7854 */
7855static void perf_event_addr_filters_apply(struct perf_event *event)
7856{
7857 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7858 struct task_struct *task = READ_ONCE(event->ctx->task);
7859 struct perf_addr_filter *filter;
7860 struct mm_struct *mm = NULL;
7861 unsigned int count = 0;
7862 unsigned long flags;
7863
7864 /*
7865 * We may observe TASK_TOMBSTONE, which means that the event tear-down
7866 * will stop on the parent's child_mutex that our caller is also holding
7867 */
7868 if (task == TASK_TOMBSTONE)
7869 return;
7870
7871 mm = get_task_mm(event->ctx->task);
7872 if (!mm)
7873 goto restart;
7874
7875 down_read(&mm->mmap_sem);
7876
7877 raw_spin_lock_irqsave(&ifh->lock, flags);
7878 list_for_each_entry(filter, &ifh->list, entry) {
7879 event->addr_filters_offs[count] = 0;
7880
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06007881 /*
7882 * Adjust base offset if the filter is associated to a binary
7883 * that needs to be mapped:
7884 */
7885 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007886 event->addr_filters_offs[count] =
7887 perf_addr_filter_apply(filter, mm);
7888
7889 count++;
7890 }
7891
7892 event->addr_filters_gen++;
7893 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7894
7895 up_read(&mm->mmap_sem);
7896
7897 mmput(mm);
7898
7899restart:
7900 perf_event_restart(event);
7901}
7902
7903/*
7904 * Address range filtering: limiting the data to certain
7905 * instruction address ranges. Filters are ioctl()ed to us from
7906 * userspace as ascii strings.
7907 *
7908 * Filter string format:
7909 *
7910 * ACTION RANGE_SPEC
7911 * where ACTION is one of the
7912 * * "filter": limit the trace to this region
7913 * * "start": start tracing from this address
7914 * * "stop": stop tracing at this address/region;
7915 * RANGE_SPEC is
7916 * * for kernel addresses: <start address>[/<size>]
7917 * * for object files: <start address>[/<size>]@</path/to/object/file>
7918 *
7919 * if <size> is not specified, the range is treated as a single address.
7920 */
7921enum {
7922 IF_ACT_FILTER,
7923 IF_ACT_START,
7924 IF_ACT_STOP,
7925 IF_SRC_FILE,
7926 IF_SRC_KERNEL,
7927 IF_SRC_FILEADDR,
7928 IF_SRC_KERNELADDR,
7929};
7930
7931enum {
7932 IF_STATE_ACTION = 0,
7933 IF_STATE_SOURCE,
7934 IF_STATE_END,
7935};
7936
7937static const match_table_t if_tokens = {
7938 { IF_ACT_FILTER, "filter" },
7939 { IF_ACT_START, "start" },
7940 { IF_ACT_STOP, "stop" },
7941 { IF_SRC_FILE, "%u/%u@%s" },
7942 { IF_SRC_KERNEL, "%u/%u" },
7943 { IF_SRC_FILEADDR, "%u@%s" },
7944 { IF_SRC_KERNELADDR, "%u" },
7945};
7946
7947/*
7948 * Address filter string parser
7949 */
7950static int
7951perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
7952 struct list_head *filters)
7953{
7954 struct perf_addr_filter *filter = NULL;
7955 char *start, *orig, *filename = NULL;
7956 struct path path;
7957 substring_t args[MAX_OPT_ARGS];
7958 int state = IF_STATE_ACTION, token;
7959 unsigned int kernel = 0;
7960 int ret = -EINVAL;
7961
7962 orig = fstr = kstrdup(fstr, GFP_KERNEL);
7963 if (!fstr)
7964 return -ENOMEM;
7965
7966 while ((start = strsep(&fstr, " ,\n")) != NULL) {
7967 ret = -EINVAL;
7968
7969 if (!*start)
7970 continue;
7971
7972 /* filter definition begins */
7973 if (state == IF_STATE_ACTION) {
7974 filter = perf_addr_filter_new(event, filters);
7975 if (!filter)
7976 goto fail;
7977 }
7978
7979 token = match_token(start, if_tokens, args);
7980 switch (token) {
7981 case IF_ACT_FILTER:
7982 case IF_ACT_START:
7983 filter->filter = 1;
7984
7985 case IF_ACT_STOP:
7986 if (state != IF_STATE_ACTION)
7987 goto fail;
7988
7989 state = IF_STATE_SOURCE;
7990 break;
7991
7992 case IF_SRC_KERNELADDR:
7993 case IF_SRC_KERNEL:
7994 kernel = 1;
7995
7996 case IF_SRC_FILEADDR:
7997 case IF_SRC_FILE:
7998 if (state != IF_STATE_SOURCE)
7999 goto fail;
8000
8001 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8002 filter->range = 1;
8003
8004 *args[0].to = 0;
8005 ret = kstrtoul(args[0].from, 0, &filter->offset);
8006 if (ret)
8007 goto fail;
8008
8009 if (filter->range) {
8010 *args[1].to = 0;
8011 ret = kstrtoul(args[1].from, 0, &filter->size);
8012 if (ret)
8013 goto fail;
8014 }
8015
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008016 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8017 int fpos = filter->range ? 2 : 1;
8018
8019 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008020 if (!filename) {
8021 ret = -ENOMEM;
8022 goto fail;
8023 }
8024 }
8025
8026 state = IF_STATE_END;
8027 break;
8028
8029 default:
8030 goto fail;
8031 }
8032
8033 /*
8034 * Filter definition is fully parsed, validate and install it.
8035 * Make sure that it doesn't contradict itself or the event's
8036 * attribute.
8037 */
8038 if (state == IF_STATE_END) {
8039 if (kernel && event->attr.exclude_kernel)
8040 goto fail;
8041
8042 if (!kernel) {
8043 if (!filename)
8044 goto fail;
8045
8046 /* look up the path and grab its inode */
8047 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8048 if (ret)
8049 goto fail_free_name;
8050
8051 filter->inode = igrab(d_inode(path.dentry));
8052 path_put(&path);
8053 kfree(filename);
8054 filename = NULL;
8055
8056 ret = -EINVAL;
8057 if (!filter->inode ||
8058 !S_ISREG(filter->inode->i_mode))
8059 /* free_filters_list() will iput() */
8060 goto fail;
8061 }
8062
8063 /* ready to consume more filters */
8064 state = IF_STATE_ACTION;
8065 filter = NULL;
8066 }
8067 }
8068
8069 if (state != IF_STATE_ACTION)
8070 goto fail;
8071
8072 kfree(orig);
8073
8074 return 0;
8075
8076fail_free_name:
8077 kfree(filename);
8078fail:
8079 free_filters_list(filters);
8080 kfree(orig);
8081
8082 return ret;
8083}
8084
8085static int
8086perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8087{
8088 LIST_HEAD(filters);
8089 int ret;
8090
8091 /*
8092 * Since this is called in perf_ioctl() path, we're already holding
8093 * ctx::mutex.
8094 */
8095 lockdep_assert_held(&event->ctx->mutex);
8096
8097 if (WARN_ON_ONCE(event->parent))
8098 return -EINVAL;
8099
8100 /*
8101 * For now, we only support filtering in per-task events; doing so
8102 * for CPU-wide events requires additional context switching trickery,
8103 * since same object code will be mapped at different virtual
8104 * addresses in different processes.
8105 */
8106 if (!event->ctx->task)
8107 return -EOPNOTSUPP;
8108
8109 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8110 if (ret)
8111 return ret;
8112
8113 ret = event->pmu->addr_filters_validate(&filters);
8114 if (ret) {
8115 free_filters_list(&filters);
8116 return ret;
8117 }
8118
8119 /* remove existing filters, if any */
8120 perf_addr_filters_splice(event, &filters);
8121
8122 /* install new filters */
8123 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8124
8125 return ret;
8126}
8127
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008128static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8129{
8130 char *filter_str;
8131 int ret = -EINVAL;
8132
Alexander Shishkin375637b2016-04-27 18:44:46 +03008133 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8134 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8135 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008136 return -EINVAL;
8137
8138 filter_str = strndup_user(arg, PAGE_SIZE);
8139 if (IS_ERR(filter_str))
8140 return PTR_ERR(filter_str);
8141
8142 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8143 event->attr.type == PERF_TYPE_TRACEPOINT)
8144 ret = ftrace_profile_set_filter(event, event->attr.config,
8145 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008146 else if (has_addr_filter(event))
8147 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008148
8149 kfree(filter_str);
8150 return ret;
8151}
8152
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008153/*
8154 * hrtimer based swevent callback
8155 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008156
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008157static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008158{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008159 enum hrtimer_restart ret = HRTIMER_RESTART;
8160 struct perf_sample_data data;
8161 struct pt_regs *regs;
8162 struct perf_event *event;
8163 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008164
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008165 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008166
8167 if (event->state != PERF_EVENT_STATE_ACTIVE)
8168 return HRTIMER_NORESTART;
8169
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008170 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008171
Robert Richterfd0d0002012-04-02 20:19:08 +02008172 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008173 regs = get_irq_regs();
8174
8175 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008176 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008177 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008178 ret = HRTIMER_NORESTART;
8179 }
8180
8181 period = max_t(u64, 10000, event->hw.sample_period);
8182 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8183
8184 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008185}
8186
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008187static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008188{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008189 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008190 s64 period;
8191
8192 if (!is_sampling_event(event))
8193 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008194
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008195 period = local64_read(&hwc->period_left);
8196 if (period) {
8197 if (period < 0)
8198 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008199
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008200 local64_set(&hwc->period_left, 0);
8201 } else {
8202 period = max_t(u64, 10000, hwc->sample_period);
8203 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008204 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8205 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008206}
8207
8208static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8209{
8210 struct hw_perf_event *hwc = &event->hw;
8211
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008212 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008213 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008214 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008215
8216 hrtimer_cancel(&hwc->hrtimer);
8217 }
8218}
8219
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008220static void perf_swevent_init_hrtimer(struct perf_event *event)
8221{
8222 struct hw_perf_event *hwc = &event->hw;
8223
8224 if (!is_sampling_event(event))
8225 return;
8226
8227 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8228 hwc->hrtimer.function = perf_swevent_hrtimer;
8229
8230 /*
8231 * Since hrtimers have a fixed rate, we can do a static freq->period
8232 * mapping and avoid the whole period adjust feedback stuff.
8233 */
8234 if (event->attr.freq) {
8235 long freq = event->attr.sample_freq;
8236
8237 event->attr.sample_period = NSEC_PER_SEC / freq;
8238 hwc->sample_period = event->attr.sample_period;
8239 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008240 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008241 event->attr.freq = 0;
8242 }
8243}
8244
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008245/*
8246 * Software event: cpu wall time clock
8247 */
8248
8249static void cpu_clock_event_update(struct perf_event *event)
8250{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008251 s64 prev;
8252 u64 now;
8253
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008254 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008255 prev = local64_xchg(&event->hw.prev_count, now);
8256 local64_add(now - prev, &event->count);
8257}
8258
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008259static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008260{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008261 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008262 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008263}
8264
8265static void cpu_clock_event_stop(struct perf_event *event, int flags)
8266{
8267 perf_swevent_cancel_hrtimer(event);
8268 cpu_clock_event_update(event);
8269}
8270
8271static int cpu_clock_event_add(struct perf_event *event, int flags)
8272{
8273 if (flags & PERF_EF_START)
8274 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008275 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008276
8277 return 0;
8278}
8279
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008280static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008281{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008282 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008283}
8284
8285static void cpu_clock_event_read(struct perf_event *event)
8286{
8287 cpu_clock_event_update(event);
8288}
8289
8290static int cpu_clock_event_init(struct perf_event *event)
8291{
8292 if (event->attr.type != PERF_TYPE_SOFTWARE)
8293 return -ENOENT;
8294
8295 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8296 return -ENOENT;
8297
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008298 /*
8299 * no branch sampling for software events
8300 */
8301 if (has_branch_stack(event))
8302 return -EOPNOTSUPP;
8303
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008304 perf_swevent_init_hrtimer(event);
8305
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008306 return 0;
8307}
8308
8309static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008310 .task_ctx_nr = perf_sw_context,
8311
Peter Zijlstra34f43922015-02-20 14:05:38 +01008312 .capabilities = PERF_PMU_CAP_NO_NMI,
8313
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008314 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008315 .add = cpu_clock_event_add,
8316 .del = cpu_clock_event_del,
8317 .start = cpu_clock_event_start,
8318 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008319 .read = cpu_clock_event_read,
8320};
8321
8322/*
8323 * Software event: task time clock
8324 */
8325
8326static void task_clock_event_update(struct perf_event *event, u64 now)
8327{
8328 u64 prev;
8329 s64 delta;
8330
8331 prev = local64_xchg(&event->hw.prev_count, now);
8332 delta = now - prev;
8333 local64_add(delta, &event->count);
8334}
8335
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008336static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008337{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008338 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008339 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008340}
8341
8342static void task_clock_event_stop(struct perf_event *event, int flags)
8343{
8344 perf_swevent_cancel_hrtimer(event);
8345 task_clock_event_update(event, event->ctx->time);
8346}
8347
8348static int task_clock_event_add(struct perf_event *event, int flags)
8349{
8350 if (flags & PERF_EF_START)
8351 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008352 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008353
8354 return 0;
8355}
8356
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008357static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008358{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008359 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008360}
8361
8362static void task_clock_event_read(struct perf_event *event)
8363{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008364 u64 now = perf_clock();
8365 u64 delta = now - event->ctx->timestamp;
8366 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008367
8368 task_clock_event_update(event, time);
8369}
8370
8371static int task_clock_event_init(struct perf_event *event)
8372{
8373 if (event->attr.type != PERF_TYPE_SOFTWARE)
8374 return -ENOENT;
8375
8376 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8377 return -ENOENT;
8378
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008379 /*
8380 * no branch sampling for software events
8381 */
8382 if (has_branch_stack(event))
8383 return -EOPNOTSUPP;
8384
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008385 perf_swevent_init_hrtimer(event);
8386
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008387 return 0;
8388}
8389
8390static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008391 .task_ctx_nr = perf_sw_context,
8392
Peter Zijlstra34f43922015-02-20 14:05:38 +01008393 .capabilities = PERF_PMU_CAP_NO_NMI,
8394
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008395 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008396 .add = task_clock_event_add,
8397 .del = task_clock_event_del,
8398 .start = task_clock_event_start,
8399 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008400 .read = task_clock_event_read,
8401};
8402
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008403static void perf_pmu_nop_void(struct pmu *pmu)
8404{
8405}
8406
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008407static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8408{
8409}
8410
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008411static int perf_pmu_nop_int(struct pmu *pmu)
8412{
8413 return 0;
8414}
8415
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008416static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008417
8418static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008419{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008420 __this_cpu_write(nop_txn_flags, flags);
8421
8422 if (flags & ~PERF_PMU_TXN_ADD)
8423 return;
8424
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008425 perf_pmu_disable(pmu);
8426}
8427
8428static int perf_pmu_commit_txn(struct pmu *pmu)
8429{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008430 unsigned int flags = __this_cpu_read(nop_txn_flags);
8431
8432 __this_cpu_write(nop_txn_flags, 0);
8433
8434 if (flags & ~PERF_PMU_TXN_ADD)
8435 return 0;
8436
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008437 perf_pmu_enable(pmu);
8438 return 0;
8439}
8440
8441static void perf_pmu_cancel_txn(struct pmu *pmu)
8442{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008443 unsigned int flags = __this_cpu_read(nop_txn_flags);
8444
8445 __this_cpu_write(nop_txn_flags, 0);
8446
8447 if (flags & ~PERF_PMU_TXN_ADD)
8448 return;
8449
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008450 perf_pmu_enable(pmu);
8451}
8452
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008453static int perf_event_idx_default(struct perf_event *event)
8454{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008455 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008456}
8457
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008458/*
8459 * Ensures all contexts with the same task_ctx_nr have the same
8460 * pmu_cpu_context too.
8461 */
Mark Rutland9e317042014-02-10 17:44:18 +00008462static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008463{
8464 struct pmu *pmu;
8465
8466 if (ctxn < 0)
8467 return NULL;
8468
8469 list_for_each_entry(pmu, &pmus, entry) {
8470 if (pmu->task_ctx_nr == ctxn)
8471 return pmu->pmu_cpu_context;
8472 }
8473
8474 return NULL;
8475}
8476
Peter Zijlstra51676952010-12-07 14:18:20 +01008477static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008478{
Peter Zijlstra51676952010-12-07 14:18:20 +01008479 int cpu;
8480
8481 for_each_possible_cpu(cpu) {
8482 struct perf_cpu_context *cpuctx;
8483
8484 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8485
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008486 if (cpuctx->unique_pmu == old_pmu)
8487 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01008488 }
8489}
8490
8491static void free_pmu_context(struct pmu *pmu)
8492{
8493 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008494
8495 mutex_lock(&pmus_lock);
8496 /*
8497 * Like a real lame refcount.
8498 */
Peter Zijlstra51676952010-12-07 14:18:20 +01008499 list_for_each_entry(i, &pmus, entry) {
8500 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
8501 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008502 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01008503 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008504 }
8505
Peter Zijlstra51676952010-12-07 14:18:20 +01008506 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008507out:
8508 mutex_unlock(&pmus_lock);
8509}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008510
8511/*
8512 * Let userspace know that this PMU supports address range filtering:
8513 */
8514static ssize_t nr_addr_filters_show(struct device *dev,
8515 struct device_attribute *attr,
8516 char *page)
8517{
8518 struct pmu *pmu = dev_get_drvdata(dev);
8519
8520 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8521}
8522DEVICE_ATTR_RO(nr_addr_filters);
8523
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008524static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008525
Peter Zijlstraabe43402010-11-17 23:17:37 +01008526static ssize_t
8527type_show(struct device *dev, struct device_attribute *attr, char *page)
8528{
8529 struct pmu *pmu = dev_get_drvdata(dev);
8530
8531 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8532}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008533static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008534
Stephane Eranian62b85632013-04-03 14:21:34 +02008535static ssize_t
8536perf_event_mux_interval_ms_show(struct device *dev,
8537 struct device_attribute *attr,
8538 char *page)
8539{
8540 struct pmu *pmu = dev_get_drvdata(dev);
8541
8542 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8543}
8544
Peter Zijlstra272325c2015-04-15 11:41:58 +02008545static DEFINE_MUTEX(mux_interval_mutex);
8546
Stephane Eranian62b85632013-04-03 14:21:34 +02008547static ssize_t
8548perf_event_mux_interval_ms_store(struct device *dev,
8549 struct device_attribute *attr,
8550 const char *buf, size_t count)
8551{
8552 struct pmu *pmu = dev_get_drvdata(dev);
8553 int timer, cpu, ret;
8554
8555 ret = kstrtoint(buf, 0, &timer);
8556 if (ret)
8557 return ret;
8558
8559 if (timer < 1)
8560 return -EINVAL;
8561
8562 /* same value, noting to do */
8563 if (timer == pmu->hrtimer_interval_ms)
8564 return count;
8565
Peter Zijlstra272325c2015-04-15 11:41:58 +02008566 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008567 pmu->hrtimer_interval_ms = timer;
8568
8569 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02008570 get_online_cpus();
8571 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008572 struct perf_cpu_context *cpuctx;
8573 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8574 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8575
Peter Zijlstra272325c2015-04-15 11:41:58 +02008576 cpu_function_call(cpu,
8577 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02008578 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02008579 put_online_cpus();
8580 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008581
8582 return count;
8583}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008584static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02008585
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008586static struct attribute *pmu_dev_attrs[] = {
8587 &dev_attr_type.attr,
8588 &dev_attr_perf_event_mux_interval_ms.attr,
8589 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008590};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008591ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008592
8593static int pmu_bus_running;
8594static struct bus_type pmu_bus = {
8595 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008596 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008597};
8598
8599static void pmu_dev_release(struct device *dev)
8600{
8601 kfree(dev);
8602}
8603
8604static int pmu_dev_alloc(struct pmu *pmu)
8605{
8606 int ret = -ENOMEM;
8607
8608 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
8609 if (!pmu->dev)
8610 goto out;
8611
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01008612 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01008613 device_initialize(pmu->dev);
8614 ret = dev_set_name(pmu->dev, "%s", pmu->name);
8615 if (ret)
8616 goto free_dev;
8617
8618 dev_set_drvdata(pmu->dev, pmu);
8619 pmu->dev->bus = &pmu_bus;
8620 pmu->dev->release = pmu_dev_release;
8621 ret = device_add(pmu->dev);
8622 if (ret)
8623 goto free_dev;
8624
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008625 /* For PMUs with address filters, throw in an extra attribute: */
8626 if (pmu->nr_addr_filters)
8627 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
8628
8629 if (ret)
8630 goto del_dev;
8631
Peter Zijlstraabe43402010-11-17 23:17:37 +01008632out:
8633 return ret;
8634
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008635del_dev:
8636 device_del(pmu->dev);
8637
Peter Zijlstraabe43402010-11-17 23:17:37 +01008638free_dev:
8639 put_device(pmu->dev);
8640 goto out;
8641}
8642
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008643static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008644static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008645
Mischa Jonker03d8e802013-06-04 11:45:48 +02008646int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008647{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008648 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008649
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008650 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008651 ret = -ENOMEM;
8652 pmu->pmu_disable_count = alloc_percpu(int);
8653 if (!pmu->pmu_disable_count)
8654 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008655
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008656 pmu->type = -1;
8657 if (!name)
8658 goto skip_type;
8659 pmu->name = name;
8660
8661 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08008662 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
8663 if (type < 0) {
8664 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008665 goto free_pdc;
8666 }
8667 }
8668 pmu->type = type;
8669
Peter Zijlstraabe43402010-11-17 23:17:37 +01008670 if (pmu_bus_running) {
8671 ret = pmu_dev_alloc(pmu);
8672 if (ret)
8673 goto free_idr;
8674 }
8675
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008676skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01008677 if (pmu->task_ctx_nr == perf_hw_context) {
8678 static int hw_context_taken = 0;
8679
Mark Rutland5101ef22016-04-26 11:33:46 +01008680 /*
8681 * Other than systems with heterogeneous CPUs, it never makes
8682 * sense for two PMUs to share perf_hw_context. PMUs which are
8683 * uncore must use perf_invalid_context.
8684 */
8685 if (WARN_ON_ONCE(hw_context_taken &&
8686 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01008687 pmu->task_ctx_nr = perf_invalid_context;
8688
8689 hw_context_taken = 1;
8690 }
8691
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008692 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
8693 if (pmu->pmu_cpu_context)
8694 goto got_cpu_context;
8695
Wei Yongjunc4814202013-04-12 11:05:54 +08008696 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008697 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
8698 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01008699 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008700
8701 for_each_possible_cpu(cpu) {
8702 struct perf_cpu_context *cpuctx;
8703
8704 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02008705 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008706 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008707 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008708 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02008709
Peter Zijlstra272325c2015-04-15 11:41:58 +02008710 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02008711
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008712 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008713 }
8714
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008715got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008716 if (!pmu->start_txn) {
8717 if (pmu->pmu_enable) {
8718 /*
8719 * If we have pmu_enable/pmu_disable calls, install
8720 * transaction stubs that use that to try and batch
8721 * hardware accesses.
8722 */
8723 pmu->start_txn = perf_pmu_start_txn;
8724 pmu->commit_txn = perf_pmu_commit_txn;
8725 pmu->cancel_txn = perf_pmu_cancel_txn;
8726 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008727 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008728 pmu->commit_txn = perf_pmu_nop_int;
8729 pmu->cancel_txn = perf_pmu_nop_void;
8730 }
8731 }
8732
8733 if (!pmu->pmu_enable) {
8734 pmu->pmu_enable = perf_pmu_nop_void;
8735 pmu->pmu_disable = perf_pmu_nop_void;
8736 }
8737
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008738 if (!pmu->event_idx)
8739 pmu->event_idx = perf_event_idx_default;
8740
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008741 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008742 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008743 ret = 0;
8744unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008745 mutex_unlock(&pmus_lock);
8746
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008747 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008748
Peter Zijlstraabe43402010-11-17 23:17:37 +01008749free_dev:
8750 device_del(pmu->dev);
8751 put_device(pmu->dev);
8752
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008753free_idr:
8754 if (pmu->type >= PERF_TYPE_MAX)
8755 idr_remove(&pmu_idr, pmu->type);
8756
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008757free_pdc:
8758 free_percpu(pmu->pmu_disable_count);
8759 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008760}
Yan, Zhengc464c762014-03-18 16:56:41 +08008761EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008762
8763void perf_pmu_unregister(struct pmu *pmu)
8764{
8765 mutex_lock(&pmus_lock);
8766 list_del_rcu(&pmu->entry);
8767 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008768
8769 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02008770 * We dereference the pmu list under both SRCU and regular RCU, so
8771 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008772 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008773 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02008774 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008775
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008776 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008777 if (pmu->type >= PERF_TYPE_MAX)
8778 idr_remove(&pmu_idr, pmu->type);
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008779 if (pmu->nr_addr_filters)
8780 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008781 device_del(pmu->dev);
8782 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01008783 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008784}
Yan, Zhengc464c762014-03-18 16:56:41 +08008785EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008786
Mark Rutlandcc34b982015-01-07 14:56:51 +00008787static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
8788{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008789 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00008790 int ret;
8791
8792 if (!try_module_get(pmu->module))
8793 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008794
8795 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02008796 /*
8797 * This ctx->mutex can nest when we're called through
8798 * inheritance. See the perf_event_ctx_lock_nested() comment.
8799 */
8800 ctx = perf_event_ctx_lock_nested(event->group_leader,
8801 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008802 BUG_ON(!ctx);
8803 }
8804
Mark Rutlandcc34b982015-01-07 14:56:51 +00008805 event->pmu = pmu;
8806 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008807
8808 if (ctx)
8809 perf_event_ctx_unlock(event->group_leader, ctx);
8810
Mark Rutlandcc34b982015-01-07 14:56:51 +00008811 if (ret)
8812 module_put(pmu->module);
8813
8814 return ret;
8815}
8816
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008817static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008818{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02008819 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008820 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08008821 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008822
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008823 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008824
8825 rcu_read_lock();
8826 pmu = idr_find(&pmu_idr, event->attr.type);
8827 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08008828 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008829 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08008830 if (ret)
8831 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008832 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08008833 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008834
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008835 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008836 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008837 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008838 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008839
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008840 if (ret != -ENOENT) {
8841 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008842 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008843 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008844 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008845 pmu = ERR_PTR(-ENOENT);
8846unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008847 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008848
8849 return pmu;
8850}
8851
Kan Liangf2fb6be2016-03-23 11:24:37 -07008852static void attach_sb_event(struct perf_event *event)
8853{
8854 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
8855
8856 raw_spin_lock(&pel->lock);
8857 list_add_rcu(&event->sb_list, &pel->list);
8858 raw_spin_unlock(&pel->lock);
8859}
8860
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008861/*
8862 * We keep a list of all !task (and therefore per-cpu) events
8863 * that need to receive side-band records.
8864 *
8865 * This avoids having to scan all the various PMU per-cpu contexts
8866 * looking for them.
8867 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07008868static void account_pmu_sb_event(struct perf_event *event)
8869{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07008870 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07008871 attach_sb_event(event);
8872}
8873
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008874static void account_event_cpu(struct perf_event *event, int cpu)
8875{
8876 if (event->parent)
8877 return;
8878
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008879 if (is_cgroup_event(event))
8880 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
8881}
8882
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008883/* Freq events need the tick to stay alive (see perf_event_task_tick). */
8884static void account_freq_event_nohz(void)
8885{
8886#ifdef CONFIG_NO_HZ_FULL
8887 /* Lock so we don't race with concurrent unaccount */
8888 spin_lock(&nr_freq_lock);
8889 if (atomic_inc_return(&nr_freq_events) == 1)
8890 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
8891 spin_unlock(&nr_freq_lock);
8892#endif
8893}
8894
8895static void account_freq_event(void)
8896{
8897 if (tick_nohz_full_enabled())
8898 account_freq_event_nohz();
8899 else
8900 atomic_inc(&nr_freq_events);
8901}
8902
8903
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008904static void account_event(struct perf_event *event)
8905{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008906 bool inc = false;
8907
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008908 if (event->parent)
8909 return;
8910
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008911 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008912 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008913 if (event->attr.mmap || event->attr.mmap_data)
8914 atomic_inc(&nr_mmap_events);
8915 if (event->attr.comm)
8916 atomic_inc(&nr_comm_events);
8917 if (event->attr.task)
8918 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008919 if (event->attr.freq)
8920 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03008921 if (event->attr.context_switch) {
8922 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008923 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03008924 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008925 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008926 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008927 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008928 inc = true;
8929
Peter Zijlstra9107c892016-02-24 18:45:45 +01008930 if (inc) {
8931 if (atomic_inc_not_zero(&perf_sched_count))
8932 goto enabled;
8933
8934 mutex_lock(&perf_sched_mutex);
8935 if (!atomic_read(&perf_sched_count)) {
8936 static_branch_enable(&perf_sched_events);
8937 /*
8938 * Guarantee that all CPUs observe they key change and
8939 * call the perf scheduling hooks before proceeding to
8940 * install events that need them.
8941 */
8942 synchronize_sched();
8943 }
8944 /*
8945 * Now that we have waited for the sync_sched(), allow further
8946 * increments to by-pass the mutex.
8947 */
8948 atomic_inc(&perf_sched_count);
8949 mutex_unlock(&perf_sched_mutex);
8950 }
8951enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008952
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008953 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07008954
8955 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008956}
8957
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008958/*
8959 * Allocate and initialize a event structure
8960 */
8961static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008962perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008963 struct task_struct *task,
8964 struct perf_event *group_leader,
8965 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008966 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00008967 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008968{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02008969 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008970 struct perf_event *event;
8971 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008972 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008973
Oleg Nesterov66832eb2011-01-18 17:10:32 +01008974 if ((unsigned)cpu >= nr_cpu_ids) {
8975 if (!task || cpu != -1)
8976 return ERR_PTR(-EINVAL);
8977 }
8978
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008979 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008980 if (!event)
8981 return ERR_PTR(-ENOMEM);
8982
8983 /*
8984 * Single events are their own group leaders, with an
8985 * empty sibling list:
8986 */
8987 if (!group_leader)
8988 group_leader = event;
8989
8990 mutex_init(&event->child_mutex);
8991 INIT_LIST_HEAD(&event->child_list);
8992
8993 INIT_LIST_HEAD(&event->group_entry);
8994 INIT_LIST_HEAD(&event->event_entry);
8995 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01008996 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01008997 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008998 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01008999 INIT_HLIST_NODE(&event->hlist_entry);
9000
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009001
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009002 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009003 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009004
9005 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009006 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009007
Al Viroa6fa9412012-08-20 14:59:25 +01009008 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009009 event->cpu = cpu;
9010 event->attr = *attr;
9011 event->group_leader = group_leader;
9012 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009013 event->oncpu = -1;
9014
9015 event->parent = parent_event;
9016
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009017 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009018 event->id = atomic64_inc_return(&perf_event_id);
9019
9020 event->state = PERF_EVENT_STATE_INACTIVE;
9021
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009022 if (task) {
9023 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009024 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009025 * XXX pmu::event_init needs to know what task to account to
9026 * and we cannot use the ctx information because we need the
9027 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009028 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009029 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009030 }
9031
Peter Zijlstra34f43922015-02-20 14:05:38 +01009032 event->clock = &local_clock;
9033 if (parent_event)
9034 event->clock = parent_event->clock;
9035
Avi Kivity4dc0da82011-06-29 18:42:35 +03009036 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009037 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009038 context = parent_event->overflow_handler_context;
9039 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009040
Wang Nan18794452016-03-28 06:41:30 +00009041 if (overflow_handler) {
9042 event->overflow_handler = overflow_handler;
9043 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009044 } else if (is_write_backward(event)){
9045 event->overflow_handler = perf_event_output_backward;
9046 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009047 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009048 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009049 event->overflow_handler_context = NULL;
9050 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009051
Jiri Olsa0231bb52013-02-01 11:23:45 +01009052 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009053
9054 pmu = NULL;
9055
9056 hwc = &event->hw;
9057 hwc->sample_period = attr->sample_period;
9058 if (attr->freq && attr->sample_freq)
9059 hwc->sample_period = 1;
9060 hwc->last_period = hwc->sample_period;
9061
Peter Zijlstrae7850592010-05-21 14:43:08 +02009062 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009063
9064 /*
9065 * we currently do not support PERF_FORMAT_GROUP on inherited events
9066 */
9067 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009068 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009069
Yan, Zhenga46a2302014-11-04 21:56:06 -05009070 if (!has_branch_stack(event))
9071 event->attr.branch_sample_type = 0;
9072
Matt Fleming79dff512015-01-23 18:45:42 +00009073 if (cgroup_fd != -1) {
9074 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9075 if (err)
9076 goto err_ns;
9077 }
9078
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009079 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009080 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009081 goto err_ns;
9082 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009083 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009084 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009085 }
9086
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009087 err = exclusive_event_init(event);
9088 if (err)
9089 goto err_pmu;
9090
Alexander Shishkin375637b2016-04-27 18:44:46 +03009091 if (has_addr_filter(event)) {
9092 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9093 sizeof(unsigned long),
9094 GFP_KERNEL);
9095 if (!event->addr_filters_offs)
9096 goto err_per_task;
9097
9098 /* force hw sync on the address filters */
9099 event->addr_filters_gen = 1;
9100 }
9101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009102 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009103 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009104 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009105 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009106 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009107 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009108 }
9109
Alexander Shishkin927a5572016-03-02 13:24:14 +02009110 /* symmetric to unaccount_event() in _free_event() */
9111 account_event(event);
9112
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009113 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009114
Alexander Shishkin375637b2016-04-27 18:44:46 +03009115err_addr_filters:
9116 kfree(event->addr_filters_offs);
9117
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009118err_per_task:
9119 exclusive_event_destroy(event);
9120
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009121err_pmu:
9122 if (event->destroy)
9123 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009124 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009125err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009126 if (is_cgroup_event(event))
9127 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009128 if (event->ns)
9129 put_pid_ns(event->ns);
9130 kfree(event);
9131
9132 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009133}
9134
9135static int perf_copy_attr(struct perf_event_attr __user *uattr,
9136 struct perf_event_attr *attr)
9137{
9138 u32 size;
9139 int ret;
9140
9141 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9142 return -EFAULT;
9143
9144 /*
9145 * zero the full structure, so that a short copy will be nice.
9146 */
9147 memset(attr, 0, sizeof(*attr));
9148
9149 ret = get_user(size, &uattr->size);
9150 if (ret)
9151 return ret;
9152
9153 if (size > PAGE_SIZE) /* silly large */
9154 goto err_size;
9155
9156 if (!size) /* abi compat */
9157 size = PERF_ATTR_SIZE_VER0;
9158
9159 if (size < PERF_ATTR_SIZE_VER0)
9160 goto err_size;
9161
9162 /*
9163 * If we're handed a bigger struct than we know of,
9164 * ensure all the unknown bits are 0 - i.e. new
9165 * user-space does not rely on any kernel feature
9166 * extensions we dont know about yet.
9167 */
9168 if (size > sizeof(*attr)) {
9169 unsigned char __user *addr;
9170 unsigned char __user *end;
9171 unsigned char val;
9172
9173 addr = (void __user *)uattr + sizeof(*attr);
9174 end = (void __user *)uattr + size;
9175
9176 for (; addr < end; addr++) {
9177 ret = get_user(val, addr);
9178 if (ret)
9179 return ret;
9180 if (val)
9181 goto err_size;
9182 }
9183 size = sizeof(*attr);
9184 }
9185
9186 ret = copy_from_user(attr, uattr, size);
9187 if (ret)
9188 return -EFAULT;
9189
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309190 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009191 return -EINVAL;
9192
9193 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9194 return -EINVAL;
9195
9196 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9197 return -EINVAL;
9198
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009199 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9200 u64 mask = attr->branch_sample_type;
9201
9202 /* only using defined bits */
9203 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9204 return -EINVAL;
9205
9206 /* at least one branch bit must be set */
9207 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9208 return -EINVAL;
9209
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009210 /* propagate priv level, when not set for branch */
9211 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9212
9213 /* exclude_kernel checked on syscall entry */
9214 if (!attr->exclude_kernel)
9215 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9216
9217 if (!attr->exclude_user)
9218 mask |= PERF_SAMPLE_BRANCH_USER;
9219
9220 if (!attr->exclude_hv)
9221 mask |= PERF_SAMPLE_BRANCH_HV;
9222 /*
9223 * adjust user setting (for HW filter setup)
9224 */
9225 attr->branch_sample_type = mask;
9226 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009227 /* privileged levels capture (kernel, hv): check permissions */
9228 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009229 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9230 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009231 }
Jiri Olsa40189942012-08-07 15:20:37 +02009232
Jiri Olsac5ebced2012-08-07 15:20:40 +02009233 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009234 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009235 if (ret)
9236 return ret;
9237 }
9238
9239 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9240 if (!arch_perf_have_user_stack_dump())
9241 return -ENOSYS;
9242
9243 /*
9244 * We have __u32 type for the size, but so far
9245 * we can only use __u16 as maximum due to the
9246 * __u16 sample size limit.
9247 */
9248 if (attr->sample_stack_user >= USHRT_MAX)
9249 ret = -EINVAL;
9250 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9251 ret = -EINVAL;
9252 }
Jiri Olsa40189942012-08-07 15:20:37 +02009253
Stephane Eranian60e23642014-09-24 13:48:37 +02009254 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9255 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009256out:
9257 return ret;
9258
9259err_size:
9260 put_user(sizeof(*attr), &uattr->size);
9261 ret = -E2BIG;
9262 goto out;
9263}
9264
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009265static int
9266perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009267{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009268 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009269 int ret = -EINVAL;
9270
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009271 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009272 goto set;
9273
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009274 /* don't allow circular references */
9275 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009276 goto out;
9277
Peter Zijlstra0f139302010-05-20 14:35:15 +02009278 /*
9279 * Don't allow cross-cpu buffers
9280 */
9281 if (output_event->cpu != event->cpu)
9282 goto out;
9283
9284 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009285 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009286 */
9287 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9288 goto out;
9289
Peter Zijlstra34f43922015-02-20 14:05:38 +01009290 /*
9291 * Mixing clocks in the same buffer is trouble you don't need.
9292 */
9293 if (output_event->clock != event->clock)
9294 goto out;
9295
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009296 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009297 * Either writing ring buffer from beginning or from end.
9298 * Mixing is not allowed.
9299 */
9300 if (is_write_backward(output_event) != is_write_backward(event))
9301 goto out;
9302
9303 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009304 * If both events generate aux data, they must be on the same PMU
9305 */
9306 if (has_aux(event) && has_aux(output_event) &&
9307 event->pmu != output_event->pmu)
9308 goto out;
9309
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009310set:
9311 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009312 /* Can't redirect output if we've got an active mmap() */
9313 if (atomic_read(&event->mmap_count))
9314 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009315
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009316 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009317 /* get the rb we want to redirect to */
9318 rb = ring_buffer_get(output_event);
9319 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009320 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009321 }
9322
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009323 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009324
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009325 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009326unlock:
9327 mutex_unlock(&event->mmap_mutex);
9328
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009329out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009330 return ret;
9331}
9332
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009333static void mutex_lock_double(struct mutex *a, struct mutex *b)
9334{
9335 if (b < a)
9336 swap(a, b);
9337
9338 mutex_lock(a);
9339 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9340}
9341
Peter Zijlstra34f43922015-02-20 14:05:38 +01009342static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9343{
9344 bool nmi_safe = false;
9345
9346 switch (clk_id) {
9347 case CLOCK_MONOTONIC:
9348 event->clock = &ktime_get_mono_fast_ns;
9349 nmi_safe = true;
9350 break;
9351
9352 case CLOCK_MONOTONIC_RAW:
9353 event->clock = &ktime_get_raw_fast_ns;
9354 nmi_safe = true;
9355 break;
9356
9357 case CLOCK_REALTIME:
9358 event->clock = &ktime_get_real_ns;
9359 break;
9360
9361 case CLOCK_BOOTTIME:
9362 event->clock = &ktime_get_boot_ns;
9363 break;
9364
9365 case CLOCK_TAI:
9366 event->clock = &ktime_get_tai_ns;
9367 break;
9368
9369 default:
9370 return -EINVAL;
9371 }
9372
9373 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9374 return -EINVAL;
9375
9376 return 0;
9377}
9378
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009379/**
9380 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9381 *
9382 * @attr_uptr: event_id type attributes for monitoring/sampling
9383 * @pid: target pid
9384 * @cpu: target cpu
9385 * @group_fd: group leader event fd
9386 */
9387SYSCALL_DEFINE5(perf_event_open,
9388 struct perf_event_attr __user *, attr_uptr,
9389 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9390{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009391 struct perf_event *group_leader = NULL, *output_event = NULL;
9392 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009393 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009394 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009395 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009396 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009397 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009398 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009399 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009400 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009401 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009402 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009403 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009404
9405 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009406 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009407 return -EINVAL;
9408
9409 err = perf_copy_attr(attr_uptr, &attr);
9410 if (err)
9411 return err;
9412
9413 if (!attr.exclude_kernel) {
9414 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9415 return -EACCES;
9416 }
9417
9418 if (attr.freq) {
9419 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9420 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009421 } else {
9422 if (attr.sample_period & (1ULL << 63))
9423 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009424 }
9425
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009426 if (!attr.sample_max_stack)
9427 attr.sample_max_stack = sysctl_perf_event_max_stack;
9428
Stephane Eraniane5d13672011-02-14 11:20:01 +02009429 /*
9430 * In cgroup mode, the pid argument is used to pass the fd
9431 * opened to the cgroup directory in cgroupfs. The cpu argument
9432 * designates the cpu on which to monitor threads from that
9433 * cgroup.
9434 */
9435 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9436 return -EINVAL;
9437
Yann Droneauda21b0b32014-01-05 21:36:33 +01009438 if (flags & PERF_FLAG_FD_CLOEXEC)
9439 f_flags |= O_CLOEXEC;
9440
9441 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009442 if (event_fd < 0)
9443 return event_fd;
9444
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009445 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009446 err = perf_fget_light(group_fd, &group);
9447 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009448 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009449 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009450 if (flags & PERF_FLAG_FD_OUTPUT)
9451 output_event = group_leader;
9452 if (flags & PERF_FLAG_FD_NO_GROUP)
9453 group_leader = NULL;
9454 }
9455
Stephane Eraniane5d13672011-02-14 11:20:01 +02009456 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009457 task = find_lively_task_by_vpid(pid);
9458 if (IS_ERR(task)) {
9459 err = PTR_ERR(task);
9460 goto err_group_fd;
9461 }
9462 }
9463
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009464 if (task && group_leader &&
9465 group_leader->attr.inherit != attr.inherit) {
9466 err = -EINVAL;
9467 goto err_task;
9468 }
9469
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009470 get_online_cpus();
9471
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009472 if (task) {
9473 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9474 if (err)
9475 goto err_cpus;
9476
9477 /*
9478 * Reuse ptrace permission checks for now.
9479 *
9480 * We must hold cred_guard_mutex across this and any potential
9481 * perf_install_in_context() call for this new event to
9482 * serialize against exec() altering our credentials (and the
9483 * perf_event_exit_task() that could imply).
9484 */
9485 err = -EACCES;
9486 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9487 goto err_cred;
9488 }
9489
Matt Fleming79dff512015-01-23 18:45:42 +00009490 if (flags & PERF_FLAG_PID_CGROUP)
9491 cgroup_fd = pid;
9492
Avi Kivity4dc0da82011-06-29 18:42:35 +03009493 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009494 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009495 if (IS_ERR(event)) {
9496 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009497 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009498 }
9499
Vince Weaver53b25332014-05-16 17:12:12 -04009500 if (is_sampling_event(event)) {
9501 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +05309502 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -04009503 goto err_alloc;
9504 }
9505 }
9506
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009507 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009508 * Special case software events and allow them to be part of
9509 * any hardware group.
9510 */
9511 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009512
Peter Zijlstra34f43922015-02-20 14:05:38 +01009513 if (attr.use_clockid) {
9514 err = perf_event_set_clock(event, attr.clockid);
9515 if (err)
9516 goto err_alloc;
9517 }
9518
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009519 if (pmu->task_ctx_nr == perf_sw_context)
9520 event->event_caps |= PERF_EV_CAP_SOFTWARE;
9521
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009522 if (group_leader &&
9523 (is_software_event(event) != is_software_event(group_leader))) {
9524 if (is_software_event(event)) {
9525 /*
9526 * If event and group_leader are not both a software
9527 * event, and event is, then group leader is not.
9528 *
9529 * Allow the addition of software events to !software
9530 * groups, this is safe because software events never
9531 * fail to schedule.
9532 */
9533 pmu = group_leader->pmu;
9534 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009535 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009536 /*
9537 * In case the group is a pure software group, and we
9538 * try to add a hardware event, move the whole group to
9539 * the hardware context.
9540 */
9541 move_group = 1;
9542 }
9543 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009544
9545 /*
9546 * Get the target context (task or percpu):
9547 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009548 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009549 if (IS_ERR(ctx)) {
9550 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009551 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009552 }
9553
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009554 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
9555 err = -EBUSY;
9556 goto err_context;
9557 }
9558
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009559 /*
9560 * Look up the group leader (we will attach this event to it):
9561 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009562 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009563 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009564
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009565 /*
9566 * Do not allow a recursive hierarchy (this new sibling
9567 * becoming part of another group-sibling):
9568 */
9569 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009570 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01009571
9572 /* All events in a group should have the same clock */
9573 if (group_leader->clock != event->clock)
9574 goto err_context;
9575
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009576 /*
9577 * Do not allow to attach to a group in a different
9578 * task or CPU context:
9579 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009580 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01009581 /*
9582 * Make sure we're both on the same task, or both
9583 * per-cpu events.
9584 */
9585 if (group_leader->ctx->task != ctx->task)
9586 goto err_context;
9587
9588 /*
9589 * Make sure we're both events for the same CPU;
9590 * grouping events for different CPUs is broken; since
9591 * you can never concurrently schedule them anyhow.
9592 */
9593 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009594 goto err_context;
9595 } else {
9596 if (group_leader->ctx != ctx)
9597 goto err_context;
9598 }
9599
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009600 /*
9601 * Only a group leader can be exclusive or pinned
9602 */
9603 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009604 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009605 }
9606
9607 if (output_event) {
9608 err = perf_event_set_output(event, output_event);
9609 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009610 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009611 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009612
Yann Droneauda21b0b32014-01-05 21:36:33 +01009613 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
9614 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009615 if (IS_ERR(event_file)) {
9616 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +02009617 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009618 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04009619 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009620
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009621 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009622 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009623 mutex_lock_double(&gctx->mutex, &ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009624 if (gctx->task == TASK_TOMBSTONE) {
9625 err = -ESRCH;
9626 goto err_locked;
9627 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009628 } else {
9629 mutex_lock(&ctx->mutex);
9630 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009631
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009632 if (ctx->task == TASK_TOMBSTONE) {
9633 err = -ESRCH;
9634 goto err_locked;
9635 }
9636
Peter Zijlstraa7239682015-09-09 19:06:33 +02009637 if (!perf_event_validate_size(event)) {
9638 err = -E2BIG;
9639 goto err_locked;
9640 }
9641
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009642 /*
9643 * Must be under the same ctx::mutex as perf_install_in_context(),
9644 * because we need to serialize with concurrent event creation.
9645 */
9646 if (!exclusive_event_installable(event, ctx)) {
9647 /* exclusive and group stuff are assumed mutually exclusive */
9648 WARN_ON_ONCE(move_group);
9649
9650 err = -EBUSY;
9651 goto err_locked;
9652 }
9653
9654 WARN_ON_ONCE(ctx->parent_ctx);
9655
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009656 /*
9657 * This is the point on no return; we cannot fail hereafter. This is
9658 * where we start modifying current state.
9659 */
9660
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009661 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009662 /*
9663 * See perf_event_ctx_lock() for comments on the details
9664 * of swizzling perf_event::ctx.
9665 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009666 perf_remove_from_context(group_leader, 0);
Jiri Olsa0231bb52013-02-01 11:23:45 +01009667
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009668 list_for_each_entry(sibling, &group_leader->sibling_list,
9669 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009670 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009671 put_ctx(gctx);
9672 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009673
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009674 /*
9675 * Wait for everybody to stop referencing the events through
9676 * the old lists, before installing it on new lists.
9677 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009678 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009679
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009680 /*
9681 * Install the group siblings before the group leader.
9682 *
9683 * Because a group leader will try and install the entire group
9684 * (through the sibling list, which is still in-tact), we can
9685 * end up with siblings installed in the wrong context.
9686 *
9687 * By installing siblings first we NO-OP because they're not
9688 * reachable through the group lists.
9689 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009690 list_for_each_entry(sibling, &group_leader->sibling_list,
9691 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009692 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01009693 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009694 get_ctx(ctx);
9695 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009696
9697 /*
9698 * Removing from the context ends up with disabled
9699 * event. What we want here is event in the initial
9700 * startup state, ready to be add into new context.
9701 */
9702 perf_event__state_init(group_leader);
9703 perf_install_in_context(ctx, group_leader, group_leader->cpu);
9704 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009705
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009706 /*
9707 * Now that all events are installed in @ctx, nothing
9708 * references @gctx anymore, so drop the last reference we have
9709 * on it.
9710 */
9711 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009712 }
9713
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02009714 /*
9715 * Precalculate sample_data sizes; do while holding ctx::mutex such
9716 * that we're serialized against further additions and before
9717 * perf_install_in_context() which is the point the event is active and
9718 * can use these values.
9719 */
9720 perf_event__header_size(event);
9721 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009722
Peter Zijlstra78cd2c72016-01-25 14:08:45 +01009723 event->owner = current;
9724
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08009725 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009726 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009727
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009728 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009729 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009730 mutex_unlock(&ctx->mutex);
9731
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009732 if (task) {
9733 mutex_unlock(&task->signal->cred_guard_mutex);
9734 put_task_struct(task);
9735 }
9736
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009737 put_online_cpus();
9738
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009739 mutex_lock(&current->perf_event_mutex);
9740 list_add_tail(&event->owner_entry, &current->perf_event_list);
9741 mutex_unlock(&current->perf_event_mutex);
9742
Peter Zijlstra8a495422010-05-27 15:47:49 +02009743 /*
9744 * Drop the reference on the group_event after placing the
9745 * new event on the sibling_list. This ensures destruction
9746 * of the group leader will find the pointer to itself in
9747 * perf_group_detach().
9748 */
Al Viro2903ff02012-08-28 12:52:22 -04009749 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009750 fd_install(event_fd, event_file);
9751 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009752
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009753err_locked:
9754 if (move_group)
9755 mutex_unlock(&gctx->mutex);
9756 mutex_unlock(&ctx->mutex);
9757/* err_file: */
9758 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009759err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009760 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04009761 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009762err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +01009763 /*
9764 * If event_file is set, the fput() above will have called ->release()
9765 * and that will take care of freeing the event.
9766 */
9767 if (!event_file)
9768 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009769err_cred:
9770 if (task)
9771 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009772err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009773 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009774err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02009775 if (task)
9776 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009777err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04009778 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009779err_fd:
9780 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009781 return err;
9782}
9783
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009784/**
9785 * perf_event_create_kernel_counter
9786 *
9787 * @attr: attributes of the counter to create
9788 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07009789 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009790 */
9791struct perf_event *
9792perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07009793 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009794 perf_overflow_handler_t overflow_handler,
9795 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009796{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009797 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009798 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009799 int err;
9800
9801 /*
9802 * Get the target context (task or percpu):
9803 */
9804
Avi Kivity4dc0da82011-06-29 18:42:35 +03009805 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009806 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009807 if (IS_ERR(event)) {
9808 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009809 goto err;
9810 }
9811
Jiri Olsaf8697762014-08-01 14:33:01 +02009812 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009813 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +02009814
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009815 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009816 if (IS_ERR(ctx)) {
9817 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009818 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009819 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009820
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009821 WARN_ON_ONCE(ctx->parent_ctx);
9822 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009823 if (ctx->task == TASK_TOMBSTONE) {
9824 err = -ESRCH;
9825 goto err_unlock;
9826 }
9827
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009828 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009829 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009830 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009831 }
9832
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009833 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009834 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009835 mutex_unlock(&ctx->mutex);
9836
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009837 return event;
9838
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009839err_unlock:
9840 mutex_unlock(&ctx->mutex);
9841 perf_unpin_context(ctx);
9842 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009843err_free:
9844 free_event(event);
9845err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009846 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009847}
9848EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
9849
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009850void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
9851{
9852 struct perf_event_context *src_ctx;
9853 struct perf_event_context *dst_ctx;
9854 struct perf_event *event, *tmp;
9855 LIST_HEAD(events);
9856
9857 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
9858 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
9859
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009860 /*
9861 * See perf_event_ctx_lock() for comments on the details
9862 * of swizzling perf_event::ctx.
9863 */
9864 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009865 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
9866 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009867 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02009868 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009869 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02009870 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009871 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009872
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009873 /*
9874 * Wait for the events to quiesce before re-instating them.
9875 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009876 synchronize_rcu();
9877
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009878 /*
9879 * Re-instate events in 2 passes.
9880 *
9881 * Skip over group leaders and only install siblings on this first
9882 * pass, siblings will not get enabled without a leader, however a
9883 * leader will enable its siblings, even if those are still on the old
9884 * context.
9885 */
9886 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
9887 if (event->group_leader == event)
9888 continue;
9889
9890 list_del(&event->migrate_entry);
9891 if (event->state >= PERF_EVENT_STATE_OFF)
9892 event->state = PERF_EVENT_STATE_INACTIVE;
9893 account_event_cpu(event, dst_cpu);
9894 perf_install_in_context(dst_ctx, event, dst_cpu);
9895 get_ctx(dst_ctx);
9896 }
9897
9898 /*
9899 * Once all the siblings are setup properly, install the group leaders
9900 * to make it go.
9901 */
Peter Zijlstra98861672013-10-03 16:02:23 +02009902 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
9903 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009904 if (event->state >= PERF_EVENT_STATE_OFF)
9905 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02009906 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009907 perf_install_in_context(dst_ctx, event, dst_cpu);
9908 get_ctx(dst_ctx);
9909 }
9910 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009911 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009912}
9913EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
9914
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009915static void sync_child_event(struct perf_event *child_event,
9916 struct task_struct *child)
9917{
9918 struct perf_event *parent_event = child_event->parent;
9919 u64 child_val;
9920
9921 if (child_event->attr.inherit_stat)
9922 perf_event_read_event(child_event, child);
9923
Peter Zijlstrab5e58792010-05-21 14:43:12 +02009924 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009925
9926 /*
9927 * Add back the child's count to the parent's count:
9928 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02009929 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009930 atomic64_add(child_event->total_time_enabled,
9931 &parent_event->child_total_time_enabled);
9932 atomic64_add(child_event->total_time_running,
9933 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009934}
9935
9936static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009937perf_event_exit_event(struct perf_event *child_event,
9938 struct perf_event_context *child_ctx,
9939 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009940{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009941 struct perf_event *parent_event = child_event->parent;
9942
Peter Zijlstra1903d502014-07-15 17:27:27 +02009943 /*
9944 * Do not destroy the 'original' grouping; because of the context
9945 * switch optimization the original events could've ended up in a
9946 * random child task.
9947 *
9948 * If we were to destroy the original group, all group related
9949 * operations would cease to function properly after this random
9950 * child dies.
9951 *
9952 * Do destroy all inherited groups, we don't care about those
9953 * and being thorough is better.
9954 */
Peter Zijlstra32132a32016-01-11 15:40:59 +01009955 raw_spin_lock_irq(&child_ctx->lock);
9956 WARN_ON_ONCE(child_ctx->is_active);
9957
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009958 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +01009959 perf_group_detach(child_event);
9960 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01009961 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +01009962 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009963
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009964 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009965 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009966 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009967 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -04009968 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009969 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009970 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009971 /*
9972 * Child events can be cleaned up.
9973 */
9974
9975 sync_child_event(child_event, child);
9976
9977 /*
9978 * Remove this event from the parent's list
9979 */
9980 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
9981 mutex_lock(&parent_event->child_mutex);
9982 list_del_init(&child_event->child_list);
9983 mutex_unlock(&parent_event->child_mutex);
9984
9985 /*
9986 * Kick perf_poll() for is_event_hup().
9987 */
9988 perf_event_wakeup(parent_event);
9989 free_event(child_event);
9990 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009991}
9992
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009993static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009994{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02009995 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009996 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009997
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009998 WARN_ON_ONCE(child != current);
9999
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010000 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010001 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010002 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010003
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010004 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010005 * In order to reduce the amount of tricky in ctx tear-down, we hold
10006 * ctx::mutex over the entire thing. This serializes against almost
10007 * everything that wants to access the ctx.
10008 *
10009 * The exception is sys_perf_event_open() /
10010 * perf_event_create_kernel_count() which does find_get_context()
10011 * without ctx::mutex (it cannot because of the move_group double mutex
10012 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010013 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010014 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010015
10016 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010017 * In a single ctx::lock section, de-schedule the events and detach the
10018 * context from the task such that we cannot ever get it scheduled back
10019 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010020 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010021 raw_spin_lock_irq(&child_ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010022 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010023
10024 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010025 * Now that the context is inactive, destroy the task <-> ctx relation
10026 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010027 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010028 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10029 put_ctx(child_ctx); /* cannot be last */
10030 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10031 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010032
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010033 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010034 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010035
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010036 if (clone_ctx)
10037 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010038
10039 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010040 * Report the task dead after unscheduling the events so that we
10041 * won't get any samples after PERF_RECORD_EXIT. We can however still
10042 * get a few PERF_RECORD_READ events.
10043 */
10044 perf_event_task(child, child_ctx, 0);
10045
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010046 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010047 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010048
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010049 mutex_unlock(&child_ctx->mutex);
10050
10051 put_ctx(child_ctx);
10052}
10053
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010054/*
10055 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010056 *
10057 * Can be called with cred_guard_mutex held when called from
10058 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010059 */
10060void perf_event_exit_task(struct task_struct *child)
10061{
Peter Zijlstra88821352010-11-09 19:01:43 +010010062 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010063 int ctxn;
10064
Peter Zijlstra88821352010-11-09 19:01:43 +010010065 mutex_lock(&child->perf_event_mutex);
10066 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10067 owner_entry) {
10068 list_del_init(&event->owner_entry);
10069
10070 /*
10071 * Ensure the list deletion is visible before we clear
10072 * the owner, closes a race against perf_release() where
10073 * we need to serialize on the owner->perf_event_mutex.
10074 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010075 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010076 }
10077 mutex_unlock(&child->perf_event_mutex);
10078
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010079 for_each_task_context_nr(ctxn)
10080 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010081
10082 /*
10083 * The perf_event_exit_task_context calls perf_event_task
10084 * with child's task_ctx, which generates EXIT events for
10085 * child contexts and sets child->perf_event_ctxp[] to NULL.
10086 * At this point we need to send EXIT events to cpu contexts.
10087 */
10088 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010089}
10090
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010091static void perf_free_event(struct perf_event *event,
10092 struct perf_event_context *ctx)
10093{
10094 struct perf_event *parent = event->parent;
10095
10096 if (WARN_ON_ONCE(!parent))
10097 return;
10098
10099 mutex_lock(&parent->child_mutex);
10100 list_del_init(&event->child_list);
10101 mutex_unlock(&parent->child_mutex);
10102
Al Viroa6fa9412012-08-20 14:59:25 +010010103 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010104
Peter Zijlstra652884f2015-01-23 11:20:10 +010010105 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010106 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010107 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010108 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010109 free_event(event);
10110}
10111
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010112/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010113 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010114 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010115 *
10116 * Not all locks are strictly required, but take them anyway to be nice and
10117 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010118 */
10119void perf_event_free_task(struct task_struct *task)
10120{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010121 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010122 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010123 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010124
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010125 for_each_task_context_nr(ctxn) {
10126 ctx = task->perf_event_ctxp[ctxn];
10127 if (!ctx)
10128 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010129
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010130 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010131again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010132 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
10133 group_entry)
10134 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010135
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010136 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
10137 group_entry)
10138 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010139
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010140 if (!list_empty(&ctx->pinned_groups) ||
10141 !list_empty(&ctx->flexible_groups))
10142 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010143
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010144 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010145
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010146 put_ctx(ctx);
10147 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010148}
10149
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010150void perf_event_delayed_put(struct task_struct *task)
10151{
10152 int ctxn;
10153
10154 for_each_task_context_nr(ctxn)
10155 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10156}
10157
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010158struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010159{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010160 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010161
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010162 file = fget_raw(fd);
10163 if (!file)
10164 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010165
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010166 if (file->f_op != &perf_fops) {
10167 fput(file);
10168 return ERR_PTR(-EBADF);
10169 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010170
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010171 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010172}
10173
10174const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10175{
10176 if (!event)
10177 return ERR_PTR(-EINVAL);
10178
10179 return &event->attr;
10180}
10181
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010182/*
10183 * inherit a event from parent task to child task:
10184 */
10185static struct perf_event *
10186inherit_event(struct perf_event *parent_event,
10187 struct task_struct *parent,
10188 struct perf_event_context *parent_ctx,
10189 struct task_struct *child,
10190 struct perf_event *group_leader,
10191 struct perf_event_context *child_ctx)
10192{
Jiri Olsa1929def2014-09-12 13:18:27 +020010193 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010194 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010195 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010196
10197 /*
10198 * Instead of creating recursive hierarchies of events,
10199 * we link inherited events back to the original parent,
10200 * which has a filp for sure, which we use as the reference
10201 * count:
10202 */
10203 if (parent_event->parent)
10204 parent_event = parent_event->parent;
10205
10206 child_event = perf_event_alloc(&parent_event->attr,
10207 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010208 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010209 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010210 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010211 if (IS_ERR(child_event))
10212 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010213
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010214 /*
10215 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10216 * must be under the same lock in order to serialize against
10217 * perf_event_release_kernel(), such that either we must observe
10218 * is_orphaned_event() or they will observe us on the child_list.
10219 */
10220 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010221 if (is_orphaned_event(parent_event) ||
10222 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010223 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010224 free_event(child_event);
10225 return NULL;
10226 }
10227
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010228 get_ctx(child_ctx);
10229
10230 /*
10231 * Make the child state follow the state of the parent event,
10232 * not its attr.disabled bit. We hold the parent's mutex,
10233 * so we won't race with perf_event_{en, dis}able_family.
10234 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010235 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010236 child_event->state = PERF_EVENT_STATE_INACTIVE;
10237 else
10238 child_event->state = PERF_EVENT_STATE_OFF;
10239
10240 if (parent_event->attr.freq) {
10241 u64 sample_period = parent_event->hw.sample_period;
10242 struct hw_perf_event *hwc = &child_event->hw;
10243
10244 hwc->sample_period = sample_period;
10245 hwc->last_period = sample_period;
10246
10247 local64_set(&hwc->period_left, sample_period);
10248 }
10249
10250 child_event->ctx = child_ctx;
10251 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010252 child_event->overflow_handler_context
10253 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010254
10255 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010256 * Precalculate sample_data sizes
10257 */
10258 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010259 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010260
10261 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010262 * Link it up in the child's context:
10263 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010264 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010265 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010266 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010267
10268 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010269 * Link this into the parent event's child list
10270 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010271 list_add_tail(&child_event->child_list, &parent_event->child_list);
10272 mutex_unlock(&parent_event->child_mutex);
10273
10274 return child_event;
10275}
10276
10277static int inherit_group(struct perf_event *parent_event,
10278 struct task_struct *parent,
10279 struct perf_event_context *parent_ctx,
10280 struct task_struct *child,
10281 struct perf_event_context *child_ctx)
10282{
10283 struct perf_event *leader;
10284 struct perf_event *sub;
10285 struct perf_event *child_ctr;
10286
10287 leader = inherit_event(parent_event, parent, parent_ctx,
10288 child, NULL, child_ctx);
10289 if (IS_ERR(leader))
10290 return PTR_ERR(leader);
10291 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10292 child_ctr = inherit_event(sub, parent, parent_ctx,
10293 child, leader, child_ctx);
10294 if (IS_ERR(child_ctr))
10295 return PTR_ERR(child_ctr);
10296 }
10297 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010298}
10299
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010300static int
10301inherit_task_group(struct perf_event *event, struct task_struct *parent,
10302 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010303 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010304 int *inherited_all)
10305{
10306 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010307 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010308
10309 if (!event->attr.inherit) {
10310 *inherited_all = 0;
10311 return 0;
10312 }
10313
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010314 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010315 if (!child_ctx) {
10316 /*
10317 * This is executed from the parent task context, so
10318 * inherit events that have been marked for cloning.
10319 * First allocate and initialize a context for the
10320 * child.
10321 */
10322
Jiri Olsa734df5a2013-07-09 17:44:10 +020010323 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010324 if (!child_ctx)
10325 return -ENOMEM;
10326
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010327 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010328 }
10329
10330 ret = inherit_group(event, parent, parent_ctx,
10331 child, child_ctx);
10332
10333 if (ret)
10334 *inherited_all = 0;
10335
10336 return ret;
10337}
10338
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010339/*
10340 * Initialize the perf_event context in task_struct
10341 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010342static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010343{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010344 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010345 struct perf_event_context *cloned_ctx;
10346 struct perf_event *event;
10347 struct task_struct *parent = current;
10348 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010349 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010350 int ret = 0;
10351
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010352 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010353 return 0;
10354
10355 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010356 * If the parent's context is a clone, pin it so it won't get
10357 * swapped under us.
10358 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010359 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010360 if (!parent_ctx)
10361 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010362
10363 /*
10364 * No need to check if parent_ctx != NULL here; since we saw
10365 * it non-NULL earlier, the only reason for it to become NULL
10366 * is if we exit, and since we're currently in the middle of
10367 * a fork we can't be exiting at the same time.
10368 */
10369
10370 /*
10371 * Lock the parent list. No need to lock the child - not PID
10372 * hashed yet and not running, so nobody can access it.
10373 */
10374 mutex_lock(&parent_ctx->mutex);
10375
10376 /*
10377 * We dont have to disable NMIs - we are only looking at
10378 * the list, not manipulating it:
10379 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010380 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010381 ret = inherit_task_group(event, parent, parent_ctx,
10382 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010383 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010384 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010385 }
10386
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010387 /*
10388 * We can't hold ctx->lock when iterating the ->flexible_group list due
10389 * to allocations, but we need to prevent rotation because
10390 * rotate_ctx() will change the list from interrupt context.
10391 */
10392 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10393 parent_ctx->rotate_disable = 1;
10394 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10395
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010396 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010397 ret = inherit_task_group(event, parent, parent_ctx,
10398 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010399 if (ret)
10400 break;
10401 }
10402
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010403 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10404 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010405
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010406 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010407
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010408 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010409 /*
10410 * Mark the child context as a clone of the parent
10411 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010412 *
10413 * Note that if the parent is a clone, the holding of
10414 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010415 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010416 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010417 if (cloned_ctx) {
10418 child_ctx->parent_ctx = cloned_ctx;
10419 child_ctx->parent_gen = parent_ctx->parent_gen;
10420 } else {
10421 child_ctx->parent_ctx = parent_ctx;
10422 child_ctx->parent_gen = parent_ctx->generation;
10423 }
10424 get_ctx(child_ctx->parent_ctx);
10425 }
10426
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010427 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010428 mutex_unlock(&parent_ctx->mutex);
10429
10430 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010431 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010432
10433 return ret;
10434}
10435
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010436/*
10437 * Initialize the perf_event context in task_struct
10438 */
10439int perf_event_init_task(struct task_struct *child)
10440{
10441 int ctxn, ret;
10442
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010010443 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
10444 mutex_init(&child->perf_event_mutex);
10445 INIT_LIST_HEAD(&child->perf_event_list);
10446
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010447 for_each_task_context_nr(ctxn) {
10448 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010449 if (ret) {
10450 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010451 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010452 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010453 }
10454
10455 return 0;
10456}
10457
Paul Mackerras220b1402010-03-10 20:45:52 +110010458static void __init perf_event_init_all_cpus(void)
10459{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010460 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110010461 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110010462
10463 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010464 swhash = &per_cpu(swevent_htable, cpu);
10465 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000010466 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070010467
10468 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
10469 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010470
10471 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110010472 }
10473}
10474
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010475int perf_event_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010476{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010477 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010478
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010479 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000010480 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010481 struct swevent_hlist *hlist;
10482
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010483 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
10484 WARN_ON(!hlist);
10485 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010486 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010487 mutex_unlock(&swhash->hlist_mutex);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010488 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010489}
10490
Dave Young2965faa2015-09-09 15:38:55 -070010491#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010492static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010493{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010494 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010495 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
10496 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010497
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010498 raw_spin_lock(&ctx->lock);
10499 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010500 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010501 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010502}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010503
10504static void perf_event_exit_cpu_context(int cpu)
10505{
10506 struct perf_event_context *ctx;
10507 struct pmu *pmu;
10508 int idx;
10509
10510 idx = srcu_read_lock(&pmus_srcu);
10511 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +020010512 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010513
10514 mutex_lock(&ctx->mutex);
10515 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
10516 mutex_unlock(&ctx->mutex);
10517 }
10518 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010519}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010520#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010521
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010522static void perf_event_exit_cpu_context(int cpu) { }
10523
10524#endif
10525
10526int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010527{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010010528 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010529 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010530}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010531
Peter Zijlstrac2774432010-12-08 15:29:02 +010010532static int
10533perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
10534{
10535 int cpu;
10536
10537 for_each_online_cpu(cpu)
10538 perf_event_exit_cpu(cpu);
10539
10540 return NOTIFY_OK;
10541}
10542
10543/*
10544 * Run the perf reboot notifier at the very last possible moment so that
10545 * the generic watchdog code runs as long as possible.
10546 */
10547static struct notifier_block perf_reboot_notifier = {
10548 .notifier_call = perf_reboot,
10549 .priority = INT_MIN,
10550};
10551
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010552void __init perf_event_init(void)
10553{
Jason Wessel3c502e72010-11-04 17:33:01 -050010554 int ret;
10555
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010556 idr_init(&pmu_idr);
10557
Paul Mackerras220b1402010-03-10 20:45:52 +110010558 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010559 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010560 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
10561 perf_pmu_register(&perf_cpu_clock, NULL, -1);
10562 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010563 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010564 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010010565 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050010566
10567 ret = init_hw_breakpoint();
10568 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020010569
Jiri Olsab01c3a02012-03-23 15:41:20 +010010570 /*
10571 * Build time assertion that we keep the data_head at the intended
10572 * location. IOW, validation we got the __reserved[] size right.
10573 */
10574 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
10575 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010576}
Peter Zijlstraabe43402010-11-17 23:17:37 +010010577
Cody P Schaferfd979c02015-01-30 13:45:57 -080010578ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
10579 char *page)
10580{
10581 struct perf_pmu_events_attr *pmu_attr =
10582 container_of(attr, struct perf_pmu_events_attr, attr);
10583
10584 if (pmu_attr->event_str)
10585 return sprintf(page, "%s\n", pmu_attr->event_str);
10586
10587 return 0;
10588}
Thomas Gleixner675965b2016-02-22 22:19:27 +000010589EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080010590
Peter Zijlstraabe43402010-11-17 23:17:37 +010010591static int __init perf_event_sysfs_init(void)
10592{
10593 struct pmu *pmu;
10594 int ret;
10595
10596 mutex_lock(&pmus_lock);
10597
10598 ret = bus_register(&pmu_bus);
10599 if (ret)
10600 goto unlock;
10601
10602 list_for_each_entry(pmu, &pmus, entry) {
10603 if (!pmu->name || pmu->type < 0)
10604 continue;
10605
10606 ret = pmu_dev_alloc(pmu);
10607 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
10608 }
10609 pmu_bus_running = 1;
10610 ret = 0;
10611
10612unlock:
10613 mutex_unlock(&pmus_lock);
10614
10615 return ret;
10616}
10617device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010618
10619#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040010620static struct cgroup_subsys_state *
10621perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010622{
10623 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020010624
Li Zefan1b15d052011-03-03 14:26:06 +080010625 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010626 if (!jc)
10627 return ERR_PTR(-ENOMEM);
10628
Stephane Eraniane5d13672011-02-14 11:20:01 +020010629 jc->info = alloc_percpu(struct perf_cgroup_info);
10630 if (!jc->info) {
10631 kfree(jc);
10632 return ERR_PTR(-ENOMEM);
10633 }
10634
Stephane Eraniane5d13672011-02-14 11:20:01 +020010635 return &jc->css;
10636}
10637
Tejun Heoeb954192013-08-08 20:11:23 -040010638static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010639{
Tejun Heoeb954192013-08-08 20:11:23 -040010640 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
10641
Stephane Eraniane5d13672011-02-14 11:20:01 +020010642 free_percpu(jc->info);
10643 kfree(jc);
10644}
10645
10646static int __perf_cgroup_move(void *info)
10647{
10648 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010649 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010650 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010651 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010652 return 0;
10653}
10654
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010655static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010656{
Tejun Heobb9d97b2011-12-12 18:12:21 -080010657 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010658 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080010659
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010660 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080010661 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010662}
10663
Tejun Heo073219e2014-02-08 10:36:58 -050010664struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080010665 .css_alloc = perf_cgroup_css_alloc,
10666 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080010667 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +020010668};
10669#endif /* CONFIG_CGROUP_PERF */