blob: 72ce7d63e561c050e14dfb423a5626efa50bc4cb [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);
David Carrillo-Cisneros864c2352016-11-01 11:52:58 -0700905
David Carrillo-Cisneros8fc31ce2016-12-04 00:46:17 -0800906 /*
907 * cpuctx->cgrp is NULL until a cgroup event is sched in or
908 * ctx->nr_cgroup == 0 .
909 */
910 if (add && perf_cgroup_from_task(current, ctx) == event->cgrp)
911 cpuctx->cgrp = event->cgrp;
912 else if (!add)
913 cpuctx->cgrp = NULL;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700914}
915
Stephane Eraniane5d13672011-02-14 11:20:01 +0200916#else /* !CONFIG_CGROUP_PERF */
917
918static inline bool
919perf_cgroup_match(struct perf_event *event)
920{
921 return true;
922}
923
924static inline void perf_detach_cgroup(struct perf_event *event)
925{}
926
927static inline int is_cgroup_event(struct perf_event *event)
928{
929 return 0;
930}
931
932static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
933{
934 return 0;
935}
936
937static inline void update_cgrp_time_from_event(struct perf_event *event)
938{
939}
940
941static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
942{
943}
944
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200945static inline void perf_cgroup_sched_out(struct task_struct *task,
946 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200947{
948}
949
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200950static inline void perf_cgroup_sched_in(struct task_struct *prev,
951 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200952{
953}
954
955static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
956 struct perf_event_attr *attr,
957 struct perf_event *group_leader)
958{
959 return -EINVAL;
960}
961
962static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200963perf_cgroup_set_timestamp(struct task_struct *task,
964 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200965{
966}
967
968void
969perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
970{
971}
972
973static inline void
974perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
975{
976}
977
978static inline u64 perf_cgroup_event_time(struct perf_event *event)
979{
980 return 0;
981}
982
983static inline void
984perf_cgroup_defer_enabled(struct perf_event *event)
985{
986}
987
988static inline void
989perf_cgroup_mark_enabled(struct perf_event *event,
990 struct perf_event_context *ctx)
991{
992}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700993
994static inline void
995list_update_cgroup_event(struct perf_event *event,
996 struct perf_event_context *ctx, bool add)
997{
998}
999
Stephane Eraniane5d13672011-02-14 11:20:01 +02001000#endif
1001
Stephane Eranian9e630202013-04-03 14:21:33 +02001002/*
1003 * set default to be dependent on timer tick just
1004 * like original code
1005 */
1006#define PERF_CPU_HRTIMER (1000 / HZ)
1007/*
1008 * function must be called with interrupts disbled
1009 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001010static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001011{
1012 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001013 int rotations = 0;
1014
1015 WARN_ON(!irqs_disabled());
1016
1017 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001018 rotations = perf_rotate_context(cpuctx);
1019
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001020 raw_spin_lock(&cpuctx->hrtimer_lock);
1021 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001022 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001023 else
1024 cpuctx->hrtimer_active = 0;
1025 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001026
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001027 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001028}
1029
Peter Zijlstra272325c2015-04-15 11:41:58 +02001030static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001031{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001032 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001033 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001034 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001035
1036 /* no multiplexing needed for SW PMU */
1037 if (pmu->task_ctx_nr == perf_sw_context)
1038 return;
1039
Stephane Eranian62b85632013-04-03 14:21:34 +02001040 /*
1041 * check default is sane, if not set then force to
1042 * default interval (1/tick)
1043 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001044 interval = pmu->hrtimer_interval_ms;
1045 if (interval < 1)
1046 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001047
Peter Zijlstra272325c2015-04-15 11:41:58 +02001048 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001049
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001050 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1051 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001052 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001053}
1054
Peter Zijlstra272325c2015-04-15 11:41:58 +02001055static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001056{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001057 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001058 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001059 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001060
1061 /* not for SW PMU */
1062 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001063 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001064
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001065 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1066 if (!cpuctx->hrtimer_active) {
1067 cpuctx->hrtimer_active = 1;
1068 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1069 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1070 }
1071 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001072
Peter Zijlstra272325c2015-04-15 11:41:58 +02001073 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001074}
1075
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001076void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001077{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001078 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1079 if (!(*count)++)
1080 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001081}
1082
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001083void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001084{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001085 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1086 if (!--(*count))
1087 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001088}
1089
Mark Rutland2fde4f92015-01-07 15:01:54 +00001090static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001091
1092/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001093 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1094 * perf_event_task_tick() are fully serialized because they're strictly cpu
1095 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1096 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001097 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001098static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001099{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001100 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001101
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001102 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001103
Mark Rutland2fde4f92015-01-07 15:01:54 +00001104 WARN_ON(!list_empty(&ctx->active_ctx_list));
1105
1106 list_add(&ctx->active_ctx_list, head);
1107}
1108
1109static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1110{
1111 WARN_ON(!irqs_disabled());
1112
1113 WARN_ON(list_empty(&ctx->active_ctx_list));
1114
1115 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001116}
1117
1118static void get_ctx(struct perf_event_context *ctx)
1119{
1120 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1121}
1122
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001123static void free_ctx(struct rcu_head *head)
1124{
1125 struct perf_event_context *ctx;
1126
1127 ctx = container_of(head, struct perf_event_context, rcu_head);
1128 kfree(ctx->task_ctx_data);
1129 kfree(ctx);
1130}
1131
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001132static void put_ctx(struct perf_event_context *ctx)
1133{
1134 if (atomic_dec_and_test(&ctx->refcount)) {
1135 if (ctx->parent_ctx)
1136 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001137 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001138 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001139 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001140 }
1141}
1142
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001143/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001144 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1145 * perf_pmu_migrate_context() we need some magic.
1146 *
1147 * Those places that change perf_event::ctx will hold both
1148 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1149 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001150 * Lock ordering is by mutex address. There are two other sites where
1151 * perf_event_context::mutex nests and those are:
1152 *
1153 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001154 * perf_event_exit_event()
1155 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001156 *
1157 * - perf_event_init_context() [ parent, 0 ]
1158 * inherit_task_group()
1159 * inherit_group()
1160 * inherit_event()
1161 * perf_event_alloc()
1162 * perf_init_event()
1163 * perf_try_init_event() [ child , 1 ]
1164 *
1165 * While it appears there is an obvious deadlock here -- the parent and child
1166 * nesting levels are inverted between the two. This is in fact safe because
1167 * life-time rules separate them. That is an exiting task cannot fork, and a
1168 * spawning task cannot (yet) exit.
1169 *
1170 * But remember that that these are parent<->child context relations, and
1171 * migration does not affect children, therefore these two orderings should not
1172 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001173 *
1174 * The change in perf_event::ctx does not affect children (as claimed above)
1175 * because the sys_perf_event_open() case will install a new event and break
1176 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1177 * concerned with cpuctx and that doesn't have children.
1178 *
1179 * The places that change perf_event::ctx will issue:
1180 *
1181 * perf_remove_from_context();
1182 * synchronize_rcu();
1183 * perf_install_in_context();
1184 *
1185 * to affect the change. The remove_from_context() + synchronize_rcu() should
1186 * quiesce the event, after which we can install it in the new location. This
1187 * means that only external vectors (perf_fops, prctl) can perturb the event
1188 * while in transit. Therefore all such accessors should also acquire
1189 * perf_event_context::mutex to serialize against this.
1190 *
1191 * However; because event->ctx can change while we're waiting to acquire
1192 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1193 * function.
1194 *
1195 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001196 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001197 * task_struct::perf_event_mutex
1198 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001199 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001200 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001201 * perf_event::mmap_mutex
1202 * mmap_sem
1203 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001204static struct perf_event_context *
1205perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001206{
1207 struct perf_event_context *ctx;
1208
1209again:
1210 rcu_read_lock();
1211 ctx = ACCESS_ONCE(event->ctx);
1212 if (!atomic_inc_not_zero(&ctx->refcount)) {
1213 rcu_read_unlock();
1214 goto again;
1215 }
1216 rcu_read_unlock();
1217
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001218 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001219 if (event->ctx != ctx) {
1220 mutex_unlock(&ctx->mutex);
1221 put_ctx(ctx);
1222 goto again;
1223 }
1224
1225 return ctx;
1226}
1227
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001228static inline struct perf_event_context *
1229perf_event_ctx_lock(struct perf_event *event)
1230{
1231 return perf_event_ctx_lock_nested(event, 0);
1232}
1233
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001234static void perf_event_ctx_unlock(struct perf_event *event,
1235 struct perf_event_context *ctx)
1236{
1237 mutex_unlock(&ctx->mutex);
1238 put_ctx(ctx);
1239}
1240
1241/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001242 * This must be done under the ctx->lock, such as to serialize against
1243 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1244 * calling scheduler related locks and ctx->lock nests inside those.
1245 */
1246static __must_check struct perf_event_context *
1247unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001248{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001249 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1250
1251 lockdep_assert_held(&ctx->lock);
1252
1253 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001254 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001255 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001256
1257 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001258}
1259
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001260static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1261{
1262 /*
1263 * only top level events have the pid namespace they were created in
1264 */
1265 if (event->parent)
1266 event = event->parent;
1267
1268 return task_tgid_nr_ns(p, event->ns);
1269}
1270
1271static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1272{
1273 /*
1274 * only top level events have the pid namespace they were created in
1275 */
1276 if (event->parent)
1277 event = event->parent;
1278
1279 return task_pid_nr_ns(p, event->ns);
1280}
1281
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001282/*
1283 * If we inherit events we want to return the parent event id
1284 * to userspace.
1285 */
1286static u64 primary_event_id(struct perf_event *event)
1287{
1288 u64 id = event->id;
1289
1290 if (event->parent)
1291 id = event->parent->id;
1292
1293 return id;
1294}
1295
1296/*
1297 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001298 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001299 * This has to cope with with the fact that until it is locked,
1300 * the context could get moved to another task.
1301 */
1302static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001303perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304{
1305 struct perf_event_context *ctx;
1306
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001307retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001308 /*
1309 * One of the few rules of preemptible RCU is that one cannot do
1310 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001311 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001312 * rcu_read_unlock_special().
1313 *
1314 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001315 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001316 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001317 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001318 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001319 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001320 if (ctx) {
1321 /*
1322 * If this context is a clone of another, it might
1323 * get swapped for another underneath us by
1324 * perf_event_task_sched_out, though the
1325 * rcu_read_lock() protects us from any context
1326 * getting freed. Lock the context and check if it
1327 * got swapped before we could get the lock, and retry
1328 * if so. If we locked the right context, then it
1329 * can't get swapped on us any more.
1330 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001331 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001332 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001333 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001334 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001335 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001336 goto retry;
1337 }
1338
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001339 if (ctx->task == TASK_TOMBSTONE ||
1340 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001341 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001342 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001343 } else {
1344 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001345 }
1346 }
1347 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001348 if (!ctx)
1349 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001350 return ctx;
1351}
1352
1353/*
1354 * Get the context for a task and increment its pin_count so it
1355 * can't get swapped to another task. This also increments its
1356 * reference count so that the context can't get freed.
1357 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001358static struct perf_event_context *
1359perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360{
1361 struct perf_event_context *ctx;
1362 unsigned long flags;
1363
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001364 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001365 if (ctx) {
1366 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001367 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001368 }
1369 return ctx;
1370}
1371
1372static void perf_unpin_context(struct perf_event_context *ctx)
1373{
1374 unsigned long flags;
1375
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001376 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001377 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001378 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001379}
1380
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001381/*
1382 * Update the record of the current time in a context.
1383 */
1384static void update_context_time(struct perf_event_context *ctx)
1385{
1386 u64 now = perf_clock();
1387
1388 ctx->time += now - ctx->timestamp;
1389 ctx->timestamp = now;
1390}
1391
Stephane Eranian41587552011-01-03 18:20:01 +02001392static u64 perf_event_time(struct perf_event *event)
1393{
1394 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001395
1396 if (is_cgroup_event(event))
1397 return perf_cgroup_event_time(event);
1398
Stephane Eranian41587552011-01-03 18:20:01 +02001399 return ctx ? ctx->time : 0;
1400}
1401
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001402/*
1403 * Update the total_time_enabled and total_time_running fields for a event.
1404 */
1405static void update_event_times(struct perf_event *event)
1406{
1407 struct perf_event_context *ctx = event->ctx;
1408 u64 run_end;
1409
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001410 lockdep_assert_held(&ctx->lock);
1411
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001412 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1413 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1414 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001415
Stephane Eraniane5d13672011-02-14 11:20:01 +02001416 /*
1417 * in cgroup mode, time_enabled represents
1418 * the time the event was enabled AND active
1419 * tasks were in the monitored cgroup. This is
1420 * independent of the activity of the context as
1421 * there may be a mix of cgroup and non-cgroup events.
1422 *
1423 * That is why we treat cgroup events differently
1424 * here.
1425 */
1426 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001427 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001428 else if (ctx->is_active)
1429 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001430 else
1431 run_end = event->tstamp_stopped;
1432
1433 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001434
1435 if (event->state == PERF_EVENT_STATE_INACTIVE)
1436 run_end = event->tstamp_stopped;
1437 else
Stephane Eranian41587552011-01-03 18:20:01 +02001438 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001439
1440 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001441
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001442}
1443
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001444/*
1445 * Update total_time_enabled and total_time_running for all events in a group.
1446 */
1447static void update_group_times(struct perf_event *leader)
1448{
1449 struct perf_event *event;
1450
1451 update_event_times(leader);
1452 list_for_each_entry(event, &leader->sibling_list, group_entry)
1453 update_event_times(event);
1454}
1455
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001456static struct list_head *
1457ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1458{
1459 if (event->attr.pinned)
1460 return &ctx->pinned_groups;
1461 else
1462 return &ctx->flexible_groups;
1463}
1464
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001465/*
1466 * Add a event from the lists for its context.
1467 * Must be called with ctx->mutex and ctx->lock held.
1468 */
1469static void
1470list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1471{
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001472
Peter Zijlstrac994d612016-01-08 09:20:23 +01001473 lockdep_assert_held(&ctx->lock);
1474
Peter Zijlstra8a495422010-05-27 15:47:49 +02001475 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1476 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477
1478 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001479 * If we're a stand alone event or group leader, we go to the context
1480 * list, group events are kept attached to the group so that
1481 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001482 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001483 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001484 struct list_head *list;
1485
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001486 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001487
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001488 list = ctx_group_list(event, ctx);
1489 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490 }
1491
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001492 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 list_add_rcu(&event->event_entry, &ctx->event_list);
1495 ctx->nr_events++;
1496 if (event->attr.inherit_stat)
1497 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001498
1499 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001500}
1501
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001502/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001503 * Initialize event state based on the perf_event_attr::disabled.
1504 */
1505static inline void perf_event__state_init(struct perf_event *event)
1506{
1507 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1508 PERF_EVENT_STATE_INACTIVE;
1509}
1510
Peter Zijlstraa7239682015-09-09 19:06:33 +02001511static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001512{
1513 int entry = sizeof(u64); /* value */
1514 int size = 0;
1515 int nr = 1;
1516
1517 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1518 size += sizeof(u64);
1519
1520 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1521 size += sizeof(u64);
1522
1523 if (event->attr.read_format & PERF_FORMAT_ID)
1524 entry += sizeof(u64);
1525
1526 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001527 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001528 size += sizeof(u64);
1529 }
1530
1531 size += entry * nr;
1532 event->read_size = size;
1533}
1534
Peter Zijlstraa7239682015-09-09 19:06:33 +02001535static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001536{
1537 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001538 u16 size = 0;
1539
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001540 if (sample_type & PERF_SAMPLE_IP)
1541 size += sizeof(data->ip);
1542
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001543 if (sample_type & PERF_SAMPLE_ADDR)
1544 size += sizeof(data->addr);
1545
1546 if (sample_type & PERF_SAMPLE_PERIOD)
1547 size += sizeof(data->period);
1548
Andi Kleenc3feedf2013-01-24 16:10:28 +01001549 if (sample_type & PERF_SAMPLE_WEIGHT)
1550 size += sizeof(data->weight);
1551
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001552 if (sample_type & PERF_SAMPLE_READ)
1553 size += event->read_size;
1554
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001555 if (sample_type & PERF_SAMPLE_DATA_SRC)
1556 size += sizeof(data->data_src.val);
1557
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001558 if (sample_type & PERF_SAMPLE_TRANSACTION)
1559 size += sizeof(data->txn);
1560
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001561 event->header_size = size;
1562}
1563
Peter Zijlstraa7239682015-09-09 19:06:33 +02001564/*
1565 * Called at perf_event creation and when events are attached/detached from a
1566 * group.
1567 */
1568static void perf_event__header_size(struct perf_event *event)
1569{
1570 __perf_event_read_size(event,
1571 event->group_leader->nr_siblings);
1572 __perf_event_header_size(event, event->attr.sample_type);
1573}
1574
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001575static void perf_event__id_header_size(struct perf_event *event)
1576{
1577 struct perf_sample_data *data;
1578 u64 sample_type = event->attr.sample_type;
1579 u16 size = 0;
1580
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001581 if (sample_type & PERF_SAMPLE_TID)
1582 size += sizeof(data->tid_entry);
1583
1584 if (sample_type & PERF_SAMPLE_TIME)
1585 size += sizeof(data->time);
1586
Adrian Hunterff3d5272013-08-27 11:23:07 +03001587 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1588 size += sizeof(data->id);
1589
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001590 if (sample_type & PERF_SAMPLE_ID)
1591 size += sizeof(data->id);
1592
1593 if (sample_type & PERF_SAMPLE_STREAM_ID)
1594 size += sizeof(data->stream_id);
1595
1596 if (sample_type & PERF_SAMPLE_CPU)
1597 size += sizeof(data->cpu_entry);
1598
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001599 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001600}
1601
Peter Zijlstraa7239682015-09-09 19:06:33 +02001602static bool perf_event_validate_size(struct perf_event *event)
1603{
1604 /*
1605 * The values computed here will be over-written when we actually
1606 * attach the event.
1607 */
1608 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1609 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1610 perf_event__id_header_size(event);
1611
1612 /*
1613 * Sum the lot; should not exceed the 64k limit we have on records.
1614 * Conservative limit to allow for callchains and other variable fields.
1615 */
1616 if (event->read_size + event->header_size +
1617 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1618 return false;
1619
1620 return true;
1621}
1622
Peter Zijlstra8a495422010-05-27 15:47:49 +02001623static void perf_group_attach(struct perf_event *event)
1624{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001625 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001626
Peter Zijlstra74c33372010-10-15 11:40:29 +02001627 /*
1628 * We can have double attach due to group movement in perf_event_open.
1629 */
1630 if (event->attach_state & PERF_ATTACH_GROUP)
1631 return;
1632
Peter Zijlstra8a495422010-05-27 15:47:49 +02001633 event->attach_state |= PERF_ATTACH_GROUP;
1634
1635 if (group_leader == event)
1636 return;
1637
Peter Zijlstra652884f2015-01-23 11:20:10 +01001638 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1639
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001640 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001641
1642 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1643 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001644
1645 perf_event__header_size(group_leader);
1646
1647 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1648 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001649}
1650
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001651/*
1652 * Remove a event from the lists for its context.
1653 * Must be called with ctx->mutex and ctx->lock held.
1654 */
1655static void
1656list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1657{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001658 WARN_ON_ONCE(event->ctx != ctx);
1659 lockdep_assert_held(&ctx->lock);
1660
Peter Zijlstra8a495422010-05-27 15:47:49 +02001661 /*
1662 * We can have double detach due to exit/hot-unplug + close.
1663 */
1664 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001665 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001666
1667 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1668
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001669 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001670
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671 ctx->nr_events--;
1672 if (event->attr.inherit_stat)
1673 ctx->nr_stat--;
1674
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001675 list_del_rcu(&event->event_entry);
1676
Peter Zijlstra8a495422010-05-27 15:47:49 +02001677 if (event->group_leader == event)
1678 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001680 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001681
1682 /*
1683 * If event was in error state, then keep it
1684 * that way, otherwise bogus counts will be
1685 * returned on read(). The only way to get out
1686 * of error state is by explicit re-enabling
1687 * of the event
1688 */
1689 if (event->state > PERF_EVENT_STATE_OFF)
1690 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001691
1692 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001693}
1694
Peter Zijlstra8a495422010-05-27 15:47:49 +02001695static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001696{
1697 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001698 struct list_head *list = NULL;
1699
1700 /*
1701 * We can have double detach due to exit/hot-unplug + close.
1702 */
1703 if (!(event->attach_state & PERF_ATTACH_GROUP))
1704 return;
1705
1706 event->attach_state &= ~PERF_ATTACH_GROUP;
1707
1708 /*
1709 * If this is a sibling, remove it from its group.
1710 */
1711 if (event->group_leader != event) {
1712 list_del_init(&event->group_entry);
1713 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001714 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001715 }
1716
1717 if (!list_empty(&event->group_entry))
1718 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001719
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720 /*
1721 * If this was a group event with sibling events then
1722 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001723 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001724 */
1725 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001726 if (list)
1727 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001728 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001729
1730 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001731 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001732
1733 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001734 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001735
1736out:
1737 perf_event__header_size(event->group_leader);
1738
1739 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1740 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001741}
1742
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001743static bool is_orphaned_event(struct perf_event *event)
1744{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001745 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001746}
1747
Mark Rutland2c81a642016-06-14 16:10:41 +01001748static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001749{
1750 struct pmu *pmu = event->pmu;
1751 return pmu->filter_match ? pmu->filter_match(event) : 1;
1752}
1753
Mark Rutland2c81a642016-06-14 16:10:41 +01001754/*
1755 * Check whether we should attempt to schedule an event group based on
1756 * PMU-specific filtering. An event group can consist of HW and SW events,
1757 * potentially with a SW leader, so we must check all the filters, to
1758 * determine whether a group is schedulable:
1759 */
1760static inline int pmu_filter_match(struct perf_event *event)
1761{
1762 struct perf_event *child;
1763
1764 if (!__pmu_filter_match(event))
1765 return 0;
1766
1767 list_for_each_entry(child, &event->sibling_list, group_entry) {
1768 if (!__pmu_filter_match(child))
1769 return 0;
1770 }
1771
1772 return 1;
1773}
1774
Stephane Eranianfa66f072010-08-26 16:40:01 +02001775static inline int
1776event_filter_match(struct perf_event *event)
1777{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001778 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1779 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001780}
1781
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001782static void
1783event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001784 struct perf_cpu_context *cpuctx,
1785 struct perf_event_context *ctx)
1786{
Stephane Eranian41587552011-01-03 18:20:01 +02001787 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001788 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001789
1790 WARN_ON_ONCE(event->ctx != ctx);
1791 lockdep_assert_held(&ctx->lock);
1792
Stephane Eranianfa66f072010-08-26 16:40:01 +02001793 /*
1794 * An event which could not be activated because of
1795 * filter mismatch still needs to have its timings
1796 * maintained, otherwise bogus information is return
1797 * via read() for time_enabled, time_running:
1798 */
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001799 if (event->state == PERF_EVENT_STATE_INACTIVE &&
1800 !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001801 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001802 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001803 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001804 }
1805
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001807 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001808
Alexander Shishkin44377272013-12-16 14:17:36 +02001809 perf_pmu_disable(event->pmu);
1810
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001811 event->tstamp_stopped = tstamp;
1812 event->pmu->del(event, 0);
1813 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001814 event->state = PERF_EVENT_STATE_INACTIVE;
1815 if (event->pending_disable) {
1816 event->pending_disable = 0;
1817 event->state = PERF_EVENT_STATE_OFF;
1818 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001819
1820 if (!is_software_event(event))
1821 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001822 if (!--ctx->nr_active)
1823 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001824 if (event->attr.freq && event->attr.sample_freq)
1825 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001826 if (event->attr.exclusive || !cpuctx->active_oncpu)
1827 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001828
1829 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001830}
1831
1832static void
1833group_sched_out(struct perf_event *group_event,
1834 struct perf_cpu_context *cpuctx,
1835 struct perf_event_context *ctx)
1836{
1837 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001838 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001839
Mark Rutland3f005e72016-07-26 18:12:21 +01001840 perf_pmu_disable(ctx->pmu);
1841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001842 event_sched_out(group_event, cpuctx, ctx);
1843
1844 /*
1845 * Schedule out siblings (if any):
1846 */
1847 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1848 event_sched_out(event, cpuctx, ctx);
1849
Mark Rutland3f005e72016-07-26 18:12:21 +01001850 perf_pmu_enable(ctx->pmu);
1851
Stephane Eranianfa66f072010-08-26 16:40:01 +02001852 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001853 cpuctx->exclusive = 0;
1854}
1855
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001856#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001857
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001858/*
1859 * Cross CPU call to remove a performance event
1860 *
1861 * We disable the event on the hardware level first. After that we
1862 * remove it from the context list.
1863 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001864static void
1865__perf_remove_from_context(struct perf_event *event,
1866 struct perf_cpu_context *cpuctx,
1867 struct perf_event_context *ctx,
1868 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001869{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001870 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001873 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001874 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001875 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001876
Peter Zijlstra39a43642016-01-11 12:46:35 +01001877 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001878 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001879 if (ctx->task) {
1880 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1881 cpuctx->task_ctx = NULL;
1882 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001883 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001884}
1885
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001886/*
1887 * Remove the event from a task's (or a CPU's) list of events.
1888 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 * If event->ctx is a cloned context, callers must make sure that
1890 * every task struct that event->ctx->task could possibly point to
1891 * remains valid. This is OK when called from perf_release since
1892 * that only calls us on the top-level context, which can't be a clone.
1893 * When called from perf_event_exit_task, it's OK because the
1894 * context has been detached from its task.
1895 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001896static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001897{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001898 lockdep_assert_held(&event->ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001899
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001900 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001901}
1902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001903/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001904 * Cross CPU call to disable a performance event
1905 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001906static void __perf_event_disable(struct perf_event *event,
1907 struct perf_cpu_context *cpuctx,
1908 struct perf_event_context *ctx,
1909 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001910{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001911 if (event->state < PERF_EVENT_STATE_INACTIVE)
1912 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001913
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001914 update_context_time(ctx);
1915 update_cgrp_time_from_event(event);
1916 update_group_times(event);
1917 if (event == event->group_leader)
1918 group_sched_out(event, cpuctx, ctx);
1919 else
1920 event_sched_out(event, cpuctx, ctx);
1921 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001922}
1923
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001924/*
1925 * Disable a event.
1926 *
1927 * If event->ctx is a cloned context, callers must make sure that
1928 * every task struct that event->ctx->task could possibly point to
1929 * remains valid. This condition is satisifed when called through
1930 * perf_event_for_each_child or perf_event_for_each because they
1931 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001932 * goes to exit will block in perf_event_exit_event().
1933 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001934 * When called from perf_pending_event it's OK because event->ctx
1935 * is the current context on this CPU and preemption is disabled,
1936 * hence we can't get into perf_event_task_sched_out for this context.
1937 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001938static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001939{
1940 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001941
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001942 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001943 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001944 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001945 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001946 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001947 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001948
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001949 event_function_call(event, __perf_event_disable, NULL);
1950}
1951
1952void perf_event_disable_local(struct perf_event *event)
1953{
1954 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001955}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001956
1957/*
1958 * Strictly speaking kernel users cannot create groups and therefore this
1959 * interface does not need the perf_event_ctx_lock() magic.
1960 */
1961void perf_event_disable(struct perf_event *event)
1962{
1963 struct perf_event_context *ctx;
1964
1965 ctx = perf_event_ctx_lock(event);
1966 _perf_event_disable(event);
1967 perf_event_ctx_unlock(event, ctx);
1968}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001969EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001970
Jiri Olsa5aab90c2016-10-26 11:48:24 +02001971void perf_event_disable_inatomic(struct perf_event *event)
1972{
1973 event->pending_disable = 1;
1974 irq_work_queue(&event->pending);
1975}
1976
Stephane Eraniane5d13672011-02-14 11:20:01 +02001977static void perf_set_shadow_time(struct perf_event *event,
1978 struct perf_event_context *ctx,
1979 u64 tstamp)
1980{
1981 /*
1982 * use the correct time source for the time snapshot
1983 *
1984 * We could get by without this by leveraging the
1985 * fact that to get to this function, the caller
1986 * has most likely already called update_context_time()
1987 * and update_cgrp_time_xx() and thus both timestamp
1988 * are identical (or very close). Given that tstamp is,
1989 * already adjusted for cgroup, we could say that:
1990 * tstamp - ctx->timestamp
1991 * is equivalent to
1992 * tstamp - cgrp->timestamp.
1993 *
1994 * Then, in perf_output_read(), the calculation would
1995 * work with no changes because:
1996 * - event is guaranteed scheduled in
1997 * - no scheduled out in between
1998 * - thus the timestamp would be the same
1999 *
2000 * But this is a bit hairy.
2001 *
2002 * So instead, we have an explicit cgroup call to remain
2003 * within the time time source all along. We believe it
2004 * is cleaner and simpler to understand.
2005 */
2006 if (is_cgroup_event(event))
2007 perf_cgroup_set_shadow_time(event, tstamp);
2008 else
2009 event->shadow_ctx_time = tstamp - ctx->timestamp;
2010}
2011
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002012#define MAX_INTERRUPTS (~0ULL)
2013
2014static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002015static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002016
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002017static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002018event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002019 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002020 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002021{
Stephane Eranian41587552011-01-03 18:20:01 +02002022 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02002023 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002024
Peter Zijlstra63342412014-05-05 11:49:16 +02002025 lockdep_assert_held(&ctx->lock);
2026
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002027 if (event->state <= PERF_EVENT_STATE_OFF)
2028 return 0;
2029
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002030 WRITE_ONCE(event->oncpu, smp_processor_id());
2031 /*
2032 * Order event::oncpu write to happen before the ACTIVE state
2033 * is visible.
2034 */
2035 smp_wmb();
2036 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002037
2038 /*
2039 * Unthrottle events, since we scheduled we might have missed several
2040 * ticks already, also for a heavily scheduling task there is little
2041 * guarantee it'll get a tick in a timely manner.
2042 */
2043 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2044 perf_log_throttle(event, 1);
2045 event->hw.interrupts = 0;
2046 }
2047
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002048 /*
2049 * The new state must be visible before we turn it on in the hardware:
2050 */
2051 smp_wmb();
2052
Alexander Shishkin44377272013-12-16 14:17:36 +02002053 perf_pmu_disable(event->pmu);
2054
Shaohua Li72f669c2015-02-05 15:55:31 -08002055 perf_set_shadow_time(event, ctx, tstamp);
2056
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002057 perf_log_itrace_start(event);
2058
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002059 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002060 event->state = PERF_EVENT_STATE_INACTIVE;
2061 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002062 ret = -EAGAIN;
2063 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002064 }
2065
Peter Zijlstra00a29162015-07-27 10:35:07 +02002066 event->tstamp_running += tstamp - event->tstamp_stopped;
2067
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068 if (!is_software_event(event))
2069 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002070 if (!ctx->nr_active++)
2071 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002072 if (event->attr.freq && event->attr.sample_freq)
2073 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002074
2075 if (event->attr.exclusive)
2076 cpuctx->exclusive = 1;
2077
Alexander Shishkin44377272013-12-16 14:17:36 +02002078out:
2079 perf_pmu_enable(event->pmu);
2080
2081 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002082}
2083
2084static int
2085group_sched_in(struct perf_event *group_event,
2086 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002087 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088{
Lin Ming6bde9b62010-04-23 13:56:00 +08002089 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002090 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002091 u64 now = ctx->time;
2092 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002093
2094 if (group_event->state == PERF_EVENT_STATE_OFF)
2095 return 0;
2096
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002097 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002098
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002099 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002100 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002101 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002103 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104
2105 /*
2106 * Schedule in siblings as one group (if any):
2107 */
2108 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002109 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110 partial_group = event;
2111 goto group_error;
2112 }
2113 }
2114
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002115 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002116 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002117
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118group_error:
2119 /*
2120 * Groups can be scheduled in as one unit only, so undo any
2121 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002122 * The events up to the failed event are scheduled out normally,
2123 * tstamp_stopped will be updated.
2124 *
2125 * The failed events and the remaining siblings need to have
2126 * their timings updated as if they had gone thru event_sched_in()
2127 * and event_sched_out(). This is required to get consistent timings
2128 * across the group. This also takes care of the case where the group
2129 * could never be scheduled by ensuring tstamp_stopped is set to mark
2130 * the time the event was actually stopped, such that time delta
2131 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132 */
2133 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2134 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002135 simulate = true;
2136
2137 if (simulate) {
2138 event->tstamp_running += now - event->tstamp_stopped;
2139 event->tstamp_stopped = now;
2140 } else {
2141 event_sched_out(event, cpuctx, ctx);
2142 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002144 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002145
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002146 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002147
Peter Zijlstra272325c2015-04-15 11:41:58 +02002148 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002149
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150 return -EAGAIN;
2151}
2152
2153/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154 * Work out whether we can put this event group on the CPU now.
2155 */
2156static int group_can_go_on(struct perf_event *event,
2157 struct perf_cpu_context *cpuctx,
2158 int can_add_hw)
2159{
2160 /*
2161 * Groups consisting entirely of software events can always go on.
2162 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002163 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002164 return 1;
2165 /*
2166 * If an exclusive group is already on, no other hardware
2167 * events can go on.
2168 */
2169 if (cpuctx->exclusive)
2170 return 0;
2171 /*
2172 * If this group is exclusive and there are already
2173 * events on the CPU, it can't go on.
2174 */
2175 if (event->attr.exclusive && cpuctx->active_oncpu)
2176 return 0;
2177 /*
2178 * Otherwise, try to add it if all previous groups were able
2179 * to go on.
2180 */
2181 return can_add_hw;
2182}
2183
2184static void add_event_to_ctx(struct perf_event *event,
2185 struct perf_event_context *ctx)
2186{
Stephane Eranian41587552011-01-03 18:20:01 +02002187 u64 tstamp = perf_event_time(event);
2188
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002189 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002190 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002191 event->tstamp_enabled = tstamp;
2192 event->tstamp_running = tstamp;
2193 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002194}
2195
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002196static void ctx_sched_out(struct perf_event_context *ctx,
2197 struct perf_cpu_context *cpuctx,
2198 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002199static void
2200ctx_sched_in(struct perf_event_context *ctx,
2201 struct perf_cpu_context *cpuctx,
2202 enum event_type_t event_type,
2203 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002204
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002205static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2206 struct perf_event_context *ctx)
2207{
2208 if (!cpuctx->task_ctx)
2209 return;
2210
2211 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2212 return;
2213
2214 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2215}
2216
Peter Zijlstradce58552011-04-09 21:17:46 +02002217static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2218 struct perf_event_context *ctx,
2219 struct task_struct *task)
2220{
2221 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2222 if (ctx)
2223 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2224 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2225 if (ctx)
2226 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2227}
2228
Peter Zijlstra3e349502016-01-08 10:01:18 +01002229static void ctx_resched(struct perf_cpu_context *cpuctx,
2230 struct perf_event_context *task_ctx)
Peter Zijlstra00179602015-11-30 16:26:35 +01002231{
Peter Zijlstra3e349502016-01-08 10:01:18 +01002232 perf_pmu_disable(cpuctx->ctx.pmu);
2233 if (task_ctx)
2234 task_ctx_sched_out(cpuctx, task_ctx);
2235 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2236 perf_event_sched_in(cpuctx, task_ctx, current);
2237 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002238}
2239
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002240/*
2241 * Cross CPU call to install and enable a performance event
2242 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002243 * Very similar to remote_function() + event_function() but cannot assume that
2244 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002245 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002246static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002247{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002248 struct perf_event *event = info;
2249 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002250 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002251 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002252 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002253 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002254
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002255 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002256 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002257 raw_spin_lock(&ctx->lock);
2258 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002259
Peter Zijlstra63cae122016-12-09 14:59:00 +01002260 reprogram = (ctx->task == current);
2261
2262 /*
2263 * If the task is running, it must be running on this CPU,
2264 * otherwise we cannot reprogram things.
2265 *
2266 * If its not running, we don't care, ctx->lock will
2267 * serialize against it becoming runnable.
2268 */
2269 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002270 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002271 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002272 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002273
Peter Zijlstra63cae122016-12-09 14:59:00 +01002274 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002275 } else if (task_ctx) {
2276 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002277 }
2278
Peter Zijlstra63cae122016-12-09 14:59:00 +01002279 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002280 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2281 add_event_to_ctx(event, ctx);
2282 ctx_resched(cpuctx, task_ctx);
2283 } else {
2284 add_event_to_ctx(event, ctx);
2285 }
2286
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002287unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002288 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002289
Peter Zijlstraa0963092016-02-24 18:45:50 +01002290 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002291}
2292
2293/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002294 * Attach a performance event to a context.
2295 *
2296 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002297 */
2298static void
2299perf_install_in_context(struct perf_event_context *ctx,
2300 struct perf_event *event,
2301 int cpu)
2302{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002303 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002304
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002305 lockdep_assert_held(&ctx->mutex);
2306
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002307 if (event->cpu != -1)
2308 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002309
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002310 /*
2311 * Ensures that if we can observe event->ctx, both the event and ctx
2312 * will be 'complete'. See perf_iterate_sb_cpu().
2313 */
2314 smp_store_release(&event->ctx, ctx);
2315
Peter Zijlstraa0963092016-02-24 18:45:50 +01002316 if (!task) {
2317 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002318 return;
2319 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002320
Peter Zijlstraa0963092016-02-24 18:45:50 +01002321 /*
2322 * Should not happen, we validate the ctx is still alive before calling.
2323 */
2324 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2325 return;
2326
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002327 /*
2328 * Installing events is tricky because we cannot rely on ctx->is_active
2329 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002330 *
2331 * Instead we use task_curr(), which tells us if the task is running.
2332 * However, since we use task_curr() outside of rq::lock, we can race
2333 * against the actual state. This means the result can be wrong.
2334 *
2335 * If we get a false positive, we retry, this is harmless.
2336 *
2337 * If we get a false negative, things are complicated. If we are after
2338 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2339 * value must be correct. If we're before, it doesn't matter since
2340 * perf_event_context_sched_in() will program the counter.
2341 *
2342 * However, this hinges on the remote context switch having observed
2343 * our task->perf_event_ctxp[] store, such that it will in fact take
2344 * ctx::lock in perf_event_context_sched_in().
2345 *
2346 * We do this by task_function_call(), if the IPI fails to hit the task
2347 * we know any future context switch of task must see the
2348 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002349 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002350
Peter Zijlstraa0963092016-02-24 18:45:50 +01002351 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002352 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2353 * task_cpu() load, such that if the IPI then does not find the task
2354 * running, a future context switch of that task must observe the
2355 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002356 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002357 smp_mb();
2358again:
2359 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002360 return;
2361
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002362 raw_spin_lock_irq(&ctx->lock);
2363 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002364 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2365 /*
2366 * Cannot happen because we already checked above (which also
2367 * cannot happen), and we hold ctx->mutex, which serializes us
2368 * against perf_event_exit_task_context().
2369 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002370 raw_spin_unlock_irq(&ctx->lock);
2371 return;
2372 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002373 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002374 * If the task is not running, ctx->lock will avoid it becoming so,
2375 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002376 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002377 if (task_curr(task)) {
2378 raw_spin_unlock_irq(&ctx->lock);
2379 goto again;
2380 }
2381 add_event_to_ctx(event, ctx);
2382 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002383}
2384
2385/*
2386 * Put a event into inactive state and update time fields.
2387 * Enabling the leader of a group effectively enables all
2388 * the group members that aren't explicitly disabled, so we
2389 * have to update their ->tstamp_enabled also.
2390 * Note: this works for group members as well as group leaders
2391 * since the non-leader members' sibling_lists will be empty.
2392 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002393static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394{
2395 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002396 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002397
2398 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002399 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002400 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002401 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2402 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002403 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404}
2405
2406/*
2407 * Cross CPU call to enable a performance event
2408 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002409static void __perf_event_enable(struct perf_event *event,
2410 struct perf_cpu_context *cpuctx,
2411 struct perf_event_context *ctx,
2412 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002413{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002414 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002415 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002417 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2418 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002419 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002420
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002421 if (ctx->is_active)
2422 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2423
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002424 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002425
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002426 if (!ctx->is_active)
2427 return;
2428
Stephane Eraniane5d13672011-02-14 11:20:01 +02002429 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002430 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002431 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002432 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002433 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002434 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002435
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002436 /*
2437 * If the event is in a group and isn't the group leader,
2438 * then don't put it on unless the group is on.
2439 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002440 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2441 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002442 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002443 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002445 task_ctx = cpuctx->task_ctx;
2446 if (ctx->task)
2447 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002448
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002449 ctx_resched(cpuctx, task_ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002450}
2451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002452/*
2453 * Enable a event.
2454 *
2455 * If event->ctx is a cloned context, callers must make sure that
2456 * every task struct that event->ctx->task could possibly point to
2457 * remains valid. This condition is satisfied when called through
2458 * perf_event_for_each_child or perf_event_for_each as described
2459 * for perf_event_disable.
2460 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002461static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002462{
2463 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002464
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002465 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002466 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2467 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002468 raw_spin_unlock_irq(&ctx->lock);
2469 return;
2470 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002471
2472 /*
2473 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002474 *
2475 * That way, if we see the event in error state below, we know that it
2476 * has gone back into error state, as distinct from the task having
2477 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478 */
2479 if (event->state == PERF_EVENT_STATE_ERROR)
2480 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002481 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002482
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002483 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002484}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002485
2486/*
2487 * See perf_event_disable();
2488 */
2489void perf_event_enable(struct perf_event *event)
2490{
2491 struct perf_event_context *ctx;
2492
2493 ctx = perf_event_ctx_lock(event);
2494 _perf_event_enable(event);
2495 perf_event_ctx_unlock(event, ctx);
2496}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002497EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002498
Alexander Shishkin375637b2016-04-27 18:44:46 +03002499struct stop_event_data {
2500 struct perf_event *event;
2501 unsigned int restart;
2502};
2503
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002504static int __perf_event_stop(void *info)
2505{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002506 struct stop_event_data *sd = info;
2507 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002508
Alexander Shishkin375637b2016-04-27 18:44:46 +03002509 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002510 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2511 return 0;
2512
2513 /* matches smp_wmb() in event_sched_in() */
2514 smp_rmb();
2515
2516 /*
2517 * There is a window with interrupts enabled before we get here,
2518 * so we need to check again lest we try to stop another CPU's event.
2519 */
2520 if (READ_ONCE(event->oncpu) != smp_processor_id())
2521 return -EAGAIN;
2522
2523 event->pmu->stop(event, PERF_EF_UPDATE);
2524
Alexander Shishkin375637b2016-04-27 18:44:46 +03002525 /*
2526 * May race with the actual stop (through perf_pmu_output_stop()),
2527 * but it is only used for events with AUX ring buffer, and such
2528 * events will refuse to restart because of rb::aux_mmap_count==0,
2529 * see comments in perf_aux_output_begin().
2530 *
2531 * Since this is happening on a event-local CPU, no trace is lost
2532 * while restarting.
2533 */
2534 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002535 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002536
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002537 return 0;
2538}
2539
Alexander Shishkin767ae082016-09-06 16:23:49 +03002540static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002541{
2542 struct stop_event_data sd = {
2543 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002544 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002545 };
2546 int ret = 0;
2547
2548 do {
2549 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2550 return 0;
2551
2552 /* matches smp_wmb() in event_sched_in() */
2553 smp_rmb();
2554
2555 /*
2556 * We only want to restart ACTIVE events, so if the event goes
2557 * inactive here (event->oncpu==-1), there's nothing more to do;
2558 * fall through with ret==-ENXIO.
2559 */
2560 ret = cpu_function_call(READ_ONCE(event->oncpu),
2561 __perf_event_stop, &sd);
2562 } while (ret == -EAGAIN);
2563
2564 return ret;
2565}
2566
2567/*
2568 * In order to contain the amount of racy and tricky in the address filter
2569 * configuration management, it is a two part process:
2570 *
2571 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2572 * we update the addresses of corresponding vmas in
2573 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2574 * (p2) when an event is scheduled in (pmu::add), it calls
2575 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2576 * if the generation has changed since the previous call.
2577 *
2578 * If (p1) happens while the event is active, we restart it to force (p2).
2579 *
2580 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2581 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2582 * ioctl;
2583 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2584 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2585 * for reading;
2586 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2587 * of exec.
2588 */
2589void perf_event_addr_filters_sync(struct perf_event *event)
2590{
2591 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2592
2593 if (!has_addr_filter(event))
2594 return;
2595
2596 raw_spin_lock(&ifh->lock);
2597 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2598 event->pmu->addr_filters_sync(event);
2599 event->hw.addr_filters_gen = event->addr_filters_gen;
2600 }
2601 raw_spin_unlock(&ifh->lock);
2602}
2603EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2604
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002605static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002606{
2607 /*
2608 * not supported on inherited events
2609 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002610 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002611 return -EINVAL;
2612
2613 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002614 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002615
2616 return 0;
2617}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002618
2619/*
2620 * See perf_event_disable()
2621 */
2622int perf_event_refresh(struct perf_event *event, int refresh)
2623{
2624 struct perf_event_context *ctx;
2625 int ret;
2626
2627 ctx = perf_event_ctx_lock(event);
2628 ret = _perf_event_refresh(event, refresh);
2629 perf_event_ctx_unlock(event, ctx);
2630
2631 return ret;
2632}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002633EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002634
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002635static void ctx_sched_out(struct perf_event_context *ctx,
2636 struct perf_cpu_context *cpuctx,
2637 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002638{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002639 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002640 struct perf_event *event;
2641
2642 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002643
Peter Zijlstra39a43642016-01-11 12:46:35 +01002644 if (likely(!ctx->nr_events)) {
2645 /*
2646 * See __perf_remove_from_context().
2647 */
2648 WARN_ON_ONCE(ctx->is_active);
2649 if (ctx->task)
2650 WARN_ON_ONCE(cpuctx->task_ctx);
2651 return;
2652 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002653
Peter Zijlstradb24d332011-04-09 21:17:45 +02002654 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002655 if (!(ctx->is_active & EVENT_ALL))
2656 ctx->is_active = 0;
2657
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002658 if (ctx->task) {
2659 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2660 if (!ctx->is_active)
2661 cpuctx->task_ctx = NULL;
2662 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002663
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002664 /*
2665 * Always update time if it was set; not only when it changes.
2666 * Otherwise we can 'forget' to update time for any but the last
2667 * context we sched out. For example:
2668 *
2669 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2670 * ctx_sched_out(.event_type = EVENT_PINNED)
2671 *
2672 * would only update time for the pinned events.
2673 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002674 if (is_active & EVENT_TIME) {
2675 /* update (and stop) ctx time */
2676 update_context_time(ctx);
2677 update_cgrp_time_from_cpuctx(cpuctx);
2678 }
2679
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002680 is_active ^= ctx->is_active; /* changed bits */
2681
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002682 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002683 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002684
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002685 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002686 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002687 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2688 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002689 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002690
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002691 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002692 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002693 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002694 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002695 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002696}
2697
2698/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002699 * Test whether two contexts are equivalent, i.e. whether they have both been
2700 * cloned from the same version of the same context.
2701 *
2702 * Equivalence is measured using a generation number in the context that is
2703 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2704 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002705 */
2706static int context_equiv(struct perf_event_context *ctx1,
2707 struct perf_event_context *ctx2)
2708{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002709 lockdep_assert_held(&ctx1->lock);
2710 lockdep_assert_held(&ctx2->lock);
2711
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002712 /* Pinning disables the swap optimization */
2713 if (ctx1->pin_count || ctx2->pin_count)
2714 return 0;
2715
2716 /* If ctx1 is the parent of ctx2 */
2717 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2718 return 1;
2719
2720 /* If ctx2 is the parent of ctx1 */
2721 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2722 return 1;
2723
2724 /*
2725 * If ctx1 and ctx2 have the same parent; we flatten the parent
2726 * hierarchy, see perf_event_init_context().
2727 */
2728 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2729 ctx1->parent_gen == ctx2->parent_gen)
2730 return 1;
2731
2732 /* Unmatched */
2733 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002734}
2735
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002736static void __perf_event_sync_stat(struct perf_event *event,
2737 struct perf_event *next_event)
2738{
2739 u64 value;
2740
2741 if (!event->attr.inherit_stat)
2742 return;
2743
2744 /*
2745 * Update the event value, we cannot use perf_event_read()
2746 * because we're in the middle of a context switch and have IRQs
2747 * disabled, which upsets smp_call_function_single(), however
2748 * we know the event must be on the current CPU, therefore we
2749 * don't need to use it.
2750 */
2751 switch (event->state) {
2752 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002753 event->pmu->read(event);
2754 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002755
2756 case PERF_EVENT_STATE_INACTIVE:
2757 update_event_times(event);
2758 break;
2759
2760 default:
2761 break;
2762 }
2763
2764 /*
2765 * In order to keep per-task stats reliable we need to flip the event
2766 * values when we flip the contexts.
2767 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002768 value = local64_read(&next_event->count);
2769 value = local64_xchg(&event->count, value);
2770 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002771
2772 swap(event->total_time_enabled, next_event->total_time_enabled);
2773 swap(event->total_time_running, next_event->total_time_running);
2774
2775 /*
2776 * Since we swizzled the values, update the user visible data too.
2777 */
2778 perf_event_update_userpage(event);
2779 perf_event_update_userpage(next_event);
2780}
2781
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002782static void perf_event_sync_stat(struct perf_event_context *ctx,
2783 struct perf_event_context *next_ctx)
2784{
2785 struct perf_event *event, *next_event;
2786
2787 if (!ctx->nr_stat)
2788 return;
2789
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002790 update_context_time(ctx);
2791
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002792 event = list_first_entry(&ctx->event_list,
2793 struct perf_event, event_entry);
2794
2795 next_event = list_first_entry(&next_ctx->event_list,
2796 struct perf_event, event_entry);
2797
2798 while (&event->event_entry != &ctx->event_list &&
2799 &next_event->event_entry != &next_ctx->event_list) {
2800
2801 __perf_event_sync_stat(event, next_event);
2802
2803 event = list_next_entry(event, event_entry);
2804 next_event = list_next_entry(next_event, event_entry);
2805 }
2806}
2807
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002808static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2809 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002810{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002811 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002812 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002813 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002814 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002815 int do_switch = 1;
2816
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002817 if (likely(!ctx))
2818 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002819
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002820 cpuctx = __get_cpu_context(ctx);
2821 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002822 return;
2823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002824 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002825 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002826 if (!next_ctx)
2827 goto unlock;
2828
2829 parent = rcu_dereference(ctx->parent_ctx);
2830 next_parent = rcu_dereference(next_ctx->parent_ctx);
2831
2832 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002833 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002834 goto unlock;
2835
2836 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002837 /*
2838 * Looks like the two contexts are clones, so we might be
2839 * able to optimize the context switch. We lock both
2840 * contexts and check that they are clones under the
2841 * lock (including re-checking that neither has been
2842 * uncloned in the meantime). It doesn't matter which
2843 * order we take the locks because no other cpu could
2844 * be trying to lock both of these tasks.
2845 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002846 raw_spin_lock(&ctx->lock);
2847 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002849 WRITE_ONCE(ctx->task, next);
2850 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002851
2852 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2853
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002854 /*
2855 * RCU_INIT_POINTER here is safe because we've not
2856 * modified the ctx and the above modification of
2857 * ctx->task and ctx->task_ctx_data are immaterial
2858 * since those values are always verified under
2859 * ctx->lock which we're now holding.
2860 */
2861 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2862 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002864 do_switch = 0;
2865
2866 perf_event_sync_stat(ctx, next_ctx);
2867 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002868 raw_spin_unlock(&next_ctx->lock);
2869 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002870 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002871unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872 rcu_read_unlock();
2873
2874 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002875 raw_spin_lock(&ctx->lock);
Peter Zijlstra8833d0e2016-01-08 10:02:37 +01002876 task_ctx_sched_out(cpuctx, ctx);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002877 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002878 }
2879}
2880
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002881static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2882
Yan, Zhengba532502014-11-04 21:55:58 -05002883void perf_sched_cb_dec(struct pmu *pmu)
2884{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002885 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2886
Yan, Zhengba532502014-11-04 21:55:58 -05002887 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002888
2889 if (!--cpuctx->sched_cb_usage)
2890 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05002891}
2892
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002893
Yan, Zhengba532502014-11-04 21:55:58 -05002894void perf_sched_cb_inc(struct pmu *pmu)
2895{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002896 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2897
2898 if (!cpuctx->sched_cb_usage++)
2899 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
2900
Yan, Zhengba532502014-11-04 21:55:58 -05002901 this_cpu_inc(perf_sched_cb_usages);
2902}
2903
2904/*
2905 * This function provides the context switch callback to the lower code
2906 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02002907 *
2908 * This callback is relevant even to per-cpu events; for example multi event
2909 * PEBS requires this to provide PID/TID information. This requires we flush
2910 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05002911 */
2912static void perf_pmu_sched_task(struct task_struct *prev,
2913 struct task_struct *next,
2914 bool sched_in)
2915{
2916 struct perf_cpu_context *cpuctx;
2917 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05002918
2919 if (prev == next)
2920 return;
2921
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002922 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
2923 pmu = cpuctx->unique_pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05002924
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002925 if (WARN_ON_ONCE(!pmu->sched_task))
2926 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05002927
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002928 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2929 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05002930
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002931 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05002932
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002933 perf_pmu_enable(pmu);
2934 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05002935 }
Yan, Zhengba532502014-11-04 21:55:58 -05002936}
2937
Adrian Hunter45ac1402015-07-21 12:44:02 +03002938static void perf_event_switch(struct task_struct *task,
2939 struct task_struct *next_prev, bool sched_in);
2940
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002941#define for_each_task_context_nr(ctxn) \
2942 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2943
2944/*
2945 * Called from scheduler to remove the events of the current task,
2946 * with interrupts disabled.
2947 *
2948 * We stop each event and update the event value in event->count.
2949 *
2950 * This does not protect us against NMI, but disable()
2951 * sets the disabled bit in the control field of event _before_
2952 * accessing the event control register. If a NMI hits, then it will
2953 * not restart the event.
2954 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002955void __perf_event_task_sched_out(struct task_struct *task,
2956 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002957{
2958 int ctxn;
2959
Yan, Zhengba532502014-11-04 21:55:58 -05002960 if (__this_cpu_read(perf_sched_cb_usages))
2961 perf_pmu_sched_task(task, next, false);
2962
Adrian Hunter45ac1402015-07-21 12:44:02 +03002963 if (atomic_read(&nr_switch_events))
2964 perf_event_switch(task, next, false);
2965
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002966 for_each_task_context_nr(ctxn)
2967 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002968
2969 /*
2970 * if cgroup events exist on this CPU, then we need
2971 * to check if we have to switch out PMU state.
2972 * cgroup event are system-wide mode only
2973 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002974 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002975 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002976}
2977
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002978/*
2979 * Called with IRQs disabled
2980 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002981static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2982 enum event_type_t event_type)
2983{
2984 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985}
2986
2987static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002988ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002989 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002990{
2991 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002992
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002993 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2994 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002995 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002996 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002997 continue;
2998
Stephane Eraniane5d13672011-02-14 11:20:01 +02002999 /* may need to reset tstamp_enabled */
3000 if (is_cgroup_event(event))
3001 perf_cgroup_mark_enabled(event, ctx);
3002
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003003 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01003004 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003005
3006 /*
3007 * If this pinned group hasn't been scheduled,
3008 * put it in error state.
3009 */
3010 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3011 update_group_times(event);
3012 event->state = PERF_EVENT_STATE_ERROR;
3013 }
3014 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003015}
3016
3017static void
3018ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003019 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003020{
3021 struct perf_event *event;
3022 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003023
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003024 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
3025 /* Ignore events in OFF or ERROR state */
3026 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003027 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003028 /*
3029 * Listen to the 'cpu' scheduling filter constraint
3030 * of events:
3031 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02003032 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003033 continue;
3034
Stephane Eraniane5d13672011-02-14 11:20:01 +02003035 /* may need to reset tstamp_enabled */
3036 if (is_cgroup_event(event))
3037 perf_cgroup_mark_enabled(event, ctx);
3038
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003039 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003040 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003041 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003042 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003043 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003044}
3045
3046static void
3047ctx_sched_in(struct perf_event_context *ctx,
3048 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003049 enum event_type_t event_type,
3050 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003051{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003052 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003053 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003054
Peter Zijlstrac994d612016-01-08 09:20:23 +01003055 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003056
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003057 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003058 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003059
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003060 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003061 if (ctx->task) {
3062 if (!is_active)
3063 cpuctx->task_ctx = ctx;
3064 else
3065 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3066 }
3067
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003068 is_active ^= ctx->is_active; /* changed bits */
3069
3070 if (is_active & EVENT_TIME) {
3071 /* start ctx time */
3072 now = perf_clock();
3073 ctx->timestamp = now;
3074 perf_cgroup_set_timestamp(task, ctx);
3075 }
3076
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003077 /*
3078 * First go through the list and put on any pinned groups
3079 * in order to give them the best chance of going on.
3080 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003081 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003082 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003083
3084 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003085 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003086 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003087}
3088
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003089static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003090 enum event_type_t event_type,
3091 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003092{
3093 struct perf_event_context *ctx = &cpuctx->ctx;
3094
Stephane Eraniane5d13672011-02-14 11:20:01 +02003095 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003096}
3097
Stephane Eraniane5d13672011-02-14 11:20:01 +02003098static void perf_event_context_sched_in(struct perf_event_context *ctx,
3099 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003100{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003101 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003103 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003104 if (cpuctx->task_ctx == ctx)
3105 return;
3106
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003107 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003108 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003109 /*
3110 * We want to keep the following priority order:
3111 * cpu pinned (that don't need to move), task pinned,
3112 * cpu flexible, task flexible.
3113 */
3114 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003115 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003116 perf_pmu_enable(ctx->pmu);
3117 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003118}
3119
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003120/*
3121 * Called from scheduler to add the events of the current task
3122 * with interrupts disabled.
3123 *
3124 * We restore the event value and then enable it.
3125 *
3126 * This does not protect us against NMI, but enable()
3127 * sets the enabled bit in the control field of event _before_
3128 * accessing the event control register. If a NMI hits, then it will
3129 * keep the event running.
3130 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003131void __perf_event_task_sched_in(struct task_struct *prev,
3132 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003133{
3134 struct perf_event_context *ctx;
3135 int ctxn;
3136
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003137 /*
3138 * If cgroup events exist on this CPU, then we need to check if we have
3139 * to switch in PMU state; cgroup event are system-wide mode only.
3140 *
3141 * Since cgroup events are CPU events, we must schedule these in before
3142 * we schedule in the task events.
3143 */
3144 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3145 perf_cgroup_sched_in(prev, task);
3146
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003147 for_each_task_context_nr(ctxn) {
3148 ctx = task->perf_event_ctxp[ctxn];
3149 if (likely(!ctx))
3150 continue;
3151
Stephane Eraniane5d13672011-02-14 11:20:01 +02003152 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003153 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003154
Adrian Hunter45ac1402015-07-21 12:44:02 +03003155 if (atomic_read(&nr_switch_events))
3156 perf_event_switch(task, prev, true);
3157
Yan, Zhengba532502014-11-04 21:55:58 -05003158 if (__this_cpu_read(perf_sched_cb_usages))
3159 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003160}
3161
Peter Zijlstraabd50712010-01-26 18:50:16 +01003162static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3163{
3164 u64 frequency = event->attr.sample_freq;
3165 u64 sec = NSEC_PER_SEC;
3166 u64 divisor, dividend;
3167
3168 int count_fls, nsec_fls, frequency_fls, sec_fls;
3169
3170 count_fls = fls64(count);
3171 nsec_fls = fls64(nsec);
3172 frequency_fls = fls64(frequency);
3173 sec_fls = 30;
3174
3175 /*
3176 * We got @count in @nsec, with a target of sample_freq HZ
3177 * the target period becomes:
3178 *
3179 * @count * 10^9
3180 * period = -------------------
3181 * @nsec * sample_freq
3182 *
3183 */
3184
3185 /*
3186 * Reduce accuracy by one bit such that @a and @b converge
3187 * to a similar magnitude.
3188 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003189#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003190do { \
3191 if (a##_fls > b##_fls) { \
3192 a >>= 1; \
3193 a##_fls--; \
3194 } else { \
3195 b >>= 1; \
3196 b##_fls--; \
3197 } \
3198} while (0)
3199
3200 /*
3201 * Reduce accuracy until either term fits in a u64, then proceed with
3202 * the other, so that finally we can do a u64/u64 division.
3203 */
3204 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3205 REDUCE_FLS(nsec, frequency);
3206 REDUCE_FLS(sec, count);
3207 }
3208
3209 if (count_fls + sec_fls > 64) {
3210 divisor = nsec * frequency;
3211
3212 while (count_fls + sec_fls > 64) {
3213 REDUCE_FLS(count, sec);
3214 divisor >>= 1;
3215 }
3216
3217 dividend = count * sec;
3218 } else {
3219 dividend = count * sec;
3220
3221 while (nsec_fls + frequency_fls > 64) {
3222 REDUCE_FLS(nsec, frequency);
3223 dividend >>= 1;
3224 }
3225
3226 divisor = nsec * frequency;
3227 }
3228
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003229 if (!divisor)
3230 return dividend;
3231
Peter Zijlstraabd50712010-01-26 18:50:16 +01003232 return div64_u64(dividend, divisor);
3233}
3234
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003235static DEFINE_PER_CPU(int, perf_throttled_count);
3236static DEFINE_PER_CPU(u64, perf_throttled_seq);
3237
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003238static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003239{
3240 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003241 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003242 s64 delta;
3243
Peter Zijlstraabd50712010-01-26 18:50:16 +01003244 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003245
3246 delta = (s64)(period - hwc->sample_period);
3247 delta = (delta + 7) / 8; /* low pass filter */
3248
3249 sample_period = hwc->sample_period + delta;
3250
3251 if (!sample_period)
3252 sample_period = 1;
3253
3254 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003255
Peter Zijlstrae7850592010-05-21 14:43:08 +02003256 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003257 if (disable)
3258 event->pmu->stop(event, PERF_EF_UPDATE);
3259
Peter Zijlstrae7850592010-05-21 14:43:08 +02003260 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003261
3262 if (disable)
3263 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003264 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003265}
3266
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003267/*
3268 * combine freq adjustment with unthrottling to avoid two passes over the
3269 * events. At the same time, make sure, having freq events does not change
3270 * the rate of unthrottling as that would introduce bias.
3271 */
3272static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3273 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003274{
3275 struct perf_event *event;
3276 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003277 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003278 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003279
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003280 /*
3281 * only need to iterate over all events iff:
3282 * - context have events in frequency mode (needs freq adjust)
3283 * - there are events to unthrottle on this cpu
3284 */
3285 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003286 return;
3287
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003288 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003289 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003290
Paul Mackerras03541f82009-10-14 16:58:03 +11003291 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003292 if (event->state != PERF_EVENT_STATE_ACTIVE)
3293 continue;
3294
Stephane Eranian5632ab12011-01-03 18:20:01 +02003295 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003296 continue;
3297
Alexander Shishkin44377272013-12-16 14:17:36 +02003298 perf_pmu_disable(event->pmu);
3299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003300 hwc = &event->hw;
3301
Jiri Olsaae23bff2013-08-24 16:45:54 +02003302 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003303 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003304 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003305 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306 }
3307
3308 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003309 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003311 /*
3312 * stop the event and update event->count
3313 */
3314 event->pmu->stop(event, PERF_EF_UPDATE);
3315
Peter Zijlstrae7850592010-05-21 14:43:08 +02003316 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003317 delta = now - hwc->freq_count_stamp;
3318 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003319
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003320 /*
3321 * restart the event
3322 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003323 * we have stopped the event so tell that
3324 * to perf_adjust_period() to avoid stopping it
3325 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003326 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003327 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003328 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003329
3330 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003331 next:
3332 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003333 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003334
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003335 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003336 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337}
3338
3339/*
3340 * Round-robin a context's events:
3341 */
3342static void rotate_ctx(struct perf_event_context *ctx)
3343{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003344 /*
3345 * Rotate the first entry last of non-pinned groups. Rotation might be
3346 * disabled by the inheritance code.
3347 */
3348 if (!ctx->rotate_disable)
3349 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003350}
3351
Stephane Eranian9e630202013-04-03 14:21:33 +02003352static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003353{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003354 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003355 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003356
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003357 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003358 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3359 rotate = 1;
3360 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003362 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003363 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003364 if (ctx->nr_events != ctx->nr_active)
3365 rotate = 1;
3366 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003367
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003368 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003369 goto done;
3370
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003371 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003372 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003373
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003374 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3375 if (ctx)
3376 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003377
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003378 rotate_ctx(&cpuctx->ctx);
3379 if (ctx)
3380 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003381
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003382 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003383
3384 perf_pmu_enable(cpuctx->ctx.pmu);
3385 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003386done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003387
3388 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003389}
3390
3391void perf_event_task_tick(void)
3392{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003393 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3394 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003395 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003396
3397 WARN_ON(!irqs_disabled());
3398
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003399 __this_cpu_inc(perf_throttled_seq);
3400 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003401 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003402
Mark Rutland2fde4f92015-01-07 15:01:54 +00003403 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003404 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405}
3406
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003407static int event_enable_on_exec(struct perf_event *event,
3408 struct perf_event_context *ctx)
3409{
3410 if (!event->attr.enable_on_exec)
3411 return 0;
3412
3413 event->attr.enable_on_exec = 0;
3414 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3415 return 0;
3416
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003417 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003418
3419 return 1;
3420}
3421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003422/*
3423 * Enable all of a task's events that have been marked enable-on-exec.
3424 * This expects task == current.
3425 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003426static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003427{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003428 struct perf_event_context *ctx, *clone_ctx = NULL;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003429 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003430 struct perf_event *event;
3431 unsigned long flags;
3432 int enabled = 0;
3433
3434 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003435 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003436 if (!ctx || !ctx->nr_events)
3437 goto out;
3438
Peter Zijlstra3e349502016-01-08 10:01:18 +01003439 cpuctx = __get_cpu_context(ctx);
3440 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003441 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003442 list_for_each_entry(event, &ctx->event_list, event_entry)
3443 enabled |= event_enable_on_exec(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003444
3445 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003446 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003447 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003448 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003449 clone_ctx = unclone_ctx(ctx);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003450 ctx_resched(cpuctx, ctx);
3451 }
3452 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003453
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003454out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003456
3457 if (clone_ctx)
3458 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003459}
3460
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003461struct perf_read_data {
3462 struct perf_event *event;
3463 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003464 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003465};
3466
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003467static int find_cpu_to_read(struct perf_event *event, int local_cpu)
3468{
3469 int event_cpu = event->oncpu;
3470 u16 local_pkg, event_pkg;
3471
3472 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
3473 event_pkg = topology_physical_package_id(event_cpu);
3474 local_pkg = topology_physical_package_id(local_cpu);
3475
3476 if (event_pkg == local_pkg)
3477 return local_cpu;
3478 }
3479
3480 return event_cpu;
3481}
3482
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003483/*
3484 * Cross CPU call to read the hardware event
3485 */
3486static void __perf_event_read(void *info)
3487{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003488 struct perf_read_data *data = info;
3489 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003490 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003491 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003492 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493
3494 /*
3495 * If this is a task context, we need to check whether it is
3496 * the current task context of this cpu. If not it has been
3497 * scheduled out before the smp call arrived. In that case
3498 * event->count would have been updated to a recent sample
3499 * when the event was scheduled out.
3500 */
3501 if (ctx->task && cpuctx->task_ctx != ctx)
3502 return;
3503
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003504 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003505 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003506 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003507 update_cgrp_time_from_event(event);
3508 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003509
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003510 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003511 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003512 goto unlock;
3513
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003514 if (!data->group) {
3515 pmu->read(event);
3516 data->ret = 0;
3517 goto unlock;
3518 }
3519
3520 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3521
3522 pmu->read(event);
3523
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003524 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3525 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003526 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3527 /*
3528 * Use sibling's PMU rather than @event's since
3529 * sibling could be on different (eg: software) PMU.
3530 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003531 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003532 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003533 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003534
3535 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003536
3537unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003538 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003539}
3540
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003541static inline u64 perf_event_count(struct perf_event *event)
3542{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003543 if (event->pmu->count)
3544 return event->pmu->count(event);
3545
3546 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003547}
3548
Kaixu Xiaffe86902015-08-06 07:02:32 +00003549/*
3550 * NMI-safe method to read a local event, that is an event that
3551 * is:
3552 * - either for the current task, or for this CPU
3553 * - does not have inherit set, for inherited task events
3554 * will not be local and we cannot read them atomically
3555 * - must not have a pmu::count method
3556 */
3557u64 perf_event_read_local(struct perf_event *event)
3558{
3559 unsigned long flags;
3560 u64 val;
3561
3562 /*
3563 * Disabling interrupts avoids all counter scheduling (context
3564 * switches, timer based rotation and IPIs).
3565 */
3566 local_irq_save(flags);
3567
3568 /* If this is a per-task event, it must be for current */
3569 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3570 event->hw.target != current);
3571
3572 /* If this is a per-CPU event, it must be for this CPU */
3573 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3574 event->cpu != smp_processor_id());
3575
3576 /*
3577 * It must not be an event with inherit set, we cannot read
3578 * all child counters from atomic context.
3579 */
3580 WARN_ON_ONCE(event->attr.inherit);
3581
3582 /*
3583 * It must not have a pmu::count method, those are not
3584 * NMI safe.
3585 */
3586 WARN_ON_ONCE(event->pmu->count);
3587
3588 /*
3589 * If the event is currently on this CPU, its either a per-task event,
3590 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3591 * oncpu == -1).
3592 */
3593 if (event->oncpu == smp_processor_id())
3594 event->pmu->read(event);
3595
3596 val = local64_read(&event->count);
3597 local_irq_restore(flags);
3598
3599 return val;
3600}
3601
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003602static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003603{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003604 int ret = 0, cpu_to_read, local_cpu;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003606 /*
3607 * If event is enabled and currently active on a CPU, update the
3608 * value in the event structure:
3609 */
3610 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003611 struct perf_read_data data = {
3612 .event = event,
3613 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003614 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003615 };
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003616
3617 local_cpu = get_cpu();
3618 cpu_to_read = find_cpu_to_read(event, local_cpu);
3619 put_cpu();
3620
Peter Zijlstra58763142016-08-30 10:15:03 +02003621 /*
3622 * Purposely ignore the smp_call_function_single() return
3623 * value.
3624 *
3625 * If event->oncpu isn't a valid CPU it means the event got
3626 * scheduled out and that will have updated the event count.
3627 *
3628 * Therefore, either way, we'll have an up-to-date event count
3629 * after this.
3630 */
Ingo Molnar2cc53842016-09-05 12:09:59 +02003631 (void)smp_call_function_single(cpu_to_read, __perf_event_read, &data, 1);
Peter Zijlstra58763142016-08-30 10:15:03 +02003632 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003633 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003634 struct perf_event_context *ctx = event->ctx;
3635 unsigned long flags;
3636
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003637 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003638 /*
3639 * may read while context is not active
3640 * (e.g., thread is blocked), in that case
3641 * we cannot update context time
3642 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003643 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003644 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003645 update_cgrp_time_from_event(event);
3646 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003647 if (group)
3648 update_group_times(event);
3649 else
3650 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003651 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003652 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003653
3654 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003655}
3656
3657/*
3658 * Initialize the perf_event context in a task_struct:
3659 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003660static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003661{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003662 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003663 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003664 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003665 INIT_LIST_HEAD(&ctx->pinned_groups);
3666 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003667 INIT_LIST_HEAD(&ctx->event_list);
3668 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669}
3670
Peter Zijlstraeb184472010-09-07 15:55:13 +02003671static struct perf_event_context *
3672alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673{
3674 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003675
3676 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3677 if (!ctx)
3678 return NULL;
3679
3680 __perf_event_init_context(ctx);
3681 if (task) {
3682 ctx->task = task;
3683 get_task_struct(task);
3684 }
3685 ctx->pmu = pmu;
3686
3687 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003688}
3689
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003690static struct task_struct *
3691find_lively_task_by_vpid(pid_t vpid)
3692{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003693 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003694
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003695 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003696 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003697 task = current;
3698 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003699 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003700 if (task)
3701 get_task_struct(task);
3702 rcu_read_unlock();
3703
3704 if (!task)
3705 return ERR_PTR(-ESRCH);
3706
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003707 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003708}
3709
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003710/*
3711 * Returns a matching context with refcount and pincount.
3712 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003713static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003714find_get_context(struct pmu *pmu, struct task_struct *task,
3715 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003716{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003717 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003718 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003719 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003720 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003721 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003722 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003723
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003724 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003725 /* Must be root to operate on a CPU event: */
3726 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3727 return ERR_PTR(-EACCES);
3728
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003729 /*
3730 * We could be clever and allow to attach a event to an
3731 * offline CPU and activate it when the CPU comes up, but
3732 * that's for later.
3733 */
3734 if (!cpu_online(cpu))
3735 return ERR_PTR(-ENODEV);
3736
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003737 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003738 ctx = &cpuctx->ctx;
3739 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003740 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003741
3742 return ctx;
3743 }
3744
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003745 err = -EINVAL;
3746 ctxn = pmu->task_ctx_nr;
3747 if (ctxn < 0)
3748 goto errout;
3749
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003750 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3751 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3752 if (!task_ctx_data) {
3753 err = -ENOMEM;
3754 goto errout;
3755 }
3756 }
3757
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003758retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003759 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003760 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003761 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003762 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003763
3764 if (task_ctx_data && !ctx->task_ctx_data) {
3765 ctx->task_ctx_data = task_ctx_data;
3766 task_ctx_data = NULL;
3767 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003768 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003769
3770 if (clone_ctx)
3771 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003772 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003773 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774 err = -ENOMEM;
3775 if (!ctx)
3776 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003777
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003778 if (task_ctx_data) {
3779 ctx->task_ctx_data = task_ctx_data;
3780 task_ctx_data = NULL;
3781 }
3782
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003783 err = 0;
3784 mutex_lock(&task->perf_event_mutex);
3785 /*
3786 * If it has already passed perf_event_exit_task().
3787 * we must see PF_EXITING, it takes this mutex too.
3788 */
3789 if (task->flags & PF_EXITING)
3790 err = -ESRCH;
3791 else if (task->perf_event_ctxp[ctxn])
3792 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003793 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003794 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003795 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003796 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003797 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003798 mutex_unlock(&task->perf_event_mutex);
3799
3800 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003801 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003802
3803 if (err == -EAGAIN)
3804 goto retry;
3805 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003807 }
3808
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003809 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003810 return ctx;
3811
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003812errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003813 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003814 return ERR_PTR(err);
3815}
3816
Li Zefan6fb29152009-10-15 11:21:42 +08003817static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003818static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003819
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003820static void free_event_rcu(struct rcu_head *head)
3821{
3822 struct perf_event *event;
3823
3824 event = container_of(head, struct perf_event, rcu_head);
3825 if (event->ns)
3826 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003827 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003828 kfree(event);
3829}
3830
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003831static void ring_buffer_attach(struct perf_event *event,
3832 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003833
Kan Liangf2fb6be2016-03-23 11:24:37 -07003834static void detach_sb_event(struct perf_event *event)
3835{
3836 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3837
3838 raw_spin_lock(&pel->lock);
3839 list_del_rcu(&event->sb_list);
3840 raw_spin_unlock(&pel->lock);
3841}
3842
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003843static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003844{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003845 struct perf_event_attr *attr = &event->attr;
3846
Kan Liangf2fb6be2016-03-23 11:24:37 -07003847 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003848 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003849
3850 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003851 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003852
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003853 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3854 attr->comm || attr->comm_exec ||
3855 attr->task ||
3856 attr->context_switch)
3857 return true;
3858 return false;
3859}
3860
3861static void unaccount_pmu_sb_event(struct perf_event *event)
3862{
3863 if (is_sb_event(event))
3864 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003865}
3866
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003867static void unaccount_event_cpu(struct perf_event *event, int cpu)
3868{
3869 if (event->parent)
3870 return;
3871
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003872 if (is_cgroup_event(event))
3873 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3874}
3875
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003876#ifdef CONFIG_NO_HZ_FULL
3877static DEFINE_SPINLOCK(nr_freq_lock);
3878#endif
3879
3880static void unaccount_freq_event_nohz(void)
3881{
3882#ifdef CONFIG_NO_HZ_FULL
3883 spin_lock(&nr_freq_lock);
3884 if (atomic_dec_and_test(&nr_freq_events))
3885 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3886 spin_unlock(&nr_freq_lock);
3887#endif
3888}
3889
3890static void unaccount_freq_event(void)
3891{
3892 if (tick_nohz_full_enabled())
3893 unaccount_freq_event_nohz();
3894 else
3895 atomic_dec(&nr_freq_events);
3896}
3897
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003898static void unaccount_event(struct perf_event *event)
3899{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003900 bool dec = false;
3901
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003902 if (event->parent)
3903 return;
3904
3905 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003906 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003907 if (event->attr.mmap || event->attr.mmap_data)
3908 atomic_dec(&nr_mmap_events);
3909 if (event->attr.comm)
3910 atomic_dec(&nr_comm_events);
3911 if (event->attr.task)
3912 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003913 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003914 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003915 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003916 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003917 atomic_dec(&nr_switch_events);
3918 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003919 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003920 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003921 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003922 dec = true;
3923
Peter Zijlstra9107c892016-02-24 18:45:45 +01003924 if (dec) {
3925 if (!atomic_add_unless(&perf_sched_count, -1, 1))
3926 schedule_delayed_work(&perf_sched_work, HZ);
3927 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003928
3929 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003930
3931 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003932}
3933
Peter Zijlstra9107c892016-02-24 18:45:45 +01003934static void perf_sched_delayed(struct work_struct *work)
3935{
3936 mutex_lock(&perf_sched_mutex);
3937 if (atomic_dec_and_test(&perf_sched_count))
3938 static_branch_disable(&perf_sched_events);
3939 mutex_unlock(&perf_sched_mutex);
3940}
3941
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003942/*
3943 * The following implement mutual exclusion of events on "exclusive" pmus
3944 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3945 * at a time, so we disallow creating events that might conflict, namely:
3946 *
3947 * 1) cpu-wide events in the presence of per-task events,
3948 * 2) per-task events in the presence of cpu-wide events,
3949 * 3) two matching events on the same context.
3950 *
3951 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003952 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003953 */
3954static int exclusive_event_init(struct perf_event *event)
3955{
3956 struct pmu *pmu = event->pmu;
3957
3958 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3959 return 0;
3960
3961 /*
3962 * Prevent co-existence of per-task and cpu-wide events on the
3963 * same exclusive pmu.
3964 *
3965 * Negative pmu::exclusive_cnt means there are cpu-wide
3966 * events on this "exclusive" pmu, positive means there are
3967 * per-task events.
3968 *
3969 * Since this is called in perf_event_alloc() path, event::ctx
3970 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3971 * to mean "per-task event", because unlike other attach states it
3972 * never gets cleared.
3973 */
3974 if (event->attach_state & PERF_ATTACH_TASK) {
3975 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3976 return -EBUSY;
3977 } else {
3978 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3979 return -EBUSY;
3980 }
3981
3982 return 0;
3983}
3984
3985static void exclusive_event_destroy(struct perf_event *event)
3986{
3987 struct pmu *pmu = event->pmu;
3988
3989 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3990 return;
3991
3992 /* see comment in exclusive_event_init() */
3993 if (event->attach_state & PERF_ATTACH_TASK)
3994 atomic_dec(&pmu->exclusive_cnt);
3995 else
3996 atomic_inc(&pmu->exclusive_cnt);
3997}
3998
3999static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4000{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004001 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004002 (e1->cpu == e2->cpu ||
4003 e1->cpu == -1 ||
4004 e2->cpu == -1))
4005 return true;
4006 return false;
4007}
4008
4009/* Called under the same ctx::mutex as perf_install_in_context() */
4010static bool exclusive_event_installable(struct perf_event *event,
4011 struct perf_event_context *ctx)
4012{
4013 struct perf_event *iter_event;
4014 struct pmu *pmu = event->pmu;
4015
4016 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4017 return true;
4018
4019 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4020 if (exclusive_event_match(iter_event, event))
4021 return false;
4022 }
4023
4024 return true;
4025}
4026
Alexander Shishkin375637b2016-04-27 18:44:46 +03004027static void perf_addr_filters_splice(struct perf_event *event,
4028 struct list_head *head);
4029
Peter Zijlstra683ede42014-05-05 12:11:24 +02004030static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004031{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004032 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004033
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004034 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004035
Frederic Weisbecker76369132011-05-19 19:55:04 +02004036 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004037 /*
4038 * Can happen when we close an event with re-directed output.
4039 *
4040 * Since we have a 0 refcount, perf_mmap_close() will skip
4041 * over us; possibly making our ring_buffer_put() the last.
4042 */
4043 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004044 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004045 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004046 }
4047
Stephane Eraniane5d13672011-02-14 11:20:01 +02004048 if (is_cgroup_event(event))
4049 perf_detach_cgroup(event);
4050
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004051 if (!event->parent) {
4052 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4053 put_callchain_buffers();
4054 }
4055
4056 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004057 perf_addr_filters_splice(event, NULL);
4058 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004059
4060 if (event->destroy)
4061 event->destroy(event);
4062
4063 if (event->ctx)
4064 put_ctx(event->ctx);
4065
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004066 exclusive_event_destroy(event);
4067 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004068
4069 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004070}
4071
Peter Zijlstra683ede42014-05-05 12:11:24 +02004072/*
4073 * Used to free events which have a known refcount of 1, such as in error paths
4074 * where the event isn't exposed yet and inherited events.
4075 */
4076static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004077{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004078 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4079 "unexpected event refcount: %ld; ptr=%p\n",
4080 atomic_long_read(&event->refcount), event)) {
4081 /* leak to avoid use-after-free */
4082 return;
4083 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004084
Peter Zijlstra683ede42014-05-05 12:11:24 +02004085 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004086}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004087
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004088/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004089 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004090 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004091static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004092{
Peter Zijlstra88821352010-11-09 19:01:43 +01004093 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004094
Peter Zijlstra88821352010-11-09 19:01:43 +01004095 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004096 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004097 * Matches the smp_store_release() in perf_event_exit_task(). If we
4098 * observe !owner it means the list deletion is complete and we can
4099 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004100 * owner->perf_event_mutex.
4101 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004102 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004103 if (owner) {
4104 /*
4105 * Since delayed_put_task_struct() also drops the last
4106 * task reference we can safely take a new reference
4107 * while holding the rcu_read_lock().
4108 */
4109 get_task_struct(owner);
4110 }
4111 rcu_read_unlock();
4112
4113 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004114 /*
4115 * If we're here through perf_event_exit_task() we're already
4116 * holding ctx->mutex which would be an inversion wrt. the
4117 * normal lock order.
4118 *
4119 * However we can safely take this lock because its the child
4120 * ctx->mutex.
4121 */
4122 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4123
Peter Zijlstra88821352010-11-09 19:01:43 +01004124 /*
4125 * We have to re-check the event->owner field, if it is cleared
4126 * we raced with perf_event_exit_task(), acquiring the mutex
4127 * ensured they're done, and we can proceed with freeing the
4128 * event.
4129 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004130 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004131 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004132 smp_store_release(&event->owner, NULL);
4133 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004134 mutex_unlock(&owner->perf_event_mutex);
4135 put_task_struct(owner);
4136 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004137}
4138
Jiri Olsaf8697762014-08-01 14:33:01 +02004139static void put_event(struct perf_event *event)
4140{
Jiri Olsaf8697762014-08-01 14:33:01 +02004141 if (!atomic_long_dec_and_test(&event->refcount))
4142 return;
4143
Peter Zijlstra683ede42014-05-05 12:11:24 +02004144 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004145}
4146
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004147/*
4148 * Kill an event dead; while event:refcount will preserve the event
4149 * object, it will not preserve its functionality. Once the last 'user'
4150 * gives up the object, we'll destroy the thing.
4151 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004152int perf_event_release_kernel(struct perf_event *event)
4153{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004154 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004155 struct perf_event *child, *tmp;
4156
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004157 /*
4158 * If we got here through err_file: fput(event_file); we will not have
4159 * attached to a context yet.
4160 */
4161 if (!ctx) {
4162 WARN_ON_ONCE(event->attach_state &
4163 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4164 goto no_ctx;
4165 }
4166
Peter Zijlstra88821352010-11-09 19:01:43 +01004167 if (!is_kernel_event(event))
4168 perf_remove_from_owner(event);
4169
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004170 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004171 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004172 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004173
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004174 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004175 /*
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004176 * Mark this even as STATE_DEAD, there is no external reference to it
4177 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004178 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004179 * Anybody acquiring event->child_mutex after the below loop _must_
4180 * also see this, most importantly inherit_event() which will avoid
4181 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004182 *
4183 * Thus this guarantees that we will in fact observe and kill _ALL_
4184 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004185 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004186 event->state = PERF_EVENT_STATE_DEAD;
4187 raw_spin_unlock_irq(&ctx->lock);
4188
4189 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004190
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004191again:
4192 mutex_lock(&event->child_mutex);
4193 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004194
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004195 /*
4196 * Cannot change, child events are not migrated, see the
4197 * comment with perf_event_ctx_lock_nested().
4198 */
4199 ctx = lockless_dereference(child->ctx);
4200 /*
4201 * Since child_mutex nests inside ctx::mutex, we must jump
4202 * through hoops. We start by grabbing a reference on the ctx.
4203 *
4204 * Since the event cannot get freed while we hold the
4205 * child_mutex, the context must also exist and have a !0
4206 * reference count.
4207 */
4208 get_ctx(ctx);
4209
4210 /*
4211 * Now that we have a ctx ref, we can drop child_mutex, and
4212 * acquire ctx::mutex without fear of it going away. Then we
4213 * can re-acquire child_mutex.
4214 */
4215 mutex_unlock(&event->child_mutex);
4216 mutex_lock(&ctx->mutex);
4217 mutex_lock(&event->child_mutex);
4218
4219 /*
4220 * Now that we hold ctx::mutex and child_mutex, revalidate our
4221 * state, if child is still the first entry, it didn't get freed
4222 * and we can continue doing so.
4223 */
4224 tmp = list_first_entry_or_null(&event->child_list,
4225 struct perf_event, child_list);
4226 if (tmp == child) {
4227 perf_remove_from_context(child, DETACH_GROUP);
4228 list_del(&child->child_list);
4229 free_event(child);
4230 /*
4231 * This matches the refcount bump in inherit_event();
4232 * this can't be the last reference.
4233 */
4234 put_event(event);
4235 }
4236
4237 mutex_unlock(&event->child_mutex);
4238 mutex_unlock(&ctx->mutex);
4239 put_ctx(ctx);
4240 goto again;
4241 }
4242 mutex_unlock(&event->child_mutex);
4243
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004244no_ctx:
4245 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004246 return 0;
4247}
4248EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4249
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004250/*
4251 * Called when the last reference to the file is gone.
4252 */
Al Viroa6fa9412012-08-20 14:59:25 +01004253static int perf_release(struct inode *inode, struct file *file)
4254{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004255 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004256 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004257}
4258
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004259u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004260{
4261 struct perf_event *child;
4262 u64 total = 0;
4263
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004264 *enabled = 0;
4265 *running = 0;
4266
Peter Zijlstra6f105812009-11-20 22:19:56 +01004267 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004268
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004269 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004270 total += perf_event_count(event);
4271
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004272 *enabled += event->total_time_enabled +
4273 atomic64_read(&event->child_total_time_enabled);
4274 *running += event->total_time_running +
4275 atomic64_read(&event->child_total_time_running);
4276
4277 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004278 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004279 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004280 *enabled += child->total_time_enabled;
4281 *running += child->total_time_running;
4282 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004283 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004284
4285 return total;
4286}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004287EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004288
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004289static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004290 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004291{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004292 struct perf_event *sub;
4293 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004294 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004295
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004296 ret = perf_event_read(leader, true);
4297 if (ret)
4298 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004299
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004300 /*
4301 * Since we co-schedule groups, {enabled,running} times of siblings
4302 * will be identical to those of the leader, so we only publish one
4303 * set.
4304 */
4305 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4306 values[n++] += leader->total_time_enabled +
4307 atomic64_read(&leader->child_total_time_enabled);
4308 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004309
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004310 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4311 values[n++] += leader->total_time_running +
4312 atomic64_read(&leader->child_total_time_running);
4313 }
4314
4315 /*
4316 * Write {count,id} tuples for every sibling.
4317 */
4318 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004319 if (read_format & PERF_FORMAT_ID)
4320 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004321
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004322 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004323 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004324 if (read_format & PERF_FORMAT_ID)
4325 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004326 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004327
4328 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004329}
4330
4331static int perf_read_group(struct perf_event *event,
4332 u64 read_format, char __user *buf)
4333{
4334 struct perf_event *leader = event->group_leader, *child;
4335 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004336 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004337 u64 *values;
4338
4339 lockdep_assert_held(&ctx->mutex);
4340
4341 values = kzalloc(event->read_size, GFP_KERNEL);
4342 if (!values)
4343 return -ENOMEM;
4344
4345 values[0] = 1 + leader->nr_siblings;
4346
4347 /*
4348 * By locking the child_mutex of the leader we effectively
4349 * lock the child list of all siblings.. XXX explain how.
4350 */
4351 mutex_lock(&leader->child_mutex);
4352
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004353 ret = __perf_read_group_add(leader, read_format, values);
4354 if (ret)
4355 goto unlock;
4356
4357 list_for_each_entry(child, &leader->child_list, child_list) {
4358 ret = __perf_read_group_add(child, read_format, values);
4359 if (ret)
4360 goto unlock;
4361 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004362
4363 mutex_unlock(&leader->child_mutex);
4364
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004365 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004366 if (copy_to_user(buf, values, event->read_size))
4367 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004368 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004369
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004370unlock:
4371 mutex_unlock(&leader->child_mutex);
4372out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004373 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004374 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004375}
4376
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004377static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004378 u64 read_format, char __user *buf)
4379{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004380 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004381 u64 values[4];
4382 int n = 0;
4383
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004384 values[n++] = perf_event_read_value(event, &enabled, &running);
4385 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4386 values[n++] = enabled;
4387 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4388 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004389 if (read_format & PERF_FORMAT_ID)
4390 values[n++] = primary_event_id(event);
4391
4392 if (copy_to_user(buf, values, n * sizeof(u64)))
4393 return -EFAULT;
4394
4395 return n * sizeof(u64);
4396}
4397
Jiri Olsadc633982014-09-12 13:18:26 +02004398static bool is_event_hup(struct perf_event *event)
4399{
4400 bool no_children;
4401
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004402 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004403 return false;
4404
4405 mutex_lock(&event->child_mutex);
4406 no_children = list_empty(&event->child_list);
4407 mutex_unlock(&event->child_mutex);
4408 return no_children;
4409}
4410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004411/*
4412 * Read the performance event - simple non blocking version for now
4413 */
4414static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004415__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416{
4417 u64 read_format = event->attr.read_format;
4418 int ret;
4419
4420 /*
4421 * Return end-of-file for a read on a event that is in
4422 * error state (i.e. because it was pinned but it couldn't be
4423 * scheduled on to the CPU at some point).
4424 */
4425 if (event->state == PERF_EVENT_STATE_ERROR)
4426 return 0;
4427
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004428 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004429 return -ENOSPC;
4430
4431 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004432 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004433 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004434 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004435 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004436
4437 return ret;
4438}
4439
4440static ssize_t
4441perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4442{
4443 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004444 struct perf_event_context *ctx;
4445 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004446
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004447 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004448 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004449 perf_event_ctx_unlock(event, ctx);
4450
4451 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004452}
4453
4454static unsigned int perf_poll(struct file *file, poll_table *wait)
4455{
4456 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004457 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004458 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004459
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004460 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004461
Jiri Olsadc633982014-09-12 13:18:26 +02004462 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004463 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004464
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004465 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004466 * Pin the event->rb by taking event->mmap_mutex; otherwise
4467 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004468 */
4469 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004470 rb = event->rb;
4471 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004472 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004473 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004474 return events;
4475}
4476
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004477static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004479 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004480 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004481 perf_event_update_userpage(event);
4482}
4483
4484/*
4485 * Holding the top-level event's child_mutex means that any
4486 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004487 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004488 * task existence requirements of perf_event_enable/disable.
4489 */
4490static void perf_event_for_each_child(struct perf_event *event,
4491 void (*func)(struct perf_event *))
4492{
4493 struct perf_event *child;
4494
4495 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004496
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004497 mutex_lock(&event->child_mutex);
4498 func(event);
4499 list_for_each_entry(child, &event->child_list, child_list)
4500 func(child);
4501 mutex_unlock(&event->child_mutex);
4502}
4503
4504static void perf_event_for_each(struct perf_event *event,
4505 void (*func)(struct perf_event *))
4506{
4507 struct perf_event_context *ctx = event->ctx;
4508 struct perf_event *sibling;
4509
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004510 lockdep_assert_held(&ctx->mutex);
4511
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004512 event = event->group_leader;
4513
4514 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004515 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004516 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004517}
4518
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004519static void __perf_event_period(struct perf_event *event,
4520 struct perf_cpu_context *cpuctx,
4521 struct perf_event_context *ctx,
4522 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004523{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004524 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004525 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004526
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004527 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004528 event->attr.sample_freq = value;
4529 } else {
4530 event->attr.sample_period = value;
4531 event->hw.sample_period = value;
4532 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004533
4534 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4535 if (active) {
4536 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004537 /*
4538 * We could be throttled; unthrottle now to avoid the tick
4539 * trying to unthrottle while we already re-started the event.
4540 */
4541 if (event->hw.interrupts == MAX_INTERRUPTS) {
4542 event->hw.interrupts = 0;
4543 perf_log_throttle(event, 1);
4544 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004545 event->pmu->stop(event, PERF_EF_UPDATE);
4546 }
4547
4548 local64_set(&event->hw.period_left, 0);
4549
4550 if (active) {
4551 event->pmu->start(event, PERF_EF_RELOAD);
4552 perf_pmu_enable(ctx->pmu);
4553 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004554}
4555
4556static int perf_event_period(struct perf_event *event, u64 __user *arg)
4557{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004558 u64 value;
4559
4560 if (!is_sampling_event(event))
4561 return -EINVAL;
4562
4563 if (copy_from_user(&value, arg, sizeof(value)))
4564 return -EFAULT;
4565
4566 if (!value)
4567 return -EINVAL;
4568
4569 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4570 return -EINVAL;
4571
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004572 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004573
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004574 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004575}
4576
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004577static const struct file_operations perf_fops;
4578
Al Viro2903ff02012-08-28 12:52:22 -04004579static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004580{
Al Viro2903ff02012-08-28 12:52:22 -04004581 struct fd f = fdget(fd);
4582 if (!f.file)
4583 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004584
Al Viro2903ff02012-08-28 12:52:22 -04004585 if (f.file->f_op != &perf_fops) {
4586 fdput(f);
4587 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004588 }
Al Viro2903ff02012-08-28 12:52:22 -04004589 *p = f;
4590 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004591}
4592
4593static int perf_event_set_output(struct perf_event *event,
4594 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004595static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004596static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004597
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004598static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004599{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004600 void (*func)(struct perf_event *);
4601 u32 flags = arg;
4602
4603 switch (cmd) {
4604 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004605 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004606 break;
4607 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004608 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609 break;
4610 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004611 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004612 break;
4613
4614 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004615 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004616
4617 case PERF_EVENT_IOC_PERIOD:
4618 return perf_event_period(event, (u64 __user *)arg);
4619
Jiri Olsacf4957f2012-10-24 13:37:58 +02004620 case PERF_EVENT_IOC_ID:
4621 {
4622 u64 id = primary_event_id(event);
4623
4624 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4625 return -EFAULT;
4626 return 0;
4627 }
4628
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004629 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004630 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004631 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004632 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004633 struct perf_event *output_event;
4634 struct fd output;
4635 ret = perf_fget_light(arg, &output);
4636 if (ret)
4637 return ret;
4638 output_event = output.file->private_data;
4639 ret = perf_event_set_output(event, output_event);
4640 fdput(output);
4641 } else {
4642 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004643 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004644 return ret;
4645 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004646
Li Zefan6fb29152009-10-15 11:21:42 +08004647 case PERF_EVENT_IOC_SET_FILTER:
4648 return perf_event_set_filter(event, (void __user *)arg);
4649
Alexei Starovoitov25415172015-03-25 12:49:20 -07004650 case PERF_EVENT_IOC_SET_BPF:
4651 return perf_event_set_bpf_prog(event, arg);
4652
Wang Nan86e79722016-03-28 06:41:29 +00004653 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4654 struct ring_buffer *rb;
4655
4656 rcu_read_lock();
4657 rb = rcu_dereference(event->rb);
4658 if (!rb || !rb->nr_pages) {
4659 rcu_read_unlock();
4660 return -EINVAL;
4661 }
4662 rb_toggle_paused(rb, !!arg);
4663 rcu_read_unlock();
4664 return 0;
4665 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004666 default:
4667 return -ENOTTY;
4668 }
4669
4670 if (flags & PERF_IOC_FLAG_GROUP)
4671 perf_event_for_each(event, func);
4672 else
4673 perf_event_for_each_child(event, func);
4674
4675 return 0;
4676}
4677
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004678static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4679{
4680 struct perf_event *event = file->private_data;
4681 struct perf_event_context *ctx;
4682 long ret;
4683
4684 ctx = perf_event_ctx_lock(event);
4685 ret = _perf_ioctl(event, cmd, arg);
4686 perf_event_ctx_unlock(event, ctx);
4687
4688 return ret;
4689}
4690
Pawel Mollb3f20782014-06-13 16:03:32 +01004691#ifdef CONFIG_COMPAT
4692static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4693 unsigned long arg)
4694{
4695 switch (_IOC_NR(cmd)) {
4696 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4697 case _IOC_NR(PERF_EVENT_IOC_ID):
4698 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4699 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4700 cmd &= ~IOCSIZE_MASK;
4701 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4702 }
4703 break;
4704 }
4705 return perf_ioctl(file, cmd, arg);
4706}
4707#else
4708# define perf_compat_ioctl NULL
4709#endif
4710
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004711int perf_event_task_enable(void)
4712{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004713 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004714 struct perf_event *event;
4715
4716 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004717 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4718 ctx = perf_event_ctx_lock(event);
4719 perf_event_for_each_child(event, _perf_event_enable);
4720 perf_event_ctx_unlock(event, ctx);
4721 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004722 mutex_unlock(&current->perf_event_mutex);
4723
4724 return 0;
4725}
4726
4727int perf_event_task_disable(void)
4728{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004729 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004730 struct perf_event *event;
4731
4732 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004733 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4734 ctx = perf_event_ctx_lock(event);
4735 perf_event_for_each_child(event, _perf_event_disable);
4736 perf_event_ctx_unlock(event, ctx);
4737 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004738 mutex_unlock(&current->perf_event_mutex);
4739
4740 return 0;
4741}
4742
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004743static int perf_event_index(struct perf_event *event)
4744{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004745 if (event->hw.state & PERF_HES_STOPPED)
4746 return 0;
4747
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004748 if (event->state != PERF_EVENT_STATE_ACTIVE)
4749 return 0;
4750
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004751 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004752}
4753
Eric B Munsonc4794292011-06-23 16:34:38 -04004754static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004755 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004756 u64 *enabled,
4757 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004758{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004759 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004760
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004761 *now = perf_clock();
4762 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004763 *enabled = ctx_time - event->tstamp_enabled;
4764 *running = ctx_time - event->tstamp_running;
4765}
4766
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004767static void perf_event_init_userpage(struct perf_event *event)
4768{
4769 struct perf_event_mmap_page *userpg;
4770 struct ring_buffer *rb;
4771
4772 rcu_read_lock();
4773 rb = rcu_dereference(event->rb);
4774 if (!rb)
4775 goto unlock;
4776
4777 userpg = rb->user_page;
4778
4779 /* Allow new userspace to detect that bit 0 is deprecated */
4780 userpg->cap_bit0_is_deprecated = 1;
4781 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004782 userpg->data_offset = PAGE_SIZE;
4783 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004784
4785unlock:
4786 rcu_read_unlock();
4787}
4788
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004789void __weak arch_perf_update_userpage(
4790 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004791{
4792}
4793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004794/*
4795 * Callers need to ensure there can be no nesting of this function, otherwise
4796 * the seqlock logic goes bad. We can not serialize this because the arch
4797 * code calls this from NMI context.
4798 */
4799void perf_event_update_userpage(struct perf_event *event)
4800{
4801 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004802 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004803 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004804
4805 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004806 rb = rcu_dereference(event->rb);
4807 if (!rb)
4808 goto unlock;
4809
Eric B Munson0d641202011-06-24 12:26:26 -04004810 /*
4811 * compute total_time_enabled, total_time_running
4812 * based on snapshot values taken when the event
4813 * was last scheduled in.
4814 *
4815 * we cannot simply called update_context_time()
4816 * because of locking issue as we can be called in
4817 * NMI context
4818 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004819 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004820
Frederic Weisbecker76369132011-05-19 19:55:04 +02004821 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004822 /*
4823 * Disable preemption so as to not let the corresponding user-space
4824 * spin too long if we get preempted.
4825 */
4826 preempt_disable();
4827 ++userpg->lock;
4828 barrier();
4829 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004830 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004831 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004832 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004833
Eric B Munson0d641202011-06-24 12:26:26 -04004834 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004835 atomic64_read(&event->child_total_time_enabled);
4836
Eric B Munson0d641202011-06-24 12:26:26 -04004837 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004838 atomic64_read(&event->child_total_time_running);
4839
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004840 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004842 barrier();
4843 ++userpg->lock;
4844 preempt_enable();
4845unlock:
4846 rcu_read_unlock();
4847}
4848
Peter Zijlstra906010b2009-09-21 16:08:49 +02004849static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4850{
4851 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004852 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004853 int ret = VM_FAULT_SIGBUS;
4854
4855 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4856 if (vmf->pgoff == 0)
4857 ret = 0;
4858 return ret;
4859 }
4860
4861 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004862 rb = rcu_dereference(event->rb);
4863 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004864 goto unlock;
4865
4866 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4867 goto unlock;
4868
Frederic Weisbecker76369132011-05-19 19:55:04 +02004869 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004870 if (!vmf->page)
4871 goto unlock;
4872
4873 get_page(vmf->page);
4874 vmf->page->mapping = vma->vm_file->f_mapping;
4875 vmf->page->index = vmf->pgoff;
4876
4877 ret = 0;
4878unlock:
4879 rcu_read_unlock();
4880
4881 return ret;
4882}
4883
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004884static void ring_buffer_attach(struct perf_event *event,
4885 struct ring_buffer *rb)
4886{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004887 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004888 unsigned long flags;
4889
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004890 if (event->rb) {
4891 /*
4892 * Should be impossible, we set this when removing
4893 * event->rb_entry and wait/clear when adding event->rb_entry.
4894 */
4895 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004896
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004897 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004898 spin_lock_irqsave(&old_rb->event_lock, flags);
4899 list_del_rcu(&event->rb_entry);
4900 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004901
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004902 event->rcu_batches = get_state_synchronize_rcu();
4903 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004904 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004905
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004906 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004907 if (event->rcu_pending) {
4908 cond_synchronize_rcu(event->rcu_batches);
4909 event->rcu_pending = 0;
4910 }
4911
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004912 spin_lock_irqsave(&rb->event_lock, flags);
4913 list_add_rcu(&event->rb_entry, &rb->event_list);
4914 spin_unlock_irqrestore(&rb->event_lock, flags);
4915 }
4916
Alexander Shishkin767ae082016-09-06 16:23:49 +03004917 /*
4918 * Avoid racing with perf_mmap_close(AUX): stop the event
4919 * before swizzling the event::rb pointer; if it's getting
4920 * unmapped, its aux_mmap_count will be 0 and it won't
4921 * restart. See the comment in __perf_pmu_output_stop().
4922 *
4923 * Data will inevitably be lost when set_output is done in
4924 * mid-air, but then again, whoever does it like this is
4925 * not in for the data anyway.
4926 */
4927 if (has_aux(event))
4928 perf_event_stop(event, 0);
4929
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004930 rcu_assign_pointer(event->rb, rb);
4931
4932 if (old_rb) {
4933 ring_buffer_put(old_rb);
4934 /*
4935 * Since we detached before setting the new rb, so that we
4936 * could attach the new rb, we could have missed a wakeup.
4937 * Provide it now.
4938 */
4939 wake_up_all(&event->waitq);
4940 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004941}
4942
4943static void ring_buffer_wakeup(struct perf_event *event)
4944{
4945 struct ring_buffer *rb;
4946
4947 rcu_read_lock();
4948 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004949 if (rb) {
4950 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4951 wake_up_all(&event->waitq);
4952 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004953 rcu_read_unlock();
4954}
4955
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004956struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004957{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004958 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004959
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004960 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004961 rb = rcu_dereference(event->rb);
4962 if (rb) {
4963 if (!atomic_inc_not_zero(&rb->refcount))
4964 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004965 }
4966 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004967
Frederic Weisbecker76369132011-05-19 19:55:04 +02004968 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004969}
4970
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004971void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004972{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004973 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004974 return;
4975
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004976 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004977
Frederic Weisbecker76369132011-05-19 19:55:04 +02004978 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004979}
4980
4981static void perf_mmap_open(struct vm_area_struct *vma)
4982{
4983 struct perf_event *event = vma->vm_file->private_data;
4984
4985 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004986 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004987
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004988 if (vma->vm_pgoff)
4989 atomic_inc(&event->rb->aux_mmap_count);
4990
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004991 if (event->pmu->event_mapped)
4992 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004993}
4994
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004995static void perf_pmu_output_stop(struct perf_event *event);
4996
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004997/*
4998 * A buffer can be mmap()ed multiple times; either directly through the same
4999 * event, or through other events by use of perf_event_set_output().
5000 *
5001 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5002 * the buffer here, where we still have a VM context. This means we need
5003 * to detach all events redirecting to us.
5004 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005005static void perf_mmap_close(struct vm_area_struct *vma)
5006{
5007 struct perf_event *event = vma->vm_file->private_data;
5008
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005009 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005010 struct user_struct *mmap_user = rb->mmap_user;
5011 int mmap_locked = rb->mmap_locked;
5012 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005013
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005014 if (event->pmu->event_unmapped)
5015 event->pmu->event_unmapped(event);
5016
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005017 /*
5018 * rb->aux_mmap_count will always drop before rb->mmap_count and
5019 * event->mmap_count, so it is ok to use event->mmap_mutex to
5020 * serialize with perf_mmap here.
5021 */
5022 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5023 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005024 /*
5025 * Stop all AUX events that are writing to this buffer,
5026 * so that we can free its AUX pages and corresponding PMU
5027 * data. Note that after rb::aux_mmap_count dropped to zero,
5028 * they won't start any more (see perf_aux_output_begin()).
5029 */
5030 perf_pmu_output_stop(event);
5031
5032 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005033 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5034 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5035
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005036 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005037 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005038 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5039
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005040 mutex_unlock(&event->mmap_mutex);
5041 }
5042
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005043 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005044
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005045 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005046 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005047
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005048 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005049 mutex_unlock(&event->mmap_mutex);
5050
5051 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005052 if (atomic_read(&rb->mmap_count))
5053 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005054
5055 /*
5056 * No other mmap()s, detach from all other events that might redirect
5057 * into the now unreachable buffer. Somewhat complicated by the
5058 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5059 */
5060again:
5061 rcu_read_lock();
5062 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5063 if (!atomic_long_inc_not_zero(&event->refcount)) {
5064 /*
5065 * This event is en-route to free_event() which will
5066 * detach it and remove it from the list.
5067 */
5068 continue;
5069 }
5070 rcu_read_unlock();
5071
5072 mutex_lock(&event->mmap_mutex);
5073 /*
5074 * Check we didn't race with perf_event_set_output() which can
5075 * swizzle the rb from under us while we were waiting to
5076 * acquire mmap_mutex.
5077 *
5078 * If we find a different rb; ignore this event, a next
5079 * iteration will no longer find it on the list. We have to
5080 * still restart the iteration to make sure we're not now
5081 * iterating the wrong list.
5082 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005083 if (event->rb == rb)
5084 ring_buffer_attach(event, NULL);
5085
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005086 mutex_unlock(&event->mmap_mutex);
5087 put_event(event);
5088
5089 /*
5090 * Restart the iteration; either we're on the wrong list or
5091 * destroyed its integrity by doing a deletion.
5092 */
5093 goto again;
5094 }
5095 rcu_read_unlock();
5096
5097 /*
5098 * It could be there's still a few 0-ref events on the list; they'll
5099 * get cleaned up by free_event() -- they'll also still have their
5100 * ref on the rb and will free it whenever they are done with it.
5101 *
5102 * Aside from that, this buffer is 'fully' detached and unmapped,
5103 * undo the VM accounting.
5104 */
5105
5106 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5107 vma->vm_mm->pinned_vm -= mmap_locked;
5108 free_uid(mmap_user);
5109
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005110out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005111 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005112}
5113
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005114static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005115 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005116 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005117 .fault = perf_mmap_fault,
5118 .page_mkwrite = perf_mmap_fault,
5119};
5120
5121static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5122{
5123 struct perf_event *event = file->private_data;
5124 unsigned long user_locked, user_lock_limit;
5125 struct user_struct *user = current_user();
5126 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005127 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005128 unsigned long vma_size;
5129 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005130 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005131 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005132
Peter Zijlstrac7920612010-05-18 10:33:24 +02005133 /*
5134 * Don't allow mmap() of inherited per-task counters. This would
5135 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005136 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005137 */
5138 if (event->cpu == -1 && event->attr.inherit)
5139 return -EINVAL;
5140
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005141 if (!(vma->vm_flags & VM_SHARED))
5142 return -EINVAL;
5143
5144 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005145
5146 if (vma->vm_pgoff == 0) {
5147 nr_pages = (vma_size / PAGE_SIZE) - 1;
5148 } else {
5149 /*
5150 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5151 * mapped, all subsequent mappings should have the same size
5152 * and offset. Must be above the normal perf buffer.
5153 */
5154 u64 aux_offset, aux_size;
5155
5156 if (!event->rb)
5157 return -EINVAL;
5158
5159 nr_pages = vma_size / PAGE_SIZE;
5160
5161 mutex_lock(&event->mmap_mutex);
5162 ret = -EINVAL;
5163
5164 rb = event->rb;
5165 if (!rb)
5166 goto aux_unlock;
5167
5168 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
5169 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
5170
5171 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5172 goto aux_unlock;
5173
5174 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5175 goto aux_unlock;
5176
5177 /* already mapped with a different offset */
5178 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5179 goto aux_unlock;
5180
5181 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5182 goto aux_unlock;
5183
5184 /* already mapped with a different size */
5185 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5186 goto aux_unlock;
5187
5188 if (!is_power_of_2(nr_pages))
5189 goto aux_unlock;
5190
5191 if (!atomic_inc_not_zero(&rb->mmap_count))
5192 goto aux_unlock;
5193
5194 if (rb_has_aux(rb)) {
5195 atomic_inc(&rb->aux_mmap_count);
5196 ret = 0;
5197 goto unlock;
5198 }
5199
5200 atomic_set(&rb->aux_mmap_count, 1);
5201 user_extra = nr_pages;
5202
5203 goto accounting;
5204 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005205
5206 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005207 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005208 * can do bitmasks instead of modulo.
5209 */
Kan Liang2ed11312015-03-02 02:14:26 -05005210 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005211 return -EINVAL;
5212
5213 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5214 return -EINVAL;
5215
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005216 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005217again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005218 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005219 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005220 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005221 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005222 goto unlock;
5223 }
5224
5225 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5226 /*
5227 * Raced against perf_mmap_close() through
5228 * perf_event_set_output(). Try again, hope for better
5229 * luck.
5230 */
5231 mutex_unlock(&event->mmap_mutex);
5232 goto again;
5233 }
5234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005235 goto unlock;
5236 }
5237
5238 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005239
5240accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005241 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5242
5243 /*
5244 * Increase the limit linearly with more CPUs:
5245 */
5246 user_lock_limit *= num_online_cpus();
5247
5248 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5249
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005250 if (user_locked > user_lock_limit)
5251 extra = user_locked - user_lock_limit;
5252
Jiri Slaby78d7d402010-03-05 13:42:54 -08005253 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005254 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005255 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005256
5257 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5258 !capable(CAP_IPC_LOCK)) {
5259 ret = -EPERM;
5260 goto unlock;
5261 }
5262
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005263 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005264
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005265 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005266 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005267
Frederic Weisbecker76369132011-05-19 19:55:04 +02005268 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005269 rb = rb_alloc(nr_pages,
5270 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5271 event->cpu, flags);
5272
5273 if (!rb) {
5274 ret = -ENOMEM;
5275 goto unlock;
5276 }
5277
5278 atomic_set(&rb->mmap_count, 1);
5279 rb->mmap_user = get_current_user();
5280 rb->mmap_locked = extra;
5281
5282 ring_buffer_attach(event, rb);
5283
5284 perf_event_init_userpage(event);
5285 perf_event_update_userpage(event);
5286 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005287 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5288 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005289 if (!ret)
5290 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005291 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005293unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005294 if (!ret) {
5295 atomic_long_add(user_extra, &user->locked_vm);
5296 vma->vm_mm->pinned_vm += extra;
5297
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005298 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005299 } else if (rb) {
5300 atomic_dec(&rb->mmap_count);
5301 }
5302aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005303 mutex_unlock(&event->mmap_mutex);
5304
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005305 /*
5306 * Since pinned accounting is per vm we cannot allow fork() to copy our
5307 * vma.
5308 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005309 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005310 vma->vm_ops = &perf_mmap_vmops;
5311
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005312 if (event->pmu->event_mapped)
5313 event->pmu->event_mapped(event);
5314
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005315 return ret;
5316}
5317
5318static int perf_fasync(int fd, struct file *filp, int on)
5319{
Al Viro496ad9a2013-01-23 17:07:38 -05005320 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005321 struct perf_event *event = filp->private_data;
5322 int retval;
5323
Al Viro59551022016-01-22 15:40:57 -05005324 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005325 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005326 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005327
5328 if (retval < 0)
5329 return retval;
5330
5331 return 0;
5332}
5333
5334static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005335 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005336 .release = perf_release,
5337 .read = perf_read,
5338 .poll = perf_poll,
5339 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005340 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005341 .mmap = perf_mmap,
5342 .fasync = perf_fasync,
5343};
5344
5345/*
5346 * Perf event wakeup
5347 *
5348 * If there's data, ensure we set the poll() state and publish everything
5349 * to user-space before waking everybody up.
5350 */
5351
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005352static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5353{
5354 /* only the parent has fasync state */
5355 if (event->parent)
5356 event = event->parent;
5357 return &event->fasync;
5358}
5359
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005360void perf_event_wakeup(struct perf_event *event)
5361{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005362 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005363
5364 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005365 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005366 event->pending_kill = 0;
5367 }
5368}
5369
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005370static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005371{
5372 struct perf_event *event = container_of(entry,
5373 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005374 int rctx;
5375
5376 rctx = perf_swevent_get_recursion_context();
5377 /*
5378 * If we 'fail' here, that's OK, it means recursion is already disabled
5379 * and we won't recurse 'further'.
5380 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005381
5382 if (event->pending_disable) {
5383 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005384 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005385 }
5386
5387 if (event->pending_wakeup) {
5388 event->pending_wakeup = 0;
5389 perf_event_wakeup(event);
5390 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005391
5392 if (rctx >= 0)
5393 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005394}
5395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005396/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005397 * We assume there is only KVM supporting the callbacks.
5398 * Later on, we might change it to a list if there is
5399 * another virtualization implementation supporting the callbacks.
5400 */
5401struct perf_guest_info_callbacks *perf_guest_cbs;
5402
5403int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5404{
5405 perf_guest_cbs = cbs;
5406 return 0;
5407}
5408EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5409
5410int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5411{
5412 perf_guest_cbs = NULL;
5413 return 0;
5414}
5415EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5416
Jiri Olsa40189942012-08-07 15:20:37 +02005417static void
5418perf_output_sample_regs(struct perf_output_handle *handle,
5419 struct pt_regs *regs, u64 mask)
5420{
5421 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305422 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005423
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305424 bitmap_from_u64(_mask, mask);
5425 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005426 u64 val;
5427
5428 val = perf_reg_value(regs, bit);
5429 perf_output_put(handle, val);
5430 }
5431}
5432
Stephane Eranian60e23642014-09-24 13:48:37 +02005433static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005434 struct pt_regs *regs,
5435 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005436{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005437 if (user_mode(regs)) {
5438 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005439 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005440 } else if (current->mm) {
5441 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005442 } else {
5443 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5444 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005445 }
5446}
5447
Stephane Eranian60e23642014-09-24 13:48:37 +02005448static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5449 struct pt_regs *regs)
5450{
5451 regs_intr->regs = regs;
5452 regs_intr->abi = perf_reg_abi(current);
5453}
5454
5455
Jiri Olsac5ebced2012-08-07 15:20:40 +02005456/*
5457 * Get remaining task size from user stack pointer.
5458 *
5459 * It'd be better to take stack vma map and limit this more
5460 * precisly, but there's no way to get it safely under interrupt,
5461 * so using TASK_SIZE as limit.
5462 */
5463static u64 perf_ustack_task_size(struct pt_regs *regs)
5464{
5465 unsigned long addr = perf_user_stack_pointer(regs);
5466
5467 if (!addr || addr >= TASK_SIZE)
5468 return 0;
5469
5470 return TASK_SIZE - addr;
5471}
5472
5473static u16
5474perf_sample_ustack_size(u16 stack_size, u16 header_size,
5475 struct pt_regs *regs)
5476{
5477 u64 task_size;
5478
5479 /* No regs, no stack pointer, no dump. */
5480 if (!regs)
5481 return 0;
5482
5483 /*
5484 * Check if we fit in with the requested stack size into the:
5485 * - TASK_SIZE
5486 * If we don't, we limit the size to the TASK_SIZE.
5487 *
5488 * - remaining sample size
5489 * If we don't, we customize the stack size to
5490 * fit in to the remaining sample size.
5491 */
5492
5493 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5494 stack_size = min(stack_size, (u16) task_size);
5495
5496 /* Current header size plus static size and dynamic size. */
5497 header_size += 2 * sizeof(u64);
5498
5499 /* Do we fit in with the current stack dump size? */
5500 if ((u16) (header_size + stack_size) < header_size) {
5501 /*
5502 * If we overflow the maximum size for the sample,
5503 * we customize the stack dump size to fit in.
5504 */
5505 stack_size = USHRT_MAX - header_size - sizeof(u64);
5506 stack_size = round_up(stack_size, sizeof(u64));
5507 }
5508
5509 return stack_size;
5510}
5511
5512static void
5513perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5514 struct pt_regs *regs)
5515{
5516 /* Case of a kernel thread, nothing to dump */
5517 if (!regs) {
5518 u64 size = 0;
5519 perf_output_put(handle, size);
5520 } else {
5521 unsigned long sp;
5522 unsigned int rem;
5523 u64 dyn_size;
5524
5525 /*
5526 * We dump:
5527 * static size
5528 * - the size requested by user or the best one we can fit
5529 * in to the sample max size
5530 * data
5531 * - user stack dump data
5532 * dynamic size
5533 * - the actual dumped size
5534 */
5535
5536 /* Static size. */
5537 perf_output_put(handle, dump_size);
5538
5539 /* Data. */
5540 sp = perf_user_stack_pointer(regs);
5541 rem = __output_copy_user(handle, (void *) sp, dump_size);
5542 dyn_size = dump_size - rem;
5543
5544 perf_output_skip(handle, rem);
5545
5546 /* Dynamic size. */
5547 perf_output_put(handle, dyn_size);
5548 }
5549}
5550
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005551static void __perf_event_header__init_id(struct perf_event_header *header,
5552 struct perf_sample_data *data,
5553 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005554{
5555 u64 sample_type = event->attr.sample_type;
5556
5557 data->type = sample_type;
5558 header->size += event->id_header_size;
5559
5560 if (sample_type & PERF_SAMPLE_TID) {
5561 /* namespace issues */
5562 data->tid_entry.pid = perf_event_pid(event, current);
5563 data->tid_entry.tid = perf_event_tid(event, current);
5564 }
5565
5566 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005567 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005568
Adrian Hunterff3d5272013-08-27 11:23:07 +03005569 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005570 data->id = primary_event_id(event);
5571
5572 if (sample_type & PERF_SAMPLE_STREAM_ID)
5573 data->stream_id = event->id;
5574
5575 if (sample_type & PERF_SAMPLE_CPU) {
5576 data->cpu_entry.cpu = raw_smp_processor_id();
5577 data->cpu_entry.reserved = 0;
5578 }
5579}
5580
Frederic Weisbecker76369132011-05-19 19:55:04 +02005581void perf_event_header__init_id(struct perf_event_header *header,
5582 struct perf_sample_data *data,
5583 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005584{
5585 if (event->attr.sample_id_all)
5586 __perf_event_header__init_id(header, data, event);
5587}
5588
5589static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5590 struct perf_sample_data *data)
5591{
5592 u64 sample_type = data->type;
5593
5594 if (sample_type & PERF_SAMPLE_TID)
5595 perf_output_put(handle, data->tid_entry);
5596
5597 if (sample_type & PERF_SAMPLE_TIME)
5598 perf_output_put(handle, data->time);
5599
5600 if (sample_type & PERF_SAMPLE_ID)
5601 perf_output_put(handle, data->id);
5602
5603 if (sample_type & PERF_SAMPLE_STREAM_ID)
5604 perf_output_put(handle, data->stream_id);
5605
5606 if (sample_type & PERF_SAMPLE_CPU)
5607 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005608
5609 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5610 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005611}
5612
Frederic Weisbecker76369132011-05-19 19:55:04 +02005613void perf_event__output_id_sample(struct perf_event *event,
5614 struct perf_output_handle *handle,
5615 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005616{
5617 if (event->attr.sample_id_all)
5618 __perf_event__output_id_sample(handle, sample);
5619}
5620
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005621static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005622 struct perf_event *event,
5623 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005624{
5625 u64 read_format = event->attr.read_format;
5626 u64 values[4];
5627 int n = 0;
5628
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005629 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005630 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005631 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005632 atomic64_read(&event->child_total_time_enabled);
5633 }
5634 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005635 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005636 atomic64_read(&event->child_total_time_running);
5637 }
5638 if (read_format & PERF_FORMAT_ID)
5639 values[n++] = primary_event_id(event);
5640
Frederic Weisbecker76369132011-05-19 19:55:04 +02005641 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005642}
5643
5644/*
5645 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5646 */
5647static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005648 struct perf_event *event,
5649 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005650{
5651 struct perf_event *leader = event->group_leader, *sub;
5652 u64 read_format = event->attr.read_format;
5653 u64 values[5];
5654 int n = 0;
5655
5656 values[n++] = 1 + leader->nr_siblings;
5657
5658 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005659 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005660
5661 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005662 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005663
5664 if (leader != event)
5665 leader->pmu->read(leader);
5666
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005667 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005668 if (read_format & PERF_FORMAT_ID)
5669 values[n++] = primary_event_id(leader);
5670
Frederic Weisbecker76369132011-05-19 19:55:04 +02005671 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005672
5673 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5674 n = 0;
5675
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005676 if ((sub != event) &&
5677 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005678 sub->pmu->read(sub);
5679
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005680 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005681 if (read_format & PERF_FORMAT_ID)
5682 values[n++] = primary_event_id(sub);
5683
Frederic Weisbecker76369132011-05-19 19:55:04 +02005684 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005685 }
5686}
5687
Stephane Eranianeed01522010-10-26 16:08:01 +02005688#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5689 PERF_FORMAT_TOTAL_TIME_RUNNING)
5690
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005691static void perf_output_read(struct perf_output_handle *handle,
5692 struct perf_event *event)
5693{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005694 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005695 u64 read_format = event->attr.read_format;
5696
5697 /*
5698 * compute total_time_enabled, total_time_running
5699 * based on snapshot values taken when the event
5700 * was last scheduled in.
5701 *
5702 * we cannot simply called update_context_time()
5703 * because of locking issue as we are called in
5704 * NMI context
5705 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005706 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005707 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005708
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005709 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005710 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005711 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005712 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005713}
5714
5715void perf_output_sample(struct perf_output_handle *handle,
5716 struct perf_event_header *header,
5717 struct perf_sample_data *data,
5718 struct perf_event *event)
5719{
5720 u64 sample_type = data->type;
5721
5722 perf_output_put(handle, *header);
5723
Adrian Hunterff3d5272013-08-27 11:23:07 +03005724 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5725 perf_output_put(handle, data->id);
5726
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005727 if (sample_type & PERF_SAMPLE_IP)
5728 perf_output_put(handle, data->ip);
5729
5730 if (sample_type & PERF_SAMPLE_TID)
5731 perf_output_put(handle, data->tid_entry);
5732
5733 if (sample_type & PERF_SAMPLE_TIME)
5734 perf_output_put(handle, data->time);
5735
5736 if (sample_type & PERF_SAMPLE_ADDR)
5737 perf_output_put(handle, data->addr);
5738
5739 if (sample_type & PERF_SAMPLE_ID)
5740 perf_output_put(handle, data->id);
5741
5742 if (sample_type & PERF_SAMPLE_STREAM_ID)
5743 perf_output_put(handle, data->stream_id);
5744
5745 if (sample_type & PERF_SAMPLE_CPU)
5746 perf_output_put(handle, data->cpu_entry);
5747
5748 if (sample_type & PERF_SAMPLE_PERIOD)
5749 perf_output_put(handle, data->period);
5750
5751 if (sample_type & PERF_SAMPLE_READ)
5752 perf_output_read(handle, event);
5753
5754 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5755 if (data->callchain) {
5756 int size = 1;
5757
5758 if (data->callchain)
5759 size += data->callchain->nr;
5760
5761 size *= sizeof(u64);
5762
Frederic Weisbecker76369132011-05-19 19:55:04 +02005763 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005764 } else {
5765 u64 nr = 0;
5766 perf_output_put(handle, nr);
5767 }
5768 }
5769
5770 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005771 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005772
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005773 if (raw) {
5774 struct perf_raw_frag *frag = &raw->frag;
5775
5776 perf_output_put(handle, raw->size);
5777 do {
5778 if (frag->copy) {
5779 __output_custom(handle, frag->copy,
5780 frag->data, frag->size);
5781 } else {
5782 __output_copy(handle, frag->data,
5783 frag->size);
5784 }
5785 if (perf_raw_frag_last(frag))
5786 break;
5787 frag = frag->next;
5788 } while (1);
5789 if (frag->pad)
5790 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791 } else {
5792 struct {
5793 u32 size;
5794 u32 data;
5795 } raw = {
5796 .size = sizeof(u32),
5797 .data = 0,
5798 };
5799 perf_output_put(handle, raw);
5800 }
5801 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005802
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005803 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5804 if (data->br_stack) {
5805 size_t size;
5806
5807 size = data->br_stack->nr
5808 * sizeof(struct perf_branch_entry);
5809
5810 perf_output_put(handle, data->br_stack->nr);
5811 perf_output_copy(handle, data->br_stack->entries, size);
5812 } else {
5813 /*
5814 * we always store at least the value of nr
5815 */
5816 u64 nr = 0;
5817 perf_output_put(handle, nr);
5818 }
5819 }
Jiri Olsa40189942012-08-07 15:20:37 +02005820
5821 if (sample_type & PERF_SAMPLE_REGS_USER) {
5822 u64 abi = data->regs_user.abi;
5823
5824 /*
5825 * If there are no regs to dump, notice it through
5826 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5827 */
5828 perf_output_put(handle, abi);
5829
5830 if (abi) {
5831 u64 mask = event->attr.sample_regs_user;
5832 perf_output_sample_regs(handle,
5833 data->regs_user.regs,
5834 mask);
5835 }
5836 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005837
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005838 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005839 perf_output_sample_ustack(handle,
5840 data->stack_user_size,
5841 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005842 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005843
5844 if (sample_type & PERF_SAMPLE_WEIGHT)
5845 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005846
5847 if (sample_type & PERF_SAMPLE_DATA_SRC)
5848 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005849
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005850 if (sample_type & PERF_SAMPLE_TRANSACTION)
5851 perf_output_put(handle, data->txn);
5852
Stephane Eranian60e23642014-09-24 13:48:37 +02005853 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5854 u64 abi = data->regs_intr.abi;
5855 /*
5856 * If there are no regs to dump, notice it through
5857 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5858 */
5859 perf_output_put(handle, abi);
5860
5861 if (abi) {
5862 u64 mask = event->attr.sample_regs_intr;
5863
5864 perf_output_sample_regs(handle,
5865 data->regs_intr.regs,
5866 mask);
5867 }
5868 }
5869
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005870 if (!event->attr.watermark) {
5871 int wakeup_events = event->attr.wakeup_events;
5872
5873 if (wakeup_events) {
5874 struct ring_buffer *rb = handle->rb;
5875 int events = local_inc_return(&rb->events);
5876
5877 if (events >= wakeup_events) {
5878 local_sub(wakeup_events, &rb->events);
5879 local_inc(&rb->wakeup);
5880 }
5881 }
5882 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005883}
5884
5885void perf_prepare_sample(struct perf_event_header *header,
5886 struct perf_sample_data *data,
5887 struct perf_event *event,
5888 struct pt_regs *regs)
5889{
5890 u64 sample_type = event->attr.sample_type;
5891
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005892 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005893 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005894
5895 header->misc = 0;
5896 header->misc |= perf_misc_flags(regs);
5897
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005898 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005899
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005900 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005901 data->ip = perf_instruction_pointer(regs);
5902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005903 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5904 int size = 1;
5905
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005906 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005907
5908 if (data->callchain)
5909 size += data->callchain->nr;
5910
5911 header->size += size * sizeof(u64);
5912 }
5913
5914 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005915 struct perf_raw_record *raw = data->raw;
5916 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005917
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005918 if (raw) {
5919 struct perf_raw_frag *frag = &raw->frag;
5920 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005921
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005922 do {
5923 sum += frag->size;
5924 if (perf_raw_frag_last(frag))
5925 break;
5926 frag = frag->next;
5927 } while (1);
5928
5929 size = round_up(sum + sizeof(u32), sizeof(u64));
5930 raw->size = size - sizeof(u32);
5931 frag->pad = raw->size - sum;
5932 } else {
5933 size = sizeof(u64);
5934 }
5935
5936 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005938
5939 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5940 int size = sizeof(u64); /* nr */
5941 if (data->br_stack) {
5942 size += data->br_stack->nr
5943 * sizeof(struct perf_branch_entry);
5944 }
5945 header->size += size;
5946 }
Jiri Olsa40189942012-08-07 15:20:37 +02005947
Peter Zijlstra25657112014-09-24 13:48:42 +02005948 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005949 perf_sample_regs_user(&data->regs_user, regs,
5950 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005951
Jiri Olsa40189942012-08-07 15:20:37 +02005952 if (sample_type & PERF_SAMPLE_REGS_USER) {
5953 /* regs dump ABI info */
5954 int size = sizeof(u64);
5955
Jiri Olsa40189942012-08-07 15:20:37 +02005956 if (data->regs_user.regs) {
5957 u64 mask = event->attr.sample_regs_user;
5958 size += hweight64(mask) * sizeof(u64);
5959 }
5960
5961 header->size += size;
5962 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005963
5964 if (sample_type & PERF_SAMPLE_STACK_USER) {
5965 /*
5966 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5967 * processed as the last one or have additional check added
5968 * in case new sample type is added, because we could eat
5969 * up the rest of the sample size.
5970 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005971 u16 stack_size = event->attr.sample_stack_user;
5972 u16 size = sizeof(u64);
5973
Jiri Olsac5ebced2012-08-07 15:20:40 +02005974 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005975 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005976
5977 /*
5978 * If there is something to dump, add space for the dump
5979 * itself and for the field that tells the dynamic size,
5980 * which is how many have been actually dumped.
5981 */
5982 if (stack_size)
5983 size += sizeof(u64) + stack_size;
5984
5985 data->stack_user_size = stack_size;
5986 header->size += size;
5987 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005988
5989 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5990 /* regs dump ABI info */
5991 int size = sizeof(u64);
5992
5993 perf_sample_regs_intr(&data->regs_intr, regs);
5994
5995 if (data->regs_intr.regs) {
5996 u64 mask = event->attr.sample_regs_intr;
5997
5998 size += hweight64(mask) * sizeof(u64);
5999 }
6000
6001 header->size += size;
6002 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006003}
6004
Wang Nan9ecda412016-04-05 14:11:18 +00006005static void __always_inline
6006__perf_event_output(struct perf_event *event,
6007 struct perf_sample_data *data,
6008 struct pt_regs *regs,
6009 int (*output_begin)(struct perf_output_handle *,
6010 struct perf_event *,
6011 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006012{
6013 struct perf_output_handle handle;
6014 struct perf_event_header header;
6015
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006016 /* protect the callchain buffers */
6017 rcu_read_lock();
6018
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019 perf_prepare_sample(&header, data, event, regs);
6020
Wang Nan9ecda412016-04-05 14:11:18 +00006021 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006022 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006023
6024 perf_output_sample(&handle, &header, data, event);
6025
6026 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006027
6028exit:
6029 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006030}
6031
Wang Nan9ecda412016-04-05 14:11:18 +00006032void
6033perf_event_output_forward(struct perf_event *event,
6034 struct perf_sample_data *data,
6035 struct pt_regs *regs)
6036{
6037 __perf_event_output(event, data, regs, perf_output_begin_forward);
6038}
6039
6040void
6041perf_event_output_backward(struct perf_event *event,
6042 struct perf_sample_data *data,
6043 struct pt_regs *regs)
6044{
6045 __perf_event_output(event, data, regs, perf_output_begin_backward);
6046}
6047
6048void
6049perf_event_output(struct perf_event *event,
6050 struct perf_sample_data *data,
6051 struct pt_regs *regs)
6052{
6053 __perf_event_output(event, data, regs, perf_output_begin);
6054}
6055
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006056/*
6057 * read event_id
6058 */
6059
6060struct perf_read_event {
6061 struct perf_event_header header;
6062
6063 u32 pid;
6064 u32 tid;
6065};
6066
6067static void
6068perf_event_read_event(struct perf_event *event,
6069 struct task_struct *task)
6070{
6071 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006072 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006073 struct perf_read_event read_event = {
6074 .header = {
6075 .type = PERF_RECORD_READ,
6076 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006077 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006078 },
6079 .pid = perf_event_pid(event, task),
6080 .tid = perf_event_tid(event, task),
6081 };
6082 int ret;
6083
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006084 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006085 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086 if (ret)
6087 return;
6088
6089 perf_output_put(&handle, read_event);
6090 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006091 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006092
6093 perf_output_end(&handle);
6094}
6095
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006096typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006097
6098static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006099perf_iterate_ctx(struct perf_event_context *ctx,
6100 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006101 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006102{
6103 struct perf_event *event;
6104
6105 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006106 if (!all) {
6107 if (event->state < PERF_EVENT_STATE_INACTIVE)
6108 continue;
6109 if (!event_filter_match(event))
6110 continue;
6111 }
6112
Jiri Olsa67516842013-07-09 18:56:31 +02006113 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006114 }
6115}
6116
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006117static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006118{
6119 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6120 struct perf_event *event;
6121
6122 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006123 /*
6124 * Skip events that are not fully formed yet; ensure that
6125 * if we observe event->ctx, both event and ctx will be
6126 * complete enough. See perf_install_in_context().
6127 */
6128 if (!smp_load_acquire(&event->ctx))
6129 continue;
6130
Kan Liangf2fb6be2016-03-23 11:24:37 -07006131 if (event->state < PERF_EVENT_STATE_INACTIVE)
6132 continue;
6133 if (!event_filter_match(event))
6134 continue;
6135 output(event, data);
6136 }
6137}
6138
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006139/*
6140 * Iterate all events that need to receive side-band events.
6141 *
6142 * For new callers; ensure that account_pmu_sb_event() includes
6143 * your event, otherwise it might not get delivered.
6144 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006145static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006146perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006147 struct perf_event_context *task_ctx)
6148{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006149 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006150 int ctxn;
6151
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006152 rcu_read_lock();
6153 preempt_disable();
6154
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006155 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006156 * If we have task_ctx != NULL we only notify the task context itself.
6157 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006158 * context.
6159 */
6160 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006161 perf_iterate_ctx(task_ctx, output, data, false);
6162 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006163 }
6164
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006165 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006166
6167 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006168 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6169 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006170 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006171 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006172done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006173 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006174 rcu_read_unlock();
6175}
6176
Alexander Shishkin375637b2016-04-27 18:44:46 +03006177/*
6178 * Clear all file-based filters at exec, they'll have to be
6179 * re-instated when/if these objects are mmapped again.
6180 */
6181static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6182{
6183 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6184 struct perf_addr_filter *filter;
6185 unsigned int restart = 0, count = 0;
6186 unsigned long flags;
6187
6188 if (!has_addr_filter(event))
6189 return;
6190
6191 raw_spin_lock_irqsave(&ifh->lock, flags);
6192 list_for_each_entry(filter, &ifh->list, entry) {
6193 if (filter->inode) {
6194 event->addr_filters_offs[count] = 0;
6195 restart++;
6196 }
6197
6198 count++;
6199 }
6200
6201 if (restart)
6202 event->addr_filters_gen++;
6203 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6204
6205 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006206 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006207}
6208
6209void perf_event_exec(void)
6210{
6211 struct perf_event_context *ctx;
6212 int ctxn;
6213
6214 rcu_read_lock();
6215 for_each_task_context_nr(ctxn) {
6216 ctx = current->perf_event_ctxp[ctxn];
6217 if (!ctx)
6218 continue;
6219
6220 perf_event_enable_on_exec(ctxn);
6221
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006222 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006223 true);
6224 }
6225 rcu_read_unlock();
6226}
6227
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006228struct remote_output {
6229 struct ring_buffer *rb;
6230 int err;
6231};
6232
6233static void __perf_event_output_stop(struct perf_event *event, void *data)
6234{
6235 struct perf_event *parent = event->parent;
6236 struct remote_output *ro = data;
6237 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006238 struct stop_event_data sd = {
6239 .event = event,
6240 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006241
6242 if (!has_aux(event))
6243 return;
6244
6245 if (!parent)
6246 parent = event;
6247
6248 /*
6249 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006250 * ring-buffer, but it will be the child that's actually using it.
6251 *
6252 * We are using event::rb to determine if the event should be stopped,
6253 * however this may race with ring_buffer_attach() (through set_output),
6254 * which will make us skip the event that actually needs to be stopped.
6255 * So ring_buffer_attach() has to stop an aux event before re-assigning
6256 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006257 */
6258 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006259 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006260}
6261
6262static int __perf_pmu_output_stop(void *info)
6263{
6264 struct perf_event *event = info;
6265 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006266 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006267 struct remote_output ro = {
6268 .rb = event->rb,
6269 };
6270
6271 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006272 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006273 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006274 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006275 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006276 rcu_read_unlock();
6277
6278 return ro.err;
6279}
6280
6281static void perf_pmu_output_stop(struct perf_event *event)
6282{
6283 struct perf_event *iter;
6284 int err, cpu;
6285
6286restart:
6287 rcu_read_lock();
6288 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6289 /*
6290 * For per-CPU events, we need to make sure that neither they
6291 * nor their children are running; for cpu==-1 events it's
6292 * sufficient to stop the event itself if it's active, since
6293 * it can't have children.
6294 */
6295 cpu = iter->cpu;
6296 if (cpu == -1)
6297 cpu = READ_ONCE(iter->oncpu);
6298
6299 if (cpu == -1)
6300 continue;
6301
6302 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6303 if (err == -EAGAIN) {
6304 rcu_read_unlock();
6305 goto restart;
6306 }
6307 }
6308 rcu_read_unlock();
6309}
6310
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006311/*
6312 * task tracking -- fork/exit
6313 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006314 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006315 */
6316
6317struct perf_task_event {
6318 struct task_struct *task;
6319 struct perf_event_context *task_ctx;
6320
6321 struct {
6322 struct perf_event_header header;
6323
6324 u32 pid;
6325 u32 ppid;
6326 u32 tid;
6327 u32 ptid;
6328 u64 time;
6329 } event_id;
6330};
6331
Jiri Olsa67516842013-07-09 18:56:31 +02006332static int perf_event_task_match(struct perf_event *event)
6333{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006334 return event->attr.comm || event->attr.mmap ||
6335 event->attr.mmap2 || event->attr.mmap_data ||
6336 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006337}
6338
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006339static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006340 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006341{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006342 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006343 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006344 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006345 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006346 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006347
Jiri Olsa67516842013-07-09 18:56:31 +02006348 if (!perf_event_task_match(event))
6349 return;
6350
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006351 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006352
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006353 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006354 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006355 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006356 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006357
6358 task_event->event_id.pid = perf_event_pid(event, task);
6359 task_event->event_id.ppid = perf_event_pid(event, current);
6360
6361 task_event->event_id.tid = perf_event_tid(event, task);
6362 task_event->event_id.ptid = perf_event_tid(event, current);
6363
Peter Zijlstra34f43922015-02-20 14:05:38 +01006364 task_event->event_id.time = perf_event_clock(event);
6365
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006366 perf_output_put(&handle, task_event->event_id);
6367
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006368 perf_event__output_id_sample(event, &handle, &sample);
6369
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006370 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006371out:
6372 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006373}
6374
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006375static void perf_event_task(struct task_struct *task,
6376 struct perf_event_context *task_ctx,
6377 int new)
6378{
6379 struct perf_task_event task_event;
6380
6381 if (!atomic_read(&nr_comm_events) &&
6382 !atomic_read(&nr_mmap_events) &&
6383 !atomic_read(&nr_task_events))
6384 return;
6385
6386 task_event = (struct perf_task_event){
6387 .task = task,
6388 .task_ctx = task_ctx,
6389 .event_id = {
6390 .header = {
6391 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6392 .misc = 0,
6393 .size = sizeof(task_event.event_id),
6394 },
6395 /* .pid */
6396 /* .ppid */
6397 /* .tid */
6398 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006399 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006400 },
6401 };
6402
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006403 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006404 &task_event,
6405 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006406}
6407
6408void perf_event_fork(struct task_struct *task)
6409{
6410 perf_event_task(task, NULL, 1);
6411}
6412
6413/*
6414 * comm tracking
6415 */
6416
6417struct perf_comm_event {
6418 struct task_struct *task;
6419 char *comm;
6420 int comm_size;
6421
6422 struct {
6423 struct perf_event_header header;
6424
6425 u32 pid;
6426 u32 tid;
6427 } event_id;
6428};
6429
Jiri Olsa67516842013-07-09 18:56:31 +02006430static int perf_event_comm_match(struct perf_event *event)
6431{
6432 return event->attr.comm;
6433}
6434
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006435static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006436 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006437{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006438 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006439 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006440 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006441 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006442 int ret;
6443
Jiri Olsa67516842013-07-09 18:56:31 +02006444 if (!perf_event_comm_match(event))
6445 return;
6446
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006447 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6448 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006449 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006450
6451 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006452 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006453
6454 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6455 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6456
6457 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006458 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006459 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006460
6461 perf_event__output_id_sample(event, &handle, &sample);
6462
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006463 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006464out:
6465 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006466}
6467
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006468static void perf_event_comm_event(struct perf_comm_event *comm_event)
6469{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006470 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006471 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006472
6473 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006474 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006475 size = ALIGN(strlen(comm)+1, sizeof(u64));
6476
6477 comm_event->comm = comm;
6478 comm_event->comm_size = size;
6479
6480 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006481
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006482 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006483 comm_event,
6484 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006485}
6486
Adrian Hunter82b89772014-05-28 11:45:04 +03006487void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006488{
6489 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006490
6491 if (!atomic_read(&nr_comm_events))
6492 return;
6493
6494 comm_event = (struct perf_comm_event){
6495 .task = task,
6496 /* .comm */
6497 /* .comm_size */
6498 .event_id = {
6499 .header = {
6500 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006501 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006502 /* .size */
6503 },
6504 /* .pid */
6505 /* .tid */
6506 },
6507 };
6508
6509 perf_event_comm_event(&comm_event);
6510}
6511
6512/*
6513 * mmap tracking
6514 */
6515
6516struct perf_mmap_event {
6517 struct vm_area_struct *vma;
6518
6519 const char *file_name;
6520 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006521 int maj, min;
6522 u64 ino;
6523 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006524 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006525
6526 struct {
6527 struct perf_event_header header;
6528
6529 u32 pid;
6530 u32 tid;
6531 u64 start;
6532 u64 len;
6533 u64 pgoff;
6534 } event_id;
6535};
6536
Jiri Olsa67516842013-07-09 18:56:31 +02006537static int perf_event_mmap_match(struct perf_event *event,
6538 void *data)
6539{
6540 struct perf_mmap_event *mmap_event = data;
6541 struct vm_area_struct *vma = mmap_event->vma;
6542 int executable = vma->vm_flags & VM_EXEC;
6543
6544 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006545 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006546}
6547
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006548static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006549 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006550{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006551 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006552 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006553 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006554 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006555 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006556
Jiri Olsa67516842013-07-09 18:56:31 +02006557 if (!perf_event_mmap_match(event, data))
6558 return;
6559
Stephane Eranian13d7a242013-08-21 12:10:24 +02006560 if (event->attr.mmap2) {
6561 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6562 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6563 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6564 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006565 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006566 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6567 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006568 }
6569
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006570 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6571 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006572 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006573 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006574 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006575
6576 mmap_event->event_id.pid = perf_event_pid(event, current);
6577 mmap_event->event_id.tid = perf_event_tid(event, current);
6578
6579 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006580
6581 if (event->attr.mmap2) {
6582 perf_output_put(&handle, mmap_event->maj);
6583 perf_output_put(&handle, mmap_event->min);
6584 perf_output_put(&handle, mmap_event->ino);
6585 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006586 perf_output_put(&handle, mmap_event->prot);
6587 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006588 }
6589
Frederic Weisbecker76369132011-05-19 19:55:04 +02006590 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006591 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006592
6593 perf_event__output_id_sample(event, &handle, &sample);
6594
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006596out:
6597 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006598}
6599
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006600static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6601{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006602 struct vm_area_struct *vma = mmap_event->vma;
6603 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006604 int maj = 0, min = 0;
6605 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006606 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006607 unsigned int size;
6608 char tmp[16];
6609 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006610 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611
6612 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006613 struct inode *inode;
6614 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006615
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006616 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006617 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006618 name = "//enomem";
6619 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006620 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006621 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006622 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006623 * need to add enough zero bytes after the string to handle
6624 * the 64bit alignment we do later.
6625 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006626 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006627 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006628 name = "//toolong";
6629 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006630 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006631 inode = file_inode(vma->vm_file);
6632 dev = inode->i_sb->s_dev;
6633 ino = inode->i_ino;
6634 gen = inode->i_generation;
6635 maj = MAJOR(dev);
6636 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006637
6638 if (vma->vm_flags & VM_READ)
6639 prot |= PROT_READ;
6640 if (vma->vm_flags & VM_WRITE)
6641 prot |= PROT_WRITE;
6642 if (vma->vm_flags & VM_EXEC)
6643 prot |= PROT_EXEC;
6644
6645 if (vma->vm_flags & VM_MAYSHARE)
6646 flags = MAP_SHARED;
6647 else
6648 flags = MAP_PRIVATE;
6649
6650 if (vma->vm_flags & VM_DENYWRITE)
6651 flags |= MAP_DENYWRITE;
6652 if (vma->vm_flags & VM_MAYEXEC)
6653 flags |= MAP_EXECUTABLE;
6654 if (vma->vm_flags & VM_LOCKED)
6655 flags |= MAP_LOCKED;
6656 if (vma->vm_flags & VM_HUGETLB)
6657 flags |= MAP_HUGETLB;
6658
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006659 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006660 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006661 if (vma->vm_ops && vma->vm_ops->name) {
6662 name = (char *) vma->vm_ops->name(vma);
6663 if (name)
6664 goto cpy_name;
6665 }
6666
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006667 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006668 if (name)
6669 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006670
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006671 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006672 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006673 name = "[heap]";
6674 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006675 }
6676 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006677 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006678 name = "[stack]";
6679 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006680 }
6681
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006682 name = "//anon";
6683 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006684 }
6685
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006686cpy_name:
6687 strlcpy(tmp, name, sizeof(tmp));
6688 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006689got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006690 /*
6691 * Since our buffer works in 8 byte units we need to align our string
6692 * size to a multiple of 8. However, we must guarantee the tail end is
6693 * zero'd out to avoid leaking random bits to userspace.
6694 */
6695 size = strlen(name)+1;
6696 while (!IS_ALIGNED(size, sizeof(u64)))
6697 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006698
6699 mmap_event->file_name = name;
6700 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006701 mmap_event->maj = maj;
6702 mmap_event->min = min;
6703 mmap_event->ino = ino;
6704 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006705 mmap_event->prot = prot;
6706 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006707
Stephane Eranian2fe85422013-01-24 16:10:39 +01006708 if (!(vma->vm_flags & VM_EXEC))
6709 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6710
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006711 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6712
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006713 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006714 mmap_event,
6715 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006716
6717 kfree(buf);
6718}
6719
Alexander Shishkin375637b2016-04-27 18:44:46 +03006720/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03006721 * Check whether inode and address range match filter criteria.
6722 */
6723static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6724 struct file *file, unsigned long offset,
6725 unsigned long size)
6726{
Al Viro45063092016-12-04 18:24:56 -05006727 if (filter->inode != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03006728 return false;
6729
6730 if (filter->offset > offset + size)
6731 return false;
6732
6733 if (filter->offset + filter->size < offset)
6734 return false;
6735
6736 return true;
6737}
6738
6739static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6740{
6741 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6742 struct vm_area_struct *vma = data;
6743 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6744 struct file *file = vma->vm_file;
6745 struct perf_addr_filter *filter;
6746 unsigned int restart = 0, count = 0;
6747
6748 if (!has_addr_filter(event))
6749 return;
6750
6751 if (!file)
6752 return;
6753
6754 raw_spin_lock_irqsave(&ifh->lock, flags);
6755 list_for_each_entry(filter, &ifh->list, entry) {
6756 if (perf_addr_filter_match(filter, file, off,
6757 vma->vm_end - vma->vm_start)) {
6758 event->addr_filters_offs[count] = vma->vm_start;
6759 restart++;
6760 }
6761
6762 count++;
6763 }
6764
6765 if (restart)
6766 event->addr_filters_gen++;
6767 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6768
6769 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006770 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006771}
6772
6773/*
6774 * Adjust all task's events' filters to the new vma
6775 */
6776static void perf_addr_filters_adjust(struct vm_area_struct *vma)
6777{
6778 struct perf_event_context *ctx;
6779 int ctxn;
6780
Mathieu Poirier12b40a22016-07-18 10:43:06 -06006781 /*
6782 * Data tracing isn't supported yet and as such there is no need
6783 * to keep track of anything that isn't related to executable code:
6784 */
6785 if (!(vma->vm_flags & VM_EXEC))
6786 return;
6787
Alexander Shishkin375637b2016-04-27 18:44:46 +03006788 rcu_read_lock();
6789 for_each_task_context_nr(ctxn) {
6790 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6791 if (!ctx)
6792 continue;
6793
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006794 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006795 }
6796 rcu_read_unlock();
6797}
6798
Eric B Munson3af9e852010-05-18 15:30:49 +01006799void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006800{
6801 struct perf_mmap_event mmap_event;
6802
6803 if (!atomic_read(&nr_mmap_events))
6804 return;
6805
6806 mmap_event = (struct perf_mmap_event){
6807 .vma = vma,
6808 /* .file_name */
6809 /* .file_size */
6810 .event_id = {
6811 .header = {
6812 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006813 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006814 /* .size */
6815 },
6816 /* .pid */
6817 /* .tid */
6818 .start = vma->vm_start,
6819 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006820 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006821 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006822 /* .maj (attr_mmap2 only) */
6823 /* .min (attr_mmap2 only) */
6824 /* .ino (attr_mmap2 only) */
6825 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006826 /* .prot (attr_mmap2 only) */
6827 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828 };
6829
Alexander Shishkin375637b2016-04-27 18:44:46 +03006830 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006831 perf_event_mmap_event(&mmap_event);
6832}
6833
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006834void perf_event_aux_event(struct perf_event *event, unsigned long head,
6835 unsigned long size, u64 flags)
6836{
6837 struct perf_output_handle handle;
6838 struct perf_sample_data sample;
6839 struct perf_aux_event {
6840 struct perf_event_header header;
6841 u64 offset;
6842 u64 size;
6843 u64 flags;
6844 } rec = {
6845 .header = {
6846 .type = PERF_RECORD_AUX,
6847 .misc = 0,
6848 .size = sizeof(rec),
6849 },
6850 .offset = head,
6851 .size = size,
6852 .flags = flags,
6853 };
6854 int ret;
6855
6856 perf_event_header__init_id(&rec.header, &sample, event);
6857 ret = perf_output_begin(&handle, event, rec.header.size);
6858
6859 if (ret)
6860 return;
6861
6862 perf_output_put(&handle, rec);
6863 perf_event__output_id_sample(event, &handle, &sample);
6864
6865 perf_output_end(&handle);
6866}
6867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006868/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006869 * Lost/dropped samples logging
6870 */
6871void perf_log_lost_samples(struct perf_event *event, u64 lost)
6872{
6873 struct perf_output_handle handle;
6874 struct perf_sample_data sample;
6875 int ret;
6876
6877 struct {
6878 struct perf_event_header header;
6879 u64 lost;
6880 } lost_samples_event = {
6881 .header = {
6882 .type = PERF_RECORD_LOST_SAMPLES,
6883 .misc = 0,
6884 .size = sizeof(lost_samples_event),
6885 },
6886 .lost = lost,
6887 };
6888
6889 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6890
6891 ret = perf_output_begin(&handle, event,
6892 lost_samples_event.header.size);
6893 if (ret)
6894 return;
6895
6896 perf_output_put(&handle, lost_samples_event);
6897 perf_event__output_id_sample(event, &handle, &sample);
6898 perf_output_end(&handle);
6899}
6900
6901/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006902 * context_switch tracking
6903 */
6904
6905struct perf_switch_event {
6906 struct task_struct *task;
6907 struct task_struct *next_prev;
6908
6909 struct {
6910 struct perf_event_header header;
6911 u32 next_prev_pid;
6912 u32 next_prev_tid;
6913 } event_id;
6914};
6915
6916static int perf_event_switch_match(struct perf_event *event)
6917{
6918 return event->attr.context_switch;
6919}
6920
6921static void perf_event_switch_output(struct perf_event *event, void *data)
6922{
6923 struct perf_switch_event *se = data;
6924 struct perf_output_handle handle;
6925 struct perf_sample_data sample;
6926 int ret;
6927
6928 if (!perf_event_switch_match(event))
6929 return;
6930
6931 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6932 if (event->ctx->task) {
6933 se->event_id.header.type = PERF_RECORD_SWITCH;
6934 se->event_id.header.size = sizeof(se->event_id.header);
6935 } else {
6936 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6937 se->event_id.header.size = sizeof(se->event_id);
6938 se->event_id.next_prev_pid =
6939 perf_event_pid(event, se->next_prev);
6940 se->event_id.next_prev_tid =
6941 perf_event_tid(event, se->next_prev);
6942 }
6943
6944 perf_event_header__init_id(&se->event_id.header, &sample, event);
6945
6946 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6947 if (ret)
6948 return;
6949
6950 if (event->ctx->task)
6951 perf_output_put(&handle, se->event_id.header);
6952 else
6953 perf_output_put(&handle, se->event_id);
6954
6955 perf_event__output_id_sample(event, &handle, &sample);
6956
6957 perf_output_end(&handle);
6958}
6959
6960static void perf_event_switch(struct task_struct *task,
6961 struct task_struct *next_prev, bool sched_in)
6962{
6963 struct perf_switch_event switch_event;
6964
6965 /* N.B. caller checks nr_switch_events != 0 */
6966
6967 switch_event = (struct perf_switch_event){
6968 .task = task,
6969 .next_prev = next_prev,
6970 .event_id = {
6971 .header = {
6972 /* .type */
6973 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6974 /* .size */
6975 },
6976 /* .next_prev_pid */
6977 /* .next_prev_tid */
6978 },
6979 };
6980
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006981 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03006982 &switch_event,
6983 NULL);
6984}
6985
6986/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006987 * IRQ throttle logging
6988 */
6989
6990static void perf_log_throttle(struct perf_event *event, int enable)
6991{
6992 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006993 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006994 int ret;
6995
6996 struct {
6997 struct perf_event_header header;
6998 u64 time;
6999 u64 id;
7000 u64 stream_id;
7001 } throttle_event = {
7002 .header = {
7003 .type = PERF_RECORD_THROTTLE,
7004 .misc = 0,
7005 .size = sizeof(throttle_event),
7006 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007007 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007008 .id = primary_event_id(event),
7009 .stream_id = event->id,
7010 };
7011
7012 if (enable)
7013 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7014
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007015 perf_event_header__init_id(&throttle_event.header, &sample, event);
7016
7017 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007018 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007019 if (ret)
7020 return;
7021
7022 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007023 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007024 perf_output_end(&handle);
7025}
7026
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007027static void perf_log_itrace_start(struct perf_event *event)
7028{
7029 struct perf_output_handle handle;
7030 struct perf_sample_data sample;
7031 struct perf_aux_event {
7032 struct perf_event_header header;
7033 u32 pid;
7034 u32 tid;
7035 } rec;
7036 int ret;
7037
7038 if (event->parent)
7039 event = event->parent;
7040
7041 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
7042 event->hw.itrace_started)
7043 return;
7044
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007045 rec.header.type = PERF_RECORD_ITRACE_START;
7046 rec.header.misc = 0;
7047 rec.header.size = sizeof(rec);
7048 rec.pid = perf_event_pid(event, current);
7049 rec.tid = perf_event_tid(event, current);
7050
7051 perf_event_header__init_id(&rec.header, &sample, event);
7052 ret = perf_output_begin(&handle, event, rec.header.size);
7053
7054 if (ret)
7055 return;
7056
7057 perf_output_put(&handle, rec);
7058 perf_event__output_id_sample(event, &handle, &sample);
7059
7060 perf_output_end(&handle);
7061}
7062
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007063/*
7064 * Generic event overflow handling, sampling.
7065 */
7066
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007067static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007068 int throttle, struct perf_sample_data *data,
7069 struct pt_regs *regs)
7070{
7071 int events = atomic_read(&event->event_limit);
7072 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007073 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007074 int ret = 0;
7075
Peter Zijlstra96398822010-11-24 18:55:29 +01007076 /*
7077 * Non-sampling counters might still use the PMI to fold short
7078 * hardware counters, ignore those.
7079 */
7080 if (unlikely(!is_sampling_event(event)))
7081 return 0;
7082
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007083 seq = __this_cpu_read(perf_throttled_seq);
7084 if (seq != hwc->interrupts_seq) {
7085 hwc->interrupts_seq = seq;
7086 hwc->interrupts = 1;
7087 } else {
7088 hwc->interrupts++;
7089 if (unlikely(throttle
7090 && hwc->interrupts >= max_samples_per_tick)) {
7091 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007092 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007093 hwc->interrupts = MAX_INTERRUPTS;
7094 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007095 ret = 1;
7096 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007097 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007098
7099 if (event->attr.freq) {
7100 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007101 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007102
Peter Zijlstraabd50712010-01-26 18:50:16 +01007103 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007104
Peter Zijlstraabd50712010-01-26 18:50:16 +01007105 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007106 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007107 }
7108
7109 /*
7110 * XXX event_limit might not quite work as expected on inherited
7111 * events
7112 */
7113
7114 event->pending_kill = POLL_IN;
7115 if (events && atomic_dec_and_test(&event->event_limit)) {
7116 ret = 1;
7117 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007118
7119 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007120 }
7121
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007122 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007123
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007124 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007125 event->pending_wakeup = 1;
7126 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007127 }
7128
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007129 return ret;
7130}
7131
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007132int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007133 struct perf_sample_data *data,
7134 struct pt_regs *regs)
7135{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007136 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007137}
7138
7139/*
7140 * Generic software event infrastructure
7141 */
7142
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007143struct swevent_htable {
7144 struct swevent_hlist *swevent_hlist;
7145 struct mutex hlist_mutex;
7146 int hlist_refcount;
7147
7148 /* Recursion avoidance in each contexts */
7149 int recursion[PERF_NR_CONTEXTS];
7150};
7151
7152static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7153
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007154/*
7155 * We directly increment event->count and keep a second value in
7156 * event->hw.period_left to count intervals. This period event
7157 * is kept in the range [-sample_period, 0] so that we can use the
7158 * sign as trigger.
7159 */
7160
Jiri Olsaab573842013-05-01 17:25:44 +02007161u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007162{
7163 struct hw_perf_event *hwc = &event->hw;
7164 u64 period = hwc->last_period;
7165 u64 nr, offset;
7166 s64 old, val;
7167
7168 hwc->last_period = hwc->sample_period;
7169
7170again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007171 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172 if (val < 0)
7173 return 0;
7174
7175 nr = div64_u64(period + val, period);
7176 offset = nr * period;
7177 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007178 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007179 goto again;
7180
7181 return nr;
7182}
7183
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007184static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007185 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007186 struct pt_regs *regs)
7187{
7188 struct hw_perf_event *hwc = &event->hw;
7189 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007190
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007191 if (!overflow)
7192 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007193
7194 if (hwc->interrupts == MAX_INTERRUPTS)
7195 return;
7196
7197 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007198 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007199 data, regs)) {
7200 /*
7201 * We inhibit the overflow from happening when
7202 * hwc->interrupts == MAX_INTERRUPTS.
7203 */
7204 break;
7205 }
7206 throttle = 1;
7207 }
7208}
7209
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007210static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007211 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007212 struct pt_regs *regs)
7213{
7214 struct hw_perf_event *hwc = &event->hw;
7215
Peter Zijlstrae7850592010-05-21 14:43:08 +02007216 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007217
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007218 if (!regs)
7219 return;
7220
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007221 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007222 return;
7223
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007224 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7225 data->period = nr;
7226 return perf_swevent_overflow(event, 1, data, regs);
7227 } else
7228 data->period = event->hw.last_period;
7229
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007230 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007231 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007232
Peter Zijlstrae7850592010-05-21 14:43:08 +02007233 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007234 return;
7235
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007236 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007237}
7238
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007239static int perf_exclude_event(struct perf_event *event,
7240 struct pt_regs *regs)
7241{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007242 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007243 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007244
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007245 if (regs) {
7246 if (event->attr.exclude_user && user_mode(regs))
7247 return 1;
7248
7249 if (event->attr.exclude_kernel && !user_mode(regs))
7250 return 1;
7251 }
7252
7253 return 0;
7254}
7255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007256static int perf_swevent_match(struct perf_event *event,
7257 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007258 u32 event_id,
7259 struct perf_sample_data *data,
7260 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007261{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007262 if (event->attr.type != type)
7263 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007264
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007265 if (event->attr.config != event_id)
7266 return 0;
7267
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007268 if (perf_exclude_event(event, regs))
7269 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007270
7271 return 1;
7272}
7273
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007274static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007275{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007276 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007277
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007278 return hash_64(val, SWEVENT_HLIST_BITS);
7279}
7280
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007281static inline struct hlist_head *
7282__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007283{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007284 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007285
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007286 return &hlist->heads[hash];
7287}
7288
7289/* For the read side: events when they trigger */
7290static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007291find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007292{
7293 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007294
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007295 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007296 if (!hlist)
7297 return NULL;
7298
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007299 return __find_swevent_head(hlist, type, event_id);
7300}
7301
7302/* For the event head insertion and removal in the hlist */
7303static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007304find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007305{
7306 struct swevent_hlist *hlist;
7307 u32 event_id = event->attr.config;
7308 u64 type = event->attr.type;
7309
7310 /*
7311 * Event scheduling is always serialized against hlist allocation
7312 * and release. Which makes the protected version suitable here.
7313 * The context lock guarantees that.
7314 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007315 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007316 lockdep_is_held(&event->ctx->lock));
7317 if (!hlist)
7318 return NULL;
7319
7320 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007321}
7322
7323static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007324 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007325 struct perf_sample_data *data,
7326 struct pt_regs *regs)
7327{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007328 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007329 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007330 struct hlist_head *head;
7331
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007332 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007333 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007334 if (!head)
7335 goto end;
7336
Sasha Levinb67bfe02013-02-27 17:06:00 -08007337 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007338 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007339 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007340 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007341end:
7342 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007343}
7344
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007345DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7346
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007347int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007348{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007349 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007350
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007351 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007352}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007353EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007354
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007355void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007356{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007357 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007358
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007359 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007360}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007361
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007362void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007363{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007364 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007365
7366 if (WARN_ON_ONCE(!regs))
7367 return;
7368
7369 perf_sample_data_init(&data, addr, 0);
7370 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7371}
7372
7373void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7374{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007375 int rctx;
7376
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007377 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007378 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007379 if (unlikely(rctx < 0))
7380 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007381
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007382 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007383
7384 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007385fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007386 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007387}
7388
7389static void perf_swevent_read(struct perf_event *event)
7390{
7391}
7392
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007393static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007394{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007395 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007396 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007397 struct hlist_head *head;
7398
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007399 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007400 hwc->last_period = hwc->sample_period;
7401 perf_swevent_set_period(event);
7402 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007403
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007404 hwc->state = !(flags & PERF_EF_START);
7405
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007406 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007407 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007408 return -EINVAL;
7409
7410 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007411 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007412
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007413 return 0;
7414}
7415
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007416static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007417{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007418 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007419}
7420
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007421static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007422{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007423 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007424}
7425
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007426static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007427{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007428 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007429}
7430
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007431/* Deref the hlist from the update side */
7432static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007433swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007434{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007435 return rcu_dereference_protected(swhash->swevent_hlist,
7436 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007437}
7438
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007439static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007440{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007441 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007442
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007443 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007444 return;
7445
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007446 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007447 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007448}
7449
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007450static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007451{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007452 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007453
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007454 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007455
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007456 if (!--swhash->hlist_refcount)
7457 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007458
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007459 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007460}
7461
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007462static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007463{
7464 int cpu;
7465
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007466 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007467 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007468}
7469
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007470static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007471{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007472 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007473 int err = 0;
7474
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007475 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007476 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007477 struct swevent_hlist *hlist;
7478
7479 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7480 if (!hlist) {
7481 err = -ENOMEM;
7482 goto exit;
7483 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007484 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007485 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007486 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007487exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007488 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007489
7490 return err;
7491}
7492
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007493static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007494{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007495 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007496
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007497 get_online_cpus();
7498 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007499 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007500 if (err) {
7501 failed_cpu = cpu;
7502 goto fail;
7503 }
7504 }
7505 put_online_cpus();
7506
7507 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007508fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007509 for_each_possible_cpu(cpu) {
7510 if (cpu == failed_cpu)
7511 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007512 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007513 }
7514
7515 put_online_cpus();
7516 return err;
7517}
7518
Ingo Molnarc5905af2012-02-24 08:31:31 +01007519struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007520
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007521static void sw_perf_event_destroy(struct perf_event *event)
7522{
7523 u64 event_id = event->attr.config;
7524
7525 WARN_ON(event->parent);
7526
Ingo Molnarc5905af2012-02-24 08:31:31 +01007527 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007528 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007529}
7530
7531static int perf_swevent_init(struct perf_event *event)
7532{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007533 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007534
7535 if (event->attr.type != PERF_TYPE_SOFTWARE)
7536 return -ENOENT;
7537
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007538 /*
7539 * no branch sampling for software events
7540 */
7541 if (has_branch_stack(event))
7542 return -EOPNOTSUPP;
7543
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007544 switch (event_id) {
7545 case PERF_COUNT_SW_CPU_CLOCK:
7546 case PERF_COUNT_SW_TASK_CLOCK:
7547 return -ENOENT;
7548
7549 default:
7550 break;
7551 }
7552
Dan Carpenterce677832010-10-24 21:50:42 +02007553 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007554 return -ENOENT;
7555
7556 if (!event->parent) {
7557 int err;
7558
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007559 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007560 if (err)
7561 return err;
7562
Ingo Molnarc5905af2012-02-24 08:31:31 +01007563 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007564 event->destroy = sw_perf_event_destroy;
7565 }
7566
7567 return 0;
7568}
7569
7570static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007571 .task_ctx_nr = perf_sw_context,
7572
Peter Zijlstra34f43922015-02-20 14:05:38 +01007573 .capabilities = PERF_PMU_CAP_NO_NMI,
7574
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007575 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007576 .add = perf_swevent_add,
7577 .del = perf_swevent_del,
7578 .start = perf_swevent_start,
7579 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007580 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007581};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007582
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007583#ifdef CONFIG_EVENT_TRACING
7584
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007585static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007586 struct perf_sample_data *data)
7587{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007588 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007589
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007590 /* only top level events have filters set */
7591 if (event->parent)
7592 event = event->parent;
7593
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007594 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7595 return 1;
7596 return 0;
7597}
7598
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007599static int perf_tp_event_match(struct perf_event *event,
7600 struct perf_sample_data *data,
7601 struct pt_regs *regs)
7602{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007603 if (event->hw.state & PERF_HES_STOPPED)
7604 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007605 /*
7606 * All tracepoints are from kernel-space.
7607 */
7608 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007609 return 0;
7610
7611 if (!perf_tp_filter_match(event, data))
7612 return 0;
7613
7614 return 1;
7615}
7616
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007617void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7618 struct trace_event_call *call, u64 count,
7619 struct pt_regs *regs, struct hlist_head *head,
7620 struct task_struct *task)
7621{
7622 struct bpf_prog *prog = call->prog;
7623
7624 if (prog) {
7625 *(struct pt_regs **)raw_data = regs;
7626 if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) {
7627 perf_swevent_put_recursion_context(rctx);
7628 return;
7629 }
7630 }
7631 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
7632 rctx, task);
7633}
7634EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7635
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007636void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007637 struct pt_regs *regs, struct hlist_head *head, int rctx,
7638 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007639{
7640 struct perf_sample_data data;
7641 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007642
7643 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007644 .frag = {
7645 .size = entry_size,
7646 .data = record,
7647 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007648 };
7649
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007650 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007651 data.raw = &raw;
7652
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007653 perf_trace_buf_update(record, event_type);
7654
Sasha Levinb67bfe02013-02-27 17:06:00 -08007655 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007656 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007657 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007658 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007659
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007660 /*
7661 * If we got specified a target task, also iterate its context and
7662 * deliver this event there too.
7663 */
7664 if (task && task != current) {
7665 struct perf_event_context *ctx;
7666 struct trace_entry *entry = record;
7667
7668 rcu_read_lock();
7669 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7670 if (!ctx)
7671 goto unlock;
7672
7673 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7674 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7675 continue;
7676 if (event->attr.config != entry->type)
7677 continue;
7678 if (perf_tp_event_match(event, &data, regs))
7679 perf_swevent_event(event, count, &data, regs);
7680 }
7681unlock:
7682 rcu_read_unlock();
7683 }
7684
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007685 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007686}
7687EXPORT_SYMBOL_GPL(perf_tp_event);
7688
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007689static void tp_perf_event_destroy(struct perf_event *event)
7690{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007691 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007692}
7693
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007694static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007695{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007696 int err;
7697
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007698 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7699 return -ENOENT;
7700
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007701 /*
7702 * no branch sampling for tracepoint events
7703 */
7704 if (has_branch_stack(event))
7705 return -EOPNOTSUPP;
7706
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007707 err = perf_trace_init(event);
7708 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007709 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007710
7711 event->destroy = tp_perf_event_destroy;
7712
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007713 return 0;
7714}
7715
7716static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007717 .task_ctx_nr = perf_sw_context,
7718
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007719 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007720 .add = perf_trace_add,
7721 .del = perf_trace_del,
7722 .start = perf_swevent_start,
7723 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007724 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007725};
7726
7727static inline void perf_tp_register(void)
7728{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007729 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007730}
Li Zefan6fb29152009-10-15 11:21:42 +08007731
Li Zefan6fb29152009-10-15 11:21:42 +08007732static void perf_event_free_filter(struct perf_event *event)
7733{
7734 ftrace_profile_free_filter(event);
7735}
7736
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007737#ifdef CONFIG_BPF_SYSCALL
7738static void bpf_overflow_handler(struct perf_event *event,
7739 struct perf_sample_data *data,
7740 struct pt_regs *regs)
7741{
7742 struct bpf_perf_event_data_kern ctx = {
7743 .data = data,
7744 .regs = regs,
7745 };
7746 int ret = 0;
7747
7748 preempt_disable();
7749 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
7750 goto out;
7751 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01007752 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007753 rcu_read_unlock();
7754out:
7755 __this_cpu_dec(bpf_prog_active);
7756 preempt_enable();
7757 if (!ret)
7758 return;
7759
7760 event->orig_overflow_handler(event, data, regs);
7761}
7762
7763static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7764{
7765 struct bpf_prog *prog;
7766
7767 if (event->overflow_handler_context)
7768 /* hw breakpoint or kernel counter */
7769 return -EINVAL;
7770
7771 if (event->prog)
7772 return -EEXIST;
7773
7774 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
7775 if (IS_ERR(prog))
7776 return PTR_ERR(prog);
7777
7778 event->prog = prog;
7779 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
7780 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
7781 return 0;
7782}
7783
7784static void perf_event_free_bpf_handler(struct perf_event *event)
7785{
7786 struct bpf_prog *prog = event->prog;
7787
7788 if (!prog)
7789 return;
7790
7791 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
7792 event->prog = NULL;
7793 bpf_prog_put(prog);
7794}
7795#else
7796static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7797{
7798 return -EOPNOTSUPP;
7799}
7800static void perf_event_free_bpf_handler(struct perf_event *event)
7801{
7802}
7803#endif
7804
Alexei Starovoitov25415172015-03-25 12:49:20 -07007805static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7806{
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007807 bool is_kprobe, is_tracepoint;
Alexei Starovoitov25415172015-03-25 12:49:20 -07007808 struct bpf_prog *prog;
7809
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007810 if (event->attr.type == PERF_TYPE_HARDWARE ||
7811 event->attr.type == PERF_TYPE_SOFTWARE)
7812 return perf_event_set_bpf_handler(event, prog_fd);
7813
Alexei Starovoitov25415172015-03-25 12:49:20 -07007814 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7815 return -EINVAL;
7816
7817 if (event->tp_event->prog)
7818 return -EEXIST;
7819
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007820 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
7821 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
7822 if (!is_kprobe && !is_tracepoint)
7823 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007824 return -EINVAL;
7825
7826 prog = bpf_prog_get(prog_fd);
7827 if (IS_ERR(prog))
7828 return PTR_ERR(prog);
7829
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007830 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
7831 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007832 /* valid fd, but invalid bpf program type */
7833 bpf_prog_put(prog);
7834 return -EINVAL;
7835 }
7836
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07007837 if (is_tracepoint) {
7838 int off = trace_event_get_offsets(event->tp_event);
7839
7840 if (prog->aux->max_ctx_offset > off) {
7841 bpf_prog_put(prog);
7842 return -EACCES;
7843 }
7844 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07007845 event->tp_event->prog = prog;
7846
7847 return 0;
7848}
7849
7850static void perf_event_free_bpf_prog(struct perf_event *event)
7851{
7852 struct bpf_prog *prog;
7853
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007854 perf_event_free_bpf_handler(event);
7855
Alexei Starovoitov25415172015-03-25 12:49:20 -07007856 if (!event->tp_event)
7857 return;
7858
7859 prog = event->tp_event->prog;
7860 if (prog) {
7861 event->tp_event->prog = NULL;
Daniel Borkmann1aacde32016-06-30 17:24:43 +02007862 bpf_prog_put(prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07007863 }
7864}
7865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007866#else
Li Zefan6fb29152009-10-15 11:21:42 +08007867
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007868static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007869{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007870}
Li Zefan6fb29152009-10-15 11:21:42 +08007871
Li Zefan6fb29152009-10-15 11:21:42 +08007872static void perf_event_free_filter(struct perf_event *event)
7873{
7874}
7875
Alexei Starovoitov25415172015-03-25 12:49:20 -07007876static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7877{
7878 return -ENOENT;
7879}
7880
7881static void perf_event_free_bpf_prog(struct perf_event *event)
7882{
7883}
Li Zefan07b139c2009-12-21 14:27:35 +08007884#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007885
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007886#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007887void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007888{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007889 struct perf_sample_data sample;
7890 struct pt_regs *regs = data;
7891
Robert Richterfd0d0002012-04-02 20:19:08 +02007892 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007893
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007894 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007895 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007896}
7897#endif
7898
Alexander Shishkin375637b2016-04-27 18:44:46 +03007899/*
7900 * Allocate a new address filter
7901 */
7902static struct perf_addr_filter *
7903perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
7904{
7905 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
7906 struct perf_addr_filter *filter;
7907
7908 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
7909 if (!filter)
7910 return NULL;
7911
7912 INIT_LIST_HEAD(&filter->entry);
7913 list_add_tail(&filter->entry, filters);
7914
7915 return filter;
7916}
7917
7918static void free_filters_list(struct list_head *filters)
7919{
7920 struct perf_addr_filter *filter, *iter;
7921
7922 list_for_each_entry_safe(filter, iter, filters, entry) {
7923 if (filter->inode)
7924 iput(filter->inode);
7925 list_del(&filter->entry);
7926 kfree(filter);
7927 }
7928}
7929
7930/*
7931 * Free existing address filters and optionally install new ones
7932 */
7933static void perf_addr_filters_splice(struct perf_event *event,
7934 struct list_head *head)
7935{
7936 unsigned long flags;
7937 LIST_HEAD(list);
7938
7939 if (!has_addr_filter(event))
7940 return;
7941
7942 /* don't bother with children, they don't have their own filters */
7943 if (event->parent)
7944 return;
7945
7946 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
7947
7948 list_splice_init(&event->addr_filters.list, &list);
7949 if (head)
7950 list_splice(head, &event->addr_filters.list);
7951
7952 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
7953
7954 free_filters_list(&list);
7955}
7956
7957/*
7958 * Scan through mm's vmas and see if one of them matches the
7959 * @filter; if so, adjust filter's address range.
7960 * Called with mm::mmap_sem down for reading.
7961 */
7962static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
7963 struct mm_struct *mm)
7964{
7965 struct vm_area_struct *vma;
7966
7967 for (vma = mm->mmap; vma; vma = vma->vm_next) {
7968 struct file *file = vma->vm_file;
7969 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7970 unsigned long vma_size = vma->vm_end - vma->vm_start;
7971
7972 if (!file)
7973 continue;
7974
7975 if (!perf_addr_filter_match(filter, file, off, vma_size))
7976 continue;
7977
7978 return vma->vm_start;
7979 }
7980
7981 return 0;
7982}
7983
7984/*
7985 * Update event's address range filters based on the
7986 * task's existing mappings, if any.
7987 */
7988static void perf_event_addr_filters_apply(struct perf_event *event)
7989{
7990 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7991 struct task_struct *task = READ_ONCE(event->ctx->task);
7992 struct perf_addr_filter *filter;
7993 struct mm_struct *mm = NULL;
7994 unsigned int count = 0;
7995 unsigned long flags;
7996
7997 /*
7998 * We may observe TASK_TOMBSTONE, which means that the event tear-down
7999 * will stop on the parent's child_mutex that our caller is also holding
8000 */
8001 if (task == TASK_TOMBSTONE)
8002 return;
8003
8004 mm = get_task_mm(event->ctx->task);
8005 if (!mm)
8006 goto restart;
8007
8008 down_read(&mm->mmap_sem);
8009
8010 raw_spin_lock_irqsave(&ifh->lock, flags);
8011 list_for_each_entry(filter, &ifh->list, entry) {
8012 event->addr_filters_offs[count] = 0;
8013
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008014 /*
8015 * Adjust base offset if the filter is associated to a binary
8016 * that needs to be mapped:
8017 */
8018 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008019 event->addr_filters_offs[count] =
8020 perf_addr_filter_apply(filter, mm);
8021
8022 count++;
8023 }
8024
8025 event->addr_filters_gen++;
8026 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8027
8028 up_read(&mm->mmap_sem);
8029
8030 mmput(mm);
8031
8032restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008033 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008034}
8035
8036/*
8037 * Address range filtering: limiting the data to certain
8038 * instruction address ranges. Filters are ioctl()ed to us from
8039 * userspace as ascii strings.
8040 *
8041 * Filter string format:
8042 *
8043 * ACTION RANGE_SPEC
8044 * where ACTION is one of the
8045 * * "filter": limit the trace to this region
8046 * * "start": start tracing from this address
8047 * * "stop": stop tracing at this address/region;
8048 * RANGE_SPEC is
8049 * * for kernel addresses: <start address>[/<size>]
8050 * * for object files: <start address>[/<size>]@</path/to/object/file>
8051 *
8052 * if <size> is not specified, the range is treated as a single address.
8053 */
8054enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008055 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008056 IF_ACT_FILTER,
8057 IF_ACT_START,
8058 IF_ACT_STOP,
8059 IF_SRC_FILE,
8060 IF_SRC_KERNEL,
8061 IF_SRC_FILEADDR,
8062 IF_SRC_KERNELADDR,
8063};
8064
8065enum {
8066 IF_STATE_ACTION = 0,
8067 IF_STATE_SOURCE,
8068 IF_STATE_END,
8069};
8070
8071static const match_table_t if_tokens = {
8072 { IF_ACT_FILTER, "filter" },
8073 { IF_ACT_START, "start" },
8074 { IF_ACT_STOP, "stop" },
8075 { IF_SRC_FILE, "%u/%u@%s" },
8076 { IF_SRC_KERNEL, "%u/%u" },
8077 { IF_SRC_FILEADDR, "%u@%s" },
8078 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008079 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008080};
8081
8082/*
8083 * Address filter string parser
8084 */
8085static int
8086perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8087 struct list_head *filters)
8088{
8089 struct perf_addr_filter *filter = NULL;
8090 char *start, *orig, *filename = NULL;
8091 struct path path;
8092 substring_t args[MAX_OPT_ARGS];
8093 int state = IF_STATE_ACTION, token;
8094 unsigned int kernel = 0;
8095 int ret = -EINVAL;
8096
8097 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8098 if (!fstr)
8099 return -ENOMEM;
8100
8101 while ((start = strsep(&fstr, " ,\n")) != NULL) {
8102 ret = -EINVAL;
8103
8104 if (!*start)
8105 continue;
8106
8107 /* filter definition begins */
8108 if (state == IF_STATE_ACTION) {
8109 filter = perf_addr_filter_new(event, filters);
8110 if (!filter)
8111 goto fail;
8112 }
8113
8114 token = match_token(start, if_tokens, args);
8115 switch (token) {
8116 case IF_ACT_FILTER:
8117 case IF_ACT_START:
8118 filter->filter = 1;
8119
8120 case IF_ACT_STOP:
8121 if (state != IF_STATE_ACTION)
8122 goto fail;
8123
8124 state = IF_STATE_SOURCE;
8125 break;
8126
8127 case IF_SRC_KERNELADDR:
8128 case IF_SRC_KERNEL:
8129 kernel = 1;
8130
8131 case IF_SRC_FILEADDR:
8132 case IF_SRC_FILE:
8133 if (state != IF_STATE_SOURCE)
8134 goto fail;
8135
8136 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8137 filter->range = 1;
8138
8139 *args[0].to = 0;
8140 ret = kstrtoul(args[0].from, 0, &filter->offset);
8141 if (ret)
8142 goto fail;
8143
8144 if (filter->range) {
8145 *args[1].to = 0;
8146 ret = kstrtoul(args[1].from, 0, &filter->size);
8147 if (ret)
8148 goto fail;
8149 }
8150
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008151 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8152 int fpos = filter->range ? 2 : 1;
8153
8154 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008155 if (!filename) {
8156 ret = -ENOMEM;
8157 goto fail;
8158 }
8159 }
8160
8161 state = IF_STATE_END;
8162 break;
8163
8164 default:
8165 goto fail;
8166 }
8167
8168 /*
8169 * Filter definition is fully parsed, validate and install it.
8170 * Make sure that it doesn't contradict itself or the event's
8171 * attribute.
8172 */
8173 if (state == IF_STATE_END) {
8174 if (kernel && event->attr.exclude_kernel)
8175 goto fail;
8176
8177 if (!kernel) {
8178 if (!filename)
8179 goto fail;
8180
8181 /* look up the path and grab its inode */
8182 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8183 if (ret)
8184 goto fail_free_name;
8185
8186 filter->inode = igrab(d_inode(path.dentry));
8187 path_put(&path);
8188 kfree(filename);
8189 filename = NULL;
8190
8191 ret = -EINVAL;
8192 if (!filter->inode ||
8193 !S_ISREG(filter->inode->i_mode))
8194 /* free_filters_list() will iput() */
8195 goto fail;
8196 }
8197
8198 /* ready to consume more filters */
8199 state = IF_STATE_ACTION;
8200 filter = NULL;
8201 }
8202 }
8203
8204 if (state != IF_STATE_ACTION)
8205 goto fail;
8206
8207 kfree(orig);
8208
8209 return 0;
8210
8211fail_free_name:
8212 kfree(filename);
8213fail:
8214 free_filters_list(filters);
8215 kfree(orig);
8216
8217 return ret;
8218}
8219
8220static int
8221perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8222{
8223 LIST_HEAD(filters);
8224 int ret;
8225
8226 /*
8227 * Since this is called in perf_ioctl() path, we're already holding
8228 * ctx::mutex.
8229 */
8230 lockdep_assert_held(&event->ctx->mutex);
8231
8232 if (WARN_ON_ONCE(event->parent))
8233 return -EINVAL;
8234
8235 /*
8236 * For now, we only support filtering in per-task events; doing so
8237 * for CPU-wide events requires additional context switching trickery,
8238 * since same object code will be mapped at different virtual
8239 * addresses in different processes.
8240 */
8241 if (!event->ctx->task)
8242 return -EOPNOTSUPP;
8243
8244 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8245 if (ret)
8246 return ret;
8247
8248 ret = event->pmu->addr_filters_validate(&filters);
8249 if (ret) {
8250 free_filters_list(&filters);
8251 return ret;
8252 }
8253
8254 /* remove existing filters, if any */
8255 perf_addr_filters_splice(event, &filters);
8256
8257 /* install new filters */
8258 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8259
8260 return ret;
8261}
8262
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008263static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8264{
8265 char *filter_str;
8266 int ret = -EINVAL;
8267
Alexander Shishkin375637b2016-04-27 18:44:46 +03008268 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8269 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8270 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008271 return -EINVAL;
8272
8273 filter_str = strndup_user(arg, PAGE_SIZE);
8274 if (IS_ERR(filter_str))
8275 return PTR_ERR(filter_str);
8276
8277 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8278 event->attr.type == PERF_TYPE_TRACEPOINT)
8279 ret = ftrace_profile_set_filter(event, event->attr.config,
8280 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008281 else if (has_addr_filter(event))
8282 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008283
8284 kfree(filter_str);
8285 return ret;
8286}
8287
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008288/*
8289 * hrtimer based swevent callback
8290 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008291
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008292static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008293{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008294 enum hrtimer_restart ret = HRTIMER_RESTART;
8295 struct perf_sample_data data;
8296 struct pt_regs *regs;
8297 struct perf_event *event;
8298 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008299
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008300 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008301
8302 if (event->state != PERF_EVENT_STATE_ACTIVE)
8303 return HRTIMER_NORESTART;
8304
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008305 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008306
Robert Richterfd0d0002012-04-02 20:19:08 +02008307 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008308 regs = get_irq_regs();
8309
8310 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008311 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008312 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008313 ret = HRTIMER_NORESTART;
8314 }
8315
8316 period = max_t(u64, 10000, event->hw.sample_period);
8317 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8318
8319 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008320}
8321
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008322static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008323{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008324 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008325 s64 period;
8326
8327 if (!is_sampling_event(event))
8328 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008329
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008330 period = local64_read(&hwc->period_left);
8331 if (period) {
8332 if (period < 0)
8333 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008334
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008335 local64_set(&hwc->period_left, 0);
8336 } else {
8337 period = max_t(u64, 10000, hwc->sample_period);
8338 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008339 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8340 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008341}
8342
8343static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8344{
8345 struct hw_perf_event *hwc = &event->hw;
8346
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008347 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008348 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008349 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008350
8351 hrtimer_cancel(&hwc->hrtimer);
8352 }
8353}
8354
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008355static void perf_swevent_init_hrtimer(struct perf_event *event)
8356{
8357 struct hw_perf_event *hwc = &event->hw;
8358
8359 if (!is_sampling_event(event))
8360 return;
8361
8362 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8363 hwc->hrtimer.function = perf_swevent_hrtimer;
8364
8365 /*
8366 * Since hrtimers have a fixed rate, we can do a static freq->period
8367 * mapping and avoid the whole period adjust feedback stuff.
8368 */
8369 if (event->attr.freq) {
8370 long freq = event->attr.sample_freq;
8371
8372 event->attr.sample_period = NSEC_PER_SEC / freq;
8373 hwc->sample_period = event->attr.sample_period;
8374 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008375 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008376 event->attr.freq = 0;
8377 }
8378}
8379
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008380/*
8381 * Software event: cpu wall time clock
8382 */
8383
8384static void cpu_clock_event_update(struct perf_event *event)
8385{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008386 s64 prev;
8387 u64 now;
8388
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008389 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008390 prev = local64_xchg(&event->hw.prev_count, now);
8391 local64_add(now - prev, &event->count);
8392}
8393
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008394static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008395{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008396 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008397 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008398}
8399
8400static void cpu_clock_event_stop(struct perf_event *event, int flags)
8401{
8402 perf_swevent_cancel_hrtimer(event);
8403 cpu_clock_event_update(event);
8404}
8405
8406static int cpu_clock_event_add(struct perf_event *event, int flags)
8407{
8408 if (flags & PERF_EF_START)
8409 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008410 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008411
8412 return 0;
8413}
8414
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008415static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008416{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008417 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008418}
8419
8420static void cpu_clock_event_read(struct perf_event *event)
8421{
8422 cpu_clock_event_update(event);
8423}
8424
8425static int cpu_clock_event_init(struct perf_event *event)
8426{
8427 if (event->attr.type != PERF_TYPE_SOFTWARE)
8428 return -ENOENT;
8429
8430 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8431 return -ENOENT;
8432
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008433 /*
8434 * no branch sampling for software events
8435 */
8436 if (has_branch_stack(event))
8437 return -EOPNOTSUPP;
8438
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008439 perf_swevent_init_hrtimer(event);
8440
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008441 return 0;
8442}
8443
8444static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008445 .task_ctx_nr = perf_sw_context,
8446
Peter Zijlstra34f43922015-02-20 14:05:38 +01008447 .capabilities = PERF_PMU_CAP_NO_NMI,
8448
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008449 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008450 .add = cpu_clock_event_add,
8451 .del = cpu_clock_event_del,
8452 .start = cpu_clock_event_start,
8453 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008454 .read = cpu_clock_event_read,
8455};
8456
8457/*
8458 * Software event: task time clock
8459 */
8460
8461static void task_clock_event_update(struct perf_event *event, u64 now)
8462{
8463 u64 prev;
8464 s64 delta;
8465
8466 prev = local64_xchg(&event->hw.prev_count, now);
8467 delta = now - prev;
8468 local64_add(delta, &event->count);
8469}
8470
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008471static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008472{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008473 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008474 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008475}
8476
8477static void task_clock_event_stop(struct perf_event *event, int flags)
8478{
8479 perf_swevent_cancel_hrtimer(event);
8480 task_clock_event_update(event, event->ctx->time);
8481}
8482
8483static int task_clock_event_add(struct perf_event *event, int flags)
8484{
8485 if (flags & PERF_EF_START)
8486 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008487 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008488
8489 return 0;
8490}
8491
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008492static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008493{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008494 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008495}
8496
8497static void task_clock_event_read(struct perf_event *event)
8498{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008499 u64 now = perf_clock();
8500 u64 delta = now - event->ctx->timestamp;
8501 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008502
8503 task_clock_event_update(event, time);
8504}
8505
8506static int task_clock_event_init(struct perf_event *event)
8507{
8508 if (event->attr.type != PERF_TYPE_SOFTWARE)
8509 return -ENOENT;
8510
8511 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8512 return -ENOENT;
8513
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008514 /*
8515 * no branch sampling for software events
8516 */
8517 if (has_branch_stack(event))
8518 return -EOPNOTSUPP;
8519
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008520 perf_swevent_init_hrtimer(event);
8521
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008522 return 0;
8523}
8524
8525static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008526 .task_ctx_nr = perf_sw_context,
8527
Peter Zijlstra34f43922015-02-20 14:05:38 +01008528 .capabilities = PERF_PMU_CAP_NO_NMI,
8529
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008530 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008531 .add = task_clock_event_add,
8532 .del = task_clock_event_del,
8533 .start = task_clock_event_start,
8534 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008535 .read = task_clock_event_read,
8536};
8537
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008538static void perf_pmu_nop_void(struct pmu *pmu)
8539{
8540}
8541
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008542static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8543{
8544}
8545
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008546static int perf_pmu_nop_int(struct pmu *pmu)
8547{
8548 return 0;
8549}
8550
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008551static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008552
8553static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008554{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008555 __this_cpu_write(nop_txn_flags, flags);
8556
8557 if (flags & ~PERF_PMU_TXN_ADD)
8558 return;
8559
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008560 perf_pmu_disable(pmu);
8561}
8562
8563static int perf_pmu_commit_txn(struct pmu *pmu)
8564{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008565 unsigned int flags = __this_cpu_read(nop_txn_flags);
8566
8567 __this_cpu_write(nop_txn_flags, 0);
8568
8569 if (flags & ~PERF_PMU_TXN_ADD)
8570 return 0;
8571
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008572 perf_pmu_enable(pmu);
8573 return 0;
8574}
8575
8576static void perf_pmu_cancel_txn(struct pmu *pmu)
8577{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008578 unsigned int flags = __this_cpu_read(nop_txn_flags);
8579
8580 __this_cpu_write(nop_txn_flags, 0);
8581
8582 if (flags & ~PERF_PMU_TXN_ADD)
8583 return;
8584
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008585 perf_pmu_enable(pmu);
8586}
8587
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008588static int perf_event_idx_default(struct perf_event *event)
8589{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008590 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008591}
8592
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008593/*
8594 * Ensures all contexts with the same task_ctx_nr have the same
8595 * pmu_cpu_context too.
8596 */
Mark Rutland9e317042014-02-10 17:44:18 +00008597static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008598{
8599 struct pmu *pmu;
8600
8601 if (ctxn < 0)
8602 return NULL;
8603
8604 list_for_each_entry(pmu, &pmus, entry) {
8605 if (pmu->task_ctx_nr == ctxn)
8606 return pmu->pmu_cpu_context;
8607 }
8608
8609 return NULL;
8610}
8611
Peter Zijlstra51676952010-12-07 14:18:20 +01008612static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008613{
Peter Zijlstra51676952010-12-07 14:18:20 +01008614 int cpu;
8615
8616 for_each_possible_cpu(cpu) {
8617 struct perf_cpu_context *cpuctx;
8618
8619 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8620
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008621 if (cpuctx->unique_pmu == old_pmu)
8622 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01008623 }
8624}
8625
8626static void free_pmu_context(struct pmu *pmu)
8627{
8628 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008629
8630 mutex_lock(&pmus_lock);
8631 /*
8632 * Like a real lame refcount.
8633 */
Peter Zijlstra51676952010-12-07 14:18:20 +01008634 list_for_each_entry(i, &pmus, entry) {
8635 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
8636 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008637 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01008638 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008639 }
8640
Peter Zijlstra51676952010-12-07 14:18:20 +01008641 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008642out:
8643 mutex_unlock(&pmus_lock);
8644}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008645
8646/*
8647 * Let userspace know that this PMU supports address range filtering:
8648 */
8649static ssize_t nr_addr_filters_show(struct device *dev,
8650 struct device_attribute *attr,
8651 char *page)
8652{
8653 struct pmu *pmu = dev_get_drvdata(dev);
8654
8655 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8656}
8657DEVICE_ATTR_RO(nr_addr_filters);
8658
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008659static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008660
Peter Zijlstraabe43402010-11-17 23:17:37 +01008661static ssize_t
8662type_show(struct device *dev, struct device_attribute *attr, char *page)
8663{
8664 struct pmu *pmu = dev_get_drvdata(dev);
8665
8666 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8667}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008668static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008669
Stephane Eranian62b85632013-04-03 14:21:34 +02008670static ssize_t
8671perf_event_mux_interval_ms_show(struct device *dev,
8672 struct device_attribute *attr,
8673 char *page)
8674{
8675 struct pmu *pmu = dev_get_drvdata(dev);
8676
8677 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8678}
8679
Peter Zijlstra272325c2015-04-15 11:41:58 +02008680static DEFINE_MUTEX(mux_interval_mutex);
8681
Stephane Eranian62b85632013-04-03 14:21:34 +02008682static ssize_t
8683perf_event_mux_interval_ms_store(struct device *dev,
8684 struct device_attribute *attr,
8685 const char *buf, size_t count)
8686{
8687 struct pmu *pmu = dev_get_drvdata(dev);
8688 int timer, cpu, ret;
8689
8690 ret = kstrtoint(buf, 0, &timer);
8691 if (ret)
8692 return ret;
8693
8694 if (timer < 1)
8695 return -EINVAL;
8696
8697 /* same value, noting to do */
8698 if (timer == pmu->hrtimer_interval_ms)
8699 return count;
8700
Peter Zijlstra272325c2015-04-15 11:41:58 +02008701 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008702 pmu->hrtimer_interval_ms = timer;
8703
8704 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02008705 get_online_cpus();
8706 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008707 struct perf_cpu_context *cpuctx;
8708 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8709 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8710
Peter Zijlstra272325c2015-04-15 11:41:58 +02008711 cpu_function_call(cpu,
8712 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02008713 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02008714 put_online_cpus();
8715 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008716
8717 return count;
8718}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008719static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02008720
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008721static struct attribute *pmu_dev_attrs[] = {
8722 &dev_attr_type.attr,
8723 &dev_attr_perf_event_mux_interval_ms.attr,
8724 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008725};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008726ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008727
8728static int pmu_bus_running;
8729static struct bus_type pmu_bus = {
8730 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008731 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008732};
8733
8734static void pmu_dev_release(struct device *dev)
8735{
8736 kfree(dev);
8737}
8738
8739static int pmu_dev_alloc(struct pmu *pmu)
8740{
8741 int ret = -ENOMEM;
8742
8743 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
8744 if (!pmu->dev)
8745 goto out;
8746
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01008747 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01008748 device_initialize(pmu->dev);
8749 ret = dev_set_name(pmu->dev, "%s", pmu->name);
8750 if (ret)
8751 goto free_dev;
8752
8753 dev_set_drvdata(pmu->dev, pmu);
8754 pmu->dev->bus = &pmu_bus;
8755 pmu->dev->release = pmu_dev_release;
8756 ret = device_add(pmu->dev);
8757 if (ret)
8758 goto free_dev;
8759
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008760 /* For PMUs with address filters, throw in an extra attribute: */
8761 if (pmu->nr_addr_filters)
8762 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
8763
8764 if (ret)
8765 goto del_dev;
8766
Peter Zijlstraabe43402010-11-17 23:17:37 +01008767out:
8768 return ret;
8769
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008770del_dev:
8771 device_del(pmu->dev);
8772
Peter Zijlstraabe43402010-11-17 23:17:37 +01008773free_dev:
8774 put_device(pmu->dev);
8775 goto out;
8776}
8777
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008778static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008779static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008780
Mischa Jonker03d8e802013-06-04 11:45:48 +02008781int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008782{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008783 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008784
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008785 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008786 ret = -ENOMEM;
8787 pmu->pmu_disable_count = alloc_percpu(int);
8788 if (!pmu->pmu_disable_count)
8789 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008790
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008791 pmu->type = -1;
8792 if (!name)
8793 goto skip_type;
8794 pmu->name = name;
8795
8796 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08008797 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
8798 if (type < 0) {
8799 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008800 goto free_pdc;
8801 }
8802 }
8803 pmu->type = type;
8804
Peter Zijlstraabe43402010-11-17 23:17:37 +01008805 if (pmu_bus_running) {
8806 ret = pmu_dev_alloc(pmu);
8807 if (ret)
8808 goto free_idr;
8809 }
8810
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008811skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01008812 if (pmu->task_ctx_nr == perf_hw_context) {
8813 static int hw_context_taken = 0;
8814
Mark Rutland5101ef22016-04-26 11:33:46 +01008815 /*
8816 * Other than systems with heterogeneous CPUs, it never makes
8817 * sense for two PMUs to share perf_hw_context. PMUs which are
8818 * uncore must use perf_invalid_context.
8819 */
8820 if (WARN_ON_ONCE(hw_context_taken &&
8821 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01008822 pmu->task_ctx_nr = perf_invalid_context;
8823
8824 hw_context_taken = 1;
8825 }
8826
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008827 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
8828 if (pmu->pmu_cpu_context)
8829 goto got_cpu_context;
8830
Wei Yongjunc4814202013-04-12 11:05:54 +08008831 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008832 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
8833 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01008834 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008835
8836 for_each_possible_cpu(cpu) {
8837 struct perf_cpu_context *cpuctx;
8838
8839 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02008840 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008841 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008842 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008843 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02008844
Peter Zijlstra272325c2015-04-15 11:41:58 +02008845 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02008846
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008847 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008848 }
8849
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008850got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008851 if (!pmu->start_txn) {
8852 if (pmu->pmu_enable) {
8853 /*
8854 * If we have pmu_enable/pmu_disable calls, install
8855 * transaction stubs that use that to try and batch
8856 * hardware accesses.
8857 */
8858 pmu->start_txn = perf_pmu_start_txn;
8859 pmu->commit_txn = perf_pmu_commit_txn;
8860 pmu->cancel_txn = perf_pmu_cancel_txn;
8861 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008862 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008863 pmu->commit_txn = perf_pmu_nop_int;
8864 pmu->cancel_txn = perf_pmu_nop_void;
8865 }
8866 }
8867
8868 if (!pmu->pmu_enable) {
8869 pmu->pmu_enable = perf_pmu_nop_void;
8870 pmu->pmu_disable = perf_pmu_nop_void;
8871 }
8872
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008873 if (!pmu->event_idx)
8874 pmu->event_idx = perf_event_idx_default;
8875
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008876 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008877 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008878 ret = 0;
8879unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008880 mutex_unlock(&pmus_lock);
8881
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008882 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008883
Peter Zijlstraabe43402010-11-17 23:17:37 +01008884free_dev:
8885 device_del(pmu->dev);
8886 put_device(pmu->dev);
8887
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008888free_idr:
8889 if (pmu->type >= PERF_TYPE_MAX)
8890 idr_remove(&pmu_idr, pmu->type);
8891
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008892free_pdc:
8893 free_percpu(pmu->pmu_disable_count);
8894 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008895}
Yan, Zhengc464c762014-03-18 16:56:41 +08008896EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008897
8898void perf_pmu_unregister(struct pmu *pmu)
8899{
Jiri Olsa09338402016-10-20 13:10:11 +02008900 int remove_device;
8901
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008902 mutex_lock(&pmus_lock);
Jiri Olsa09338402016-10-20 13:10:11 +02008903 remove_device = pmu_bus_running;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008904 list_del_rcu(&pmu->entry);
8905 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008906
8907 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02008908 * We dereference the pmu list under both SRCU and regular RCU, so
8909 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008910 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008911 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02008912 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008913
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008914 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008915 if (pmu->type >= PERF_TYPE_MAX)
8916 idr_remove(&pmu_idr, pmu->type);
Jiri Olsa09338402016-10-20 13:10:11 +02008917 if (remove_device) {
8918 if (pmu->nr_addr_filters)
8919 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
8920 device_del(pmu->dev);
8921 put_device(pmu->dev);
8922 }
Peter Zijlstra51676952010-12-07 14:18:20 +01008923 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008924}
Yan, Zhengc464c762014-03-18 16:56:41 +08008925EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008926
Mark Rutlandcc34b982015-01-07 14:56:51 +00008927static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
8928{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008929 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00008930 int ret;
8931
8932 if (!try_module_get(pmu->module))
8933 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008934
8935 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02008936 /*
8937 * This ctx->mutex can nest when we're called through
8938 * inheritance. See the perf_event_ctx_lock_nested() comment.
8939 */
8940 ctx = perf_event_ctx_lock_nested(event->group_leader,
8941 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008942 BUG_ON(!ctx);
8943 }
8944
Mark Rutlandcc34b982015-01-07 14:56:51 +00008945 event->pmu = pmu;
8946 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008947
8948 if (ctx)
8949 perf_event_ctx_unlock(event->group_leader, ctx);
8950
Mark Rutlandcc34b982015-01-07 14:56:51 +00008951 if (ret)
8952 module_put(pmu->module);
8953
8954 return ret;
8955}
8956
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008957static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008958{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02008959 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008960 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08008961 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008962
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008963 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008964
8965 rcu_read_lock();
8966 pmu = idr_find(&pmu_idr, event->attr.type);
8967 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08008968 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008969 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08008970 if (ret)
8971 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008972 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08008973 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008974
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008975 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008976 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008977 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008978 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008979
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008980 if (ret != -ENOENT) {
8981 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008982 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008983 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008984 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008985 pmu = ERR_PTR(-ENOENT);
8986unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008987 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008988
8989 return pmu;
8990}
8991
Kan Liangf2fb6be2016-03-23 11:24:37 -07008992static void attach_sb_event(struct perf_event *event)
8993{
8994 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
8995
8996 raw_spin_lock(&pel->lock);
8997 list_add_rcu(&event->sb_list, &pel->list);
8998 raw_spin_unlock(&pel->lock);
8999}
9000
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009001/*
9002 * We keep a list of all !task (and therefore per-cpu) events
9003 * that need to receive side-band records.
9004 *
9005 * This avoids having to scan all the various PMU per-cpu contexts
9006 * looking for them.
9007 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009008static void account_pmu_sb_event(struct perf_event *event)
9009{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009010 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009011 attach_sb_event(event);
9012}
9013
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009014static void account_event_cpu(struct perf_event *event, int cpu)
9015{
9016 if (event->parent)
9017 return;
9018
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009019 if (is_cgroup_event(event))
9020 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9021}
9022
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009023/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9024static void account_freq_event_nohz(void)
9025{
9026#ifdef CONFIG_NO_HZ_FULL
9027 /* Lock so we don't race with concurrent unaccount */
9028 spin_lock(&nr_freq_lock);
9029 if (atomic_inc_return(&nr_freq_events) == 1)
9030 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9031 spin_unlock(&nr_freq_lock);
9032#endif
9033}
9034
9035static void account_freq_event(void)
9036{
9037 if (tick_nohz_full_enabled())
9038 account_freq_event_nohz();
9039 else
9040 atomic_inc(&nr_freq_events);
9041}
9042
9043
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009044static void account_event(struct perf_event *event)
9045{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009046 bool inc = false;
9047
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009048 if (event->parent)
9049 return;
9050
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009051 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009052 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009053 if (event->attr.mmap || event->attr.mmap_data)
9054 atomic_inc(&nr_mmap_events);
9055 if (event->attr.comm)
9056 atomic_inc(&nr_comm_events);
9057 if (event->attr.task)
9058 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009059 if (event->attr.freq)
9060 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009061 if (event->attr.context_switch) {
9062 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009063 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009064 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009065 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009066 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009067 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009068 inc = true;
9069
Peter Zijlstra9107c892016-02-24 18:45:45 +01009070 if (inc) {
9071 if (atomic_inc_not_zero(&perf_sched_count))
9072 goto enabled;
9073
9074 mutex_lock(&perf_sched_mutex);
9075 if (!atomic_read(&perf_sched_count)) {
9076 static_branch_enable(&perf_sched_events);
9077 /*
9078 * Guarantee that all CPUs observe they key change and
9079 * call the perf scheduling hooks before proceeding to
9080 * install events that need them.
9081 */
9082 synchronize_sched();
9083 }
9084 /*
9085 * Now that we have waited for the sync_sched(), allow further
9086 * increments to by-pass the mutex.
9087 */
9088 atomic_inc(&perf_sched_count);
9089 mutex_unlock(&perf_sched_mutex);
9090 }
9091enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009092
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009093 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009094
9095 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009096}
9097
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009098/*
9099 * Allocate and initialize a event structure
9100 */
9101static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009102perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009103 struct task_struct *task,
9104 struct perf_event *group_leader,
9105 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009106 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009107 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009108{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009109 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009110 struct perf_event *event;
9111 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009112 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009113
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009114 if ((unsigned)cpu >= nr_cpu_ids) {
9115 if (!task || cpu != -1)
9116 return ERR_PTR(-EINVAL);
9117 }
9118
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009119 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009120 if (!event)
9121 return ERR_PTR(-ENOMEM);
9122
9123 /*
9124 * Single events are their own group leaders, with an
9125 * empty sibling list:
9126 */
9127 if (!group_leader)
9128 group_leader = event;
9129
9130 mutex_init(&event->child_mutex);
9131 INIT_LIST_HEAD(&event->child_list);
9132
9133 INIT_LIST_HEAD(&event->group_entry);
9134 INIT_LIST_HEAD(&event->event_entry);
9135 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009136 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009137 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009138 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009139 INIT_HLIST_NODE(&event->hlist_entry);
9140
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009142 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009143 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009144
9145 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009146 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009147
Al Viroa6fa9412012-08-20 14:59:25 +01009148 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009149 event->cpu = cpu;
9150 event->attr = *attr;
9151 event->group_leader = group_leader;
9152 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009153 event->oncpu = -1;
9154
9155 event->parent = parent_event;
9156
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009157 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009158 event->id = atomic64_inc_return(&perf_event_id);
9159
9160 event->state = PERF_EVENT_STATE_INACTIVE;
9161
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009162 if (task) {
9163 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009164 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009165 * XXX pmu::event_init needs to know what task to account to
9166 * and we cannot use the ctx information because we need the
9167 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009168 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009169 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009170 }
9171
Peter Zijlstra34f43922015-02-20 14:05:38 +01009172 event->clock = &local_clock;
9173 if (parent_event)
9174 event->clock = parent_event->clock;
9175
Avi Kivity4dc0da82011-06-29 18:42:35 +03009176 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009177 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009178 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +02009179#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009180 if (overflow_handler == bpf_overflow_handler) {
9181 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
9182
9183 if (IS_ERR(prog)) {
9184 err = PTR_ERR(prog);
9185 goto err_ns;
9186 }
9187 event->prog = prog;
9188 event->orig_overflow_handler =
9189 parent_event->orig_overflow_handler;
9190 }
9191#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +03009192 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009193
Wang Nan18794452016-03-28 06:41:30 +00009194 if (overflow_handler) {
9195 event->overflow_handler = overflow_handler;
9196 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009197 } else if (is_write_backward(event)){
9198 event->overflow_handler = perf_event_output_backward;
9199 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009200 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009201 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009202 event->overflow_handler_context = NULL;
9203 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009204
Jiri Olsa0231bb52013-02-01 11:23:45 +01009205 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009206
9207 pmu = NULL;
9208
9209 hwc = &event->hw;
9210 hwc->sample_period = attr->sample_period;
9211 if (attr->freq && attr->sample_freq)
9212 hwc->sample_period = 1;
9213 hwc->last_period = hwc->sample_period;
9214
Peter Zijlstrae7850592010-05-21 14:43:08 +02009215 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009216
9217 /*
9218 * we currently do not support PERF_FORMAT_GROUP on inherited events
9219 */
9220 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009221 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009222
Yan, Zhenga46a2302014-11-04 21:56:06 -05009223 if (!has_branch_stack(event))
9224 event->attr.branch_sample_type = 0;
9225
Matt Fleming79dff512015-01-23 18:45:42 +00009226 if (cgroup_fd != -1) {
9227 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9228 if (err)
9229 goto err_ns;
9230 }
9231
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009232 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009233 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009234 goto err_ns;
9235 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009236 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009237 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009238 }
9239
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009240 err = exclusive_event_init(event);
9241 if (err)
9242 goto err_pmu;
9243
Alexander Shishkin375637b2016-04-27 18:44:46 +03009244 if (has_addr_filter(event)) {
9245 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9246 sizeof(unsigned long),
9247 GFP_KERNEL);
9248 if (!event->addr_filters_offs)
9249 goto err_per_task;
9250
9251 /* force hw sync on the address filters */
9252 event->addr_filters_gen = 1;
9253 }
9254
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009255 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009256 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009257 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009258 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009259 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009260 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009261 }
9262
Alexander Shishkin927a5572016-03-02 13:24:14 +02009263 /* symmetric to unaccount_event() in _free_event() */
9264 account_event(event);
9265
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009266 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009267
Alexander Shishkin375637b2016-04-27 18:44:46 +03009268err_addr_filters:
9269 kfree(event->addr_filters_offs);
9270
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009271err_per_task:
9272 exclusive_event_destroy(event);
9273
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009274err_pmu:
9275 if (event->destroy)
9276 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009277 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009278err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009279 if (is_cgroup_event(event))
9280 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009281 if (event->ns)
9282 put_pid_ns(event->ns);
9283 kfree(event);
9284
9285 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009286}
9287
9288static int perf_copy_attr(struct perf_event_attr __user *uattr,
9289 struct perf_event_attr *attr)
9290{
9291 u32 size;
9292 int ret;
9293
9294 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9295 return -EFAULT;
9296
9297 /*
9298 * zero the full structure, so that a short copy will be nice.
9299 */
9300 memset(attr, 0, sizeof(*attr));
9301
9302 ret = get_user(size, &uattr->size);
9303 if (ret)
9304 return ret;
9305
9306 if (size > PAGE_SIZE) /* silly large */
9307 goto err_size;
9308
9309 if (!size) /* abi compat */
9310 size = PERF_ATTR_SIZE_VER0;
9311
9312 if (size < PERF_ATTR_SIZE_VER0)
9313 goto err_size;
9314
9315 /*
9316 * If we're handed a bigger struct than we know of,
9317 * ensure all the unknown bits are 0 - i.e. new
9318 * user-space does not rely on any kernel feature
9319 * extensions we dont know about yet.
9320 */
9321 if (size > sizeof(*attr)) {
9322 unsigned char __user *addr;
9323 unsigned char __user *end;
9324 unsigned char val;
9325
9326 addr = (void __user *)uattr + sizeof(*attr);
9327 end = (void __user *)uattr + size;
9328
9329 for (; addr < end; addr++) {
9330 ret = get_user(val, addr);
9331 if (ret)
9332 return ret;
9333 if (val)
9334 goto err_size;
9335 }
9336 size = sizeof(*attr);
9337 }
9338
9339 ret = copy_from_user(attr, uattr, size);
9340 if (ret)
9341 return -EFAULT;
9342
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309343 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009344 return -EINVAL;
9345
9346 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9347 return -EINVAL;
9348
9349 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9350 return -EINVAL;
9351
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009352 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9353 u64 mask = attr->branch_sample_type;
9354
9355 /* only using defined bits */
9356 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9357 return -EINVAL;
9358
9359 /* at least one branch bit must be set */
9360 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9361 return -EINVAL;
9362
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009363 /* propagate priv level, when not set for branch */
9364 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9365
9366 /* exclude_kernel checked on syscall entry */
9367 if (!attr->exclude_kernel)
9368 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9369
9370 if (!attr->exclude_user)
9371 mask |= PERF_SAMPLE_BRANCH_USER;
9372
9373 if (!attr->exclude_hv)
9374 mask |= PERF_SAMPLE_BRANCH_HV;
9375 /*
9376 * adjust user setting (for HW filter setup)
9377 */
9378 attr->branch_sample_type = mask;
9379 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009380 /* privileged levels capture (kernel, hv): check permissions */
9381 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009382 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9383 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009384 }
Jiri Olsa40189942012-08-07 15:20:37 +02009385
Jiri Olsac5ebced2012-08-07 15:20:40 +02009386 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009387 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009388 if (ret)
9389 return ret;
9390 }
9391
9392 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9393 if (!arch_perf_have_user_stack_dump())
9394 return -ENOSYS;
9395
9396 /*
9397 * We have __u32 type for the size, but so far
9398 * we can only use __u16 as maximum due to the
9399 * __u16 sample size limit.
9400 */
9401 if (attr->sample_stack_user >= USHRT_MAX)
9402 ret = -EINVAL;
9403 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9404 ret = -EINVAL;
9405 }
Jiri Olsa40189942012-08-07 15:20:37 +02009406
Stephane Eranian60e23642014-09-24 13:48:37 +02009407 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9408 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009409out:
9410 return ret;
9411
9412err_size:
9413 put_user(sizeof(*attr), &uattr->size);
9414 ret = -E2BIG;
9415 goto out;
9416}
9417
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009418static int
9419perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009420{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009421 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009422 int ret = -EINVAL;
9423
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009424 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009425 goto set;
9426
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009427 /* don't allow circular references */
9428 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009429 goto out;
9430
Peter Zijlstra0f139302010-05-20 14:35:15 +02009431 /*
9432 * Don't allow cross-cpu buffers
9433 */
9434 if (output_event->cpu != event->cpu)
9435 goto out;
9436
9437 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009438 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009439 */
9440 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9441 goto out;
9442
Peter Zijlstra34f43922015-02-20 14:05:38 +01009443 /*
9444 * Mixing clocks in the same buffer is trouble you don't need.
9445 */
9446 if (output_event->clock != event->clock)
9447 goto out;
9448
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009449 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009450 * Either writing ring buffer from beginning or from end.
9451 * Mixing is not allowed.
9452 */
9453 if (is_write_backward(output_event) != is_write_backward(event))
9454 goto out;
9455
9456 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009457 * If both events generate aux data, they must be on the same PMU
9458 */
9459 if (has_aux(event) && has_aux(output_event) &&
9460 event->pmu != output_event->pmu)
9461 goto out;
9462
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009463set:
9464 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009465 /* Can't redirect output if we've got an active mmap() */
9466 if (atomic_read(&event->mmap_count))
9467 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009468
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009469 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009470 /* get the rb we want to redirect to */
9471 rb = ring_buffer_get(output_event);
9472 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009473 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009474 }
9475
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009476 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009477
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009478 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009479unlock:
9480 mutex_unlock(&event->mmap_mutex);
9481
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009482out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009483 return ret;
9484}
9485
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009486static void mutex_lock_double(struct mutex *a, struct mutex *b)
9487{
9488 if (b < a)
9489 swap(a, b);
9490
9491 mutex_lock(a);
9492 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9493}
9494
Peter Zijlstra34f43922015-02-20 14:05:38 +01009495static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9496{
9497 bool nmi_safe = false;
9498
9499 switch (clk_id) {
9500 case CLOCK_MONOTONIC:
9501 event->clock = &ktime_get_mono_fast_ns;
9502 nmi_safe = true;
9503 break;
9504
9505 case CLOCK_MONOTONIC_RAW:
9506 event->clock = &ktime_get_raw_fast_ns;
9507 nmi_safe = true;
9508 break;
9509
9510 case CLOCK_REALTIME:
9511 event->clock = &ktime_get_real_ns;
9512 break;
9513
9514 case CLOCK_BOOTTIME:
9515 event->clock = &ktime_get_boot_ns;
9516 break;
9517
9518 case CLOCK_TAI:
9519 event->clock = &ktime_get_tai_ns;
9520 break;
9521
9522 default:
9523 return -EINVAL;
9524 }
9525
9526 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9527 return -EINVAL;
9528
9529 return 0;
9530}
9531
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009532/**
9533 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9534 *
9535 * @attr_uptr: event_id type attributes for monitoring/sampling
9536 * @pid: target pid
9537 * @cpu: target cpu
9538 * @group_fd: group leader event fd
9539 */
9540SYSCALL_DEFINE5(perf_event_open,
9541 struct perf_event_attr __user *, attr_uptr,
9542 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9543{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009544 struct perf_event *group_leader = NULL, *output_event = NULL;
9545 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009546 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009547 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009548 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009549 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009550 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009551 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009552 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009553 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009554 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009555 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009556 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009557
9558 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009559 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009560 return -EINVAL;
9561
9562 err = perf_copy_attr(attr_uptr, &attr);
9563 if (err)
9564 return err;
9565
9566 if (!attr.exclude_kernel) {
9567 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9568 return -EACCES;
9569 }
9570
9571 if (attr.freq) {
9572 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9573 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009574 } else {
9575 if (attr.sample_period & (1ULL << 63))
9576 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009577 }
9578
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009579 if (!attr.sample_max_stack)
9580 attr.sample_max_stack = sysctl_perf_event_max_stack;
9581
Stephane Eraniane5d13672011-02-14 11:20:01 +02009582 /*
9583 * In cgroup mode, the pid argument is used to pass the fd
9584 * opened to the cgroup directory in cgroupfs. The cpu argument
9585 * designates the cpu on which to monitor threads from that
9586 * cgroup.
9587 */
9588 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9589 return -EINVAL;
9590
Yann Droneauda21b0b32014-01-05 21:36:33 +01009591 if (flags & PERF_FLAG_FD_CLOEXEC)
9592 f_flags |= O_CLOEXEC;
9593
9594 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009595 if (event_fd < 0)
9596 return event_fd;
9597
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009598 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009599 err = perf_fget_light(group_fd, &group);
9600 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009601 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009602 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009603 if (flags & PERF_FLAG_FD_OUTPUT)
9604 output_event = group_leader;
9605 if (flags & PERF_FLAG_FD_NO_GROUP)
9606 group_leader = NULL;
9607 }
9608
Stephane Eraniane5d13672011-02-14 11:20:01 +02009609 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009610 task = find_lively_task_by_vpid(pid);
9611 if (IS_ERR(task)) {
9612 err = PTR_ERR(task);
9613 goto err_group_fd;
9614 }
9615 }
9616
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009617 if (task && group_leader &&
9618 group_leader->attr.inherit != attr.inherit) {
9619 err = -EINVAL;
9620 goto err_task;
9621 }
9622
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009623 get_online_cpus();
9624
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009625 if (task) {
9626 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9627 if (err)
9628 goto err_cpus;
9629
9630 /*
9631 * Reuse ptrace permission checks for now.
9632 *
9633 * We must hold cred_guard_mutex across this and any potential
9634 * perf_install_in_context() call for this new event to
9635 * serialize against exec() altering our credentials (and the
9636 * perf_event_exit_task() that could imply).
9637 */
9638 err = -EACCES;
9639 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9640 goto err_cred;
9641 }
9642
Matt Fleming79dff512015-01-23 18:45:42 +00009643 if (flags & PERF_FLAG_PID_CGROUP)
9644 cgroup_fd = pid;
9645
Avi Kivity4dc0da82011-06-29 18:42:35 +03009646 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009647 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009648 if (IS_ERR(event)) {
9649 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009650 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009651 }
9652
Vince Weaver53b25332014-05-16 17:12:12 -04009653 if (is_sampling_event(event)) {
9654 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +05309655 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -04009656 goto err_alloc;
9657 }
9658 }
9659
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009660 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009661 * Special case software events and allow them to be part of
9662 * any hardware group.
9663 */
9664 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009665
Peter Zijlstra34f43922015-02-20 14:05:38 +01009666 if (attr.use_clockid) {
9667 err = perf_event_set_clock(event, attr.clockid);
9668 if (err)
9669 goto err_alloc;
9670 }
9671
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009672 if (pmu->task_ctx_nr == perf_sw_context)
9673 event->event_caps |= PERF_EV_CAP_SOFTWARE;
9674
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009675 if (group_leader &&
9676 (is_software_event(event) != is_software_event(group_leader))) {
9677 if (is_software_event(event)) {
9678 /*
9679 * If event and group_leader are not both a software
9680 * event, and event is, then group leader is not.
9681 *
9682 * Allow the addition of software events to !software
9683 * groups, this is safe because software events never
9684 * fail to schedule.
9685 */
9686 pmu = group_leader->pmu;
9687 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009688 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009689 /*
9690 * In case the group is a pure software group, and we
9691 * try to add a hardware event, move the whole group to
9692 * the hardware context.
9693 */
9694 move_group = 1;
9695 }
9696 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009697
9698 /*
9699 * Get the target context (task or percpu):
9700 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009701 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009702 if (IS_ERR(ctx)) {
9703 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009704 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009705 }
9706
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009707 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
9708 err = -EBUSY;
9709 goto err_context;
9710 }
9711
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009712 /*
9713 * Look up the group leader (we will attach this event to it):
9714 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009715 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009716 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009717
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009718 /*
9719 * Do not allow a recursive hierarchy (this new sibling
9720 * becoming part of another group-sibling):
9721 */
9722 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009723 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01009724
9725 /* All events in a group should have the same clock */
9726 if (group_leader->clock != event->clock)
9727 goto err_context;
9728
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009729 /*
9730 * Do not allow to attach to a group in a different
9731 * task or CPU context:
9732 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009733 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01009734 /*
9735 * Make sure we're both on the same task, or both
9736 * per-cpu events.
9737 */
9738 if (group_leader->ctx->task != ctx->task)
9739 goto err_context;
9740
9741 /*
9742 * Make sure we're both events for the same CPU;
9743 * grouping events for different CPUs is broken; since
9744 * you can never concurrently schedule them anyhow.
9745 */
9746 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009747 goto err_context;
9748 } else {
9749 if (group_leader->ctx != ctx)
9750 goto err_context;
9751 }
9752
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009753 /*
9754 * Only a group leader can be exclusive or pinned
9755 */
9756 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009757 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009758 }
9759
9760 if (output_event) {
9761 err = perf_event_set_output(event, output_event);
9762 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009763 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009764 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009765
Yann Droneauda21b0b32014-01-05 21:36:33 +01009766 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
9767 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009768 if (IS_ERR(event_file)) {
9769 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +02009770 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009771 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04009772 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009773
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009774 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009775 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009776 mutex_lock_double(&gctx->mutex, &ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009777 if (gctx->task == TASK_TOMBSTONE) {
9778 err = -ESRCH;
9779 goto err_locked;
9780 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009781 } else {
9782 mutex_lock(&ctx->mutex);
9783 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009784
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009785 if (ctx->task == TASK_TOMBSTONE) {
9786 err = -ESRCH;
9787 goto err_locked;
9788 }
9789
Peter Zijlstraa7239682015-09-09 19:06:33 +02009790 if (!perf_event_validate_size(event)) {
9791 err = -E2BIG;
9792 goto err_locked;
9793 }
9794
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009795 /*
9796 * Must be under the same ctx::mutex as perf_install_in_context(),
9797 * because we need to serialize with concurrent event creation.
9798 */
9799 if (!exclusive_event_installable(event, ctx)) {
9800 /* exclusive and group stuff are assumed mutually exclusive */
9801 WARN_ON_ONCE(move_group);
9802
9803 err = -EBUSY;
9804 goto err_locked;
9805 }
9806
9807 WARN_ON_ONCE(ctx->parent_ctx);
9808
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009809 /*
9810 * This is the point on no return; we cannot fail hereafter. This is
9811 * where we start modifying current state.
9812 */
9813
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009814 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009815 /*
9816 * See perf_event_ctx_lock() for comments on the details
9817 * of swizzling perf_event::ctx.
9818 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009819 perf_remove_from_context(group_leader, 0);
Jiri Olsa0231bb52013-02-01 11:23:45 +01009820
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009821 list_for_each_entry(sibling, &group_leader->sibling_list,
9822 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009823 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009824 put_ctx(gctx);
9825 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009826
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009827 /*
9828 * Wait for everybody to stop referencing the events through
9829 * the old lists, before installing it on new lists.
9830 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009831 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009832
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009833 /*
9834 * Install the group siblings before the group leader.
9835 *
9836 * Because a group leader will try and install the entire group
9837 * (through the sibling list, which is still in-tact), we can
9838 * end up with siblings installed in the wrong context.
9839 *
9840 * By installing siblings first we NO-OP because they're not
9841 * reachable through the group lists.
9842 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009843 list_for_each_entry(sibling, &group_leader->sibling_list,
9844 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009845 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01009846 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009847 get_ctx(ctx);
9848 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009849
9850 /*
9851 * Removing from the context ends up with disabled
9852 * event. What we want here is event in the initial
9853 * startup state, ready to be add into new context.
9854 */
9855 perf_event__state_init(group_leader);
9856 perf_install_in_context(ctx, group_leader, group_leader->cpu);
9857 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009858
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009859 /*
9860 * Now that all events are installed in @ctx, nothing
9861 * references @gctx anymore, so drop the last reference we have
9862 * on it.
9863 */
9864 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009865 }
9866
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02009867 /*
9868 * Precalculate sample_data sizes; do while holding ctx::mutex such
9869 * that we're serialized against further additions and before
9870 * perf_install_in_context() which is the point the event is active and
9871 * can use these values.
9872 */
9873 perf_event__header_size(event);
9874 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009875
Peter Zijlstra78cd2c72016-01-25 14:08:45 +01009876 event->owner = current;
9877
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08009878 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009879 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009880
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009881 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009882 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009883 mutex_unlock(&ctx->mutex);
9884
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009885 if (task) {
9886 mutex_unlock(&task->signal->cred_guard_mutex);
9887 put_task_struct(task);
9888 }
9889
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009890 put_online_cpus();
9891
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009892 mutex_lock(&current->perf_event_mutex);
9893 list_add_tail(&event->owner_entry, &current->perf_event_list);
9894 mutex_unlock(&current->perf_event_mutex);
9895
Peter Zijlstra8a495422010-05-27 15:47:49 +02009896 /*
9897 * Drop the reference on the group_event after placing the
9898 * new event on the sibling_list. This ensures destruction
9899 * of the group leader will find the pointer to itself in
9900 * perf_group_detach().
9901 */
Al Viro2903ff02012-08-28 12:52:22 -04009902 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009903 fd_install(event_fd, event_file);
9904 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009905
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009906err_locked:
9907 if (move_group)
9908 mutex_unlock(&gctx->mutex);
9909 mutex_unlock(&ctx->mutex);
9910/* err_file: */
9911 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009912err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009913 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04009914 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009915err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +01009916 /*
9917 * If event_file is set, the fput() above will have called ->release()
9918 * and that will take care of freeing the event.
9919 */
9920 if (!event_file)
9921 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009922err_cred:
9923 if (task)
9924 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009925err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009926 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009927err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02009928 if (task)
9929 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009930err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04009931 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009932err_fd:
9933 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009934 return err;
9935}
9936
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009937/**
9938 * perf_event_create_kernel_counter
9939 *
9940 * @attr: attributes of the counter to create
9941 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07009942 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009943 */
9944struct perf_event *
9945perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07009946 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009947 perf_overflow_handler_t overflow_handler,
9948 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009949{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009950 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009951 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009952 int err;
9953
9954 /*
9955 * Get the target context (task or percpu):
9956 */
9957
Avi Kivity4dc0da82011-06-29 18:42:35 +03009958 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009959 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009960 if (IS_ERR(event)) {
9961 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009962 goto err;
9963 }
9964
Jiri Olsaf8697762014-08-01 14:33:01 +02009965 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009966 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +02009967
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009968 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009969 if (IS_ERR(ctx)) {
9970 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009971 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009972 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009973
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009974 WARN_ON_ONCE(ctx->parent_ctx);
9975 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009976 if (ctx->task == TASK_TOMBSTONE) {
9977 err = -ESRCH;
9978 goto err_unlock;
9979 }
9980
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009981 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009982 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009983 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009984 }
9985
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009986 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009987 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009988 mutex_unlock(&ctx->mutex);
9989
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009990 return event;
9991
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009992err_unlock:
9993 mutex_unlock(&ctx->mutex);
9994 perf_unpin_context(ctx);
9995 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009996err_free:
9997 free_event(event);
9998err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009999 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010000}
10001EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10002
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010003void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10004{
10005 struct perf_event_context *src_ctx;
10006 struct perf_event_context *dst_ctx;
10007 struct perf_event *event, *tmp;
10008 LIST_HEAD(events);
10009
10010 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10011 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10012
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010013 /*
10014 * See perf_event_ctx_lock() for comments on the details
10015 * of swizzling perf_event::ctx.
10016 */
10017 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010018 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10019 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010020 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010021 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010022 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010023 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010024 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010025
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010026 /*
10027 * Wait for the events to quiesce before re-instating them.
10028 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010029 synchronize_rcu();
10030
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010031 /*
10032 * Re-instate events in 2 passes.
10033 *
10034 * Skip over group leaders and only install siblings on this first
10035 * pass, siblings will not get enabled without a leader, however a
10036 * leader will enable its siblings, even if those are still on the old
10037 * context.
10038 */
10039 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10040 if (event->group_leader == event)
10041 continue;
10042
10043 list_del(&event->migrate_entry);
10044 if (event->state >= PERF_EVENT_STATE_OFF)
10045 event->state = PERF_EVENT_STATE_INACTIVE;
10046 account_event_cpu(event, dst_cpu);
10047 perf_install_in_context(dst_ctx, event, dst_cpu);
10048 get_ctx(dst_ctx);
10049 }
10050
10051 /*
10052 * Once all the siblings are setup properly, install the group leaders
10053 * to make it go.
10054 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010055 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10056 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010057 if (event->state >= PERF_EVENT_STATE_OFF)
10058 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010059 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010060 perf_install_in_context(dst_ctx, event, dst_cpu);
10061 get_ctx(dst_ctx);
10062 }
10063 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010064 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010065}
10066EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10067
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010068static void sync_child_event(struct perf_event *child_event,
10069 struct task_struct *child)
10070{
10071 struct perf_event *parent_event = child_event->parent;
10072 u64 child_val;
10073
10074 if (child_event->attr.inherit_stat)
10075 perf_event_read_event(child_event, child);
10076
Peter Zijlstrab5e58792010-05-21 14:43:12 +020010077 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010078
10079 /*
10080 * Add back the child's count to the parent's count:
10081 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020010082 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010083 atomic64_add(child_event->total_time_enabled,
10084 &parent_event->child_total_time_enabled);
10085 atomic64_add(child_event->total_time_running,
10086 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010087}
10088
10089static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010090perf_event_exit_event(struct perf_event *child_event,
10091 struct perf_event_context *child_ctx,
10092 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010093{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010094 struct perf_event *parent_event = child_event->parent;
10095
Peter Zijlstra1903d502014-07-15 17:27:27 +020010096 /*
10097 * Do not destroy the 'original' grouping; because of the context
10098 * switch optimization the original events could've ended up in a
10099 * random child task.
10100 *
10101 * If we were to destroy the original group, all group related
10102 * operations would cease to function properly after this random
10103 * child dies.
10104 *
10105 * Do destroy all inherited groups, we don't care about those
10106 * and being thorough is better.
10107 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010108 raw_spin_lock_irq(&child_ctx->lock);
10109 WARN_ON_ONCE(child_ctx->is_active);
10110
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010111 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010010112 perf_group_detach(child_event);
10113 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +010010114 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010115 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010116
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010117 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010118 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010119 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010120 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040010121 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010122 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010123 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010124 /*
10125 * Child events can be cleaned up.
10126 */
10127
10128 sync_child_event(child_event, child);
10129
10130 /*
10131 * Remove this event from the parent's list
10132 */
10133 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
10134 mutex_lock(&parent_event->child_mutex);
10135 list_del_init(&child_event->child_list);
10136 mutex_unlock(&parent_event->child_mutex);
10137
10138 /*
10139 * Kick perf_poll() for is_event_hup().
10140 */
10141 perf_event_wakeup(parent_event);
10142 free_event(child_event);
10143 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010144}
10145
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010146static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010147{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010148 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010149 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010150
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010151 WARN_ON_ONCE(child != current);
10152
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010153 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010154 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010155 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010156
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010157 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010158 * In order to reduce the amount of tricky in ctx tear-down, we hold
10159 * ctx::mutex over the entire thing. This serializes against almost
10160 * everything that wants to access the ctx.
10161 *
10162 * The exception is sys_perf_event_open() /
10163 * perf_event_create_kernel_count() which does find_get_context()
10164 * without ctx::mutex (it cannot because of the move_group double mutex
10165 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010166 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010167 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010168
10169 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010170 * In a single ctx::lock section, de-schedule the events and detach the
10171 * context from the task such that we cannot ever get it scheduled back
10172 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010173 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010174 raw_spin_lock_irq(&child_ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010175 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010176
10177 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010178 * Now that the context is inactive, destroy the task <-> ctx relation
10179 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010180 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010181 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10182 put_ctx(child_ctx); /* cannot be last */
10183 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10184 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010185
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010186 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010187 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010188
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010189 if (clone_ctx)
10190 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010191
10192 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010193 * Report the task dead after unscheduling the events so that we
10194 * won't get any samples after PERF_RECORD_EXIT. We can however still
10195 * get a few PERF_RECORD_READ events.
10196 */
10197 perf_event_task(child, child_ctx, 0);
10198
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010199 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010200 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010201
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010202 mutex_unlock(&child_ctx->mutex);
10203
10204 put_ctx(child_ctx);
10205}
10206
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010207/*
10208 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010209 *
10210 * Can be called with cred_guard_mutex held when called from
10211 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010212 */
10213void perf_event_exit_task(struct task_struct *child)
10214{
Peter Zijlstra88821352010-11-09 19:01:43 +010010215 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010216 int ctxn;
10217
Peter Zijlstra88821352010-11-09 19:01:43 +010010218 mutex_lock(&child->perf_event_mutex);
10219 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10220 owner_entry) {
10221 list_del_init(&event->owner_entry);
10222
10223 /*
10224 * Ensure the list deletion is visible before we clear
10225 * the owner, closes a race against perf_release() where
10226 * we need to serialize on the owner->perf_event_mutex.
10227 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010228 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010229 }
10230 mutex_unlock(&child->perf_event_mutex);
10231
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010232 for_each_task_context_nr(ctxn)
10233 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010234
10235 /*
10236 * The perf_event_exit_task_context calls perf_event_task
10237 * with child's task_ctx, which generates EXIT events for
10238 * child contexts and sets child->perf_event_ctxp[] to NULL.
10239 * At this point we need to send EXIT events to cpu contexts.
10240 */
10241 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010242}
10243
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010244static void perf_free_event(struct perf_event *event,
10245 struct perf_event_context *ctx)
10246{
10247 struct perf_event *parent = event->parent;
10248
10249 if (WARN_ON_ONCE(!parent))
10250 return;
10251
10252 mutex_lock(&parent->child_mutex);
10253 list_del_init(&event->child_list);
10254 mutex_unlock(&parent->child_mutex);
10255
Al Viroa6fa9412012-08-20 14:59:25 +010010256 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010257
Peter Zijlstra652884f2015-01-23 11:20:10 +010010258 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010259 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010260 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010261 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010262 free_event(event);
10263}
10264
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010265/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010266 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010267 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010268 *
10269 * Not all locks are strictly required, but take them anyway to be nice and
10270 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010271 */
10272void perf_event_free_task(struct task_struct *task)
10273{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010274 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010275 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010276 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010277
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010278 for_each_task_context_nr(ctxn) {
10279 ctx = task->perf_event_ctxp[ctxn];
10280 if (!ctx)
10281 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010282
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010283 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010284again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010285 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
10286 group_entry)
10287 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010288
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010289 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
10290 group_entry)
10291 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010292
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010293 if (!list_empty(&ctx->pinned_groups) ||
10294 !list_empty(&ctx->flexible_groups))
10295 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010296
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010297 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010298
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010299 put_ctx(ctx);
10300 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010301}
10302
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010303void perf_event_delayed_put(struct task_struct *task)
10304{
10305 int ctxn;
10306
10307 for_each_task_context_nr(ctxn)
10308 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10309}
10310
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010311struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010312{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010313 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010314
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010315 file = fget_raw(fd);
10316 if (!file)
10317 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010318
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010319 if (file->f_op != &perf_fops) {
10320 fput(file);
10321 return ERR_PTR(-EBADF);
10322 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010323
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010324 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010325}
10326
10327const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10328{
10329 if (!event)
10330 return ERR_PTR(-EINVAL);
10331
10332 return &event->attr;
10333}
10334
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010335/*
10336 * inherit a event from parent task to child task:
10337 */
10338static struct perf_event *
10339inherit_event(struct perf_event *parent_event,
10340 struct task_struct *parent,
10341 struct perf_event_context *parent_ctx,
10342 struct task_struct *child,
10343 struct perf_event *group_leader,
10344 struct perf_event_context *child_ctx)
10345{
Jiri Olsa1929def2014-09-12 13:18:27 +020010346 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010347 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010348 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010349
10350 /*
10351 * Instead of creating recursive hierarchies of events,
10352 * we link inherited events back to the original parent,
10353 * which has a filp for sure, which we use as the reference
10354 * count:
10355 */
10356 if (parent_event->parent)
10357 parent_event = parent_event->parent;
10358
10359 child_event = perf_event_alloc(&parent_event->attr,
10360 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010361 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010362 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010363 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010364 if (IS_ERR(child_event))
10365 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010366
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010367 /*
10368 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10369 * must be under the same lock in order to serialize against
10370 * perf_event_release_kernel(), such that either we must observe
10371 * is_orphaned_event() or they will observe us on the child_list.
10372 */
10373 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010374 if (is_orphaned_event(parent_event) ||
10375 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010376 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010377 free_event(child_event);
10378 return NULL;
10379 }
10380
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010381 get_ctx(child_ctx);
10382
10383 /*
10384 * Make the child state follow the state of the parent event,
10385 * not its attr.disabled bit. We hold the parent's mutex,
10386 * so we won't race with perf_event_{en, dis}able_family.
10387 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010388 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010389 child_event->state = PERF_EVENT_STATE_INACTIVE;
10390 else
10391 child_event->state = PERF_EVENT_STATE_OFF;
10392
10393 if (parent_event->attr.freq) {
10394 u64 sample_period = parent_event->hw.sample_period;
10395 struct hw_perf_event *hwc = &child_event->hw;
10396
10397 hwc->sample_period = sample_period;
10398 hwc->last_period = sample_period;
10399
10400 local64_set(&hwc->period_left, sample_period);
10401 }
10402
10403 child_event->ctx = child_ctx;
10404 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010405 child_event->overflow_handler_context
10406 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010407
10408 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010409 * Precalculate sample_data sizes
10410 */
10411 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010412 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010413
10414 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010415 * Link it up in the child's context:
10416 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010417 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010418 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010419 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010420
10421 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010422 * Link this into the parent event's child list
10423 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010424 list_add_tail(&child_event->child_list, &parent_event->child_list);
10425 mutex_unlock(&parent_event->child_mutex);
10426
10427 return child_event;
10428}
10429
10430static int inherit_group(struct perf_event *parent_event,
10431 struct task_struct *parent,
10432 struct perf_event_context *parent_ctx,
10433 struct task_struct *child,
10434 struct perf_event_context *child_ctx)
10435{
10436 struct perf_event *leader;
10437 struct perf_event *sub;
10438 struct perf_event *child_ctr;
10439
10440 leader = inherit_event(parent_event, parent, parent_ctx,
10441 child, NULL, child_ctx);
10442 if (IS_ERR(leader))
10443 return PTR_ERR(leader);
10444 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10445 child_ctr = inherit_event(sub, parent, parent_ctx,
10446 child, leader, child_ctx);
10447 if (IS_ERR(child_ctr))
10448 return PTR_ERR(child_ctr);
10449 }
10450 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010451}
10452
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010453static int
10454inherit_task_group(struct perf_event *event, struct task_struct *parent,
10455 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010456 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010457 int *inherited_all)
10458{
10459 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010460 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010461
10462 if (!event->attr.inherit) {
10463 *inherited_all = 0;
10464 return 0;
10465 }
10466
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010467 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010468 if (!child_ctx) {
10469 /*
10470 * This is executed from the parent task context, so
10471 * inherit events that have been marked for cloning.
10472 * First allocate and initialize a context for the
10473 * child.
10474 */
10475
Jiri Olsa734df5a2013-07-09 17:44:10 +020010476 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010477 if (!child_ctx)
10478 return -ENOMEM;
10479
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010480 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010481 }
10482
10483 ret = inherit_group(event, parent, parent_ctx,
10484 child, child_ctx);
10485
10486 if (ret)
10487 *inherited_all = 0;
10488
10489 return ret;
10490}
10491
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010492/*
10493 * Initialize the perf_event context in task_struct
10494 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010495static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010496{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010497 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010498 struct perf_event_context *cloned_ctx;
10499 struct perf_event *event;
10500 struct task_struct *parent = current;
10501 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010502 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010503 int ret = 0;
10504
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010505 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010506 return 0;
10507
10508 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010509 * If the parent's context is a clone, pin it so it won't get
10510 * swapped under us.
10511 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010512 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010513 if (!parent_ctx)
10514 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010515
10516 /*
10517 * No need to check if parent_ctx != NULL here; since we saw
10518 * it non-NULL earlier, the only reason for it to become NULL
10519 * is if we exit, and since we're currently in the middle of
10520 * a fork we can't be exiting at the same time.
10521 */
10522
10523 /*
10524 * Lock the parent list. No need to lock the child - not PID
10525 * hashed yet and not running, so nobody can access it.
10526 */
10527 mutex_lock(&parent_ctx->mutex);
10528
10529 /*
10530 * We dont have to disable NMIs - we are only looking at
10531 * the list, not manipulating it:
10532 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010533 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010534 ret = inherit_task_group(event, parent, parent_ctx,
10535 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010536 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010537 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010538 }
10539
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010540 /*
10541 * We can't hold ctx->lock when iterating the ->flexible_group list due
10542 * to allocations, but we need to prevent rotation because
10543 * rotate_ctx() will change the list from interrupt context.
10544 */
10545 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10546 parent_ctx->rotate_disable = 1;
10547 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10548
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010549 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010550 ret = inherit_task_group(event, parent, parent_ctx,
10551 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010552 if (ret)
10553 break;
10554 }
10555
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010556 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10557 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010558
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010559 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010560
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010561 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010562 /*
10563 * Mark the child context as a clone of the parent
10564 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010565 *
10566 * Note that if the parent is a clone, the holding of
10567 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010568 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010569 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010570 if (cloned_ctx) {
10571 child_ctx->parent_ctx = cloned_ctx;
10572 child_ctx->parent_gen = parent_ctx->parent_gen;
10573 } else {
10574 child_ctx->parent_ctx = parent_ctx;
10575 child_ctx->parent_gen = parent_ctx->generation;
10576 }
10577 get_ctx(child_ctx->parent_ctx);
10578 }
10579
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010580 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010581 mutex_unlock(&parent_ctx->mutex);
10582
10583 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010584 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010585
10586 return ret;
10587}
10588
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010589/*
10590 * Initialize the perf_event context in task_struct
10591 */
10592int perf_event_init_task(struct task_struct *child)
10593{
10594 int ctxn, ret;
10595
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010010596 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
10597 mutex_init(&child->perf_event_mutex);
10598 INIT_LIST_HEAD(&child->perf_event_list);
10599
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010600 for_each_task_context_nr(ctxn) {
10601 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010602 if (ret) {
10603 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010604 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010605 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010606 }
10607
10608 return 0;
10609}
10610
Paul Mackerras220b1402010-03-10 20:45:52 +110010611static void __init perf_event_init_all_cpus(void)
10612{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010613 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110010614 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110010615
10616 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010617 swhash = &per_cpu(swevent_htable, cpu);
10618 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000010619 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070010620
10621 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
10622 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010623
10624 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110010625 }
10626}
10627
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010628int perf_event_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010629{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010630 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010631
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010632 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000010633 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010634 struct swevent_hlist *hlist;
10635
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010636 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
10637 WARN_ON(!hlist);
10638 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010639 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010640 mutex_unlock(&swhash->hlist_mutex);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010641 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010642}
10643
Dave Young2965faa2015-09-09 15:38:55 -070010644#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010645static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010646{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010647 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010648 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
10649 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010650
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010651 raw_spin_lock(&ctx->lock);
10652 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010653 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010654 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010655}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010656
10657static void perf_event_exit_cpu_context(int cpu)
10658{
10659 struct perf_event_context *ctx;
10660 struct pmu *pmu;
10661 int idx;
10662
10663 idx = srcu_read_lock(&pmus_srcu);
10664 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +020010665 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010666
10667 mutex_lock(&ctx->mutex);
10668 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
10669 mutex_unlock(&ctx->mutex);
10670 }
10671 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010672}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010673#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010674
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010675static void perf_event_exit_cpu_context(int cpu) { }
10676
10677#endif
10678
10679int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010680{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010010681 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010682 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010683}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010684
Peter Zijlstrac2774432010-12-08 15:29:02 +010010685static int
10686perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
10687{
10688 int cpu;
10689
10690 for_each_online_cpu(cpu)
10691 perf_event_exit_cpu(cpu);
10692
10693 return NOTIFY_OK;
10694}
10695
10696/*
10697 * Run the perf reboot notifier at the very last possible moment so that
10698 * the generic watchdog code runs as long as possible.
10699 */
10700static struct notifier_block perf_reboot_notifier = {
10701 .notifier_call = perf_reboot,
10702 .priority = INT_MIN,
10703};
10704
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010705void __init perf_event_init(void)
10706{
Jason Wessel3c502e72010-11-04 17:33:01 -050010707 int ret;
10708
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010709 idr_init(&pmu_idr);
10710
Paul Mackerras220b1402010-03-10 20:45:52 +110010711 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010712 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010713 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
10714 perf_pmu_register(&perf_cpu_clock, NULL, -1);
10715 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010716 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010717 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010010718 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050010719
10720 ret = init_hw_breakpoint();
10721 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020010722
Jiri Olsab01c3a02012-03-23 15:41:20 +010010723 /*
10724 * Build time assertion that we keep the data_head at the intended
10725 * location. IOW, validation we got the __reserved[] size right.
10726 */
10727 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
10728 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010729}
Peter Zijlstraabe43402010-11-17 23:17:37 +010010730
Cody P Schaferfd979c02015-01-30 13:45:57 -080010731ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
10732 char *page)
10733{
10734 struct perf_pmu_events_attr *pmu_attr =
10735 container_of(attr, struct perf_pmu_events_attr, attr);
10736
10737 if (pmu_attr->event_str)
10738 return sprintf(page, "%s\n", pmu_attr->event_str);
10739
10740 return 0;
10741}
Thomas Gleixner675965b2016-02-22 22:19:27 +000010742EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080010743
Peter Zijlstraabe43402010-11-17 23:17:37 +010010744static int __init perf_event_sysfs_init(void)
10745{
10746 struct pmu *pmu;
10747 int ret;
10748
10749 mutex_lock(&pmus_lock);
10750
10751 ret = bus_register(&pmu_bus);
10752 if (ret)
10753 goto unlock;
10754
10755 list_for_each_entry(pmu, &pmus, entry) {
10756 if (!pmu->name || pmu->type < 0)
10757 continue;
10758
10759 ret = pmu_dev_alloc(pmu);
10760 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
10761 }
10762 pmu_bus_running = 1;
10763 ret = 0;
10764
10765unlock:
10766 mutex_unlock(&pmus_lock);
10767
10768 return ret;
10769}
10770device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010771
10772#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040010773static struct cgroup_subsys_state *
10774perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010775{
10776 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020010777
Li Zefan1b15d052011-03-03 14:26:06 +080010778 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010779 if (!jc)
10780 return ERR_PTR(-ENOMEM);
10781
Stephane Eraniane5d13672011-02-14 11:20:01 +020010782 jc->info = alloc_percpu(struct perf_cgroup_info);
10783 if (!jc->info) {
10784 kfree(jc);
10785 return ERR_PTR(-ENOMEM);
10786 }
10787
Stephane Eraniane5d13672011-02-14 11:20:01 +020010788 return &jc->css;
10789}
10790
Tejun Heoeb954192013-08-08 20:11:23 -040010791static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010792{
Tejun Heoeb954192013-08-08 20:11:23 -040010793 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
10794
Stephane Eraniane5d13672011-02-14 11:20:01 +020010795 free_percpu(jc->info);
10796 kfree(jc);
10797}
10798
10799static int __perf_cgroup_move(void *info)
10800{
10801 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010802 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010803 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010804 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010805 return 0;
10806}
10807
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010808static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010809{
Tejun Heobb9d97b2011-12-12 18:12:21 -080010810 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010811 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080010812
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010813 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080010814 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010815}
10816
Tejun Heo073219e2014-02-08 10:36:58 -050010817struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080010818 .css_alloc = perf_cgroup_css_alloc,
10819 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080010820 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +020010821};
10822#endif /* CONFIG_CGROUP_PERF */