blob: 4742909c56e653bcddc44e3cee705c3218638019 [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,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200358 /* see ctx_resched() for details */
359 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200360 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
361};
362
Stephane Eraniane5d13672011-02-14 11:20:01 +0200363/*
364 * perf_sched_events : >0 events exist
365 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
366 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100367
368static void perf_sched_delayed(struct work_struct *work);
369DEFINE_STATIC_KEY_FALSE(perf_sched_events);
370static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
371static DEFINE_MUTEX(perf_sched_mutex);
372static atomic_t perf_sched_count;
373
Stephane Eraniane5d13672011-02-14 11:20:01 +0200374static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500375static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700376static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200377
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200378static atomic_t nr_mmap_events __read_mostly;
379static atomic_t nr_comm_events __read_mostly;
380static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200381static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300382static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200383
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200384static LIST_HEAD(pmus);
385static DEFINE_MUTEX(pmus_lock);
386static struct srcu_struct pmus_srcu;
387
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200388/*
389 * perf event paranoia level:
390 * -1 - not paranoid at all
391 * 0 - disallow raw tracepoint access for unpriv
392 * 1 - disallow cpu events for unpriv
393 * 2 - disallow kernel profiling for unpriv
394 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700395int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200396
Frederic Weisbecker20443382011-03-31 03:33:29 +0200397/* Minimum for 512 kiB + 1 user control page */
398int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200399
400/*
401 * max perf event sample rate
402 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700403#define DEFAULT_MAX_SAMPLE_RATE 100000
404#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
405#define DEFAULT_CPU_TIME_MAX_PERCENT 25
406
407int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
408
409static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
410static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
411
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200412static int perf_sample_allowed_ns __read_mostly =
413 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700414
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800415static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700416{
417 u64 tmp = perf_sample_period_ns;
418
419 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100420 tmp = div_u64(tmp, 100);
421 if (!tmp)
422 tmp = 1;
423
424 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700425}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100426
Stephane Eranian9e630202013-04-03 14:21:33 +0200427static int perf_rotate_context(struct perf_cpu_context *cpuctx);
428
Peter Zijlstra163ec432011-02-16 11:22:34 +0100429int perf_proc_update_handler(struct ctl_table *table, int write,
430 void __user *buffer, size_t *lenp,
431 loff_t *ppos)
432{
Knut Petersen723478c2013-09-25 14:29:37 +0200433 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100434
435 if (ret || !write)
436 return ret;
437
Kan Liangab7fdef2016-05-03 00:26:06 -0700438 /*
439 * If throttling is disabled don't allow the write:
440 */
441 if (sysctl_perf_cpu_time_max_percent == 100 ||
442 sysctl_perf_cpu_time_max_percent == 0)
443 return -EINVAL;
444
Peter Zijlstra163ec432011-02-16 11:22:34 +0100445 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700446 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
447 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100448
449 return 0;
450}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200451
Dave Hansen14c63f12013-06-21 08:51:36 -0700452int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
453
454int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
455 void __user *buffer, size_t *lenp,
456 loff_t *ppos)
457{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800458 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700459
460 if (ret || !write)
461 return ret;
462
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200463 if (sysctl_perf_cpu_time_max_percent == 100 ||
464 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100465 printk(KERN_WARNING
466 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
467 WRITE_ONCE(perf_sample_allowed_ns, 0);
468 } else {
469 update_perf_cpu_limits();
470 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700471
472 return 0;
473}
474
475/*
476 * perf samples are done in some very critical code paths (NMIs).
477 * If they take too much CPU time, the system can lock up and not
478 * get any real work done. This will drop the sample rate when
479 * we detect that events are taking too long.
480 */
481#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200482static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700483
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100484static u64 __report_avg;
485static u64 __report_allowed;
486
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100487static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700488{
David Ahern0d87d7e2016-08-01 13:49:29 -0700489 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100490 "perf: interrupt took too long (%lld > %lld), lowering "
491 "kernel.perf_event_max_sample_rate to %d\n",
492 __report_avg, __report_allowed,
493 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100494}
495
496static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
497
498void perf_sample_event_took(u64 sample_len_ns)
499{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100500 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
501 u64 running_len;
502 u64 avg_len;
503 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700504
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100505 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700506 return;
507
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100508 /* Decay the counter by 1 average sample. */
509 running_len = __this_cpu_read(running_sample_length);
510 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
511 running_len += sample_len_ns;
512 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700513
514 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100515 * Note: this will be biased artifically low until we have
516 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700517 * from having to maintain a count.
518 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100519 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
520 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700521 return;
522
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100523 __report_avg = avg_len;
524 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700525
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100526 /*
527 * Compute a throttle threshold 25% below the current duration.
528 */
529 avg_len += avg_len / 4;
530 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
531 if (avg_len < max)
532 max /= (u32)avg_len;
533 else
534 max = 1;
535
536 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
537 WRITE_ONCE(max_samples_per_tick, max);
538
539 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700540 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
541
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100542 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100543 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100544 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100545 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100546 sysctl_perf_event_sample_rate);
547 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700548}
549
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200550static atomic64_t perf_event_id;
551
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200552static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
553 enum event_type_t event_type);
554
555static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200556 enum event_type_t event_type,
557 struct task_struct *task);
558
559static void update_context_time(struct perf_event_context *ctx);
560static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200561
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200562void __weak perf_event_print_debug(void) { }
563
Matt Fleming84c79912010-10-03 21:41:13 +0100564extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200565{
Matt Fleming84c79912010-10-03 21:41:13 +0100566 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200567}
568
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200569static inline u64 perf_clock(void)
570{
571 return local_clock();
572}
573
Peter Zijlstra34f43922015-02-20 14:05:38 +0100574static inline u64 perf_event_clock(struct perf_event *event)
575{
576 return event->clock();
577}
578
Stephane Eraniane5d13672011-02-14 11:20:01 +0200579#ifdef CONFIG_CGROUP_PERF
580
Stephane Eraniane5d13672011-02-14 11:20:01 +0200581static inline bool
582perf_cgroup_match(struct perf_event *event)
583{
584 struct perf_event_context *ctx = event->ctx;
585 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
586
Tejun Heoef824fa2013-04-08 19:00:38 -0700587 /* @event doesn't care about cgroup */
588 if (!event->cgrp)
589 return true;
590
591 /* wants specific cgroup scope but @cpuctx isn't associated with any */
592 if (!cpuctx->cgrp)
593 return false;
594
595 /*
596 * Cgroup scoping is recursive. An event enabled for a cgroup is
597 * also enabled for all its descendant cgroups. If @cpuctx's
598 * cgroup is a descendant of @event's (the test covers identity
599 * case), it's a match.
600 */
601 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
602 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200603}
604
Stephane Eraniane5d13672011-02-14 11:20:01 +0200605static inline void perf_detach_cgroup(struct perf_event *event)
606{
Zefan Li4e2ba652014-09-19 16:53:14 +0800607 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200608 event->cgrp = NULL;
609}
610
611static inline int is_cgroup_event(struct perf_event *event)
612{
613 return event->cgrp != NULL;
614}
615
616static inline u64 perf_cgroup_event_time(struct perf_event *event)
617{
618 struct perf_cgroup_info *t;
619
620 t = per_cpu_ptr(event->cgrp->info, event->cpu);
621 return t->time;
622}
623
624static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
625{
626 struct perf_cgroup_info *info;
627 u64 now;
628
629 now = perf_clock();
630
631 info = this_cpu_ptr(cgrp->info);
632
633 info->time += now - info->timestamp;
634 info->timestamp = now;
635}
636
637static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
638{
639 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
640 if (cgrp_out)
641 __update_cgrp_time(cgrp_out);
642}
643
644static inline void update_cgrp_time_from_event(struct perf_event *event)
645{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200646 struct perf_cgroup *cgrp;
647
Stephane Eraniane5d13672011-02-14 11:20:01 +0200648 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200649 * ensure we access cgroup data only when needed and
650 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200651 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200652 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200653 return;
654
Stephane Eranian614e4c42015-11-12 11:00:04 +0100655 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200656 /*
657 * Do not update time when cgroup is not active
658 */
659 if (cgrp == event->cgrp)
660 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200661}
662
663static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200664perf_cgroup_set_timestamp(struct task_struct *task,
665 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200666{
667 struct perf_cgroup *cgrp;
668 struct perf_cgroup_info *info;
669
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200670 /*
671 * ctx->lock held by caller
672 * ensure we do not access cgroup data
673 * unless we have the cgroup pinned (css_get)
674 */
675 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200676 return;
677
Stephane Eranian614e4c42015-11-12 11:00:04 +0100678 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200679 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200680 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200681}
682
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800683static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
684
Stephane Eraniane5d13672011-02-14 11:20:01 +0200685#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
686#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
687
688/*
689 * reschedule events based on the cgroup constraint of task.
690 *
691 * mode SWOUT : schedule out everything
692 * mode SWIN : schedule in based on cgroup for next
693 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800694static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200695{
696 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800697 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200698 unsigned long flags;
699
700 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800701 * Disable interrupts and preemption to avoid this CPU's
702 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200703 */
704 local_irq_save(flags);
705
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800706 list = this_cpu_ptr(&cgrp_cpuctx_list);
707 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
708 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200709
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800710 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
711 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200712
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800713 if (mode & PERF_CGROUP_SWOUT) {
714 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
715 /*
716 * must not be done before ctxswout due
717 * to event_filter_match() in event_sched_out()
718 */
719 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200720 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800721
722 if (mode & PERF_CGROUP_SWIN) {
723 WARN_ON_ONCE(cpuctx->cgrp);
724 /*
725 * set cgrp before ctxsw in to allow
726 * event_filter_match() to not have to pass
727 * task around
728 * we pass the cpuctx->ctx to perf_cgroup_from_task()
729 * because cgorup events are only per-cpu
730 */
731 cpuctx->cgrp = perf_cgroup_from_task(task,
732 &cpuctx->ctx);
733 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
734 }
735 perf_pmu_enable(cpuctx->ctx.pmu);
736 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200737 }
738
Stephane Eraniane5d13672011-02-14 11:20:01 +0200739 local_irq_restore(flags);
740}
741
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200742static inline void perf_cgroup_sched_out(struct task_struct *task,
743 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200744{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200745 struct perf_cgroup *cgrp1;
746 struct perf_cgroup *cgrp2 = NULL;
747
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100748 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200749 /*
750 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100751 * we do not need to pass the ctx here because we know
752 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200753 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100754 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100755 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200756
757 /*
758 * only schedule out current cgroup events if we know
759 * that we are switching to a different cgroup. Otherwise,
760 * do no touch the cgroup events.
761 */
762 if (cgrp1 != cgrp2)
763 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100764
765 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200766}
767
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200768static inline void perf_cgroup_sched_in(struct task_struct *prev,
769 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200770{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200771 struct perf_cgroup *cgrp1;
772 struct perf_cgroup *cgrp2 = NULL;
773
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100774 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200775 /*
776 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100777 * we do not need to pass the ctx here because we know
778 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200779 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100780 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100781 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200782
783 /*
784 * only need to schedule in cgroup events if we are changing
785 * cgroup during ctxsw. Cgroup events were not scheduled
786 * out of ctxsw out if that was not the case.
787 */
788 if (cgrp1 != cgrp2)
789 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100790
791 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200792}
793
794static inline int perf_cgroup_connect(int fd, struct perf_event *event,
795 struct perf_event_attr *attr,
796 struct perf_event *group_leader)
797{
798 struct perf_cgroup *cgrp;
799 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400800 struct fd f = fdget(fd);
801 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200802
Al Viro2903ff02012-08-28 12:52:22 -0400803 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200804 return -EBADF;
805
Al Virob5830432014-10-31 01:22:04 -0400806 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400807 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800808 if (IS_ERR(css)) {
809 ret = PTR_ERR(css);
810 goto out;
811 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200812
813 cgrp = container_of(css, struct perf_cgroup, css);
814 event->cgrp = cgrp;
815
816 /*
817 * all events in a group must monitor
818 * the same cgroup because a task belongs
819 * to only one perf cgroup at a time
820 */
821 if (group_leader && group_leader->cgrp != cgrp) {
822 perf_detach_cgroup(event);
823 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200824 }
Li Zefan3db272c2011-03-03 14:25:37 +0800825out:
Al Viro2903ff02012-08-28 12:52:22 -0400826 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200827 return ret;
828}
829
830static inline void
831perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
832{
833 struct perf_cgroup_info *t;
834 t = per_cpu_ptr(event->cgrp->info, event->cpu);
835 event->shadow_ctx_time = now - t->timestamp;
836}
837
838static inline void
839perf_cgroup_defer_enabled(struct perf_event *event)
840{
841 /*
842 * when the current task's perf cgroup does not match
843 * the event's, we need to remember to call the
844 * perf_mark_enable() function the first time a task with
845 * a matching perf cgroup is scheduled in.
846 */
847 if (is_cgroup_event(event) && !perf_cgroup_match(event))
848 event->cgrp_defer_enabled = 1;
849}
850
851static inline void
852perf_cgroup_mark_enabled(struct perf_event *event,
853 struct perf_event_context *ctx)
854{
855 struct perf_event *sub;
856 u64 tstamp = perf_event_time(event);
857
858 if (!event->cgrp_defer_enabled)
859 return;
860
861 event->cgrp_defer_enabled = 0;
862
863 event->tstamp_enabled = tstamp - event->total_time_enabled;
864 list_for_each_entry(sub, &event->sibling_list, group_entry) {
865 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
866 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
867 sub->cgrp_defer_enabled = 0;
868 }
869 }
870}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700871
872/*
873 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
874 * cleared when last cgroup event is removed.
875 */
876static inline void
877list_update_cgroup_event(struct perf_event *event,
878 struct perf_event_context *ctx, bool add)
879{
880 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800881 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700882
883 if (!is_cgroup_event(event))
884 return;
885
886 if (add && ctx->nr_cgroups++)
887 return;
888 else if (!add && --ctx->nr_cgroups)
889 return;
890 /*
891 * Because cgroup events are always per-cpu events,
892 * this will always be called from the right CPU.
893 */
894 cpuctx = __get_cpu_context(ctx);
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800895 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
896 /* cpuctx->cgrp is NULL unless a cgroup event is active in this CPU .*/
897 if (add) {
898 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
899 if (perf_cgroup_from_task(current, ctx) == event->cgrp)
900 cpuctx->cgrp = event->cgrp;
901 } else {
902 list_del(cpuctx_entry);
David Carrillo-Cisneros8fc31ce2016-12-04 00:46:17 -0800903 cpuctx->cgrp = NULL;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800904 }
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700905}
906
Stephane Eraniane5d13672011-02-14 11:20:01 +0200907#else /* !CONFIG_CGROUP_PERF */
908
909static inline bool
910perf_cgroup_match(struct perf_event *event)
911{
912 return true;
913}
914
915static inline void perf_detach_cgroup(struct perf_event *event)
916{}
917
918static inline int is_cgroup_event(struct perf_event *event)
919{
920 return 0;
921}
922
923static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
924{
925 return 0;
926}
927
928static inline void update_cgrp_time_from_event(struct perf_event *event)
929{
930}
931
932static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
933{
934}
935
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200936static inline void perf_cgroup_sched_out(struct task_struct *task,
937 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200938{
939}
940
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200941static inline void perf_cgroup_sched_in(struct task_struct *prev,
942 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200943{
944}
945
946static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
947 struct perf_event_attr *attr,
948 struct perf_event *group_leader)
949{
950 return -EINVAL;
951}
952
953static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200954perf_cgroup_set_timestamp(struct task_struct *task,
955 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200956{
957}
958
959void
960perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
961{
962}
963
964static inline void
965perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
966{
967}
968
969static inline u64 perf_cgroup_event_time(struct perf_event *event)
970{
971 return 0;
972}
973
974static inline void
975perf_cgroup_defer_enabled(struct perf_event *event)
976{
977}
978
979static inline void
980perf_cgroup_mark_enabled(struct perf_event *event,
981 struct perf_event_context *ctx)
982{
983}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700984
985static inline void
986list_update_cgroup_event(struct perf_event *event,
987 struct perf_event_context *ctx, bool add)
988{
989}
990
Stephane Eraniane5d13672011-02-14 11:20:01 +0200991#endif
992
Stephane Eranian9e630202013-04-03 14:21:33 +0200993/*
994 * set default to be dependent on timer tick just
995 * like original code
996 */
997#define PERF_CPU_HRTIMER (1000 / HZ)
998/*
999 * function must be called with interrupts disbled
1000 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001001static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001002{
1003 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001004 int rotations = 0;
1005
1006 WARN_ON(!irqs_disabled());
1007
1008 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001009 rotations = perf_rotate_context(cpuctx);
1010
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001011 raw_spin_lock(&cpuctx->hrtimer_lock);
1012 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001013 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001014 else
1015 cpuctx->hrtimer_active = 0;
1016 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001017
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001018 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001019}
1020
Peter Zijlstra272325c2015-04-15 11:41:58 +02001021static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001022{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001023 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001024 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001025 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001026
1027 /* no multiplexing needed for SW PMU */
1028 if (pmu->task_ctx_nr == perf_sw_context)
1029 return;
1030
Stephane Eranian62b85632013-04-03 14:21:34 +02001031 /*
1032 * check default is sane, if not set then force to
1033 * default interval (1/tick)
1034 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001035 interval = pmu->hrtimer_interval_ms;
1036 if (interval < 1)
1037 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001038
Peter Zijlstra272325c2015-04-15 11:41:58 +02001039 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001040
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001041 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1042 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001043 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001044}
1045
Peter Zijlstra272325c2015-04-15 11:41:58 +02001046static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001047{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001048 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001049 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001050 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001051
1052 /* not for SW PMU */
1053 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001054 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001055
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001056 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1057 if (!cpuctx->hrtimer_active) {
1058 cpuctx->hrtimer_active = 1;
1059 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1060 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1061 }
1062 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001063
Peter Zijlstra272325c2015-04-15 11:41:58 +02001064 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001065}
1066
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001067void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001068{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001069 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1070 if (!(*count)++)
1071 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001072}
1073
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001074void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001075{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001076 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1077 if (!--(*count))
1078 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001079}
1080
Mark Rutland2fde4f92015-01-07 15:01:54 +00001081static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001082
1083/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001084 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1085 * perf_event_task_tick() are fully serialized because they're strictly cpu
1086 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1087 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001088 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001089static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001090{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001091 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001092
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001093 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001094
Mark Rutland2fde4f92015-01-07 15:01:54 +00001095 WARN_ON(!list_empty(&ctx->active_ctx_list));
1096
1097 list_add(&ctx->active_ctx_list, head);
1098}
1099
1100static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1101{
1102 WARN_ON(!irqs_disabled());
1103
1104 WARN_ON(list_empty(&ctx->active_ctx_list));
1105
1106 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001107}
1108
1109static void get_ctx(struct perf_event_context *ctx)
1110{
1111 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1112}
1113
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001114static void free_ctx(struct rcu_head *head)
1115{
1116 struct perf_event_context *ctx;
1117
1118 ctx = container_of(head, struct perf_event_context, rcu_head);
1119 kfree(ctx->task_ctx_data);
1120 kfree(ctx);
1121}
1122
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001123static void put_ctx(struct perf_event_context *ctx)
1124{
1125 if (atomic_dec_and_test(&ctx->refcount)) {
1126 if (ctx->parent_ctx)
1127 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001128 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001129 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001130 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001131 }
1132}
1133
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001134/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001135 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1136 * perf_pmu_migrate_context() we need some magic.
1137 *
1138 * Those places that change perf_event::ctx will hold both
1139 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1140 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001141 * Lock ordering is by mutex address. There are two other sites where
1142 * perf_event_context::mutex nests and those are:
1143 *
1144 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001145 * perf_event_exit_event()
1146 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001147 *
1148 * - perf_event_init_context() [ parent, 0 ]
1149 * inherit_task_group()
1150 * inherit_group()
1151 * inherit_event()
1152 * perf_event_alloc()
1153 * perf_init_event()
1154 * perf_try_init_event() [ child , 1 ]
1155 *
1156 * While it appears there is an obvious deadlock here -- the parent and child
1157 * nesting levels are inverted between the two. This is in fact safe because
1158 * life-time rules separate them. That is an exiting task cannot fork, and a
1159 * spawning task cannot (yet) exit.
1160 *
1161 * But remember that that these are parent<->child context relations, and
1162 * migration does not affect children, therefore these two orderings should not
1163 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001164 *
1165 * The change in perf_event::ctx does not affect children (as claimed above)
1166 * because the sys_perf_event_open() case will install a new event and break
1167 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1168 * concerned with cpuctx and that doesn't have children.
1169 *
1170 * The places that change perf_event::ctx will issue:
1171 *
1172 * perf_remove_from_context();
1173 * synchronize_rcu();
1174 * perf_install_in_context();
1175 *
1176 * to affect the change. The remove_from_context() + synchronize_rcu() should
1177 * quiesce the event, after which we can install it in the new location. This
1178 * means that only external vectors (perf_fops, prctl) can perturb the event
1179 * while in transit. Therefore all such accessors should also acquire
1180 * perf_event_context::mutex to serialize against this.
1181 *
1182 * However; because event->ctx can change while we're waiting to acquire
1183 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1184 * function.
1185 *
1186 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001187 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001188 * task_struct::perf_event_mutex
1189 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001190 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001191 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001192 * perf_event::mmap_mutex
1193 * mmap_sem
1194 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001195static struct perf_event_context *
1196perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001197{
1198 struct perf_event_context *ctx;
1199
1200again:
1201 rcu_read_lock();
1202 ctx = ACCESS_ONCE(event->ctx);
1203 if (!atomic_inc_not_zero(&ctx->refcount)) {
1204 rcu_read_unlock();
1205 goto again;
1206 }
1207 rcu_read_unlock();
1208
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001209 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001210 if (event->ctx != ctx) {
1211 mutex_unlock(&ctx->mutex);
1212 put_ctx(ctx);
1213 goto again;
1214 }
1215
1216 return ctx;
1217}
1218
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001219static inline struct perf_event_context *
1220perf_event_ctx_lock(struct perf_event *event)
1221{
1222 return perf_event_ctx_lock_nested(event, 0);
1223}
1224
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001225static void perf_event_ctx_unlock(struct perf_event *event,
1226 struct perf_event_context *ctx)
1227{
1228 mutex_unlock(&ctx->mutex);
1229 put_ctx(ctx);
1230}
1231
1232/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001233 * This must be done under the ctx->lock, such as to serialize against
1234 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1235 * calling scheduler related locks and ctx->lock nests inside those.
1236 */
1237static __must_check struct perf_event_context *
1238unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001239{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001240 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1241
1242 lockdep_assert_held(&ctx->lock);
1243
1244 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001245 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001246 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001247
1248 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001249}
1250
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001251static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1252{
1253 /*
1254 * only top level events have the pid namespace they were created in
1255 */
1256 if (event->parent)
1257 event = event->parent;
1258
1259 return task_tgid_nr_ns(p, event->ns);
1260}
1261
1262static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1263{
1264 /*
1265 * only top level events have the pid namespace they were created in
1266 */
1267 if (event->parent)
1268 event = event->parent;
1269
1270 return task_pid_nr_ns(p, event->ns);
1271}
1272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001273/*
1274 * If we inherit events we want to return the parent event id
1275 * to userspace.
1276 */
1277static u64 primary_event_id(struct perf_event *event)
1278{
1279 u64 id = event->id;
1280
1281 if (event->parent)
1282 id = event->parent->id;
1283
1284 return id;
1285}
1286
1287/*
1288 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001289 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001290 * This has to cope with with the fact that until it is locked,
1291 * the context could get moved to another task.
1292 */
1293static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001294perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001295{
1296 struct perf_event_context *ctx;
1297
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001298retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001299 /*
1300 * One of the few rules of preemptible RCU is that one cannot do
1301 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001302 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001303 * rcu_read_unlock_special().
1304 *
1305 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001306 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001307 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001308 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001309 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001310 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001311 if (ctx) {
1312 /*
1313 * If this context is a clone of another, it might
1314 * get swapped for another underneath us by
1315 * perf_event_task_sched_out, though the
1316 * rcu_read_lock() protects us from any context
1317 * getting freed. Lock the context and check if it
1318 * got swapped before we could get the lock, and retry
1319 * if so. If we locked the right context, then it
1320 * can't get swapped on us any more.
1321 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001322 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001323 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001324 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001325 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001326 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001327 goto retry;
1328 }
1329
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001330 if (ctx->task == TASK_TOMBSTONE ||
1331 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001332 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001333 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001334 } else {
1335 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001336 }
1337 }
1338 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001339 if (!ctx)
1340 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001341 return ctx;
1342}
1343
1344/*
1345 * Get the context for a task and increment its pin_count so it
1346 * can't get swapped to another task. This also increments its
1347 * reference count so that the context can't get freed.
1348 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001349static struct perf_event_context *
1350perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001351{
1352 struct perf_event_context *ctx;
1353 unsigned long flags;
1354
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001355 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001356 if (ctx) {
1357 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001358 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359 }
1360 return ctx;
1361}
1362
1363static void perf_unpin_context(struct perf_event_context *ctx)
1364{
1365 unsigned long flags;
1366
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001367 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001368 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001369 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001370}
1371
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001372/*
1373 * Update the record of the current time in a context.
1374 */
1375static void update_context_time(struct perf_event_context *ctx)
1376{
1377 u64 now = perf_clock();
1378
1379 ctx->time += now - ctx->timestamp;
1380 ctx->timestamp = now;
1381}
1382
Stephane Eranian41587552011-01-03 18:20:01 +02001383static u64 perf_event_time(struct perf_event *event)
1384{
1385 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001386
1387 if (is_cgroup_event(event))
1388 return perf_cgroup_event_time(event);
1389
Stephane Eranian41587552011-01-03 18:20:01 +02001390 return ctx ? ctx->time : 0;
1391}
1392
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001393/*
1394 * Update the total_time_enabled and total_time_running fields for a event.
1395 */
1396static void update_event_times(struct perf_event *event)
1397{
1398 struct perf_event_context *ctx = event->ctx;
1399 u64 run_end;
1400
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001401 lockdep_assert_held(&ctx->lock);
1402
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001403 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1404 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1405 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001406
Stephane Eraniane5d13672011-02-14 11:20:01 +02001407 /*
1408 * in cgroup mode, time_enabled represents
1409 * the time the event was enabled AND active
1410 * tasks were in the monitored cgroup. This is
1411 * independent of the activity of the context as
1412 * there may be a mix of cgroup and non-cgroup events.
1413 *
1414 * That is why we treat cgroup events differently
1415 * here.
1416 */
1417 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001418 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001419 else if (ctx->is_active)
1420 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001421 else
1422 run_end = event->tstamp_stopped;
1423
1424 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001425
1426 if (event->state == PERF_EVENT_STATE_INACTIVE)
1427 run_end = event->tstamp_stopped;
1428 else
Stephane Eranian41587552011-01-03 18:20:01 +02001429 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001430
1431 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001432
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001433}
1434
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001435/*
1436 * Update total_time_enabled and total_time_running for all events in a group.
1437 */
1438static void update_group_times(struct perf_event *leader)
1439{
1440 struct perf_event *event;
1441
1442 update_event_times(leader);
1443 list_for_each_entry(event, &leader->sibling_list, group_entry)
1444 update_event_times(event);
1445}
1446
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001447static enum event_type_t get_event_type(struct perf_event *event)
1448{
1449 struct perf_event_context *ctx = event->ctx;
1450 enum event_type_t event_type;
1451
1452 lockdep_assert_held(&ctx->lock);
1453
1454 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1455 if (!ctx->task)
1456 event_type |= EVENT_CPU;
1457
1458 return event_type;
1459}
1460
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001461static struct list_head *
1462ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1463{
1464 if (event->attr.pinned)
1465 return &ctx->pinned_groups;
1466 else
1467 return &ctx->flexible_groups;
1468}
1469
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001470/*
1471 * Add a event from the lists for its context.
1472 * Must be called with ctx->mutex and ctx->lock held.
1473 */
1474static void
1475list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1476{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001477 lockdep_assert_held(&ctx->lock);
1478
Peter Zijlstra8a495422010-05-27 15:47:49 +02001479 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1480 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001481
1482 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001483 * If we're a stand alone event or group leader, we go to the context
1484 * list, group events are kept attached to the group so that
1485 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001487 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001488 struct list_head *list;
1489
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001490 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001491
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001492 list = ctx_group_list(event, ctx);
1493 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 }
1495
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001496 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498 list_add_rcu(&event->event_entry, &ctx->event_list);
1499 ctx->nr_events++;
1500 if (event->attr.inherit_stat)
1501 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001502
1503 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001504}
1505
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001506/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001507 * Initialize event state based on the perf_event_attr::disabled.
1508 */
1509static inline void perf_event__state_init(struct perf_event *event)
1510{
1511 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1512 PERF_EVENT_STATE_INACTIVE;
1513}
1514
Peter Zijlstraa7239682015-09-09 19:06:33 +02001515static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001516{
1517 int entry = sizeof(u64); /* value */
1518 int size = 0;
1519 int nr = 1;
1520
1521 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1522 size += sizeof(u64);
1523
1524 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1525 size += sizeof(u64);
1526
1527 if (event->attr.read_format & PERF_FORMAT_ID)
1528 entry += sizeof(u64);
1529
1530 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001531 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001532 size += sizeof(u64);
1533 }
1534
1535 size += entry * nr;
1536 event->read_size = size;
1537}
1538
Peter Zijlstraa7239682015-09-09 19:06:33 +02001539static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001540{
1541 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001542 u16 size = 0;
1543
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001544 if (sample_type & PERF_SAMPLE_IP)
1545 size += sizeof(data->ip);
1546
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001547 if (sample_type & PERF_SAMPLE_ADDR)
1548 size += sizeof(data->addr);
1549
1550 if (sample_type & PERF_SAMPLE_PERIOD)
1551 size += sizeof(data->period);
1552
Andi Kleenc3feedf2013-01-24 16:10:28 +01001553 if (sample_type & PERF_SAMPLE_WEIGHT)
1554 size += sizeof(data->weight);
1555
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001556 if (sample_type & PERF_SAMPLE_READ)
1557 size += event->read_size;
1558
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001559 if (sample_type & PERF_SAMPLE_DATA_SRC)
1560 size += sizeof(data->data_src.val);
1561
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001562 if (sample_type & PERF_SAMPLE_TRANSACTION)
1563 size += sizeof(data->txn);
1564
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001565 event->header_size = size;
1566}
1567
Peter Zijlstraa7239682015-09-09 19:06:33 +02001568/*
1569 * Called at perf_event creation and when events are attached/detached from a
1570 * group.
1571 */
1572static void perf_event__header_size(struct perf_event *event)
1573{
1574 __perf_event_read_size(event,
1575 event->group_leader->nr_siblings);
1576 __perf_event_header_size(event, event->attr.sample_type);
1577}
1578
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001579static void perf_event__id_header_size(struct perf_event *event)
1580{
1581 struct perf_sample_data *data;
1582 u64 sample_type = event->attr.sample_type;
1583 u16 size = 0;
1584
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001585 if (sample_type & PERF_SAMPLE_TID)
1586 size += sizeof(data->tid_entry);
1587
1588 if (sample_type & PERF_SAMPLE_TIME)
1589 size += sizeof(data->time);
1590
Adrian Hunterff3d5272013-08-27 11:23:07 +03001591 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1592 size += sizeof(data->id);
1593
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001594 if (sample_type & PERF_SAMPLE_ID)
1595 size += sizeof(data->id);
1596
1597 if (sample_type & PERF_SAMPLE_STREAM_ID)
1598 size += sizeof(data->stream_id);
1599
1600 if (sample_type & PERF_SAMPLE_CPU)
1601 size += sizeof(data->cpu_entry);
1602
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001603 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001604}
1605
Peter Zijlstraa7239682015-09-09 19:06:33 +02001606static bool perf_event_validate_size(struct perf_event *event)
1607{
1608 /*
1609 * The values computed here will be over-written when we actually
1610 * attach the event.
1611 */
1612 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1613 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1614 perf_event__id_header_size(event);
1615
1616 /*
1617 * Sum the lot; should not exceed the 64k limit we have on records.
1618 * Conservative limit to allow for callchains and other variable fields.
1619 */
1620 if (event->read_size + event->header_size +
1621 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1622 return false;
1623
1624 return true;
1625}
1626
Peter Zijlstra8a495422010-05-27 15:47:49 +02001627static void perf_group_attach(struct perf_event *event)
1628{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001629 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001630
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001631 lockdep_assert_held(&event->ctx->lock);
1632
Peter Zijlstra74c33372010-10-15 11:40:29 +02001633 /*
1634 * We can have double attach due to group movement in perf_event_open.
1635 */
1636 if (event->attach_state & PERF_ATTACH_GROUP)
1637 return;
1638
Peter Zijlstra8a495422010-05-27 15:47:49 +02001639 event->attach_state |= PERF_ATTACH_GROUP;
1640
1641 if (group_leader == event)
1642 return;
1643
Peter Zijlstra652884f2015-01-23 11:20:10 +01001644 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1645
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001646 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001647
1648 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1649 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001650
1651 perf_event__header_size(group_leader);
1652
1653 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1654 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001655}
1656
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001657/*
1658 * Remove a event from the lists for its context.
1659 * Must be called with ctx->mutex and ctx->lock held.
1660 */
1661static void
1662list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1663{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001664 WARN_ON_ONCE(event->ctx != ctx);
1665 lockdep_assert_held(&ctx->lock);
1666
Peter Zijlstra8a495422010-05-27 15:47:49 +02001667 /*
1668 * We can have double detach due to exit/hot-unplug + close.
1669 */
1670 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001672
1673 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1674
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001675 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001676
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677 ctx->nr_events--;
1678 if (event->attr.inherit_stat)
1679 ctx->nr_stat--;
1680
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001681 list_del_rcu(&event->event_entry);
1682
Peter Zijlstra8a495422010-05-27 15:47:49 +02001683 if (event->group_leader == event)
1684 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001685
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001686 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001687
1688 /*
1689 * If event was in error state, then keep it
1690 * that way, otherwise bogus counts will be
1691 * returned on read(). The only way to get out
1692 * of error state is by explicit re-enabling
1693 * of the event
1694 */
1695 if (event->state > PERF_EVENT_STATE_OFF)
1696 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001697
1698 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001699}
1700
Peter Zijlstra8a495422010-05-27 15:47:49 +02001701static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001702{
1703 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001704 struct list_head *list = NULL;
1705
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001706 lockdep_assert_held(&event->ctx->lock);
1707
Peter Zijlstra8a495422010-05-27 15:47:49 +02001708 /*
1709 * We can have double detach due to exit/hot-unplug + close.
1710 */
1711 if (!(event->attach_state & PERF_ATTACH_GROUP))
1712 return;
1713
1714 event->attach_state &= ~PERF_ATTACH_GROUP;
1715
1716 /*
1717 * If this is a sibling, remove it from its group.
1718 */
1719 if (event->group_leader != event) {
1720 list_del_init(&event->group_entry);
1721 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001722 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001723 }
1724
1725 if (!list_empty(&event->group_entry))
1726 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001727
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001728 /*
1729 * If this was a group event with sibling events then
1730 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001731 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001732 */
1733 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001734 if (list)
1735 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001736 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001737
1738 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001739 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001740
1741 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001742 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001743
1744out:
1745 perf_event__header_size(event->group_leader);
1746
1747 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1748 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001749}
1750
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001751static bool is_orphaned_event(struct perf_event *event)
1752{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001753 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001754}
1755
Mark Rutland2c81a642016-06-14 16:10:41 +01001756static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001757{
1758 struct pmu *pmu = event->pmu;
1759 return pmu->filter_match ? pmu->filter_match(event) : 1;
1760}
1761
Mark Rutland2c81a642016-06-14 16:10:41 +01001762/*
1763 * Check whether we should attempt to schedule an event group based on
1764 * PMU-specific filtering. An event group can consist of HW and SW events,
1765 * potentially with a SW leader, so we must check all the filters, to
1766 * determine whether a group is schedulable:
1767 */
1768static inline int pmu_filter_match(struct perf_event *event)
1769{
1770 struct perf_event *child;
1771
1772 if (!__pmu_filter_match(event))
1773 return 0;
1774
1775 list_for_each_entry(child, &event->sibling_list, group_entry) {
1776 if (!__pmu_filter_match(child))
1777 return 0;
1778 }
1779
1780 return 1;
1781}
1782
Stephane Eranianfa66f072010-08-26 16:40:01 +02001783static inline int
1784event_filter_match(struct perf_event *event)
1785{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001786 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1787 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001788}
1789
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001790static void
1791event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001792 struct perf_cpu_context *cpuctx,
1793 struct perf_event_context *ctx)
1794{
Stephane Eranian41587552011-01-03 18:20:01 +02001795 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001796 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001797
1798 WARN_ON_ONCE(event->ctx != ctx);
1799 lockdep_assert_held(&ctx->lock);
1800
Stephane Eranianfa66f072010-08-26 16:40:01 +02001801 /*
1802 * An event which could not be activated because of
1803 * filter mismatch still needs to have its timings
1804 * maintained, otherwise bogus information is return
1805 * via read() for time_enabled, time_running:
1806 */
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001807 if (event->state == PERF_EVENT_STATE_INACTIVE &&
1808 !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001809 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001810 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001811 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001812 }
1813
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001814 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001815 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001816
Alexander Shishkin44377272013-12-16 14:17:36 +02001817 perf_pmu_disable(event->pmu);
1818
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001819 event->tstamp_stopped = tstamp;
1820 event->pmu->del(event, 0);
1821 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001822 event->state = PERF_EVENT_STATE_INACTIVE;
1823 if (event->pending_disable) {
1824 event->pending_disable = 0;
1825 event->state = PERF_EVENT_STATE_OFF;
1826 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001827
1828 if (!is_software_event(event))
1829 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001830 if (!--ctx->nr_active)
1831 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001832 if (event->attr.freq && event->attr.sample_freq)
1833 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001834 if (event->attr.exclusive || !cpuctx->active_oncpu)
1835 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001836
1837 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001838}
1839
1840static void
1841group_sched_out(struct perf_event *group_event,
1842 struct perf_cpu_context *cpuctx,
1843 struct perf_event_context *ctx)
1844{
1845 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001846 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001847
Mark Rutland3f005e72016-07-26 18:12:21 +01001848 perf_pmu_disable(ctx->pmu);
1849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850 event_sched_out(group_event, cpuctx, ctx);
1851
1852 /*
1853 * Schedule out siblings (if any):
1854 */
1855 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1856 event_sched_out(event, cpuctx, ctx);
1857
Mark Rutland3f005e72016-07-26 18:12:21 +01001858 perf_pmu_enable(ctx->pmu);
1859
Stephane Eranianfa66f072010-08-26 16:40:01 +02001860 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001861 cpuctx->exclusive = 0;
1862}
1863
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001864#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866/*
1867 * Cross CPU call to remove a performance event
1868 *
1869 * We disable the event on the hardware level first. After that we
1870 * remove it from the context list.
1871 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001872static void
1873__perf_remove_from_context(struct perf_event *event,
1874 struct perf_cpu_context *cpuctx,
1875 struct perf_event_context *ctx,
1876 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001877{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001878 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001879
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001880 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001881 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001882 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001883 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001884
Peter Zijlstra39a43642016-01-11 12:46:35 +01001885 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001886 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001887 if (ctx->task) {
1888 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1889 cpuctx->task_ctx = NULL;
1890 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001891 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892}
1893
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001894/*
1895 * Remove the event from a task's (or a CPU's) list of events.
1896 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001897 * If event->ctx is a cloned context, callers must make sure that
1898 * every task struct that event->ctx->task could possibly point to
1899 * remains valid. This is OK when called from perf_release since
1900 * that only calls us on the top-level context, which can't be a clone.
1901 * When called from perf_event_exit_task, it's OK because the
1902 * context has been detached from its task.
1903 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001904static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001905{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001906 struct perf_event_context *ctx = event->ctx;
1907
1908 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001909
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001910 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001911
1912 /*
1913 * The above event_function_call() can NO-OP when it hits
1914 * TASK_TOMBSTONE. In that case we must already have been detached
1915 * from the context (by perf_event_exit_event()) but the grouping
1916 * might still be in-tact.
1917 */
1918 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1919 if ((flags & DETACH_GROUP) &&
1920 (event->attach_state & PERF_ATTACH_GROUP)) {
1921 /*
1922 * Since in that case we cannot possibly be scheduled, simply
1923 * detach now.
1924 */
1925 raw_spin_lock_irq(&ctx->lock);
1926 perf_group_detach(event);
1927 raw_spin_unlock_irq(&ctx->lock);
1928 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001929}
1930
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001931/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001932 * Cross CPU call to disable a performance event
1933 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001934static void __perf_event_disable(struct perf_event *event,
1935 struct perf_cpu_context *cpuctx,
1936 struct perf_event_context *ctx,
1937 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001938{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001939 if (event->state < PERF_EVENT_STATE_INACTIVE)
1940 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001941
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001942 update_context_time(ctx);
1943 update_cgrp_time_from_event(event);
1944 update_group_times(event);
1945 if (event == event->group_leader)
1946 group_sched_out(event, cpuctx, ctx);
1947 else
1948 event_sched_out(event, cpuctx, ctx);
1949 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001950}
1951
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001952/*
1953 * Disable a event.
1954 *
1955 * If event->ctx is a cloned context, callers must make sure that
1956 * every task struct that event->ctx->task could possibly point to
1957 * remains valid. This condition is satisifed when called through
1958 * perf_event_for_each_child or perf_event_for_each because they
1959 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001960 * goes to exit will block in perf_event_exit_event().
1961 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001962 * When called from perf_pending_event it's OK because event->ctx
1963 * is the current context on this CPU and preemption is disabled,
1964 * hence we can't get into perf_event_task_sched_out for this context.
1965 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001966static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001967{
1968 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001969
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001970 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001971 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001972 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001973 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001974 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001975 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001976
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001977 event_function_call(event, __perf_event_disable, NULL);
1978}
1979
1980void perf_event_disable_local(struct perf_event *event)
1981{
1982 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001983}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001984
1985/*
1986 * Strictly speaking kernel users cannot create groups and therefore this
1987 * interface does not need the perf_event_ctx_lock() magic.
1988 */
1989void perf_event_disable(struct perf_event *event)
1990{
1991 struct perf_event_context *ctx;
1992
1993 ctx = perf_event_ctx_lock(event);
1994 _perf_event_disable(event);
1995 perf_event_ctx_unlock(event, ctx);
1996}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001997EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001998
Jiri Olsa5aab90c2016-10-26 11:48:24 +02001999void perf_event_disable_inatomic(struct perf_event *event)
2000{
2001 event->pending_disable = 1;
2002 irq_work_queue(&event->pending);
2003}
2004
Stephane Eraniane5d13672011-02-14 11:20:01 +02002005static void perf_set_shadow_time(struct perf_event *event,
2006 struct perf_event_context *ctx,
2007 u64 tstamp)
2008{
2009 /*
2010 * use the correct time source for the time snapshot
2011 *
2012 * We could get by without this by leveraging the
2013 * fact that to get to this function, the caller
2014 * has most likely already called update_context_time()
2015 * and update_cgrp_time_xx() and thus both timestamp
2016 * are identical (or very close). Given that tstamp is,
2017 * already adjusted for cgroup, we could say that:
2018 * tstamp - ctx->timestamp
2019 * is equivalent to
2020 * tstamp - cgrp->timestamp.
2021 *
2022 * Then, in perf_output_read(), the calculation would
2023 * work with no changes because:
2024 * - event is guaranteed scheduled in
2025 * - no scheduled out in between
2026 * - thus the timestamp would be the same
2027 *
2028 * But this is a bit hairy.
2029 *
2030 * So instead, we have an explicit cgroup call to remain
2031 * within the time time source all along. We believe it
2032 * is cleaner and simpler to understand.
2033 */
2034 if (is_cgroup_event(event))
2035 perf_cgroup_set_shadow_time(event, tstamp);
2036 else
2037 event->shadow_ctx_time = tstamp - ctx->timestamp;
2038}
2039
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002040#define MAX_INTERRUPTS (~0ULL)
2041
2042static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002043static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002045static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002046event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002047 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002048 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002049{
Stephane Eranian41587552011-01-03 18:20:01 +02002050 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02002051 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002052
Peter Zijlstra63342412014-05-05 11:49:16 +02002053 lockdep_assert_held(&ctx->lock);
2054
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002055 if (event->state <= PERF_EVENT_STATE_OFF)
2056 return 0;
2057
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002058 WRITE_ONCE(event->oncpu, smp_processor_id());
2059 /*
2060 * Order event::oncpu write to happen before the ACTIVE state
2061 * is visible.
2062 */
2063 smp_wmb();
2064 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002065
2066 /*
2067 * Unthrottle events, since we scheduled we might have missed several
2068 * ticks already, also for a heavily scheduling task there is little
2069 * guarantee it'll get a tick in a timely manner.
2070 */
2071 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2072 perf_log_throttle(event, 1);
2073 event->hw.interrupts = 0;
2074 }
2075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002076 /*
2077 * The new state must be visible before we turn it on in the hardware:
2078 */
2079 smp_wmb();
2080
Alexander Shishkin44377272013-12-16 14:17:36 +02002081 perf_pmu_disable(event->pmu);
2082
Shaohua Li72f669c2015-02-05 15:55:31 -08002083 perf_set_shadow_time(event, ctx, tstamp);
2084
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002085 perf_log_itrace_start(event);
2086
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002087 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088 event->state = PERF_EVENT_STATE_INACTIVE;
2089 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002090 ret = -EAGAIN;
2091 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092 }
2093
Peter Zijlstra00a29162015-07-27 10:35:07 +02002094 event->tstamp_running += tstamp - event->tstamp_stopped;
2095
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002096 if (!is_software_event(event))
2097 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002098 if (!ctx->nr_active++)
2099 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002100 if (event->attr.freq && event->attr.sample_freq)
2101 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102
2103 if (event->attr.exclusive)
2104 cpuctx->exclusive = 1;
2105
Alexander Shishkin44377272013-12-16 14:17:36 +02002106out:
2107 perf_pmu_enable(event->pmu);
2108
2109 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110}
2111
2112static int
2113group_sched_in(struct perf_event *group_event,
2114 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002115 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002116{
Lin Ming6bde9b62010-04-23 13:56:00 +08002117 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002118 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002119 u64 now = ctx->time;
2120 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002121
2122 if (group_event->state == PERF_EVENT_STATE_OFF)
2123 return 0;
2124
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002125 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002126
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002127 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002128 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002129 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002130 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002131 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132
2133 /*
2134 * Schedule in siblings as one group (if any):
2135 */
2136 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002137 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002138 partial_group = event;
2139 goto group_error;
2140 }
2141 }
2142
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002143 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002144 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002145
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146group_error:
2147 /*
2148 * Groups can be scheduled in as one unit only, so undo any
2149 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002150 * The events up to the failed event are scheduled out normally,
2151 * tstamp_stopped will be updated.
2152 *
2153 * The failed events and the remaining siblings need to have
2154 * their timings updated as if they had gone thru event_sched_in()
2155 * and event_sched_out(). This is required to get consistent timings
2156 * across the group. This also takes care of the case where the group
2157 * could never be scheduled by ensuring tstamp_stopped is set to mark
2158 * the time the event was actually stopped, such that time delta
2159 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002160 */
2161 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2162 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002163 simulate = true;
2164
2165 if (simulate) {
2166 event->tstamp_running += now - event->tstamp_stopped;
2167 event->tstamp_stopped = now;
2168 } else {
2169 event_sched_out(event, cpuctx, ctx);
2170 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002171 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002172 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002174 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002175
Peter Zijlstra272325c2015-04-15 11:41:58 +02002176 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002177
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002178 return -EAGAIN;
2179}
2180
2181/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002182 * Work out whether we can put this event group on the CPU now.
2183 */
2184static int group_can_go_on(struct perf_event *event,
2185 struct perf_cpu_context *cpuctx,
2186 int can_add_hw)
2187{
2188 /*
2189 * Groups consisting entirely of software events can always go on.
2190 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002191 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002192 return 1;
2193 /*
2194 * If an exclusive group is already on, no other hardware
2195 * events can go on.
2196 */
2197 if (cpuctx->exclusive)
2198 return 0;
2199 /*
2200 * If this group is exclusive and there are already
2201 * events on the CPU, it can't go on.
2202 */
2203 if (event->attr.exclusive && cpuctx->active_oncpu)
2204 return 0;
2205 /*
2206 * Otherwise, try to add it if all previous groups were able
2207 * to go on.
2208 */
2209 return can_add_hw;
2210}
2211
2212static void add_event_to_ctx(struct perf_event *event,
2213 struct perf_event_context *ctx)
2214{
Stephane Eranian41587552011-01-03 18:20:01 +02002215 u64 tstamp = perf_event_time(event);
2216
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002217 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002218 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002219 event->tstamp_enabled = tstamp;
2220 event->tstamp_running = tstamp;
2221 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002222}
2223
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002224static void ctx_sched_out(struct perf_event_context *ctx,
2225 struct perf_cpu_context *cpuctx,
2226 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002227static void
2228ctx_sched_in(struct perf_event_context *ctx,
2229 struct perf_cpu_context *cpuctx,
2230 enum event_type_t event_type,
2231 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002232
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002233static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002234 struct perf_event_context *ctx,
2235 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002236{
2237 if (!cpuctx->task_ctx)
2238 return;
2239
2240 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2241 return;
2242
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002243 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002244}
2245
Peter Zijlstradce58552011-04-09 21:17:46 +02002246static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2247 struct perf_event_context *ctx,
2248 struct task_struct *task)
2249{
2250 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2251 if (ctx)
2252 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2253 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2254 if (ctx)
2255 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2256}
2257
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002258/*
2259 * We want to maintain the following priority of scheduling:
2260 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2261 * - task pinned (EVENT_PINNED)
2262 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2263 * - task flexible (EVENT_FLEXIBLE).
2264 *
2265 * In order to avoid unscheduling and scheduling back in everything every
2266 * time an event is added, only do it for the groups of equal priority and
2267 * below.
2268 *
2269 * This can be called after a batch operation on task events, in which case
2270 * event_type is a bit mask of the types of events involved. For CPU events,
2271 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2272 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002273static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002274 struct perf_event_context *task_ctx,
2275 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002276{
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002277 enum event_type_t ctx_event_type = event_type & EVENT_ALL;
2278 bool cpu_event = !!(event_type & EVENT_CPU);
2279
2280 /*
2281 * If pinned groups are involved, flexible groups also need to be
2282 * scheduled out.
2283 */
2284 if (event_type & EVENT_PINNED)
2285 event_type |= EVENT_FLEXIBLE;
2286
Peter Zijlstra3e349502016-01-08 10:01:18 +01002287 perf_pmu_disable(cpuctx->ctx.pmu);
2288 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002289 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2290
2291 /*
2292 * Decide which cpu ctx groups to schedule out based on the types
2293 * of events that caused rescheduling:
2294 * - EVENT_CPU: schedule out corresponding groups;
2295 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2296 * - otherwise, do nothing more.
2297 */
2298 if (cpu_event)
2299 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2300 else if (ctx_event_type & EVENT_PINNED)
2301 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2302
Peter Zijlstra3e349502016-01-08 10:01:18 +01002303 perf_event_sched_in(cpuctx, task_ctx, current);
2304 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002305}
2306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002307/*
2308 * Cross CPU call to install and enable a performance event
2309 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002310 * Very similar to remote_function() + event_function() but cannot assume that
2311 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002312 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002313static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002314{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002315 struct perf_event *event = info;
2316 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002317 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002318 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002319 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002320 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002321
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002322 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002323 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002324 raw_spin_lock(&ctx->lock);
2325 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002326
Peter Zijlstra63cae122016-12-09 14:59:00 +01002327 reprogram = (ctx->task == current);
2328
2329 /*
2330 * If the task is running, it must be running on this CPU,
2331 * otherwise we cannot reprogram things.
2332 *
2333 * If its not running, we don't care, ctx->lock will
2334 * serialize against it becoming runnable.
2335 */
2336 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002337 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002338 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002339 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002340
Peter Zijlstra63cae122016-12-09 14:59:00 +01002341 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002342 } else if (task_ctx) {
2343 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002344 }
2345
Peter Zijlstra63cae122016-12-09 14:59:00 +01002346 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002347 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2348 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002349 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002350 } else {
2351 add_event_to_ctx(event, ctx);
2352 }
2353
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002354unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002355 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002356
Peter Zijlstraa0963092016-02-24 18:45:50 +01002357 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002358}
2359
2360/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002361 * Attach a performance event to a context.
2362 *
2363 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002364 */
2365static void
2366perf_install_in_context(struct perf_event_context *ctx,
2367 struct perf_event *event,
2368 int cpu)
2369{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002370 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002371
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002372 lockdep_assert_held(&ctx->mutex);
2373
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002374 if (event->cpu != -1)
2375 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002376
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002377 /*
2378 * Ensures that if we can observe event->ctx, both the event and ctx
2379 * will be 'complete'. See perf_iterate_sb_cpu().
2380 */
2381 smp_store_release(&event->ctx, ctx);
2382
Peter Zijlstraa0963092016-02-24 18:45:50 +01002383 if (!task) {
2384 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002385 return;
2386 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002387
Peter Zijlstraa0963092016-02-24 18:45:50 +01002388 /*
2389 * Should not happen, we validate the ctx is still alive before calling.
2390 */
2391 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2392 return;
2393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394 /*
2395 * Installing events is tricky because we cannot rely on ctx->is_active
2396 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002397 *
2398 * Instead we use task_curr(), which tells us if the task is running.
2399 * However, since we use task_curr() outside of rq::lock, we can race
2400 * against the actual state. This means the result can be wrong.
2401 *
2402 * If we get a false positive, we retry, this is harmless.
2403 *
2404 * If we get a false negative, things are complicated. If we are after
2405 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2406 * value must be correct. If we're before, it doesn't matter since
2407 * perf_event_context_sched_in() will program the counter.
2408 *
2409 * However, this hinges on the remote context switch having observed
2410 * our task->perf_event_ctxp[] store, such that it will in fact take
2411 * ctx::lock in perf_event_context_sched_in().
2412 *
2413 * We do this by task_function_call(), if the IPI fails to hit the task
2414 * we know any future context switch of task must see the
2415 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002417
Peter Zijlstraa0963092016-02-24 18:45:50 +01002418 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002419 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2420 * task_cpu() load, such that if the IPI then does not find the task
2421 * running, a future context switch of that task must observe the
2422 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002423 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002424 smp_mb();
2425again:
2426 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002427 return;
2428
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429 raw_spin_lock_irq(&ctx->lock);
2430 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002431 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2432 /*
2433 * Cannot happen because we already checked above (which also
2434 * cannot happen), and we hold ctx->mutex, which serializes us
2435 * against perf_event_exit_task_context().
2436 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002437 raw_spin_unlock_irq(&ctx->lock);
2438 return;
2439 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002440 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002441 * If the task is not running, ctx->lock will avoid it becoming so,
2442 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002443 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002444 if (task_curr(task)) {
2445 raw_spin_unlock_irq(&ctx->lock);
2446 goto again;
2447 }
2448 add_event_to_ctx(event, ctx);
2449 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002450}
2451
2452/*
2453 * Put a event into inactive state and update time fields.
2454 * Enabling the leader of a group effectively enables all
2455 * the group members that aren't explicitly disabled, so we
2456 * have to update their ->tstamp_enabled also.
2457 * Note: this works for group members as well as group leaders
2458 * since the non-leader members' sibling_lists will be empty.
2459 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002460static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002461{
2462 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002463 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002464
2465 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002466 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002467 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002468 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2469 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002470 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002471}
2472
2473/*
2474 * Cross CPU call to enable a performance event
2475 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002476static void __perf_event_enable(struct perf_event *event,
2477 struct perf_cpu_context *cpuctx,
2478 struct perf_event_context *ctx,
2479 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002481 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002482 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002484 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2485 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002486 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002488 if (ctx->is_active)
2489 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2490
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002491 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002492
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002493 if (!ctx->is_active)
2494 return;
2495
Stephane Eraniane5d13672011-02-14 11:20:01 +02002496 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002497 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002498 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002499 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002500 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002501 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002502
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002503 /*
2504 * If the event is in a group and isn't the group leader,
2505 * then don't put it on unless the group is on.
2506 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002507 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2508 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002509 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002510 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002511
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002512 task_ctx = cpuctx->task_ctx;
2513 if (ctx->task)
2514 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002516 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002517}
2518
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002519/*
2520 * Enable a event.
2521 *
2522 * If event->ctx is a cloned context, callers must make sure that
2523 * every task struct that event->ctx->task could possibly point to
2524 * remains valid. This condition is satisfied when called through
2525 * perf_event_for_each_child or perf_event_for_each as described
2526 * for perf_event_disable.
2527 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002528static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002529{
2530 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002531
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002532 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002533 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2534 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002535 raw_spin_unlock_irq(&ctx->lock);
2536 return;
2537 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002538
2539 /*
2540 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002541 *
2542 * That way, if we see the event in error state below, we know that it
2543 * has gone back into error state, as distinct from the task having
2544 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002545 */
2546 if (event->state == PERF_EVENT_STATE_ERROR)
2547 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002548 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002549
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002550 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002551}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002552
2553/*
2554 * See perf_event_disable();
2555 */
2556void perf_event_enable(struct perf_event *event)
2557{
2558 struct perf_event_context *ctx;
2559
2560 ctx = perf_event_ctx_lock(event);
2561 _perf_event_enable(event);
2562 perf_event_ctx_unlock(event, ctx);
2563}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002564EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002565
Alexander Shishkin375637b2016-04-27 18:44:46 +03002566struct stop_event_data {
2567 struct perf_event *event;
2568 unsigned int restart;
2569};
2570
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002571static int __perf_event_stop(void *info)
2572{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002573 struct stop_event_data *sd = info;
2574 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002575
Alexander Shishkin375637b2016-04-27 18:44:46 +03002576 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002577 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2578 return 0;
2579
2580 /* matches smp_wmb() in event_sched_in() */
2581 smp_rmb();
2582
2583 /*
2584 * There is a window with interrupts enabled before we get here,
2585 * so we need to check again lest we try to stop another CPU's event.
2586 */
2587 if (READ_ONCE(event->oncpu) != smp_processor_id())
2588 return -EAGAIN;
2589
2590 event->pmu->stop(event, PERF_EF_UPDATE);
2591
Alexander Shishkin375637b2016-04-27 18:44:46 +03002592 /*
2593 * May race with the actual stop (through perf_pmu_output_stop()),
2594 * but it is only used for events with AUX ring buffer, and such
2595 * events will refuse to restart because of rb::aux_mmap_count==0,
2596 * see comments in perf_aux_output_begin().
2597 *
2598 * Since this is happening on a event-local CPU, no trace is lost
2599 * while restarting.
2600 */
2601 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002602 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002603
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002604 return 0;
2605}
2606
Alexander Shishkin767ae082016-09-06 16:23:49 +03002607static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002608{
2609 struct stop_event_data sd = {
2610 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002611 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002612 };
2613 int ret = 0;
2614
2615 do {
2616 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2617 return 0;
2618
2619 /* matches smp_wmb() in event_sched_in() */
2620 smp_rmb();
2621
2622 /*
2623 * We only want to restart ACTIVE events, so if the event goes
2624 * inactive here (event->oncpu==-1), there's nothing more to do;
2625 * fall through with ret==-ENXIO.
2626 */
2627 ret = cpu_function_call(READ_ONCE(event->oncpu),
2628 __perf_event_stop, &sd);
2629 } while (ret == -EAGAIN);
2630
2631 return ret;
2632}
2633
2634/*
2635 * In order to contain the amount of racy and tricky in the address filter
2636 * configuration management, it is a two part process:
2637 *
2638 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2639 * we update the addresses of corresponding vmas in
2640 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2641 * (p2) when an event is scheduled in (pmu::add), it calls
2642 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2643 * if the generation has changed since the previous call.
2644 *
2645 * If (p1) happens while the event is active, we restart it to force (p2).
2646 *
2647 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2648 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2649 * ioctl;
2650 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2651 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2652 * for reading;
2653 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2654 * of exec.
2655 */
2656void perf_event_addr_filters_sync(struct perf_event *event)
2657{
2658 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2659
2660 if (!has_addr_filter(event))
2661 return;
2662
2663 raw_spin_lock(&ifh->lock);
2664 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2665 event->pmu->addr_filters_sync(event);
2666 event->hw.addr_filters_gen = event->addr_filters_gen;
2667 }
2668 raw_spin_unlock(&ifh->lock);
2669}
2670EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2671
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002672static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002673{
2674 /*
2675 * not supported on inherited events
2676 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002677 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002678 return -EINVAL;
2679
2680 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002681 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002682
2683 return 0;
2684}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002685
2686/*
2687 * See perf_event_disable()
2688 */
2689int perf_event_refresh(struct perf_event *event, int refresh)
2690{
2691 struct perf_event_context *ctx;
2692 int ret;
2693
2694 ctx = perf_event_ctx_lock(event);
2695 ret = _perf_event_refresh(event, refresh);
2696 perf_event_ctx_unlock(event, ctx);
2697
2698 return ret;
2699}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002700EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002701
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002702static void ctx_sched_out(struct perf_event_context *ctx,
2703 struct perf_cpu_context *cpuctx,
2704 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002705{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002706 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002707 struct perf_event *event;
2708
2709 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002710
Peter Zijlstra39a43642016-01-11 12:46:35 +01002711 if (likely(!ctx->nr_events)) {
2712 /*
2713 * See __perf_remove_from_context().
2714 */
2715 WARN_ON_ONCE(ctx->is_active);
2716 if (ctx->task)
2717 WARN_ON_ONCE(cpuctx->task_ctx);
2718 return;
2719 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720
Peter Zijlstradb24d332011-04-09 21:17:45 +02002721 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002722 if (!(ctx->is_active & EVENT_ALL))
2723 ctx->is_active = 0;
2724
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002725 if (ctx->task) {
2726 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2727 if (!ctx->is_active)
2728 cpuctx->task_ctx = NULL;
2729 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002730
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002731 /*
2732 * Always update time if it was set; not only when it changes.
2733 * Otherwise we can 'forget' to update time for any but the last
2734 * context we sched out. For example:
2735 *
2736 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2737 * ctx_sched_out(.event_type = EVENT_PINNED)
2738 *
2739 * would only update time for the pinned events.
2740 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002741 if (is_active & EVENT_TIME) {
2742 /* update (and stop) ctx time */
2743 update_context_time(ctx);
2744 update_cgrp_time_from_cpuctx(cpuctx);
2745 }
2746
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002747 is_active ^= ctx->is_active; /* changed bits */
2748
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002749 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002750 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002751
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002752 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002753 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002754 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2755 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002756 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002757
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002758 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002759 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002760 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002761 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002762 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002763}
2764
2765/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002766 * Test whether two contexts are equivalent, i.e. whether they have both been
2767 * cloned from the same version of the same context.
2768 *
2769 * Equivalence is measured using a generation number in the context that is
2770 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2771 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772 */
2773static int context_equiv(struct perf_event_context *ctx1,
2774 struct perf_event_context *ctx2)
2775{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002776 lockdep_assert_held(&ctx1->lock);
2777 lockdep_assert_held(&ctx2->lock);
2778
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002779 /* Pinning disables the swap optimization */
2780 if (ctx1->pin_count || ctx2->pin_count)
2781 return 0;
2782
2783 /* If ctx1 is the parent of ctx2 */
2784 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2785 return 1;
2786
2787 /* If ctx2 is the parent of ctx1 */
2788 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2789 return 1;
2790
2791 /*
2792 * If ctx1 and ctx2 have the same parent; we flatten the parent
2793 * hierarchy, see perf_event_init_context().
2794 */
2795 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2796 ctx1->parent_gen == ctx2->parent_gen)
2797 return 1;
2798
2799 /* Unmatched */
2800 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002801}
2802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803static void __perf_event_sync_stat(struct perf_event *event,
2804 struct perf_event *next_event)
2805{
2806 u64 value;
2807
2808 if (!event->attr.inherit_stat)
2809 return;
2810
2811 /*
2812 * Update the event value, we cannot use perf_event_read()
2813 * because we're in the middle of a context switch and have IRQs
2814 * disabled, which upsets smp_call_function_single(), however
2815 * we know the event must be on the current CPU, therefore we
2816 * don't need to use it.
2817 */
2818 switch (event->state) {
2819 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002820 event->pmu->read(event);
2821 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002822
2823 case PERF_EVENT_STATE_INACTIVE:
2824 update_event_times(event);
2825 break;
2826
2827 default:
2828 break;
2829 }
2830
2831 /*
2832 * In order to keep per-task stats reliable we need to flip the event
2833 * values when we flip the contexts.
2834 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002835 value = local64_read(&next_event->count);
2836 value = local64_xchg(&event->count, value);
2837 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838
2839 swap(event->total_time_enabled, next_event->total_time_enabled);
2840 swap(event->total_time_running, next_event->total_time_running);
2841
2842 /*
2843 * Since we swizzled the values, update the user visible data too.
2844 */
2845 perf_event_update_userpage(event);
2846 perf_event_update_userpage(next_event);
2847}
2848
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002849static void perf_event_sync_stat(struct perf_event_context *ctx,
2850 struct perf_event_context *next_ctx)
2851{
2852 struct perf_event *event, *next_event;
2853
2854 if (!ctx->nr_stat)
2855 return;
2856
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002857 update_context_time(ctx);
2858
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002859 event = list_first_entry(&ctx->event_list,
2860 struct perf_event, event_entry);
2861
2862 next_event = list_first_entry(&next_ctx->event_list,
2863 struct perf_event, event_entry);
2864
2865 while (&event->event_entry != &ctx->event_list &&
2866 &next_event->event_entry != &next_ctx->event_list) {
2867
2868 __perf_event_sync_stat(event, next_event);
2869
2870 event = list_next_entry(event, event_entry);
2871 next_event = list_next_entry(next_event, event_entry);
2872 }
2873}
2874
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002875static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2876 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002877{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002878 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002879 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002880 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002881 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002882 int do_switch = 1;
2883
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002884 if (likely(!ctx))
2885 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002886
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002887 cpuctx = __get_cpu_context(ctx);
2888 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002889 return;
2890
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002891 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002892 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002893 if (!next_ctx)
2894 goto unlock;
2895
2896 parent = rcu_dereference(ctx->parent_ctx);
2897 next_parent = rcu_dereference(next_ctx->parent_ctx);
2898
2899 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002900 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002901 goto unlock;
2902
2903 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002904 /*
2905 * Looks like the two contexts are clones, so we might be
2906 * able to optimize the context switch. We lock both
2907 * contexts and check that they are clones under the
2908 * lock (including re-checking that neither has been
2909 * uncloned in the meantime). It doesn't matter which
2910 * order we take the locks because no other cpu could
2911 * be trying to lock both of these tasks.
2912 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002913 raw_spin_lock(&ctx->lock);
2914 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002915 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002916 WRITE_ONCE(ctx->task, next);
2917 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002918
2919 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2920
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002921 /*
2922 * RCU_INIT_POINTER here is safe because we've not
2923 * modified the ctx and the above modification of
2924 * ctx->task and ctx->task_ctx_data are immaterial
2925 * since those values are always verified under
2926 * ctx->lock which we're now holding.
2927 */
2928 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2929 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2930
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002931 do_switch = 0;
2932
2933 perf_event_sync_stat(ctx, next_ctx);
2934 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002935 raw_spin_unlock(&next_ctx->lock);
2936 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002937 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002938unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002939 rcu_read_unlock();
2940
2941 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002942 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002943 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002944 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002945 }
2946}
2947
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002948static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2949
Yan, Zhengba532502014-11-04 21:55:58 -05002950void perf_sched_cb_dec(struct pmu *pmu)
2951{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002952 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2953
Yan, Zhengba532502014-11-04 21:55:58 -05002954 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002955
2956 if (!--cpuctx->sched_cb_usage)
2957 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05002958}
2959
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002960
Yan, Zhengba532502014-11-04 21:55:58 -05002961void perf_sched_cb_inc(struct pmu *pmu)
2962{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002963 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2964
2965 if (!cpuctx->sched_cb_usage++)
2966 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
2967
Yan, Zhengba532502014-11-04 21:55:58 -05002968 this_cpu_inc(perf_sched_cb_usages);
2969}
2970
2971/*
2972 * This function provides the context switch callback to the lower code
2973 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02002974 *
2975 * This callback is relevant even to per-cpu events; for example multi event
2976 * PEBS requires this to provide PID/TID information. This requires we flush
2977 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05002978 */
2979static void perf_pmu_sched_task(struct task_struct *prev,
2980 struct task_struct *next,
2981 bool sched_in)
2982{
2983 struct perf_cpu_context *cpuctx;
2984 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05002985
2986 if (prev == next)
2987 return;
2988
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002989 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08002990 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05002991
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002992 if (WARN_ON_ONCE(!pmu->sched_task))
2993 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05002994
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002995 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2996 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05002997
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002998 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05002999
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003000 perf_pmu_enable(pmu);
3001 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003002 }
Yan, Zhengba532502014-11-04 21:55:58 -05003003}
3004
Adrian Hunter45ac1402015-07-21 12:44:02 +03003005static void perf_event_switch(struct task_struct *task,
3006 struct task_struct *next_prev, bool sched_in);
3007
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003008#define for_each_task_context_nr(ctxn) \
3009 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3010
3011/*
3012 * Called from scheduler to remove the events of the current task,
3013 * with interrupts disabled.
3014 *
3015 * We stop each event and update the event value in event->count.
3016 *
3017 * This does not protect us against NMI, but disable()
3018 * sets the disabled bit in the control field of event _before_
3019 * accessing the event control register. If a NMI hits, then it will
3020 * not restart the event.
3021 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003022void __perf_event_task_sched_out(struct task_struct *task,
3023 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003024{
3025 int ctxn;
3026
Yan, Zhengba532502014-11-04 21:55:58 -05003027 if (__this_cpu_read(perf_sched_cb_usages))
3028 perf_pmu_sched_task(task, next, false);
3029
Adrian Hunter45ac1402015-07-21 12:44:02 +03003030 if (atomic_read(&nr_switch_events))
3031 perf_event_switch(task, next, false);
3032
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003033 for_each_task_context_nr(ctxn)
3034 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003035
3036 /*
3037 * if cgroup events exist on this CPU, then we need
3038 * to check if we have to switch out PMU state.
3039 * cgroup event are system-wide mode only
3040 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003041 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003042 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003043}
3044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003045/*
3046 * Called with IRQs disabled
3047 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003048static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3049 enum event_type_t event_type)
3050{
3051 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003052}
3053
3054static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003055ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003056 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003057{
3058 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003060 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
3061 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02003063 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064 continue;
3065
Stephane Eraniane5d13672011-02-14 11:20:01 +02003066 /* may need to reset tstamp_enabled */
3067 if (is_cgroup_event(event))
3068 perf_cgroup_mark_enabled(event, ctx);
3069
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003070 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01003071 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003072
3073 /*
3074 * If this pinned group hasn't been scheduled,
3075 * put it in error state.
3076 */
3077 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3078 update_group_times(event);
3079 event->state = PERF_EVENT_STATE_ERROR;
3080 }
3081 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003082}
3083
3084static void
3085ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003086 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003087{
3088 struct perf_event *event;
3089 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003090
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003091 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
3092 /* Ignore events in OFF or ERROR state */
3093 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003094 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003095 /*
3096 * Listen to the 'cpu' scheduling filter constraint
3097 * of events:
3098 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02003099 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003100 continue;
3101
Stephane Eraniane5d13672011-02-14 11:20:01 +02003102 /* may need to reset tstamp_enabled */
3103 if (is_cgroup_event(event))
3104 perf_cgroup_mark_enabled(event, ctx);
3105
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003106 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003107 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003108 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003109 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003110 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003111}
3112
3113static void
3114ctx_sched_in(struct perf_event_context *ctx,
3115 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003116 enum event_type_t event_type,
3117 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003118{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003119 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003120 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003121
Peter Zijlstrac994d612016-01-08 09:20:23 +01003122 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003123
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003124 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003125 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003126
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003127 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003128 if (ctx->task) {
3129 if (!is_active)
3130 cpuctx->task_ctx = ctx;
3131 else
3132 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3133 }
3134
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003135 is_active ^= ctx->is_active; /* changed bits */
3136
3137 if (is_active & EVENT_TIME) {
3138 /* start ctx time */
3139 now = perf_clock();
3140 ctx->timestamp = now;
3141 perf_cgroup_set_timestamp(task, ctx);
3142 }
3143
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003144 /*
3145 * First go through the list and put on any pinned groups
3146 * in order to give them the best chance of going on.
3147 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003148 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003149 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003150
3151 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003152 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003153 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003154}
3155
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003156static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003157 enum event_type_t event_type,
3158 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003159{
3160 struct perf_event_context *ctx = &cpuctx->ctx;
3161
Stephane Eraniane5d13672011-02-14 11:20:01 +02003162 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003163}
3164
Stephane Eraniane5d13672011-02-14 11:20:01 +02003165static void perf_event_context_sched_in(struct perf_event_context *ctx,
3166 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003167{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003168 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003170 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003171 if (cpuctx->task_ctx == ctx)
3172 return;
3173
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003174 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003175 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003176 /*
3177 * We want to keep the following priority order:
3178 * cpu pinned (that don't need to move), task pinned,
3179 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003180 *
3181 * However, if task's ctx is not carrying any pinned
3182 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003183 */
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003184 if (!list_empty(&ctx->pinned_groups))
3185 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003186 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003187 perf_pmu_enable(ctx->pmu);
3188 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003189}
3190
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003191/*
3192 * Called from scheduler to add the events of the current task
3193 * with interrupts disabled.
3194 *
3195 * We restore the event value and then enable it.
3196 *
3197 * This does not protect us against NMI, but enable()
3198 * sets the enabled bit in the control field of event _before_
3199 * accessing the event control register. If a NMI hits, then it will
3200 * keep the event running.
3201 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003202void __perf_event_task_sched_in(struct task_struct *prev,
3203 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003204{
3205 struct perf_event_context *ctx;
3206 int ctxn;
3207
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003208 /*
3209 * If cgroup events exist on this CPU, then we need to check if we have
3210 * to switch in PMU state; cgroup event are system-wide mode only.
3211 *
3212 * Since cgroup events are CPU events, we must schedule these in before
3213 * we schedule in the task events.
3214 */
3215 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3216 perf_cgroup_sched_in(prev, task);
3217
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003218 for_each_task_context_nr(ctxn) {
3219 ctx = task->perf_event_ctxp[ctxn];
3220 if (likely(!ctx))
3221 continue;
3222
Stephane Eraniane5d13672011-02-14 11:20:01 +02003223 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003224 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003225
Adrian Hunter45ac1402015-07-21 12:44:02 +03003226 if (atomic_read(&nr_switch_events))
3227 perf_event_switch(task, prev, true);
3228
Yan, Zhengba532502014-11-04 21:55:58 -05003229 if (__this_cpu_read(perf_sched_cb_usages))
3230 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003231}
3232
Peter Zijlstraabd50712010-01-26 18:50:16 +01003233static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3234{
3235 u64 frequency = event->attr.sample_freq;
3236 u64 sec = NSEC_PER_SEC;
3237 u64 divisor, dividend;
3238
3239 int count_fls, nsec_fls, frequency_fls, sec_fls;
3240
3241 count_fls = fls64(count);
3242 nsec_fls = fls64(nsec);
3243 frequency_fls = fls64(frequency);
3244 sec_fls = 30;
3245
3246 /*
3247 * We got @count in @nsec, with a target of sample_freq HZ
3248 * the target period becomes:
3249 *
3250 * @count * 10^9
3251 * period = -------------------
3252 * @nsec * sample_freq
3253 *
3254 */
3255
3256 /*
3257 * Reduce accuracy by one bit such that @a and @b converge
3258 * to a similar magnitude.
3259 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003260#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003261do { \
3262 if (a##_fls > b##_fls) { \
3263 a >>= 1; \
3264 a##_fls--; \
3265 } else { \
3266 b >>= 1; \
3267 b##_fls--; \
3268 } \
3269} while (0)
3270
3271 /*
3272 * Reduce accuracy until either term fits in a u64, then proceed with
3273 * the other, so that finally we can do a u64/u64 division.
3274 */
3275 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3276 REDUCE_FLS(nsec, frequency);
3277 REDUCE_FLS(sec, count);
3278 }
3279
3280 if (count_fls + sec_fls > 64) {
3281 divisor = nsec * frequency;
3282
3283 while (count_fls + sec_fls > 64) {
3284 REDUCE_FLS(count, sec);
3285 divisor >>= 1;
3286 }
3287
3288 dividend = count * sec;
3289 } else {
3290 dividend = count * sec;
3291
3292 while (nsec_fls + frequency_fls > 64) {
3293 REDUCE_FLS(nsec, frequency);
3294 dividend >>= 1;
3295 }
3296
3297 divisor = nsec * frequency;
3298 }
3299
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003300 if (!divisor)
3301 return dividend;
3302
Peter Zijlstraabd50712010-01-26 18:50:16 +01003303 return div64_u64(dividend, divisor);
3304}
3305
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003306static DEFINE_PER_CPU(int, perf_throttled_count);
3307static DEFINE_PER_CPU(u64, perf_throttled_seq);
3308
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003309static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310{
3311 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003312 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003313 s64 delta;
3314
Peter Zijlstraabd50712010-01-26 18:50:16 +01003315 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316
3317 delta = (s64)(period - hwc->sample_period);
3318 delta = (delta + 7) / 8; /* low pass filter */
3319
3320 sample_period = hwc->sample_period + delta;
3321
3322 if (!sample_period)
3323 sample_period = 1;
3324
3325 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003326
Peter Zijlstrae7850592010-05-21 14:43:08 +02003327 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003328 if (disable)
3329 event->pmu->stop(event, PERF_EF_UPDATE);
3330
Peter Zijlstrae7850592010-05-21 14:43:08 +02003331 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003332
3333 if (disable)
3334 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003335 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003336}
3337
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003338/*
3339 * combine freq adjustment with unthrottling to avoid two passes over the
3340 * events. At the same time, make sure, having freq events does not change
3341 * the rate of unthrottling as that would introduce bias.
3342 */
3343static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3344 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003345{
3346 struct perf_event *event;
3347 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003348 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003349 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003350
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003351 /*
3352 * only need to iterate over all events iff:
3353 * - context have events in frequency mode (needs freq adjust)
3354 * - there are events to unthrottle on this cpu
3355 */
3356 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003357 return;
3358
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003359 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003360 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003361
Paul Mackerras03541f82009-10-14 16:58:03 +11003362 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003363 if (event->state != PERF_EVENT_STATE_ACTIVE)
3364 continue;
3365
Stephane Eranian5632ab12011-01-03 18:20:01 +02003366 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003367 continue;
3368
Alexander Shishkin44377272013-12-16 14:17:36 +02003369 perf_pmu_disable(event->pmu);
3370
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003371 hwc = &event->hw;
3372
Jiri Olsaae23bff2013-08-24 16:45:54 +02003373 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003374 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003375 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003376 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003377 }
3378
3379 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003380 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003381
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003382 /*
3383 * stop the event and update event->count
3384 */
3385 event->pmu->stop(event, PERF_EF_UPDATE);
3386
Peter Zijlstrae7850592010-05-21 14:43:08 +02003387 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003388 delta = now - hwc->freq_count_stamp;
3389 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003390
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003391 /*
3392 * restart the event
3393 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003394 * we have stopped the event so tell that
3395 * to perf_adjust_period() to avoid stopping it
3396 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003397 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003398 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003399 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003400
3401 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003402 next:
3403 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003404 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003405
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003406 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003407 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003408}
3409
3410/*
3411 * Round-robin a context's events:
3412 */
3413static void rotate_ctx(struct perf_event_context *ctx)
3414{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003415 /*
3416 * Rotate the first entry last of non-pinned groups. Rotation might be
3417 * disabled by the inheritance code.
3418 */
3419 if (!ctx->rotate_disable)
3420 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003421}
3422
Stephane Eranian9e630202013-04-03 14:21:33 +02003423static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003424{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003425 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003426 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003427
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003428 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003429 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3430 rotate = 1;
3431 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003432
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003433 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003434 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003435 if (ctx->nr_events != ctx->nr_active)
3436 rotate = 1;
3437 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003438
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003439 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003440 goto done;
3441
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003442 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003443 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003444
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003445 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3446 if (ctx)
3447 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003448
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003449 rotate_ctx(&cpuctx->ctx);
3450 if (ctx)
3451 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003452
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003453 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003454
3455 perf_pmu_enable(cpuctx->ctx.pmu);
3456 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003457done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003458
3459 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003460}
3461
3462void perf_event_task_tick(void)
3463{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003464 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3465 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003466 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003467
3468 WARN_ON(!irqs_disabled());
3469
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003470 __this_cpu_inc(perf_throttled_seq);
3471 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003472 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003473
Mark Rutland2fde4f92015-01-07 15:01:54 +00003474 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003475 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003476}
3477
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003478static int event_enable_on_exec(struct perf_event *event,
3479 struct perf_event_context *ctx)
3480{
3481 if (!event->attr.enable_on_exec)
3482 return 0;
3483
3484 event->attr.enable_on_exec = 0;
3485 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3486 return 0;
3487
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003488 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003489
3490 return 1;
3491}
3492
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493/*
3494 * Enable all of a task's events that have been marked enable-on-exec.
3495 * This expects task == current.
3496 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003497static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003498{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003499 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003500 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003501 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003502 struct perf_event *event;
3503 unsigned long flags;
3504 int enabled = 0;
3505
3506 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003507 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003508 if (!ctx || !ctx->nr_events)
3509 goto out;
3510
Peter Zijlstra3e349502016-01-08 10:01:18 +01003511 cpuctx = __get_cpu_context(ctx);
3512 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003513 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003514 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003515 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003516 event_type |= get_event_type(event);
3517 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003518
3519 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003520 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003521 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003522 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003523 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003524 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003525 } else {
3526 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003527 }
3528 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003529
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003530out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003531 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003532
3533 if (clone_ctx)
3534 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003535}
3536
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003537struct perf_read_data {
3538 struct perf_event *event;
3539 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003540 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003541};
3542
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003543static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003544{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003545 u16 local_pkg, event_pkg;
3546
3547 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003548 int local_cpu = smp_processor_id();
3549
3550 event_pkg = topology_physical_package_id(event_cpu);
3551 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003552
3553 if (event_pkg == local_pkg)
3554 return local_cpu;
3555 }
3556
3557 return event_cpu;
3558}
3559
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003560/*
3561 * Cross CPU call to read the hardware event
3562 */
3563static void __perf_event_read(void *info)
3564{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003565 struct perf_read_data *data = info;
3566 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003567 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003568 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003569 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003570
3571 /*
3572 * If this is a task context, we need to check whether it is
3573 * the current task context of this cpu. If not it has been
3574 * scheduled out before the smp call arrived. In that case
3575 * event->count would have been updated to a recent sample
3576 * when the event was scheduled out.
3577 */
3578 if (ctx->task && cpuctx->task_ctx != ctx)
3579 return;
3580
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003581 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003582 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003583 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003584 update_cgrp_time_from_event(event);
3585 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003586
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003587 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003588 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003589 goto unlock;
3590
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003591 if (!data->group) {
3592 pmu->read(event);
3593 data->ret = 0;
3594 goto unlock;
3595 }
3596
3597 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3598
3599 pmu->read(event);
3600
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003601 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3602 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003603 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3604 /*
3605 * Use sibling's PMU rather than @event's since
3606 * sibling could be on different (eg: software) PMU.
3607 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003608 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003609 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003610 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003611
3612 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003613
3614unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003615 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003616}
3617
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003618static inline u64 perf_event_count(struct perf_event *event)
3619{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003620 if (event->pmu->count)
3621 return event->pmu->count(event);
3622
3623 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003624}
3625
Kaixu Xiaffe86902015-08-06 07:02:32 +00003626/*
3627 * NMI-safe method to read a local event, that is an event that
3628 * is:
3629 * - either for the current task, or for this CPU
3630 * - does not have inherit set, for inherited task events
3631 * will not be local and we cannot read them atomically
3632 * - must not have a pmu::count method
3633 */
3634u64 perf_event_read_local(struct perf_event *event)
3635{
3636 unsigned long flags;
3637 u64 val;
3638
3639 /*
3640 * Disabling interrupts avoids all counter scheduling (context
3641 * switches, timer based rotation and IPIs).
3642 */
3643 local_irq_save(flags);
3644
3645 /* If this is a per-task event, it must be for current */
3646 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3647 event->hw.target != current);
3648
3649 /* If this is a per-CPU event, it must be for this CPU */
3650 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3651 event->cpu != smp_processor_id());
3652
3653 /*
3654 * It must not be an event with inherit set, we cannot read
3655 * all child counters from atomic context.
3656 */
3657 WARN_ON_ONCE(event->attr.inherit);
3658
3659 /*
3660 * It must not have a pmu::count method, those are not
3661 * NMI safe.
3662 */
3663 WARN_ON_ONCE(event->pmu->count);
3664
3665 /*
3666 * If the event is currently on this CPU, its either a per-task event,
3667 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3668 * oncpu == -1).
3669 */
3670 if (event->oncpu == smp_processor_id())
3671 event->pmu->read(event);
3672
3673 val = local64_read(&event->count);
3674 local_irq_restore(flags);
3675
3676 return val;
3677}
3678
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003679static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003680{
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003681 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003682
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003683 /*
3684 * If event is enabled and currently active on a CPU, update the
3685 * value in the event structure:
3686 */
3687 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003688 struct perf_read_data data = {
3689 .event = event,
3690 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003691 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003692 };
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003693
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003694 event_cpu = READ_ONCE(event->oncpu);
3695 if ((unsigned)event_cpu >= nr_cpu_ids)
3696 return 0;
3697
3698 preempt_disable();
3699 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003700
Peter Zijlstra58763142016-08-30 10:15:03 +02003701 /*
3702 * Purposely ignore the smp_call_function_single() return
3703 * value.
3704 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003705 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02003706 * scheduled out and that will have updated the event count.
3707 *
3708 * Therefore, either way, we'll have an up-to-date event count
3709 * after this.
3710 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003711 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
3712 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02003713 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003714 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003715 struct perf_event_context *ctx = event->ctx;
3716 unsigned long flags;
3717
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003718 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003719 /*
3720 * may read while context is not active
3721 * (e.g., thread is blocked), in that case
3722 * we cannot update context time
3723 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003724 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003725 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003726 update_cgrp_time_from_event(event);
3727 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003728 if (group)
3729 update_group_times(event);
3730 else
3731 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003732 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003733 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003734
3735 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003736}
3737
3738/*
3739 * Initialize the perf_event context in a task_struct:
3740 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003741static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003742{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003743 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003744 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003745 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003746 INIT_LIST_HEAD(&ctx->pinned_groups);
3747 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003748 INIT_LIST_HEAD(&ctx->event_list);
3749 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003750}
3751
Peter Zijlstraeb184472010-09-07 15:55:13 +02003752static struct perf_event_context *
3753alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003754{
3755 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003756
3757 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3758 if (!ctx)
3759 return NULL;
3760
3761 __perf_event_init_context(ctx);
3762 if (task) {
3763 ctx->task = task;
3764 get_task_struct(task);
3765 }
3766 ctx->pmu = pmu;
3767
3768 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003769}
3770
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003771static struct task_struct *
3772find_lively_task_by_vpid(pid_t vpid)
3773{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003776 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003777 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003778 task = current;
3779 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003780 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003781 if (task)
3782 get_task_struct(task);
3783 rcu_read_unlock();
3784
3785 if (!task)
3786 return ERR_PTR(-ESRCH);
3787
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003788 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003789}
3790
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003791/*
3792 * Returns a matching context with refcount and pincount.
3793 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003794static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003795find_get_context(struct pmu *pmu, struct task_struct *task,
3796 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003797{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003798 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003799 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003800 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003802 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003803 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003804
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003805 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806 /* Must be root to operate on a CPU event: */
3807 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3808 return ERR_PTR(-EACCES);
3809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003810 /*
3811 * We could be clever and allow to attach a event to an
3812 * offline CPU and activate it when the CPU comes up, but
3813 * that's for later.
3814 */
3815 if (!cpu_online(cpu))
3816 return ERR_PTR(-ENODEV);
3817
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003818 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003819 ctx = &cpuctx->ctx;
3820 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003821 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003822
3823 return ctx;
3824 }
3825
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003826 err = -EINVAL;
3827 ctxn = pmu->task_ctx_nr;
3828 if (ctxn < 0)
3829 goto errout;
3830
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003831 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3832 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3833 if (!task_ctx_data) {
3834 err = -ENOMEM;
3835 goto errout;
3836 }
3837 }
3838
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003839retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003840 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003841 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003842 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003843 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003844
3845 if (task_ctx_data && !ctx->task_ctx_data) {
3846 ctx->task_ctx_data = task_ctx_data;
3847 task_ctx_data = NULL;
3848 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003849 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003850
3851 if (clone_ctx)
3852 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003853 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003854 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003855 err = -ENOMEM;
3856 if (!ctx)
3857 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003858
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003859 if (task_ctx_data) {
3860 ctx->task_ctx_data = task_ctx_data;
3861 task_ctx_data = NULL;
3862 }
3863
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003864 err = 0;
3865 mutex_lock(&task->perf_event_mutex);
3866 /*
3867 * If it has already passed perf_event_exit_task().
3868 * we must see PF_EXITING, it takes this mutex too.
3869 */
3870 if (task->flags & PF_EXITING)
3871 err = -ESRCH;
3872 else if (task->perf_event_ctxp[ctxn])
3873 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003874 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003875 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003876 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003877 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003878 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003879 mutex_unlock(&task->perf_event_mutex);
3880
3881 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003882 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003883
3884 if (err == -EAGAIN)
3885 goto retry;
3886 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003887 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003888 }
3889
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003890 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003891 return ctx;
3892
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003893errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003894 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003895 return ERR_PTR(err);
3896}
3897
Li Zefan6fb29152009-10-15 11:21:42 +08003898static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003899static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003901static void free_event_rcu(struct rcu_head *head)
3902{
3903 struct perf_event *event;
3904
3905 event = container_of(head, struct perf_event, rcu_head);
3906 if (event->ns)
3907 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003908 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909 kfree(event);
3910}
3911
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003912static void ring_buffer_attach(struct perf_event *event,
3913 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003914
Kan Liangf2fb6be2016-03-23 11:24:37 -07003915static void detach_sb_event(struct perf_event *event)
3916{
3917 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3918
3919 raw_spin_lock(&pel->lock);
3920 list_del_rcu(&event->sb_list);
3921 raw_spin_unlock(&pel->lock);
3922}
3923
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003924static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003925{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003926 struct perf_event_attr *attr = &event->attr;
3927
Kan Liangf2fb6be2016-03-23 11:24:37 -07003928 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003929 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003930
3931 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003932 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003933
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003934 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3935 attr->comm || attr->comm_exec ||
3936 attr->task ||
3937 attr->context_switch)
3938 return true;
3939 return false;
3940}
3941
3942static void unaccount_pmu_sb_event(struct perf_event *event)
3943{
3944 if (is_sb_event(event))
3945 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003946}
3947
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003948static void unaccount_event_cpu(struct perf_event *event, int cpu)
3949{
3950 if (event->parent)
3951 return;
3952
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003953 if (is_cgroup_event(event))
3954 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3955}
3956
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003957#ifdef CONFIG_NO_HZ_FULL
3958static DEFINE_SPINLOCK(nr_freq_lock);
3959#endif
3960
3961static void unaccount_freq_event_nohz(void)
3962{
3963#ifdef CONFIG_NO_HZ_FULL
3964 spin_lock(&nr_freq_lock);
3965 if (atomic_dec_and_test(&nr_freq_events))
3966 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3967 spin_unlock(&nr_freq_lock);
3968#endif
3969}
3970
3971static void unaccount_freq_event(void)
3972{
3973 if (tick_nohz_full_enabled())
3974 unaccount_freq_event_nohz();
3975 else
3976 atomic_dec(&nr_freq_events);
3977}
3978
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003979static void unaccount_event(struct perf_event *event)
3980{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003981 bool dec = false;
3982
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003983 if (event->parent)
3984 return;
3985
3986 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003987 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003988 if (event->attr.mmap || event->attr.mmap_data)
3989 atomic_dec(&nr_mmap_events);
3990 if (event->attr.comm)
3991 atomic_dec(&nr_comm_events);
3992 if (event->attr.task)
3993 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003994 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003995 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003996 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003997 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003998 atomic_dec(&nr_switch_events);
3999 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004000 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004001 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004002 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004003 dec = true;
4004
Peter Zijlstra9107c892016-02-24 18:45:45 +01004005 if (dec) {
4006 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4007 schedule_delayed_work(&perf_sched_work, HZ);
4008 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004009
4010 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004011
4012 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004013}
4014
Peter Zijlstra9107c892016-02-24 18:45:45 +01004015static void perf_sched_delayed(struct work_struct *work)
4016{
4017 mutex_lock(&perf_sched_mutex);
4018 if (atomic_dec_and_test(&perf_sched_count))
4019 static_branch_disable(&perf_sched_events);
4020 mutex_unlock(&perf_sched_mutex);
4021}
4022
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004023/*
4024 * The following implement mutual exclusion of events on "exclusive" pmus
4025 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4026 * at a time, so we disallow creating events that might conflict, namely:
4027 *
4028 * 1) cpu-wide events in the presence of per-task events,
4029 * 2) per-task events in the presence of cpu-wide events,
4030 * 3) two matching events on the same context.
4031 *
4032 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004033 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004034 */
4035static int exclusive_event_init(struct perf_event *event)
4036{
4037 struct pmu *pmu = event->pmu;
4038
4039 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4040 return 0;
4041
4042 /*
4043 * Prevent co-existence of per-task and cpu-wide events on the
4044 * same exclusive pmu.
4045 *
4046 * Negative pmu::exclusive_cnt means there are cpu-wide
4047 * events on this "exclusive" pmu, positive means there are
4048 * per-task events.
4049 *
4050 * Since this is called in perf_event_alloc() path, event::ctx
4051 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4052 * to mean "per-task event", because unlike other attach states it
4053 * never gets cleared.
4054 */
4055 if (event->attach_state & PERF_ATTACH_TASK) {
4056 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4057 return -EBUSY;
4058 } else {
4059 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4060 return -EBUSY;
4061 }
4062
4063 return 0;
4064}
4065
4066static void exclusive_event_destroy(struct perf_event *event)
4067{
4068 struct pmu *pmu = event->pmu;
4069
4070 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4071 return;
4072
4073 /* see comment in exclusive_event_init() */
4074 if (event->attach_state & PERF_ATTACH_TASK)
4075 atomic_dec(&pmu->exclusive_cnt);
4076 else
4077 atomic_inc(&pmu->exclusive_cnt);
4078}
4079
4080static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4081{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004082 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004083 (e1->cpu == e2->cpu ||
4084 e1->cpu == -1 ||
4085 e2->cpu == -1))
4086 return true;
4087 return false;
4088}
4089
4090/* Called under the same ctx::mutex as perf_install_in_context() */
4091static bool exclusive_event_installable(struct perf_event *event,
4092 struct perf_event_context *ctx)
4093{
4094 struct perf_event *iter_event;
4095 struct pmu *pmu = event->pmu;
4096
4097 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4098 return true;
4099
4100 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4101 if (exclusive_event_match(iter_event, event))
4102 return false;
4103 }
4104
4105 return true;
4106}
4107
Alexander Shishkin375637b2016-04-27 18:44:46 +03004108static void perf_addr_filters_splice(struct perf_event *event,
4109 struct list_head *head);
4110
Peter Zijlstra683ede42014-05-05 12:11:24 +02004111static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004112{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004113 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004114
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004115 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004116
Frederic Weisbecker76369132011-05-19 19:55:04 +02004117 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004118 /*
4119 * Can happen when we close an event with re-directed output.
4120 *
4121 * Since we have a 0 refcount, perf_mmap_close() will skip
4122 * over us; possibly making our ring_buffer_put() the last.
4123 */
4124 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004125 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004126 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004127 }
4128
Stephane Eraniane5d13672011-02-14 11:20:01 +02004129 if (is_cgroup_event(event))
4130 perf_detach_cgroup(event);
4131
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004132 if (!event->parent) {
4133 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4134 put_callchain_buffers();
4135 }
4136
4137 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004138 perf_addr_filters_splice(event, NULL);
4139 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004140
4141 if (event->destroy)
4142 event->destroy(event);
4143
4144 if (event->ctx)
4145 put_ctx(event->ctx);
4146
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004147 exclusive_event_destroy(event);
4148 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004149
4150 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004151}
4152
Peter Zijlstra683ede42014-05-05 12:11:24 +02004153/*
4154 * Used to free events which have a known refcount of 1, such as in error paths
4155 * where the event isn't exposed yet and inherited events.
4156 */
4157static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004158{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004159 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4160 "unexpected event refcount: %ld; ptr=%p\n",
4161 atomic_long_read(&event->refcount), event)) {
4162 /* leak to avoid use-after-free */
4163 return;
4164 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004165
Peter Zijlstra683ede42014-05-05 12:11:24 +02004166 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004167}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004168
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004169/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004170 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004171 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004172static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004173{
Peter Zijlstra88821352010-11-09 19:01:43 +01004174 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004175
Peter Zijlstra88821352010-11-09 19:01:43 +01004176 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004177 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004178 * Matches the smp_store_release() in perf_event_exit_task(). If we
4179 * observe !owner it means the list deletion is complete and we can
4180 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004181 * owner->perf_event_mutex.
4182 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004183 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004184 if (owner) {
4185 /*
4186 * Since delayed_put_task_struct() also drops the last
4187 * task reference we can safely take a new reference
4188 * while holding the rcu_read_lock().
4189 */
4190 get_task_struct(owner);
4191 }
4192 rcu_read_unlock();
4193
4194 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004195 /*
4196 * If we're here through perf_event_exit_task() we're already
4197 * holding ctx->mutex which would be an inversion wrt. the
4198 * normal lock order.
4199 *
4200 * However we can safely take this lock because its the child
4201 * ctx->mutex.
4202 */
4203 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4204
Peter Zijlstra88821352010-11-09 19:01:43 +01004205 /*
4206 * We have to re-check the event->owner field, if it is cleared
4207 * we raced with perf_event_exit_task(), acquiring the mutex
4208 * ensured they're done, and we can proceed with freeing the
4209 * event.
4210 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004211 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004212 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004213 smp_store_release(&event->owner, NULL);
4214 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004215 mutex_unlock(&owner->perf_event_mutex);
4216 put_task_struct(owner);
4217 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004218}
4219
Jiri Olsaf8697762014-08-01 14:33:01 +02004220static void put_event(struct perf_event *event)
4221{
Jiri Olsaf8697762014-08-01 14:33:01 +02004222 if (!atomic_long_dec_and_test(&event->refcount))
4223 return;
4224
Peter Zijlstra683ede42014-05-05 12:11:24 +02004225 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004226}
4227
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004228/*
4229 * Kill an event dead; while event:refcount will preserve the event
4230 * object, it will not preserve its functionality. Once the last 'user'
4231 * gives up the object, we'll destroy the thing.
4232 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004233int perf_event_release_kernel(struct perf_event *event)
4234{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004235 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004236 struct perf_event *child, *tmp;
4237
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004238 /*
4239 * If we got here through err_file: fput(event_file); we will not have
4240 * attached to a context yet.
4241 */
4242 if (!ctx) {
4243 WARN_ON_ONCE(event->attach_state &
4244 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4245 goto no_ctx;
4246 }
4247
Peter Zijlstra88821352010-11-09 19:01:43 +01004248 if (!is_kernel_event(event))
4249 perf_remove_from_owner(event);
4250
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004251 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004252 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004253 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004254
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004255 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004256 /*
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004257 * Mark this even as STATE_DEAD, there is no external reference to it
4258 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004259 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004260 * Anybody acquiring event->child_mutex after the below loop _must_
4261 * also see this, most importantly inherit_event() which will avoid
4262 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004263 *
4264 * Thus this guarantees that we will in fact observe and kill _ALL_
4265 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004266 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004267 event->state = PERF_EVENT_STATE_DEAD;
4268 raw_spin_unlock_irq(&ctx->lock);
4269
4270 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004271
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004272again:
4273 mutex_lock(&event->child_mutex);
4274 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004275
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004276 /*
4277 * Cannot change, child events are not migrated, see the
4278 * comment with perf_event_ctx_lock_nested().
4279 */
4280 ctx = lockless_dereference(child->ctx);
4281 /*
4282 * Since child_mutex nests inside ctx::mutex, we must jump
4283 * through hoops. We start by grabbing a reference on the ctx.
4284 *
4285 * Since the event cannot get freed while we hold the
4286 * child_mutex, the context must also exist and have a !0
4287 * reference count.
4288 */
4289 get_ctx(ctx);
4290
4291 /*
4292 * Now that we have a ctx ref, we can drop child_mutex, and
4293 * acquire ctx::mutex without fear of it going away. Then we
4294 * can re-acquire child_mutex.
4295 */
4296 mutex_unlock(&event->child_mutex);
4297 mutex_lock(&ctx->mutex);
4298 mutex_lock(&event->child_mutex);
4299
4300 /*
4301 * Now that we hold ctx::mutex and child_mutex, revalidate our
4302 * state, if child is still the first entry, it didn't get freed
4303 * and we can continue doing so.
4304 */
4305 tmp = list_first_entry_or_null(&event->child_list,
4306 struct perf_event, child_list);
4307 if (tmp == child) {
4308 perf_remove_from_context(child, DETACH_GROUP);
4309 list_del(&child->child_list);
4310 free_event(child);
4311 /*
4312 * This matches the refcount bump in inherit_event();
4313 * this can't be the last reference.
4314 */
4315 put_event(event);
4316 }
4317
4318 mutex_unlock(&event->child_mutex);
4319 mutex_unlock(&ctx->mutex);
4320 put_ctx(ctx);
4321 goto again;
4322 }
4323 mutex_unlock(&event->child_mutex);
4324
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004325no_ctx:
4326 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004327 return 0;
4328}
4329EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4330
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004331/*
4332 * Called when the last reference to the file is gone.
4333 */
Al Viroa6fa9412012-08-20 14:59:25 +01004334static int perf_release(struct inode *inode, struct file *file)
4335{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004336 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004337 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004338}
4339
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004340u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004341{
4342 struct perf_event *child;
4343 u64 total = 0;
4344
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004345 *enabled = 0;
4346 *running = 0;
4347
Peter Zijlstra6f105812009-11-20 22:19:56 +01004348 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004349
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004350 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004351 total += perf_event_count(event);
4352
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004353 *enabled += event->total_time_enabled +
4354 atomic64_read(&event->child_total_time_enabled);
4355 *running += event->total_time_running +
4356 atomic64_read(&event->child_total_time_running);
4357
4358 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004359 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004360 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004361 *enabled += child->total_time_enabled;
4362 *running += child->total_time_running;
4363 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004364 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004365
4366 return total;
4367}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004368EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004369
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004370static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004371 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004372{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004373 struct perf_event *sub;
4374 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004375 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004376
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004377 ret = perf_event_read(leader, true);
4378 if (ret)
4379 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004380
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004381 /*
4382 * Since we co-schedule groups, {enabled,running} times of siblings
4383 * will be identical to those of the leader, so we only publish one
4384 * set.
4385 */
4386 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4387 values[n++] += leader->total_time_enabled +
4388 atomic64_read(&leader->child_total_time_enabled);
4389 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004391 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4392 values[n++] += leader->total_time_running +
4393 atomic64_read(&leader->child_total_time_running);
4394 }
4395
4396 /*
4397 * Write {count,id} tuples for every sibling.
4398 */
4399 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004400 if (read_format & PERF_FORMAT_ID)
4401 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004402
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004403 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004404 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004405 if (read_format & PERF_FORMAT_ID)
4406 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004407 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004408
4409 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004410}
4411
4412static int perf_read_group(struct perf_event *event,
4413 u64 read_format, char __user *buf)
4414{
4415 struct perf_event *leader = event->group_leader, *child;
4416 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004417 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004418 u64 *values;
4419
4420 lockdep_assert_held(&ctx->mutex);
4421
4422 values = kzalloc(event->read_size, GFP_KERNEL);
4423 if (!values)
4424 return -ENOMEM;
4425
4426 values[0] = 1 + leader->nr_siblings;
4427
4428 /*
4429 * By locking the child_mutex of the leader we effectively
4430 * lock the child list of all siblings.. XXX explain how.
4431 */
4432 mutex_lock(&leader->child_mutex);
4433
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004434 ret = __perf_read_group_add(leader, read_format, values);
4435 if (ret)
4436 goto unlock;
4437
4438 list_for_each_entry(child, &leader->child_list, child_list) {
4439 ret = __perf_read_group_add(child, read_format, values);
4440 if (ret)
4441 goto unlock;
4442 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004443
4444 mutex_unlock(&leader->child_mutex);
4445
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004446 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004447 if (copy_to_user(buf, values, event->read_size))
4448 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004449 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004450
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004451unlock:
4452 mutex_unlock(&leader->child_mutex);
4453out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004454 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004455 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004456}
4457
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004458static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004459 u64 read_format, char __user *buf)
4460{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004461 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004462 u64 values[4];
4463 int n = 0;
4464
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004465 values[n++] = perf_event_read_value(event, &enabled, &running);
4466 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4467 values[n++] = enabled;
4468 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4469 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004470 if (read_format & PERF_FORMAT_ID)
4471 values[n++] = primary_event_id(event);
4472
4473 if (copy_to_user(buf, values, n * sizeof(u64)))
4474 return -EFAULT;
4475
4476 return n * sizeof(u64);
4477}
4478
Jiri Olsadc633982014-09-12 13:18:26 +02004479static bool is_event_hup(struct perf_event *event)
4480{
4481 bool no_children;
4482
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004483 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004484 return false;
4485
4486 mutex_lock(&event->child_mutex);
4487 no_children = list_empty(&event->child_list);
4488 mutex_unlock(&event->child_mutex);
4489 return no_children;
4490}
4491
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004492/*
4493 * Read the performance event - simple non blocking version for now
4494 */
4495static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004496__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004497{
4498 u64 read_format = event->attr.read_format;
4499 int ret;
4500
4501 /*
4502 * Return end-of-file for a read on a event that is in
4503 * error state (i.e. because it was pinned but it couldn't be
4504 * scheduled on to the CPU at some point).
4505 */
4506 if (event->state == PERF_EVENT_STATE_ERROR)
4507 return 0;
4508
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004509 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004510 return -ENOSPC;
4511
4512 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004513 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004514 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004515 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004516 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004517
4518 return ret;
4519}
4520
4521static ssize_t
4522perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4523{
4524 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004525 struct perf_event_context *ctx;
4526 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004527
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004528 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004529 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004530 perf_event_ctx_unlock(event, ctx);
4531
4532 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004533}
4534
4535static unsigned int perf_poll(struct file *file, poll_table *wait)
4536{
4537 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004538 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004539 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004540
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004541 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004542
Jiri Olsadc633982014-09-12 13:18:26 +02004543 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004544 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004545
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004546 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004547 * Pin the event->rb by taking event->mmap_mutex; otherwise
4548 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004549 */
4550 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004551 rb = event->rb;
4552 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004553 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004554 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004555 return events;
4556}
4557
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004558static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004559{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004560 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004561 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004562 perf_event_update_userpage(event);
4563}
4564
4565/*
4566 * Holding the top-level event's child_mutex means that any
4567 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004568 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004569 * task existence requirements of perf_event_enable/disable.
4570 */
4571static void perf_event_for_each_child(struct perf_event *event,
4572 void (*func)(struct perf_event *))
4573{
4574 struct perf_event *child;
4575
4576 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004577
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004578 mutex_lock(&event->child_mutex);
4579 func(event);
4580 list_for_each_entry(child, &event->child_list, child_list)
4581 func(child);
4582 mutex_unlock(&event->child_mutex);
4583}
4584
4585static void perf_event_for_each(struct perf_event *event,
4586 void (*func)(struct perf_event *))
4587{
4588 struct perf_event_context *ctx = event->ctx;
4589 struct perf_event *sibling;
4590
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004591 lockdep_assert_held(&ctx->mutex);
4592
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004593 event = event->group_leader;
4594
4595 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004596 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004597 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004598}
4599
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004600static void __perf_event_period(struct perf_event *event,
4601 struct perf_cpu_context *cpuctx,
4602 struct perf_event_context *ctx,
4603 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004604{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004605 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004606 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004608 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609 event->attr.sample_freq = value;
4610 } else {
4611 event->attr.sample_period = value;
4612 event->hw.sample_period = value;
4613 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004614
4615 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4616 if (active) {
4617 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004618 /*
4619 * We could be throttled; unthrottle now to avoid the tick
4620 * trying to unthrottle while we already re-started the event.
4621 */
4622 if (event->hw.interrupts == MAX_INTERRUPTS) {
4623 event->hw.interrupts = 0;
4624 perf_log_throttle(event, 1);
4625 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004626 event->pmu->stop(event, PERF_EF_UPDATE);
4627 }
4628
4629 local64_set(&event->hw.period_left, 0);
4630
4631 if (active) {
4632 event->pmu->start(event, PERF_EF_RELOAD);
4633 perf_pmu_enable(ctx->pmu);
4634 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004635}
4636
4637static int perf_event_period(struct perf_event *event, u64 __user *arg)
4638{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004639 u64 value;
4640
4641 if (!is_sampling_event(event))
4642 return -EINVAL;
4643
4644 if (copy_from_user(&value, arg, sizeof(value)))
4645 return -EFAULT;
4646
4647 if (!value)
4648 return -EINVAL;
4649
4650 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4651 return -EINVAL;
4652
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004653 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004654
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004655 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656}
4657
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004658static const struct file_operations perf_fops;
4659
Al Viro2903ff02012-08-28 12:52:22 -04004660static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004661{
Al Viro2903ff02012-08-28 12:52:22 -04004662 struct fd f = fdget(fd);
4663 if (!f.file)
4664 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004665
Al Viro2903ff02012-08-28 12:52:22 -04004666 if (f.file->f_op != &perf_fops) {
4667 fdput(f);
4668 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004669 }
Al Viro2903ff02012-08-28 12:52:22 -04004670 *p = f;
4671 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004672}
4673
4674static int perf_event_set_output(struct perf_event *event,
4675 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004676static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004677static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004678
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004679static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004680{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004681 void (*func)(struct perf_event *);
4682 u32 flags = arg;
4683
4684 switch (cmd) {
4685 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004686 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004687 break;
4688 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004689 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004690 break;
4691 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004692 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004693 break;
4694
4695 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004696 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004697
4698 case PERF_EVENT_IOC_PERIOD:
4699 return perf_event_period(event, (u64 __user *)arg);
4700
Jiri Olsacf4957f2012-10-24 13:37:58 +02004701 case PERF_EVENT_IOC_ID:
4702 {
4703 u64 id = primary_event_id(event);
4704
4705 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4706 return -EFAULT;
4707 return 0;
4708 }
4709
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004710 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004711 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004712 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004713 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004714 struct perf_event *output_event;
4715 struct fd output;
4716 ret = perf_fget_light(arg, &output);
4717 if (ret)
4718 return ret;
4719 output_event = output.file->private_data;
4720 ret = perf_event_set_output(event, output_event);
4721 fdput(output);
4722 } else {
4723 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004724 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004725 return ret;
4726 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004727
Li Zefan6fb29152009-10-15 11:21:42 +08004728 case PERF_EVENT_IOC_SET_FILTER:
4729 return perf_event_set_filter(event, (void __user *)arg);
4730
Alexei Starovoitov25415172015-03-25 12:49:20 -07004731 case PERF_EVENT_IOC_SET_BPF:
4732 return perf_event_set_bpf_prog(event, arg);
4733
Wang Nan86e79722016-03-28 06:41:29 +00004734 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4735 struct ring_buffer *rb;
4736
4737 rcu_read_lock();
4738 rb = rcu_dereference(event->rb);
4739 if (!rb || !rb->nr_pages) {
4740 rcu_read_unlock();
4741 return -EINVAL;
4742 }
4743 rb_toggle_paused(rb, !!arg);
4744 rcu_read_unlock();
4745 return 0;
4746 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004747 default:
4748 return -ENOTTY;
4749 }
4750
4751 if (flags & PERF_IOC_FLAG_GROUP)
4752 perf_event_for_each(event, func);
4753 else
4754 perf_event_for_each_child(event, func);
4755
4756 return 0;
4757}
4758
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004759static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4760{
4761 struct perf_event *event = file->private_data;
4762 struct perf_event_context *ctx;
4763 long ret;
4764
4765 ctx = perf_event_ctx_lock(event);
4766 ret = _perf_ioctl(event, cmd, arg);
4767 perf_event_ctx_unlock(event, ctx);
4768
4769 return ret;
4770}
4771
Pawel Mollb3f20782014-06-13 16:03:32 +01004772#ifdef CONFIG_COMPAT
4773static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4774 unsigned long arg)
4775{
4776 switch (_IOC_NR(cmd)) {
4777 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4778 case _IOC_NR(PERF_EVENT_IOC_ID):
4779 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4780 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4781 cmd &= ~IOCSIZE_MASK;
4782 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4783 }
4784 break;
4785 }
4786 return perf_ioctl(file, cmd, arg);
4787}
4788#else
4789# define perf_compat_ioctl NULL
4790#endif
4791
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004792int perf_event_task_enable(void)
4793{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004794 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004795 struct perf_event *event;
4796
4797 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004798 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4799 ctx = perf_event_ctx_lock(event);
4800 perf_event_for_each_child(event, _perf_event_enable);
4801 perf_event_ctx_unlock(event, ctx);
4802 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004803 mutex_unlock(&current->perf_event_mutex);
4804
4805 return 0;
4806}
4807
4808int perf_event_task_disable(void)
4809{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004810 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004811 struct perf_event *event;
4812
4813 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004814 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4815 ctx = perf_event_ctx_lock(event);
4816 perf_event_for_each_child(event, _perf_event_disable);
4817 perf_event_ctx_unlock(event, ctx);
4818 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004819 mutex_unlock(&current->perf_event_mutex);
4820
4821 return 0;
4822}
4823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824static int perf_event_index(struct perf_event *event)
4825{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004826 if (event->hw.state & PERF_HES_STOPPED)
4827 return 0;
4828
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004829 if (event->state != PERF_EVENT_STATE_ACTIVE)
4830 return 0;
4831
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004832 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004833}
4834
Eric B Munsonc4794292011-06-23 16:34:38 -04004835static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004836 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004837 u64 *enabled,
4838 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004839{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004840 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004841
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004842 *now = perf_clock();
4843 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004844 *enabled = ctx_time - event->tstamp_enabled;
4845 *running = ctx_time - event->tstamp_running;
4846}
4847
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004848static void perf_event_init_userpage(struct perf_event *event)
4849{
4850 struct perf_event_mmap_page *userpg;
4851 struct ring_buffer *rb;
4852
4853 rcu_read_lock();
4854 rb = rcu_dereference(event->rb);
4855 if (!rb)
4856 goto unlock;
4857
4858 userpg = rb->user_page;
4859
4860 /* Allow new userspace to detect that bit 0 is deprecated */
4861 userpg->cap_bit0_is_deprecated = 1;
4862 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004863 userpg->data_offset = PAGE_SIZE;
4864 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004865
4866unlock:
4867 rcu_read_unlock();
4868}
4869
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004870void __weak arch_perf_update_userpage(
4871 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004872{
4873}
4874
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004875/*
4876 * Callers need to ensure there can be no nesting of this function, otherwise
4877 * the seqlock logic goes bad. We can not serialize this because the arch
4878 * code calls this from NMI context.
4879 */
4880void perf_event_update_userpage(struct perf_event *event)
4881{
4882 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004883 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004884 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004885
4886 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004887 rb = rcu_dereference(event->rb);
4888 if (!rb)
4889 goto unlock;
4890
Eric B Munson0d641202011-06-24 12:26:26 -04004891 /*
4892 * compute total_time_enabled, total_time_running
4893 * based on snapshot values taken when the event
4894 * was last scheduled in.
4895 *
4896 * we cannot simply called update_context_time()
4897 * because of locking issue as we can be called in
4898 * NMI context
4899 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004900 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004901
Frederic Weisbecker76369132011-05-19 19:55:04 +02004902 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004903 /*
4904 * Disable preemption so as to not let the corresponding user-space
4905 * spin too long if we get preempted.
4906 */
4907 preempt_disable();
4908 ++userpg->lock;
4909 barrier();
4910 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004911 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004912 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004913 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004914
Eric B Munson0d641202011-06-24 12:26:26 -04004915 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004916 atomic64_read(&event->child_total_time_enabled);
4917
Eric B Munson0d641202011-06-24 12:26:26 -04004918 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004919 atomic64_read(&event->child_total_time_running);
4920
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004921 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004923 barrier();
4924 ++userpg->lock;
4925 preempt_enable();
4926unlock:
4927 rcu_read_unlock();
4928}
4929
Dave Jiang11bac802017-02-24 14:56:41 -08004930static int perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004931{
Dave Jiang11bac802017-02-24 14:56:41 -08004932 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004933 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004934 int ret = VM_FAULT_SIGBUS;
4935
4936 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4937 if (vmf->pgoff == 0)
4938 ret = 0;
4939 return ret;
4940 }
4941
4942 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004943 rb = rcu_dereference(event->rb);
4944 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004945 goto unlock;
4946
4947 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4948 goto unlock;
4949
Frederic Weisbecker76369132011-05-19 19:55:04 +02004950 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004951 if (!vmf->page)
4952 goto unlock;
4953
4954 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08004955 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004956 vmf->page->index = vmf->pgoff;
4957
4958 ret = 0;
4959unlock:
4960 rcu_read_unlock();
4961
4962 return ret;
4963}
4964
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004965static void ring_buffer_attach(struct perf_event *event,
4966 struct ring_buffer *rb)
4967{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004968 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004969 unsigned long flags;
4970
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004971 if (event->rb) {
4972 /*
4973 * Should be impossible, we set this when removing
4974 * event->rb_entry and wait/clear when adding event->rb_entry.
4975 */
4976 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004977
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004978 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004979 spin_lock_irqsave(&old_rb->event_lock, flags);
4980 list_del_rcu(&event->rb_entry);
4981 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004982
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004983 event->rcu_batches = get_state_synchronize_rcu();
4984 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004985 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004986
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004987 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004988 if (event->rcu_pending) {
4989 cond_synchronize_rcu(event->rcu_batches);
4990 event->rcu_pending = 0;
4991 }
4992
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004993 spin_lock_irqsave(&rb->event_lock, flags);
4994 list_add_rcu(&event->rb_entry, &rb->event_list);
4995 spin_unlock_irqrestore(&rb->event_lock, flags);
4996 }
4997
Alexander Shishkin767ae082016-09-06 16:23:49 +03004998 /*
4999 * Avoid racing with perf_mmap_close(AUX): stop the event
5000 * before swizzling the event::rb pointer; if it's getting
5001 * unmapped, its aux_mmap_count will be 0 and it won't
5002 * restart. See the comment in __perf_pmu_output_stop().
5003 *
5004 * Data will inevitably be lost when set_output is done in
5005 * mid-air, but then again, whoever does it like this is
5006 * not in for the data anyway.
5007 */
5008 if (has_aux(event))
5009 perf_event_stop(event, 0);
5010
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005011 rcu_assign_pointer(event->rb, rb);
5012
5013 if (old_rb) {
5014 ring_buffer_put(old_rb);
5015 /*
5016 * Since we detached before setting the new rb, so that we
5017 * could attach the new rb, we could have missed a wakeup.
5018 * Provide it now.
5019 */
5020 wake_up_all(&event->waitq);
5021 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005022}
5023
5024static void ring_buffer_wakeup(struct perf_event *event)
5025{
5026 struct ring_buffer *rb;
5027
5028 rcu_read_lock();
5029 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005030 if (rb) {
5031 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5032 wake_up_all(&event->waitq);
5033 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005034 rcu_read_unlock();
5035}
5036
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005037struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005038{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005039 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005040
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005041 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005042 rb = rcu_dereference(event->rb);
5043 if (rb) {
5044 if (!atomic_inc_not_zero(&rb->refcount))
5045 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005046 }
5047 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005048
Frederic Weisbecker76369132011-05-19 19:55:04 +02005049 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005050}
5051
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005052void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005053{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005054 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005055 return;
5056
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005057 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005058
Frederic Weisbecker76369132011-05-19 19:55:04 +02005059 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005060}
5061
5062static void perf_mmap_open(struct vm_area_struct *vma)
5063{
5064 struct perf_event *event = vma->vm_file->private_data;
5065
5066 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005067 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005068
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005069 if (vma->vm_pgoff)
5070 atomic_inc(&event->rb->aux_mmap_count);
5071
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005072 if (event->pmu->event_mapped)
5073 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005074}
5075
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005076static void perf_pmu_output_stop(struct perf_event *event);
5077
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005078/*
5079 * A buffer can be mmap()ed multiple times; either directly through the same
5080 * event, or through other events by use of perf_event_set_output().
5081 *
5082 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5083 * the buffer here, where we still have a VM context. This means we need
5084 * to detach all events redirecting to us.
5085 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005086static void perf_mmap_close(struct vm_area_struct *vma)
5087{
5088 struct perf_event *event = vma->vm_file->private_data;
5089
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005090 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005091 struct user_struct *mmap_user = rb->mmap_user;
5092 int mmap_locked = rb->mmap_locked;
5093 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005094
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005095 if (event->pmu->event_unmapped)
5096 event->pmu->event_unmapped(event);
5097
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005098 /*
5099 * rb->aux_mmap_count will always drop before rb->mmap_count and
5100 * event->mmap_count, so it is ok to use event->mmap_mutex to
5101 * serialize with perf_mmap here.
5102 */
5103 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5104 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005105 /*
5106 * Stop all AUX events that are writing to this buffer,
5107 * so that we can free its AUX pages and corresponding PMU
5108 * data. Note that after rb::aux_mmap_count dropped to zero,
5109 * they won't start any more (see perf_aux_output_begin()).
5110 */
5111 perf_pmu_output_stop(event);
5112
5113 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005114 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5115 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5116
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005117 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005118 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005119 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5120
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005121 mutex_unlock(&event->mmap_mutex);
5122 }
5123
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005124 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005125
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005126 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005127 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005128
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005129 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005130 mutex_unlock(&event->mmap_mutex);
5131
5132 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005133 if (atomic_read(&rb->mmap_count))
5134 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005135
5136 /*
5137 * No other mmap()s, detach from all other events that might redirect
5138 * into the now unreachable buffer. Somewhat complicated by the
5139 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5140 */
5141again:
5142 rcu_read_lock();
5143 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5144 if (!atomic_long_inc_not_zero(&event->refcount)) {
5145 /*
5146 * This event is en-route to free_event() which will
5147 * detach it and remove it from the list.
5148 */
5149 continue;
5150 }
5151 rcu_read_unlock();
5152
5153 mutex_lock(&event->mmap_mutex);
5154 /*
5155 * Check we didn't race with perf_event_set_output() which can
5156 * swizzle the rb from under us while we were waiting to
5157 * acquire mmap_mutex.
5158 *
5159 * If we find a different rb; ignore this event, a next
5160 * iteration will no longer find it on the list. We have to
5161 * still restart the iteration to make sure we're not now
5162 * iterating the wrong list.
5163 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005164 if (event->rb == rb)
5165 ring_buffer_attach(event, NULL);
5166
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005167 mutex_unlock(&event->mmap_mutex);
5168 put_event(event);
5169
5170 /*
5171 * Restart the iteration; either we're on the wrong list or
5172 * destroyed its integrity by doing a deletion.
5173 */
5174 goto again;
5175 }
5176 rcu_read_unlock();
5177
5178 /*
5179 * It could be there's still a few 0-ref events on the list; they'll
5180 * get cleaned up by free_event() -- they'll also still have their
5181 * ref on the rb and will free it whenever they are done with it.
5182 *
5183 * Aside from that, this buffer is 'fully' detached and unmapped,
5184 * undo the VM accounting.
5185 */
5186
5187 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5188 vma->vm_mm->pinned_vm -= mmap_locked;
5189 free_uid(mmap_user);
5190
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005191out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005192 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005193}
5194
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005195static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005196 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005197 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005198 .fault = perf_mmap_fault,
5199 .page_mkwrite = perf_mmap_fault,
5200};
5201
5202static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5203{
5204 struct perf_event *event = file->private_data;
5205 unsigned long user_locked, user_lock_limit;
5206 struct user_struct *user = current_user();
5207 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005208 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005209 unsigned long vma_size;
5210 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005211 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005212 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005213
Peter Zijlstrac7920612010-05-18 10:33:24 +02005214 /*
5215 * Don't allow mmap() of inherited per-task counters. This would
5216 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005217 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005218 */
5219 if (event->cpu == -1 && event->attr.inherit)
5220 return -EINVAL;
5221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222 if (!(vma->vm_flags & VM_SHARED))
5223 return -EINVAL;
5224
5225 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005226
5227 if (vma->vm_pgoff == 0) {
5228 nr_pages = (vma_size / PAGE_SIZE) - 1;
5229 } else {
5230 /*
5231 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5232 * mapped, all subsequent mappings should have the same size
5233 * and offset. Must be above the normal perf buffer.
5234 */
5235 u64 aux_offset, aux_size;
5236
5237 if (!event->rb)
5238 return -EINVAL;
5239
5240 nr_pages = vma_size / PAGE_SIZE;
5241
5242 mutex_lock(&event->mmap_mutex);
5243 ret = -EINVAL;
5244
5245 rb = event->rb;
5246 if (!rb)
5247 goto aux_unlock;
5248
5249 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
5250 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
5251
5252 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5253 goto aux_unlock;
5254
5255 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5256 goto aux_unlock;
5257
5258 /* already mapped with a different offset */
5259 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5260 goto aux_unlock;
5261
5262 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5263 goto aux_unlock;
5264
5265 /* already mapped with a different size */
5266 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5267 goto aux_unlock;
5268
5269 if (!is_power_of_2(nr_pages))
5270 goto aux_unlock;
5271
5272 if (!atomic_inc_not_zero(&rb->mmap_count))
5273 goto aux_unlock;
5274
5275 if (rb_has_aux(rb)) {
5276 atomic_inc(&rb->aux_mmap_count);
5277 ret = 0;
5278 goto unlock;
5279 }
5280
5281 atomic_set(&rb->aux_mmap_count, 1);
5282 user_extra = nr_pages;
5283
5284 goto accounting;
5285 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005286
5287 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005288 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005289 * can do bitmasks instead of modulo.
5290 */
Kan Liang2ed11312015-03-02 02:14:26 -05005291 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005292 return -EINVAL;
5293
5294 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5295 return -EINVAL;
5296
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005297 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005298again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005299 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005300 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005301 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005302 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005303 goto unlock;
5304 }
5305
5306 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5307 /*
5308 * Raced against perf_mmap_close() through
5309 * perf_event_set_output(). Try again, hope for better
5310 * luck.
5311 */
5312 mutex_unlock(&event->mmap_mutex);
5313 goto again;
5314 }
5315
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005316 goto unlock;
5317 }
5318
5319 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005320
5321accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005322 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5323
5324 /*
5325 * Increase the limit linearly with more CPUs:
5326 */
5327 user_lock_limit *= num_online_cpus();
5328
5329 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5330
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005331 if (user_locked > user_lock_limit)
5332 extra = user_locked - user_lock_limit;
5333
Jiri Slaby78d7d402010-03-05 13:42:54 -08005334 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005335 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005336 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005337
5338 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5339 !capable(CAP_IPC_LOCK)) {
5340 ret = -EPERM;
5341 goto unlock;
5342 }
5343
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005344 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005345
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005346 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005347 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005348
Frederic Weisbecker76369132011-05-19 19:55:04 +02005349 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005350 rb = rb_alloc(nr_pages,
5351 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5352 event->cpu, flags);
5353
5354 if (!rb) {
5355 ret = -ENOMEM;
5356 goto unlock;
5357 }
5358
5359 atomic_set(&rb->mmap_count, 1);
5360 rb->mmap_user = get_current_user();
5361 rb->mmap_locked = extra;
5362
5363 ring_buffer_attach(event, rb);
5364
5365 perf_event_init_userpage(event);
5366 perf_event_update_userpage(event);
5367 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005368 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5369 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005370 if (!ret)
5371 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005372 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005373
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005374unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005375 if (!ret) {
5376 atomic_long_add(user_extra, &user->locked_vm);
5377 vma->vm_mm->pinned_vm += extra;
5378
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005379 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005380 } else if (rb) {
5381 atomic_dec(&rb->mmap_count);
5382 }
5383aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005384 mutex_unlock(&event->mmap_mutex);
5385
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005386 /*
5387 * Since pinned accounting is per vm we cannot allow fork() to copy our
5388 * vma.
5389 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005390 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005391 vma->vm_ops = &perf_mmap_vmops;
5392
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005393 if (event->pmu->event_mapped)
5394 event->pmu->event_mapped(event);
5395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005396 return ret;
5397}
5398
5399static int perf_fasync(int fd, struct file *filp, int on)
5400{
Al Viro496ad9a2013-01-23 17:07:38 -05005401 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005402 struct perf_event *event = filp->private_data;
5403 int retval;
5404
Al Viro59551022016-01-22 15:40:57 -05005405 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005406 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005407 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408
5409 if (retval < 0)
5410 return retval;
5411
5412 return 0;
5413}
5414
5415static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005416 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005417 .release = perf_release,
5418 .read = perf_read,
5419 .poll = perf_poll,
5420 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005421 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005422 .mmap = perf_mmap,
5423 .fasync = perf_fasync,
5424};
5425
5426/*
5427 * Perf event wakeup
5428 *
5429 * If there's data, ensure we set the poll() state and publish everything
5430 * to user-space before waking everybody up.
5431 */
5432
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005433static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5434{
5435 /* only the parent has fasync state */
5436 if (event->parent)
5437 event = event->parent;
5438 return &event->fasync;
5439}
5440
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005441void perf_event_wakeup(struct perf_event *event)
5442{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005443 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005444
5445 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005446 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005447 event->pending_kill = 0;
5448 }
5449}
5450
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005451static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452{
5453 struct perf_event *event = container_of(entry,
5454 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005455 int rctx;
5456
5457 rctx = perf_swevent_get_recursion_context();
5458 /*
5459 * If we 'fail' here, that's OK, it means recursion is already disabled
5460 * and we won't recurse 'further'.
5461 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005462
5463 if (event->pending_disable) {
5464 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005465 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005466 }
5467
5468 if (event->pending_wakeup) {
5469 event->pending_wakeup = 0;
5470 perf_event_wakeup(event);
5471 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005472
5473 if (rctx >= 0)
5474 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005475}
5476
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005477/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005478 * We assume there is only KVM supporting the callbacks.
5479 * Later on, we might change it to a list if there is
5480 * another virtualization implementation supporting the callbacks.
5481 */
5482struct perf_guest_info_callbacks *perf_guest_cbs;
5483
5484int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5485{
5486 perf_guest_cbs = cbs;
5487 return 0;
5488}
5489EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5490
5491int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5492{
5493 perf_guest_cbs = NULL;
5494 return 0;
5495}
5496EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5497
Jiri Olsa40189942012-08-07 15:20:37 +02005498static void
5499perf_output_sample_regs(struct perf_output_handle *handle,
5500 struct pt_regs *regs, u64 mask)
5501{
5502 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305503 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005504
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305505 bitmap_from_u64(_mask, mask);
5506 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005507 u64 val;
5508
5509 val = perf_reg_value(regs, bit);
5510 perf_output_put(handle, val);
5511 }
5512}
5513
Stephane Eranian60e23642014-09-24 13:48:37 +02005514static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005515 struct pt_regs *regs,
5516 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005517{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005518 if (user_mode(regs)) {
5519 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005520 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005521 } else if (current->mm) {
5522 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005523 } else {
5524 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5525 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005526 }
5527}
5528
Stephane Eranian60e23642014-09-24 13:48:37 +02005529static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5530 struct pt_regs *regs)
5531{
5532 regs_intr->regs = regs;
5533 regs_intr->abi = perf_reg_abi(current);
5534}
5535
5536
Jiri Olsac5ebced2012-08-07 15:20:40 +02005537/*
5538 * Get remaining task size from user stack pointer.
5539 *
5540 * It'd be better to take stack vma map and limit this more
5541 * precisly, but there's no way to get it safely under interrupt,
5542 * so using TASK_SIZE as limit.
5543 */
5544static u64 perf_ustack_task_size(struct pt_regs *regs)
5545{
5546 unsigned long addr = perf_user_stack_pointer(regs);
5547
5548 if (!addr || addr >= TASK_SIZE)
5549 return 0;
5550
5551 return TASK_SIZE - addr;
5552}
5553
5554static u16
5555perf_sample_ustack_size(u16 stack_size, u16 header_size,
5556 struct pt_regs *regs)
5557{
5558 u64 task_size;
5559
5560 /* No regs, no stack pointer, no dump. */
5561 if (!regs)
5562 return 0;
5563
5564 /*
5565 * Check if we fit in with the requested stack size into the:
5566 * - TASK_SIZE
5567 * If we don't, we limit the size to the TASK_SIZE.
5568 *
5569 * - remaining sample size
5570 * If we don't, we customize the stack size to
5571 * fit in to the remaining sample size.
5572 */
5573
5574 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5575 stack_size = min(stack_size, (u16) task_size);
5576
5577 /* Current header size plus static size and dynamic size. */
5578 header_size += 2 * sizeof(u64);
5579
5580 /* Do we fit in with the current stack dump size? */
5581 if ((u16) (header_size + stack_size) < header_size) {
5582 /*
5583 * If we overflow the maximum size for the sample,
5584 * we customize the stack dump size to fit in.
5585 */
5586 stack_size = USHRT_MAX - header_size - sizeof(u64);
5587 stack_size = round_up(stack_size, sizeof(u64));
5588 }
5589
5590 return stack_size;
5591}
5592
5593static void
5594perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5595 struct pt_regs *regs)
5596{
5597 /* Case of a kernel thread, nothing to dump */
5598 if (!regs) {
5599 u64 size = 0;
5600 perf_output_put(handle, size);
5601 } else {
5602 unsigned long sp;
5603 unsigned int rem;
5604 u64 dyn_size;
5605
5606 /*
5607 * We dump:
5608 * static size
5609 * - the size requested by user or the best one we can fit
5610 * in to the sample max size
5611 * data
5612 * - user stack dump data
5613 * dynamic size
5614 * - the actual dumped size
5615 */
5616
5617 /* Static size. */
5618 perf_output_put(handle, dump_size);
5619
5620 /* Data. */
5621 sp = perf_user_stack_pointer(regs);
5622 rem = __output_copy_user(handle, (void *) sp, dump_size);
5623 dyn_size = dump_size - rem;
5624
5625 perf_output_skip(handle, rem);
5626
5627 /* Dynamic size. */
5628 perf_output_put(handle, dyn_size);
5629 }
5630}
5631
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005632static void __perf_event_header__init_id(struct perf_event_header *header,
5633 struct perf_sample_data *data,
5634 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005635{
5636 u64 sample_type = event->attr.sample_type;
5637
5638 data->type = sample_type;
5639 header->size += event->id_header_size;
5640
5641 if (sample_type & PERF_SAMPLE_TID) {
5642 /* namespace issues */
5643 data->tid_entry.pid = perf_event_pid(event, current);
5644 data->tid_entry.tid = perf_event_tid(event, current);
5645 }
5646
5647 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005648 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005649
Adrian Hunterff3d5272013-08-27 11:23:07 +03005650 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005651 data->id = primary_event_id(event);
5652
5653 if (sample_type & PERF_SAMPLE_STREAM_ID)
5654 data->stream_id = event->id;
5655
5656 if (sample_type & PERF_SAMPLE_CPU) {
5657 data->cpu_entry.cpu = raw_smp_processor_id();
5658 data->cpu_entry.reserved = 0;
5659 }
5660}
5661
Frederic Weisbecker76369132011-05-19 19:55:04 +02005662void perf_event_header__init_id(struct perf_event_header *header,
5663 struct perf_sample_data *data,
5664 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005665{
5666 if (event->attr.sample_id_all)
5667 __perf_event_header__init_id(header, data, event);
5668}
5669
5670static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5671 struct perf_sample_data *data)
5672{
5673 u64 sample_type = data->type;
5674
5675 if (sample_type & PERF_SAMPLE_TID)
5676 perf_output_put(handle, data->tid_entry);
5677
5678 if (sample_type & PERF_SAMPLE_TIME)
5679 perf_output_put(handle, data->time);
5680
5681 if (sample_type & PERF_SAMPLE_ID)
5682 perf_output_put(handle, data->id);
5683
5684 if (sample_type & PERF_SAMPLE_STREAM_ID)
5685 perf_output_put(handle, data->stream_id);
5686
5687 if (sample_type & PERF_SAMPLE_CPU)
5688 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005689
5690 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5691 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005692}
5693
Frederic Weisbecker76369132011-05-19 19:55:04 +02005694void perf_event__output_id_sample(struct perf_event *event,
5695 struct perf_output_handle *handle,
5696 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005697{
5698 if (event->attr.sample_id_all)
5699 __perf_event__output_id_sample(handle, sample);
5700}
5701
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005703 struct perf_event *event,
5704 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005705{
5706 u64 read_format = event->attr.read_format;
5707 u64 values[4];
5708 int n = 0;
5709
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005710 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005711 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005712 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005713 atomic64_read(&event->child_total_time_enabled);
5714 }
5715 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005716 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005717 atomic64_read(&event->child_total_time_running);
5718 }
5719 if (read_format & PERF_FORMAT_ID)
5720 values[n++] = primary_event_id(event);
5721
Frederic Weisbecker76369132011-05-19 19:55:04 +02005722 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005723}
5724
5725/*
5726 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5727 */
5728static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005729 struct perf_event *event,
5730 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005731{
5732 struct perf_event *leader = event->group_leader, *sub;
5733 u64 read_format = event->attr.read_format;
5734 u64 values[5];
5735 int n = 0;
5736
5737 values[n++] = 1 + leader->nr_siblings;
5738
5739 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005740 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005741
5742 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005743 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005744
5745 if (leader != event)
5746 leader->pmu->read(leader);
5747
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005748 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005749 if (read_format & PERF_FORMAT_ID)
5750 values[n++] = primary_event_id(leader);
5751
Frederic Weisbecker76369132011-05-19 19:55:04 +02005752 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005753
5754 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5755 n = 0;
5756
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005757 if ((sub != event) &&
5758 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005759 sub->pmu->read(sub);
5760
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005761 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005762 if (read_format & PERF_FORMAT_ID)
5763 values[n++] = primary_event_id(sub);
5764
Frederic Weisbecker76369132011-05-19 19:55:04 +02005765 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005766 }
5767}
5768
Stephane Eranianeed01522010-10-26 16:08:01 +02005769#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5770 PERF_FORMAT_TOTAL_TIME_RUNNING)
5771
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005772static void perf_output_read(struct perf_output_handle *handle,
5773 struct perf_event *event)
5774{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005775 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005776 u64 read_format = event->attr.read_format;
5777
5778 /*
5779 * compute total_time_enabled, total_time_running
5780 * based on snapshot values taken when the event
5781 * was last scheduled in.
5782 *
5783 * we cannot simply called update_context_time()
5784 * because of locking issue as we are called in
5785 * NMI context
5786 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005787 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005788 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005789
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005790 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005791 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005792 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005793 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794}
5795
5796void perf_output_sample(struct perf_output_handle *handle,
5797 struct perf_event_header *header,
5798 struct perf_sample_data *data,
5799 struct perf_event *event)
5800{
5801 u64 sample_type = data->type;
5802
5803 perf_output_put(handle, *header);
5804
Adrian Hunterff3d5272013-08-27 11:23:07 +03005805 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5806 perf_output_put(handle, data->id);
5807
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005808 if (sample_type & PERF_SAMPLE_IP)
5809 perf_output_put(handle, data->ip);
5810
5811 if (sample_type & PERF_SAMPLE_TID)
5812 perf_output_put(handle, data->tid_entry);
5813
5814 if (sample_type & PERF_SAMPLE_TIME)
5815 perf_output_put(handle, data->time);
5816
5817 if (sample_type & PERF_SAMPLE_ADDR)
5818 perf_output_put(handle, data->addr);
5819
5820 if (sample_type & PERF_SAMPLE_ID)
5821 perf_output_put(handle, data->id);
5822
5823 if (sample_type & PERF_SAMPLE_STREAM_ID)
5824 perf_output_put(handle, data->stream_id);
5825
5826 if (sample_type & PERF_SAMPLE_CPU)
5827 perf_output_put(handle, data->cpu_entry);
5828
5829 if (sample_type & PERF_SAMPLE_PERIOD)
5830 perf_output_put(handle, data->period);
5831
5832 if (sample_type & PERF_SAMPLE_READ)
5833 perf_output_read(handle, event);
5834
5835 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5836 if (data->callchain) {
5837 int size = 1;
5838
5839 if (data->callchain)
5840 size += data->callchain->nr;
5841
5842 size *= sizeof(u64);
5843
Frederic Weisbecker76369132011-05-19 19:55:04 +02005844 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005845 } else {
5846 u64 nr = 0;
5847 perf_output_put(handle, nr);
5848 }
5849 }
5850
5851 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005852 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005853
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005854 if (raw) {
5855 struct perf_raw_frag *frag = &raw->frag;
5856
5857 perf_output_put(handle, raw->size);
5858 do {
5859 if (frag->copy) {
5860 __output_custom(handle, frag->copy,
5861 frag->data, frag->size);
5862 } else {
5863 __output_copy(handle, frag->data,
5864 frag->size);
5865 }
5866 if (perf_raw_frag_last(frag))
5867 break;
5868 frag = frag->next;
5869 } while (1);
5870 if (frag->pad)
5871 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005872 } else {
5873 struct {
5874 u32 size;
5875 u32 data;
5876 } raw = {
5877 .size = sizeof(u32),
5878 .data = 0,
5879 };
5880 perf_output_put(handle, raw);
5881 }
5882 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005883
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005884 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5885 if (data->br_stack) {
5886 size_t size;
5887
5888 size = data->br_stack->nr
5889 * sizeof(struct perf_branch_entry);
5890
5891 perf_output_put(handle, data->br_stack->nr);
5892 perf_output_copy(handle, data->br_stack->entries, size);
5893 } else {
5894 /*
5895 * we always store at least the value of nr
5896 */
5897 u64 nr = 0;
5898 perf_output_put(handle, nr);
5899 }
5900 }
Jiri Olsa40189942012-08-07 15:20:37 +02005901
5902 if (sample_type & PERF_SAMPLE_REGS_USER) {
5903 u64 abi = data->regs_user.abi;
5904
5905 /*
5906 * If there are no regs to dump, notice it through
5907 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5908 */
5909 perf_output_put(handle, abi);
5910
5911 if (abi) {
5912 u64 mask = event->attr.sample_regs_user;
5913 perf_output_sample_regs(handle,
5914 data->regs_user.regs,
5915 mask);
5916 }
5917 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005918
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005919 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005920 perf_output_sample_ustack(handle,
5921 data->stack_user_size,
5922 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005923 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005924
5925 if (sample_type & PERF_SAMPLE_WEIGHT)
5926 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005927
5928 if (sample_type & PERF_SAMPLE_DATA_SRC)
5929 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005930
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005931 if (sample_type & PERF_SAMPLE_TRANSACTION)
5932 perf_output_put(handle, data->txn);
5933
Stephane Eranian60e23642014-09-24 13:48:37 +02005934 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5935 u64 abi = data->regs_intr.abi;
5936 /*
5937 * If there are no regs to dump, notice it through
5938 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5939 */
5940 perf_output_put(handle, abi);
5941
5942 if (abi) {
5943 u64 mask = event->attr.sample_regs_intr;
5944
5945 perf_output_sample_regs(handle,
5946 data->regs_intr.regs,
5947 mask);
5948 }
5949 }
5950
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005951 if (!event->attr.watermark) {
5952 int wakeup_events = event->attr.wakeup_events;
5953
5954 if (wakeup_events) {
5955 struct ring_buffer *rb = handle->rb;
5956 int events = local_inc_return(&rb->events);
5957
5958 if (events >= wakeup_events) {
5959 local_sub(wakeup_events, &rb->events);
5960 local_inc(&rb->wakeup);
5961 }
5962 }
5963 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005964}
5965
5966void perf_prepare_sample(struct perf_event_header *header,
5967 struct perf_sample_data *data,
5968 struct perf_event *event,
5969 struct pt_regs *regs)
5970{
5971 u64 sample_type = event->attr.sample_type;
5972
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005973 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005974 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975
5976 header->misc = 0;
5977 header->misc |= perf_misc_flags(regs);
5978
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005979 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005980
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005981 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005982 data->ip = perf_instruction_pointer(regs);
5983
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005984 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5985 int size = 1;
5986
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005987 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005988
5989 if (data->callchain)
5990 size += data->callchain->nr;
5991
5992 header->size += size * sizeof(u64);
5993 }
5994
5995 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005996 struct perf_raw_record *raw = data->raw;
5997 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005998
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005999 if (raw) {
6000 struct perf_raw_frag *frag = &raw->frag;
6001 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006002
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006003 do {
6004 sum += frag->size;
6005 if (perf_raw_frag_last(frag))
6006 break;
6007 frag = frag->next;
6008 } while (1);
6009
6010 size = round_up(sum + sizeof(u32), sizeof(u64));
6011 raw->size = size - sizeof(u32);
6012 frag->pad = raw->size - sum;
6013 } else {
6014 size = sizeof(u64);
6015 }
6016
6017 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006018 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006019
6020 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6021 int size = sizeof(u64); /* nr */
6022 if (data->br_stack) {
6023 size += data->br_stack->nr
6024 * sizeof(struct perf_branch_entry);
6025 }
6026 header->size += size;
6027 }
Jiri Olsa40189942012-08-07 15:20:37 +02006028
Peter Zijlstra25657112014-09-24 13:48:42 +02006029 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006030 perf_sample_regs_user(&data->regs_user, regs,
6031 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006032
Jiri Olsa40189942012-08-07 15:20:37 +02006033 if (sample_type & PERF_SAMPLE_REGS_USER) {
6034 /* regs dump ABI info */
6035 int size = sizeof(u64);
6036
Jiri Olsa40189942012-08-07 15:20:37 +02006037 if (data->regs_user.regs) {
6038 u64 mask = event->attr.sample_regs_user;
6039 size += hweight64(mask) * sizeof(u64);
6040 }
6041
6042 header->size += size;
6043 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006044
6045 if (sample_type & PERF_SAMPLE_STACK_USER) {
6046 /*
6047 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
6048 * processed as the last one or have additional check added
6049 * in case new sample type is added, because we could eat
6050 * up the rest of the sample size.
6051 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006052 u16 stack_size = event->attr.sample_stack_user;
6053 u16 size = sizeof(u64);
6054
Jiri Olsac5ebced2012-08-07 15:20:40 +02006055 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006056 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006057
6058 /*
6059 * If there is something to dump, add space for the dump
6060 * itself and for the field that tells the dynamic size,
6061 * which is how many have been actually dumped.
6062 */
6063 if (stack_size)
6064 size += sizeof(u64) + stack_size;
6065
6066 data->stack_user_size = stack_size;
6067 header->size += size;
6068 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006069
6070 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6071 /* regs dump ABI info */
6072 int size = sizeof(u64);
6073
6074 perf_sample_regs_intr(&data->regs_intr, regs);
6075
6076 if (data->regs_intr.regs) {
6077 u64 mask = event->attr.sample_regs_intr;
6078
6079 size += hweight64(mask) * sizeof(u64);
6080 }
6081
6082 header->size += size;
6083 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006084}
6085
Wang Nan9ecda412016-04-05 14:11:18 +00006086static void __always_inline
6087__perf_event_output(struct perf_event *event,
6088 struct perf_sample_data *data,
6089 struct pt_regs *regs,
6090 int (*output_begin)(struct perf_output_handle *,
6091 struct perf_event *,
6092 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006093{
6094 struct perf_output_handle handle;
6095 struct perf_event_header header;
6096
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006097 /* protect the callchain buffers */
6098 rcu_read_lock();
6099
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006100 perf_prepare_sample(&header, data, event, regs);
6101
Wang Nan9ecda412016-04-05 14:11:18 +00006102 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006103 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006104
6105 perf_output_sample(&handle, &header, data, event);
6106
6107 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006108
6109exit:
6110 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006111}
6112
Wang Nan9ecda412016-04-05 14:11:18 +00006113void
6114perf_event_output_forward(struct perf_event *event,
6115 struct perf_sample_data *data,
6116 struct pt_regs *regs)
6117{
6118 __perf_event_output(event, data, regs, perf_output_begin_forward);
6119}
6120
6121void
6122perf_event_output_backward(struct perf_event *event,
6123 struct perf_sample_data *data,
6124 struct pt_regs *regs)
6125{
6126 __perf_event_output(event, data, regs, perf_output_begin_backward);
6127}
6128
6129void
6130perf_event_output(struct perf_event *event,
6131 struct perf_sample_data *data,
6132 struct pt_regs *regs)
6133{
6134 __perf_event_output(event, data, regs, perf_output_begin);
6135}
6136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006137/*
6138 * read event_id
6139 */
6140
6141struct perf_read_event {
6142 struct perf_event_header header;
6143
6144 u32 pid;
6145 u32 tid;
6146};
6147
6148static void
6149perf_event_read_event(struct perf_event *event,
6150 struct task_struct *task)
6151{
6152 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006153 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006154 struct perf_read_event read_event = {
6155 .header = {
6156 .type = PERF_RECORD_READ,
6157 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006158 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006159 },
6160 .pid = perf_event_pid(event, task),
6161 .tid = perf_event_tid(event, task),
6162 };
6163 int ret;
6164
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006165 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006166 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006167 if (ret)
6168 return;
6169
6170 perf_output_put(&handle, read_event);
6171 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006172 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006173
6174 perf_output_end(&handle);
6175}
6176
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006177typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006178
6179static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006180perf_iterate_ctx(struct perf_event_context *ctx,
6181 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006182 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006183{
6184 struct perf_event *event;
6185
6186 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006187 if (!all) {
6188 if (event->state < PERF_EVENT_STATE_INACTIVE)
6189 continue;
6190 if (!event_filter_match(event))
6191 continue;
6192 }
6193
Jiri Olsa67516842013-07-09 18:56:31 +02006194 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006195 }
6196}
6197
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006198static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006199{
6200 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6201 struct perf_event *event;
6202
6203 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006204 /*
6205 * Skip events that are not fully formed yet; ensure that
6206 * if we observe event->ctx, both event and ctx will be
6207 * complete enough. See perf_install_in_context().
6208 */
6209 if (!smp_load_acquire(&event->ctx))
6210 continue;
6211
Kan Liangf2fb6be2016-03-23 11:24:37 -07006212 if (event->state < PERF_EVENT_STATE_INACTIVE)
6213 continue;
6214 if (!event_filter_match(event))
6215 continue;
6216 output(event, data);
6217 }
6218}
6219
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006220/*
6221 * Iterate all events that need to receive side-band events.
6222 *
6223 * For new callers; ensure that account_pmu_sb_event() includes
6224 * your event, otherwise it might not get delivered.
6225 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006226static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006227perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006228 struct perf_event_context *task_ctx)
6229{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006230 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006231 int ctxn;
6232
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006233 rcu_read_lock();
6234 preempt_disable();
6235
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006236 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006237 * If we have task_ctx != NULL we only notify the task context itself.
6238 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006239 * context.
6240 */
6241 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006242 perf_iterate_ctx(task_ctx, output, data, false);
6243 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006244 }
6245
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006246 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006247
6248 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006249 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6250 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006251 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006252 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006253done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006254 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006255 rcu_read_unlock();
6256}
6257
Alexander Shishkin375637b2016-04-27 18:44:46 +03006258/*
6259 * Clear all file-based filters at exec, they'll have to be
6260 * re-instated when/if these objects are mmapped again.
6261 */
6262static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6263{
6264 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6265 struct perf_addr_filter *filter;
6266 unsigned int restart = 0, count = 0;
6267 unsigned long flags;
6268
6269 if (!has_addr_filter(event))
6270 return;
6271
6272 raw_spin_lock_irqsave(&ifh->lock, flags);
6273 list_for_each_entry(filter, &ifh->list, entry) {
6274 if (filter->inode) {
6275 event->addr_filters_offs[count] = 0;
6276 restart++;
6277 }
6278
6279 count++;
6280 }
6281
6282 if (restart)
6283 event->addr_filters_gen++;
6284 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6285
6286 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006287 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006288}
6289
6290void perf_event_exec(void)
6291{
6292 struct perf_event_context *ctx;
6293 int ctxn;
6294
6295 rcu_read_lock();
6296 for_each_task_context_nr(ctxn) {
6297 ctx = current->perf_event_ctxp[ctxn];
6298 if (!ctx)
6299 continue;
6300
6301 perf_event_enable_on_exec(ctxn);
6302
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006303 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006304 true);
6305 }
6306 rcu_read_unlock();
6307}
6308
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006309struct remote_output {
6310 struct ring_buffer *rb;
6311 int err;
6312};
6313
6314static void __perf_event_output_stop(struct perf_event *event, void *data)
6315{
6316 struct perf_event *parent = event->parent;
6317 struct remote_output *ro = data;
6318 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006319 struct stop_event_data sd = {
6320 .event = event,
6321 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006322
6323 if (!has_aux(event))
6324 return;
6325
6326 if (!parent)
6327 parent = event;
6328
6329 /*
6330 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006331 * ring-buffer, but it will be the child that's actually using it.
6332 *
6333 * We are using event::rb to determine if the event should be stopped,
6334 * however this may race with ring_buffer_attach() (through set_output),
6335 * which will make us skip the event that actually needs to be stopped.
6336 * So ring_buffer_attach() has to stop an aux event before re-assigning
6337 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006338 */
6339 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006340 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006341}
6342
6343static int __perf_pmu_output_stop(void *info)
6344{
6345 struct perf_event *event = info;
6346 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006347 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006348 struct remote_output ro = {
6349 .rb = event->rb,
6350 };
6351
6352 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006353 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006354 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006355 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006356 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006357 rcu_read_unlock();
6358
6359 return ro.err;
6360}
6361
6362static void perf_pmu_output_stop(struct perf_event *event)
6363{
6364 struct perf_event *iter;
6365 int err, cpu;
6366
6367restart:
6368 rcu_read_lock();
6369 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6370 /*
6371 * For per-CPU events, we need to make sure that neither they
6372 * nor their children are running; for cpu==-1 events it's
6373 * sufficient to stop the event itself if it's active, since
6374 * it can't have children.
6375 */
6376 cpu = iter->cpu;
6377 if (cpu == -1)
6378 cpu = READ_ONCE(iter->oncpu);
6379
6380 if (cpu == -1)
6381 continue;
6382
6383 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6384 if (err == -EAGAIN) {
6385 rcu_read_unlock();
6386 goto restart;
6387 }
6388 }
6389 rcu_read_unlock();
6390}
6391
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392/*
6393 * task tracking -- fork/exit
6394 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006395 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006396 */
6397
6398struct perf_task_event {
6399 struct task_struct *task;
6400 struct perf_event_context *task_ctx;
6401
6402 struct {
6403 struct perf_event_header header;
6404
6405 u32 pid;
6406 u32 ppid;
6407 u32 tid;
6408 u32 ptid;
6409 u64 time;
6410 } event_id;
6411};
6412
Jiri Olsa67516842013-07-09 18:56:31 +02006413static int perf_event_task_match(struct perf_event *event)
6414{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006415 return event->attr.comm || event->attr.mmap ||
6416 event->attr.mmap2 || event->attr.mmap_data ||
6417 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006418}
6419
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006420static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006421 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006422{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006423 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006424 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006425 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006426 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006427 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006428
Jiri Olsa67516842013-07-09 18:56:31 +02006429 if (!perf_event_task_match(event))
6430 return;
6431
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006432 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006433
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006434 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006435 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006436 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006437 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006438
6439 task_event->event_id.pid = perf_event_pid(event, task);
6440 task_event->event_id.ppid = perf_event_pid(event, current);
6441
6442 task_event->event_id.tid = perf_event_tid(event, task);
6443 task_event->event_id.ptid = perf_event_tid(event, current);
6444
Peter Zijlstra34f43922015-02-20 14:05:38 +01006445 task_event->event_id.time = perf_event_clock(event);
6446
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006447 perf_output_put(&handle, task_event->event_id);
6448
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006449 perf_event__output_id_sample(event, &handle, &sample);
6450
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006451 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006452out:
6453 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006454}
6455
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006456static void perf_event_task(struct task_struct *task,
6457 struct perf_event_context *task_ctx,
6458 int new)
6459{
6460 struct perf_task_event task_event;
6461
6462 if (!atomic_read(&nr_comm_events) &&
6463 !atomic_read(&nr_mmap_events) &&
6464 !atomic_read(&nr_task_events))
6465 return;
6466
6467 task_event = (struct perf_task_event){
6468 .task = task,
6469 .task_ctx = task_ctx,
6470 .event_id = {
6471 .header = {
6472 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6473 .misc = 0,
6474 .size = sizeof(task_event.event_id),
6475 },
6476 /* .pid */
6477 /* .ppid */
6478 /* .tid */
6479 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006480 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006481 },
6482 };
6483
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006484 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006485 &task_event,
6486 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006487}
6488
6489void perf_event_fork(struct task_struct *task)
6490{
6491 perf_event_task(task, NULL, 1);
6492}
6493
6494/*
6495 * comm tracking
6496 */
6497
6498struct perf_comm_event {
6499 struct task_struct *task;
6500 char *comm;
6501 int comm_size;
6502
6503 struct {
6504 struct perf_event_header header;
6505
6506 u32 pid;
6507 u32 tid;
6508 } event_id;
6509};
6510
Jiri Olsa67516842013-07-09 18:56:31 +02006511static int perf_event_comm_match(struct perf_event *event)
6512{
6513 return event->attr.comm;
6514}
6515
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006516static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006517 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006518{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006519 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006520 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006521 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006522 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006523 int ret;
6524
Jiri Olsa67516842013-07-09 18:56:31 +02006525 if (!perf_event_comm_match(event))
6526 return;
6527
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006528 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6529 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006530 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006531
6532 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006533 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006534
6535 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6536 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6537
6538 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006539 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006541
6542 perf_event__output_id_sample(event, &handle, &sample);
6543
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006544 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006545out:
6546 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006547}
6548
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006549static void perf_event_comm_event(struct perf_comm_event *comm_event)
6550{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006551 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006552 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006553
6554 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006555 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006556 size = ALIGN(strlen(comm)+1, sizeof(u64));
6557
6558 comm_event->comm = comm;
6559 comm_event->comm_size = size;
6560
6561 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006562
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006563 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006564 comm_event,
6565 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006566}
6567
Adrian Hunter82b89772014-05-28 11:45:04 +03006568void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006569{
6570 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006571
6572 if (!atomic_read(&nr_comm_events))
6573 return;
6574
6575 comm_event = (struct perf_comm_event){
6576 .task = task,
6577 /* .comm */
6578 /* .comm_size */
6579 .event_id = {
6580 .header = {
6581 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006582 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006583 /* .size */
6584 },
6585 /* .pid */
6586 /* .tid */
6587 },
6588 };
6589
6590 perf_event_comm_event(&comm_event);
6591}
6592
6593/*
6594 * mmap tracking
6595 */
6596
6597struct perf_mmap_event {
6598 struct vm_area_struct *vma;
6599
6600 const char *file_name;
6601 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006602 int maj, min;
6603 u64 ino;
6604 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006605 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006606
6607 struct {
6608 struct perf_event_header header;
6609
6610 u32 pid;
6611 u32 tid;
6612 u64 start;
6613 u64 len;
6614 u64 pgoff;
6615 } event_id;
6616};
6617
Jiri Olsa67516842013-07-09 18:56:31 +02006618static int perf_event_mmap_match(struct perf_event *event,
6619 void *data)
6620{
6621 struct perf_mmap_event *mmap_event = data;
6622 struct vm_area_struct *vma = mmap_event->vma;
6623 int executable = vma->vm_flags & VM_EXEC;
6624
6625 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006626 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006627}
6628
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006629static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006630 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006631{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006632 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006633 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006634 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006635 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006636 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006637
Jiri Olsa67516842013-07-09 18:56:31 +02006638 if (!perf_event_mmap_match(event, data))
6639 return;
6640
Stephane Eranian13d7a242013-08-21 12:10:24 +02006641 if (event->attr.mmap2) {
6642 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6643 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6644 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6645 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006646 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006647 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6648 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006649 }
6650
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006651 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6652 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006653 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006654 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006655 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006656
6657 mmap_event->event_id.pid = perf_event_pid(event, current);
6658 mmap_event->event_id.tid = perf_event_tid(event, current);
6659
6660 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006661
6662 if (event->attr.mmap2) {
6663 perf_output_put(&handle, mmap_event->maj);
6664 perf_output_put(&handle, mmap_event->min);
6665 perf_output_put(&handle, mmap_event->ino);
6666 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006667 perf_output_put(&handle, mmap_event->prot);
6668 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006669 }
6670
Frederic Weisbecker76369132011-05-19 19:55:04 +02006671 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006672 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006673
6674 perf_event__output_id_sample(event, &handle, &sample);
6675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006676 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006677out:
6678 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006679}
6680
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006681static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6682{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006683 struct vm_area_struct *vma = mmap_event->vma;
6684 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006685 int maj = 0, min = 0;
6686 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006687 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006688 unsigned int size;
6689 char tmp[16];
6690 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006691 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006692
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01006693 if (vma->vm_flags & VM_READ)
6694 prot |= PROT_READ;
6695 if (vma->vm_flags & VM_WRITE)
6696 prot |= PROT_WRITE;
6697 if (vma->vm_flags & VM_EXEC)
6698 prot |= PROT_EXEC;
6699
6700 if (vma->vm_flags & VM_MAYSHARE)
6701 flags = MAP_SHARED;
6702 else
6703 flags = MAP_PRIVATE;
6704
6705 if (vma->vm_flags & VM_DENYWRITE)
6706 flags |= MAP_DENYWRITE;
6707 if (vma->vm_flags & VM_MAYEXEC)
6708 flags |= MAP_EXECUTABLE;
6709 if (vma->vm_flags & VM_LOCKED)
6710 flags |= MAP_LOCKED;
6711 if (vma->vm_flags & VM_HUGETLB)
6712 flags |= MAP_HUGETLB;
6713
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006714 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006715 struct inode *inode;
6716 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006717
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006718 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006719 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006720 name = "//enomem";
6721 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006722 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006723 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006724 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006725 * need to add enough zero bytes after the string to handle
6726 * the 64bit alignment we do later.
6727 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006728 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006729 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006730 name = "//toolong";
6731 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006732 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006733 inode = file_inode(vma->vm_file);
6734 dev = inode->i_sb->s_dev;
6735 ino = inode->i_ino;
6736 gen = inode->i_generation;
6737 maj = MAJOR(dev);
6738 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006739
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006740 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006741 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006742 if (vma->vm_ops && vma->vm_ops->name) {
6743 name = (char *) vma->vm_ops->name(vma);
6744 if (name)
6745 goto cpy_name;
6746 }
6747
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006748 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006749 if (name)
6750 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006751
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006752 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006753 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006754 name = "[heap]";
6755 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006756 }
6757 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006758 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006759 name = "[stack]";
6760 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006761 }
6762
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006763 name = "//anon";
6764 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006765 }
6766
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006767cpy_name:
6768 strlcpy(tmp, name, sizeof(tmp));
6769 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006770got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006771 /*
6772 * Since our buffer works in 8 byte units we need to align our string
6773 * size to a multiple of 8. However, we must guarantee the tail end is
6774 * zero'd out to avoid leaking random bits to userspace.
6775 */
6776 size = strlen(name)+1;
6777 while (!IS_ALIGNED(size, sizeof(u64)))
6778 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006779
6780 mmap_event->file_name = name;
6781 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006782 mmap_event->maj = maj;
6783 mmap_event->min = min;
6784 mmap_event->ino = ino;
6785 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006786 mmap_event->prot = prot;
6787 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006788
Stephane Eranian2fe85422013-01-24 16:10:39 +01006789 if (!(vma->vm_flags & VM_EXEC))
6790 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6791
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006792 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6793
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006794 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006795 mmap_event,
6796 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006797
6798 kfree(buf);
6799}
6800
Alexander Shishkin375637b2016-04-27 18:44:46 +03006801/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03006802 * Check whether inode and address range match filter criteria.
6803 */
6804static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6805 struct file *file, unsigned long offset,
6806 unsigned long size)
6807{
Al Viro45063092016-12-04 18:24:56 -05006808 if (filter->inode != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03006809 return false;
6810
6811 if (filter->offset > offset + size)
6812 return false;
6813
6814 if (filter->offset + filter->size < offset)
6815 return false;
6816
6817 return true;
6818}
6819
6820static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6821{
6822 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6823 struct vm_area_struct *vma = data;
6824 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6825 struct file *file = vma->vm_file;
6826 struct perf_addr_filter *filter;
6827 unsigned int restart = 0, count = 0;
6828
6829 if (!has_addr_filter(event))
6830 return;
6831
6832 if (!file)
6833 return;
6834
6835 raw_spin_lock_irqsave(&ifh->lock, flags);
6836 list_for_each_entry(filter, &ifh->list, entry) {
6837 if (perf_addr_filter_match(filter, file, off,
6838 vma->vm_end - vma->vm_start)) {
6839 event->addr_filters_offs[count] = vma->vm_start;
6840 restart++;
6841 }
6842
6843 count++;
6844 }
6845
6846 if (restart)
6847 event->addr_filters_gen++;
6848 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6849
6850 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006851 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006852}
6853
6854/*
6855 * Adjust all task's events' filters to the new vma
6856 */
6857static void perf_addr_filters_adjust(struct vm_area_struct *vma)
6858{
6859 struct perf_event_context *ctx;
6860 int ctxn;
6861
Mathieu Poirier12b40a22016-07-18 10:43:06 -06006862 /*
6863 * Data tracing isn't supported yet and as such there is no need
6864 * to keep track of anything that isn't related to executable code:
6865 */
6866 if (!(vma->vm_flags & VM_EXEC))
6867 return;
6868
Alexander Shishkin375637b2016-04-27 18:44:46 +03006869 rcu_read_lock();
6870 for_each_task_context_nr(ctxn) {
6871 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6872 if (!ctx)
6873 continue;
6874
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006875 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006876 }
6877 rcu_read_unlock();
6878}
6879
Eric B Munson3af9e852010-05-18 15:30:49 +01006880void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006881{
6882 struct perf_mmap_event mmap_event;
6883
6884 if (!atomic_read(&nr_mmap_events))
6885 return;
6886
6887 mmap_event = (struct perf_mmap_event){
6888 .vma = vma,
6889 /* .file_name */
6890 /* .file_size */
6891 .event_id = {
6892 .header = {
6893 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006894 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006895 /* .size */
6896 },
6897 /* .pid */
6898 /* .tid */
6899 .start = vma->vm_start,
6900 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006901 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006902 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006903 /* .maj (attr_mmap2 only) */
6904 /* .min (attr_mmap2 only) */
6905 /* .ino (attr_mmap2 only) */
6906 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006907 /* .prot (attr_mmap2 only) */
6908 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006909 };
6910
Alexander Shishkin375637b2016-04-27 18:44:46 +03006911 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006912 perf_event_mmap_event(&mmap_event);
6913}
6914
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006915void perf_event_aux_event(struct perf_event *event, unsigned long head,
6916 unsigned long size, u64 flags)
6917{
6918 struct perf_output_handle handle;
6919 struct perf_sample_data sample;
6920 struct perf_aux_event {
6921 struct perf_event_header header;
6922 u64 offset;
6923 u64 size;
6924 u64 flags;
6925 } rec = {
6926 .header = {
6927 .type = PERF_RECORD_AUX,
6928 .misc = 0,
6929 .size = sizeof(rec),
6930 },
6931 .offset = head,
6932 .size = size,
6933 .flags = flags,
6934 };
6935 int ret;
6936
6937 perf_event_header__init_id(&rec.header, &sample, event);
6938 ret = perf_output_begin(&handle, event, rec.header.size);
6939
6940 if (ret)
6941 return;
6942
6943 perf_output_put(&handle, rec);
6944 perf_event__output_id_sample(event, &handle, &sample);
6945
6946 perf_output_end(&handle);
6947}
6948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006949/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006950 * Lost/dropped samples logging
6951 */
6952void perf_log_lost_samples(struct perf_event *event, u64 lost)
6953{
6954 struct perf_output_handle handle;
6955 struct perf_sample_data sample;
6956 int ret;
6957
6958 struct {
6959 struct perf_event_header header;
6960 u64 lost;
6961 } lost_samples_event = {
6962 .header = {
6963 .type = PERF_RECORD_LOST_SAMPLES,
6964 .misc = 0,
6965 .size = sizeof(lost_samples_event),
6966 },
6967 .lost = lost,
6968 };
6969
6970 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6971
6972 ret = perf_output_begin(&handle, event,
6973 lost_samples_event.header.size);
6974 if (ret)
6975 return;
6976
6977 perf_output_put(&handle, lost_samples_event);
6978 perf_event__output_id_sample(event, &handle, &sample);
6979 perf_output_end(&handle);
6980}
6981
6982/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006983 * context_switch tracking
6984 */
6985
6986struct perf_switch_event {
6987 struct task_struct *task;
6988 struct task_struct *next_prev;
6989
6990 struct {
6991 struct perf_event_header header;
6992 u32 next_prev_pid;
6993 u32 next_prev_tid;
6994 } event_id;
6995};
6996
6997static int perf_event_switch_match(struct perf_event *event)
6998{
6999 return event->attr.context_switch;
7000}
7001
7002static void perf_event_switch_output(struct perf_event *event, void *data)
7003{
7004 struct perf_switch_event *se = data;
7005 struct perf_output_handle handle;
7006 struct perf_sample_data sample;
7007 int ret;
7008
7009 if (!perf_event_switch_match(event))
7010 return;
7011
7012 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7013 if (event->ctx->task) {
7014 se->event_id.header.type = PERF_RECORD_SWITCH;
7015 se->event_id.header.size = sizeof(se->event_id.header);
7016 } else {
7017 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7018 se->event_id.header.size = sizeof(se->event_id);
7019 se->event_id.next_prev_pid =
7020 perf_event_pid(event, se->next_prev);
7021 se->event_id.next_prev_tid =
7022 perf_event_tid(event, se->next_prev);
7023 }
7024
7025 perf_event_header__init_id(&se->event_id.header, &sample, event);
7026
7027 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7028 if (ret)
7029 return;
7030
7031 if (event->ctx->task)
7032 perf_output_put(&handle, se->event_id.header);
7033 else
7034 perf_output_put(&handle, se->event_id);
7035
7036 perf_event__output_id_sample(event, &handle, &sample);
7037
7038 perf_output_end(&handle);
7039}
7040
7041static void perf_event_switch(struct task_struct *task,
7042 struct task_struct *next_prev, bool sched_in)
7043{
7044 struct perf_switch_event switch_event;
7045
7046 /* N.B. caller checks nr_switch_events != 0 */
7047
7048 switch_event = (struct perf_switch_event){
7049 .task = task,
7050 .next_prev = next_prev,
7051 .event_id = {
7052 .header = {
7053 /* .type */
7054 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7055 /* .size */
7056 },
7057 /* .next_prev_pid */
7058 /* .next_prev_tid */
7059 },
7060 };
7061
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007062 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007063 &switch_event,
7064 NULL);
7065}
7066
7067/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007068 * IRQ throttle logging
7069 */
7070
7071static void perf_log_throttle(struct perf_event *event, int enable)
7072{
7073 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007074 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007075 int ret;
7076
7077 struct {
7078 struct perf_event_header header;
7079 u64 time;
7080 u64 id;
7081 u64 stream_id;
7082 } throttle_event = {
7083 .header = {
7084 .type = PERF_RECORD_THROTTLE,
7085 .misc = 0,
7086 .size = sizeof(throttle_event),
7087 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007088 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007089 .id = primary_event_id(event),
7090 .stream_id = event->id,
7091 };
7092
7093 if (enable)
7094 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7095
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007096 perf_event_header__init_id(&throttle_event.header, &sample, event);
7097
7098 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007099 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007100 if (ret)
7101 return;
7102
7103 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007104 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007105 perf_output_end(&handle);
7106}
7107
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007108static void perf_log_itrace_start(struct perf_event *event)
7109{
7110 struct perf_output_handle handle;
7111 struct perf_sample_data sample;
7112 struct perf_aux_event {
7113 struct perf_event_header header;
7114 u32 pid;
7115 u32 tid;
7116 } rec;
7117 int ret;
7118
7119 if (event->parent)
7120 event = event->parent;
7121
7122 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
7123 event->hw.itrace_started)
7124 return;
7125
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007126 rec.header.type = PERF_RECORD_ITRACE_START;
7127 rec.header.misc = 0;
7128 rec.header.size = sizeof(rec);
7129 rec.pid = perf_event_pid(event, current);
7130 rec.tid = perf_event_tid(event, current);
7131
7132 perf_event_header__init_id(&rec.header, &sample, event);
7133 ret = perf_output_begin(&handle, event, rec.header.size);
7134
7135 if (ret)
7136 return;
7137
7138 perf_output_put(&handle, rec);
7139 perf_event__output_id_sample(event, &handle, &sample);
7140
7141 perf_output_end(&handle);
7142}
7143
Jiri Olsa475113d2016-12-28 14:31:03 +01007144static int
7145__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007146{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007147 struct hw_perf_event *hwc = &event->hw;
7148 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01007149 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01007150
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007151 seq = __this_cpu_read(perf_throttled_seq);
7152 if (seq != hwc->interrupts_seq) {
7153 hwc->interrupts_seq = seq;
7154 hwc->interrupts = 1;
7155 } else {
7156 hwc->interrupts++;
7157 if (unlikely(throttle
7158 && hwc->interrupts >= max_samples_per_tick)) {
7159 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007160 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007161 hwc->interrupts = MAX_INTERRUPTS;
7162 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007163 ret = 1;
7164 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007165 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007166
7167 if (event->attr.freq) {
7168 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007169 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007170
Peter Zijlstraabd50712010-01-26 18:50:16 +01007171 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172
Peter Zijlstraabd50712010-01-26 18:50:16 +01007173 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007174 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007175 }
7176
Jiri Olsa475113d2016-12-28 14:31:03 +01007177 return ret;
7178}
7179
7180int perf_event_account_interrupt(struct perf_event *event)
7181{
7182 return __perf_event_account_interrupt(event, 1);
7183}
7184
7185/*
7186 * Generic event overflow handling, sampling.
7187 */
7188
7189static int __perf_event_overflow(struct perf_event *event,
7190 int throttle, struct perf_sample_data *data,
7191 struct pt_regs *regs)
7192{
7193 int events = atomic_read(&event->event_limit);
7194 int ret = 0;
7195
7196 /*
7197 * Non-sampling counters might still use the PMI to fold short
7198 * hardware counters, ignore those.
7199 */
7200 if (unlikely(!is_sampling_event(event)))
7201 return 0;
7202
7203 ret = __perf_event_account_interrupt(event, throttle);
7204
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007205 /*
7206 * XXX event_limit might not quite work as expected on inherited
7207 * events
7208 */
7209
7210 event->pending_kill = POLL_IN;
7211 if (events && atomic_dec_and_test(&event->event_limit)) {
7212 ret = 1;
7213 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007214
7215 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007216 }
7217
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007218 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007219
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007220 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007221 event->pending_wakeup = 1;
7222 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007223 }
7224
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007225 return ret;
7226}
7227
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007228int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007229 struct perf_sample_data *data,
7230 struct pt_regs *regs)
7231{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007232 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007233}
7234
7235/*
7236 * Generic software event infrastructure
7237 */
7238
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007239struct swevent_htable {
7240 struct swevent_hlist *swevent_hlist;
7241 struct mutex hlist_mutex;
7242 int hlist_refcount;
7243
7244 /* Recursion avoidance in each contexts */
7245 int recursion[PERF_NR_CONTEXTS];
7246};
7247
7248static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7249
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007250/*
7251 * We directly increment event->count and keep a second value in
7252 * event->hw.period_left to count intervals. This period event
7253 * is kept in the range [-sample_period, 0] so that we can use the
7254 * sign as trigger.
7255 */
7256
Jiri Olsaab573842013-05-01 17:25:44 +02007257u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007258{
7259 struct hw_perf_event *hwc = &event->hw;
7260 u64 period = hwc->last_period;
7261 u64 nr, offset;
7262 s64 old, val;
7263
7264 hwc->last_period = hwc->sample_period;
7265
7266again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007267 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007268 if (val < 0)
7269 return 0;
7270
7271 nr = div64_u64(period + val, period);
7272 offset = nr * period;
7273 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007274 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007275 goto again;
7276
7277 return nr;
7278}
7279
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007280static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007281 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007282 struct pt_regs *regs)
7283{
7284 struct hw_perf_event *hwc = &event->hw;
7285 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007286
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007287 if (!overflow)
7288 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007289
7290 if (hwc->interrupts == MAX_INTERRUPTS)
7291 return;
7292
7293 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007294 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007295 data, regs)) {
7296 /*
7297 * We inhibit the overflow from happening when
7298 * hwc->interrupts == MAX_INTERRUPTS.
7299 */
7300 break;
7301 }
7302 throttle = 1;
7303 }
7304}
7305
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007306static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007307 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007308 struct pt_regs *regs)
7309{
7310 struct hw_perf_event *hwc = &event->hw;
7311
Peter Zijlstrae7850592010-05-21 14:43:08 +02007312 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007314 if (!regs)
7315 return;
7316
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007317 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007318 return;
7319
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007320 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7321 data->period = nr;
7322 return perf_swevent_overflow(event, 1, data, regs);
7323 } else
7324 data->period = event->hw.last_period;
7325
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007326 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007327 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007328
Peter Zijlstrae7850592010-05-21 14:43:08 +02007329 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007330 return;
7331
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007332 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007333}
7334
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007335static int perf_exclude_event(struct perf_event *event,
7336 struct pt_regs *regs)
7337{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007338 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007339 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007340
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007341 if (regs) {
7342 if (event->attr.exclude_user && user_mode(regs))
7343 return 1;
7344
7345 if (event->attr.exclude_kernel && !user_mode(regs))
7346 return 1;
7347 }
7348
7349 return 0;
7350}
7351
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007352static int perf_swevent_match(struct perf_event *event,
7353 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007354 u32 event_id,
7355 struct perf_sample_data *data,
7356 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007357{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007358 if (event->attr.type != type)
7359 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007360
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007361 if (event->attr.config != event_id)
7362 return 0;
7363
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007364 if (perf_exclude_event(event, regs))
7365 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007366
7367 return 1;
7368}
7369
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007370static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007371{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007372 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007373
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007374 return hash_64(val, SWEVENT_HLIST_BITS);
7375}
7376
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007377static inline struct hlist_head *
7378__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007379{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007380 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007381
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007382 return &hlist->heads[hash];
7383}
7384
7385/* For the read side: events when they trigger */
7386static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007387find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007388{
7389 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007390
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007391 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007392 if (!hlist)
7393 return NULL;
7394
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007395 return __find_swevent_head(hlist, type, event_id);
7396}
7397
7398/* For the event head insertion and removal in the hlist */
7399static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007400find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007401{
7402 struct swevent_hlist *hlist;
7403 u32 event_id = event->attr.config;
7404 u64 type = event->attr.type;
7405
7406 /*
7407 * Event scheduling is always serialized against hlist allocation
7408 * and release. Which makes the protected version suitable here.
7409 * The context lock guarantees that.
7410 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007411 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007412 lockdep_is_held(&event->ctx->lock));
7413 if (!hlist)
7414 return NULL;
7415
7416 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007417}
7418
7419static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007420 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007421 struct perf_sample_data *data,
7422 struct pt_regs *regs)
7423{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007424 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007425 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007426 struct hlist_head *head;
7427
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007428 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007429 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007430 if (!head)
7431 goto end;
7432
Sasha Levinb67bfe02013-02-27 17:06:00 -08007433 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007434 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007435 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007436 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007437end:
7438 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007439}
7440
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007441DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7442
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007443int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007444{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007445 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007446
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007447 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007448}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007449EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007450
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007451void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007452{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007453 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007454
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007455 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007456}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007457
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007458void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007459{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007460 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007461
7462 if (WARN_ON_ONCE(!regs))
7463 return;
7464
7465 perf_sample_data_init(&data, addr, 0);
7466 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7467}
7468
7469void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7470{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007471 int rctx;
7472
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007473 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007474 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007475 if (unlikely(rctx < 0))
7476 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007477
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007478 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007479
7480 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007481fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007482 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007483}
7484
7485static void perf_swevent_read(struct perf_event *event)
7486{
7487}
7488
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007489static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007490{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007491 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007492 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007493 struct hlist_head *head;
7494
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007495 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007496 hwc->last_period = hwc->sample_period;
7497 perf_swevent_set_period(event);
7498 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007499
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007500 hwc->state = !(flags & PERF_EF_START);
7501
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007502 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007503 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007504 return -EINVAL;
7505
7506 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007507 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007508
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007509 return 0;
7510}
7511
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007512static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007513{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007514 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007515}
7516
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007517static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007518{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007519 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007520}
7521
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007522static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007523{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007524 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007525}
7526
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007527/* Deref the hlist from the update side */
7528static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007529swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007530{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007531 return rcu_dereference_protected(swhash->swevent_hlist,
7532 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007533}
7534
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007535static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007536{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007537 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007538
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007539 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007540 return;
7541
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007542 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007543 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007544}
7545
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007546static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007547{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007548 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007549
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007550 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007551
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007552 if (!--swhash->hlist_refcount)
7553 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007554
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007555 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007556}
7557
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007558static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007559{
7560 int cpu;
7561
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007562 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007563 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007564}
7565
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007566static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007567{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007568 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007569 int err = 0;
7570
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007571 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007572 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007573 struct swevent_hlist *hlist;
7574
7575 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7576 if (!hlist) {
7577 err = -ENOMEM;
7578 goto exit;
7579 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007580 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007581 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007582 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007583exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007584 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007585
7586 return err;
7587}
7588
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007589static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007590{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007591 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007592
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007593 get_online_cpus();
7594 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007595 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007596 if (err) {
7597 failed_cpu = cpu;
7598 goto fail;
7599 }
7600 }
7601 put_online_cpus();
7602
7603 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007604fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007605 for_each_possible_cpu(cpu) {
7606 if (cpu == failed_cpu)
7607 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007608 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007609 }
7610
7611 put_online_cpus();
7612 return err;
7613}
7614
Ingo Molnarc5905af2012-02-24 08:31:31 +01007615struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007616
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007617static void sw_perf_event_destroy(struct perf_event *event)
7618{
7619 u64 event_id = event->attr.config;
7620
7621 WARN_ON(event->parent);
7622
Ingo Molnarc5905af2012-02-24 08:31:31 +01007623 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007624 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007625}
7626
7627static int perf_swevent_init(struct perf_event *event)
7628{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007629 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007630
7631 if (event->attr.type != PERF_TYPE_SOFTWARE)
7632 return -ENOENT;
7633
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007634 /*
7635 * no branch sampling for software events
7636 */
7637 if (has_branch_stack(event))
7638 return -EOPNOTSUPP;
7639
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007640 switch (event_id) {
7641 case PERF_COUNT_SW_CPU_CLOCK:
7642 case PERF_COUNT_SW_TASK_CLOCK:
7643 return -ENOENT;
7644
7645 default:
7646 break;
7647 }
7648
Dan Carpenterce677832010-10-24 21:50:42 +02007649 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007650 return -ENOENT;
7651
7652 if (!event->parent) {
7653 int err;
7654
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007655 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007656 if (err)
7657 return err;
7658
Ingo Molnarc5905af2012-02-24 08:31:31 +01007659 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007660 event->destroy = sw_perf_event_destroy;
7661 }
7662
7663 return 0;
7664}
7665
7666static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007667 .task_ctx_nr = perf_sw_context,
7668
Peter Zijlstra34f43922015-02-20 14:05:38 +01007669 .capabilities = PERF_PMU_CAP_NO_NMI,
7670
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007671 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007672 .add = perf_swevent_add,
7673 .del = perf_swevent_del,
7674 .start = perf_swevent_start,
7675 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007676 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007677};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007678
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007679#ifdef CONFIG_EVENT_TRACING
7680
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007681static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007682 struct perf_sample_data *data)
7683{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007684 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007685
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007686 /* only top level events have filters set */
7687 if (event->parent)
7688 event = event->parent;
7689
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007690 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7691 return 1;
7692 return 0;
7693}
7694
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007695static int perf_tp_event_match(struct perf_event *event,
7696 struct perf_sample_data *data,
7697 struct pt_regs *regs)
7698{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007699 if (event->hw.state & PERF_HES_STOPPED)
7700 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007701 /*
7702 * All tracepoints are from kernel-space.
7703 */
7704 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007705 return 0;
7706
7707 if (!perf_tp_filter_match(event, data))
7708 return 0;
7709
7710 return 1;
7711}
7712
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007713void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7714 struct trace_event_call *call, u64 count,
7715 struct pt_regs *regs, struct hlist_head *head,
7716 struct task_struct *task)
7717{
7718 struct bpf_prog *prog = call->prog;
7719
7720 if (prog) {
7721 *(struct pt_regs **)raw_data = regs;
7722 if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) {
7723 perf_swevent_put_recursion_context(rctx);
7724 return;
7725 }
7726 }
7727 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
7728 rctx, task);
7729}
7730EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7731
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007732void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007733 struct pt_regs *regs, struct hlist_head *head, int rctx,
7734 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007735{
7736 struct perf_sample_data data;
7737 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007738
7739 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007740 .frag = {
7741 .size = entry_size,
7742 .data = record,
7743 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007744 };
7745
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007746 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007747 data.raw = &raw;
7748
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007749 perf_trace_buf_update(record, event_type);
7750
Sasha Levinb67bfe02013-02-27 17:06:00 -08007751 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007752 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007753 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007754 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007755
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007756 /*
7757 * If we got specified a target task, also iterate its context and
7758 * deliver this event there too.
7759 */
7760 if (task && task != current) {
7761 struct perf_event_context *ctx;
7762 struct trace_entry *entry = record;
7763
7764 rcu_read_lock();
7765 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7766 if (!ctx)
7767 goto unlock;
7768
7769 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7770 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7771 continue;
7772 if (event->attr.config != entry->type)
7773 continue;
7774 if (perf_tp_event_match(event, &data, regs))
7775 perf_swevent_event(event, count, &data, regs);
7776 }
7777unlock:
7778 rcu_read_unlock();
7779 }
7780
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007781 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007782}
7783EXPORT_SYMBOL_GPL(perf_tp_event);
7784
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007785static void tp_perf_event_destroy(struct perf_event *event)
7786{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007787 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007788}
7789
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007790static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007791{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007792 int err;
7793
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007794 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7795 return -ENOENT;
7796
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007797 /*
7798 * no branch sampling for tracepoint events
7799 */
7800 if (has_branch_stack(event))
7801 return -EOPNOTSUPP;
7802
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007803 err = perf_trace_init(event);
7804 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007805 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007806
7807 event->destroy = tp_perf_event_destroy;
7808
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007809 return 0;
7810}
7811
7812static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007813 .task_ctx_nr = perf_sw_context,
7814
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007815 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007816 .add = perf_trace_add,
7817 .del = perf_trace_del,
7818 .start = perf_swevent_start,
7819 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007820 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007821};
7822
7823static inline void perf_tp_register(void)
7824{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007825 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007826}
Li Zefan6fb29152009-10-15 11:21:42 +08007827
Li Zefan6fb29152009-10-15 11:21:42 +08007828static void perf_event_free_filter(struct perf_event *event)
7829{
7830 ftrace_profile_free_filter(event);
7831}
7832
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007833#ifdef CONFIG_BPF_SYSCALL
7834static void bpf_overflow_handler(struct perf_event *event,
7835 struct perf_sample_data *data,
7836 struct pt_regs *regs)
7837{
7838 struct bpf_perf_event_data_kern ctx = {
7839 .data = data,
7840 .regs = regs,
7841 };
7842 int ret = 0;
7843
7844 preempt_disable();
7845 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
7846 goto out;
7847 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01007848 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007849 rcu_read_unlock();
7850out:
7851 __this_cpu_dec(bpf_prog_active);
7852 preempt_enable();
7853 if (!ret)
7854 return;
7855
7856 event->orig_overflow_handler(event, data, regs);
7857}
7858
7859static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7860{
7861 struct bpf_prog *prog;
7862
7863 if (event->overflow_handler_context)
7864 /* hw breakpoint or kernel counter */
7865 return -EINVAL;
7866
7867 if (event->prog)
7868 return -EEXIST;
7869
7870 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
7871 if (IS_ERR(prog))
7872 return PTR_ERR(prog);
7873
7874 event->prog = prog;
7875 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
7876 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
7877 return 0;
7878}
7879
7880static void perf_event_free_bpf_handler(struct perf_event *event)
7881{
7882 struct bpf_prog *prog = event->prog;
7883
7884 if (!prog)
7885 return;
7886
7887 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
7888 event->prog = NULL;
7889 bpf_prog_put(prog);
7890}
7891#else
7892static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7893{
7894 return -EOPNOTSUPP;
7895}
7896static void perf_event_free_bpf_handler(struct perf_event *event)
7897{
7898}
7899#endif
7900
Alexei Starovoitov25415172015-03-25 12:49:20 -07007901static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7902{
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007903 bool is_kprobe, is_tracepoint;
Alexei Starovoitov25415172015-03-25 12:49:20 -07007904 struct bpf_prog *prog;
7905
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007906 if (event->attr.type == PERF_TYPE_HARDWARE ||
7907 event->attr.type == PERF_TYPE_SOFTWARE)
7908 return perf_event_set_bpf_handler(event, prog_fd);
7909
Alexei Starovoitov25415172015-03-25 12:49:20 -07007910 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7911 return -EINVAL;
7912
7913 if (event->tp_event->prog)
7914 return -EEXIST;
7915
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007916 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
7917 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
7918 if (!is_kprobe && !is_tracepoint)
7919 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007920 return -EINVAL;
7921
7922 prog = bpf_prog_get(prog_fd);
7923 if (IS_ERR(prog))
7924 return PTR_ERR(prog);
7925
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007926 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
7927 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007928 /* valid fd, but invalid bpf program type */
7929 bpf_prog_put(prog);
7930 return -EINVAL;
7931 }
7932
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07007933 if (is_tracepoint) {
7934 int off = trace_event_get_offsets(event->tp_event);
7935
7936 if (prog->aux->max_ctx_offset > off) {
7937 bpf_prog_put(prog);
7938 return -EACCES;
7939 }
7940 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07007941 event->tp_event->prog = prog;
7942
7943 return 0;
7944}
7945
7946static void perf_event_free_bpf_prog(struct perf_event *event)
7947{
7948 struct bpf_prog *prog;
7949
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007950 perf_event_free_bpf_handler(event);
7951
Alexei Starovoitov25415172015-03-25 12:49:20 -07007952 if (!event->tp_event)
7953 return;
7954
7955 prog = event->tp_event->prog;
7956 if (prog) {
7957 event->tp_event->prog = NULL;
Daniel Borkmann1aacde32016-06-30 17:24:43 +02007958 bpf_prog_put(prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07007959 }
7960}
7961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007962#else
Li Zefan6fb29152009-10-15 11:21:42 +08007963
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007964static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007965{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007966}
Li Zefan6fb29152009-10-15 11:21:42 +08007967
Li Zefan6fb29152009-10-15 11:21:42 +08007968static void perf_event_free_filter(struct perf_event *event)
7969{
7970}
7971
Alexei Starovoitov25415172015-03-25 12:49:20 -07007972static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7973{
7974 return -ENOENT;
7975}
7976
7977static void perf_event_free_bpf_prog(struct perf_event *event)
7978{
7979}
Li Zefan07b139c2009-12-21 14:27:35 +08007980#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007981
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007982#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007983void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007984{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007985 struct perf_sample_data sample;
7986 struct pt_regs *regs = data;
7987
Robert Richterfd0d0002012-04-02 20:19:08 +02007988 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007989
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007990 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007991 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007992}
7993#endif
7994
Alexander Shishkin375637b2016-04-27 18:44:46 +03007995/*
7996 * Allocate a new address filter
7997 */
7998static struct perf_addr_filter *
7999perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
8000{
8001 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
8002 struct perf_addr_filter *filter;
8003
8004 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
8005 if (!filter)
8006 return NULL;
8007
8008 INIT_LIST_HEAD(&filter->entry);
8009 list_add_tail(&filter->entry, filters);
8010
8011 return filter;
8012}
8013
8014static void free_filters_list(struct list_head *filters)
8015{
8016 struct perf_addr_filter *filter, *iter;
8017
8018 list_for_each_entry_safe(filter, iter, filters, entry) {
8019 if (filter->inode)
8020 iput(filter->inode);
8021 list_del(&filter->entry);
8022 kfree(filter);
8023 }
8024}
8025
8026/*
8027 * Free existing address filters and optionally install new ones
8028 */
8029static void perf_addr_filters_splice(struct perf_event *event,
8030 struct list_head *head)
8031{
8032 unsigned long flags;
8033 LIST_HEAD(list);
8034
8035 if (!has_addr_filter(event))
8036 return;
8037
8038 /* don't bother with children, they don't have their own filters */
8039 if (event->parent)
8040 return;
8041
8042 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
8043
8044 list_splice_init(&event->addr_filters.list, &list);
8045 if (head)
8046 list_splice(head, &event->addr_filters.list);
8047
8048 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
8049
8050 free_filters_list(&list);
8051}
8052
8053/*
8054 * Scan through mm's vmas and see if one of them matches the
8055 * @filter; if so, adjust filter's address range.
8056 * Called with mm::mmap_sem down for reading.
8057 */
8058static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
8059 struct mm_struct *mm)
8060{
8061 struct vm_area_struct *vma;
8062
8063 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8064 struct file *file = vma->vm_file;
8065 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8066 unsigned long vma_size = vma->vm_end - vma->vm_start;
8067
8068 if (!file)
8069 continue;
8070
8071 if (!perf_addr_filter_match(filter, file, off, vma_size))
8072 continue;
8073
8074 return vma->vm_start;
8075 }
8076
8077 return 0;
8078}
8079
8080/*
8081 * Update event's address range filters based on the
8082 * task's existing mappings, if any.
8083 */
8084static void perf_event_addr_filters_apply(struct perf_event *event)
8085{
8086 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8087 struct task_struct *task = READ_ONCE(event->ctx->task);
8088 struct perf_addr_filter *filter;
8089 struct mm_struct *mm = NULL;
8090 unsigned int count = 0;
8091 unsigned long flags;
8092
8093 /*
8094 * We may observe TASK_TOMBSTONE, which means that the event tear-down
8095 * will stop on the parent's child_mutex that our caller is also holding
8096 */
8097 if (task == TASK_TOMBSTONE)
8098 return;
8099
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008100 if (!ifh->nr_file_filters)
8101 return;
8102
Alexander Shishkin375637b2016-04-27 18:44:46 +03008103 mm = get_task_mm(event->ctx->task);
8104 if (!mm)
8105 goto restart;
8106
8107 down_read(&mm->mmap_sem);
8108
8109 raw_spin_lock_irqsave(&ifh->lock, flags);
8110 list_for_each_entry(filter, &ifh->list, entry) {
8111 event->addr_filters_offs[count] = 0;
8112
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008113 /*
8114 * Adjust base offset if the filter is associated to a binary
8115 * that needs to be mapped:
8116 */
8117 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008118 event->addr_filters_offs[count] =
8119 perf_addr_filter_apply(filter, mm);
8120
8121 count++;
8122 }
8123
8124 event->addr_filters_gen++;
8125 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8126
8127 up_read(&mm->mmap_sem);
8128
8129 mmput(mm);
8130
8131restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008132 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008133}
8134
8135/*
8136 * Address range filtering: limiting the data to certain
8137 * instruction address ranges. Filters are ioctl()ed to us from
8138 * userspace as ascii strings.
8139 *
8140 * Filter string format:
8141 *
8142 * ACTION RANGE_SPEC
8143 * where ACTION is one of the
8144 * * "filter": limit the trace to this region
8145 * * "start": start tracing from this address
8146 * * "stop": stop tracing at this address/region;
8147 * RANGE_SPEC is
8148 * * for kernel addresses: <start address>[/<size>]
8149 * * for object files: <start address>[/<size>]@</path/to/object/file>
8150 *
8151 * if <size> is not specified, the range is treated as a single address.
8152 */
8153enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008154 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008155 IF_ACT_FILTER,
8156 IF_ACT_START,
8157 IF_ACT_STOP,
8158 IF_SRC_FILE,
8159 IF_SRC_KERNEL,
8160 IF_SRC_FILEADDR,
8161 IF_SRC_KERNELADDR,
8162};
8163
8164enum {
8165 IF_STATE_ACTION = 0,
8166 IF_STATE_SOURCE,
8167 IF_STATE_END,
8168};
8169
8170static const match_table_t if_tokens = {
8171 { IF_ACT_FILTER, "filter" },
8172 { IF_ACT_START, "start" },
8173 { IF_ACT_STOP, "stop" },
8174 { IF_SRC_FILE, "%u/%u@%s" },
8175 { IF_SRC_KERNEL, "%u/%u" },
8176 { IF_SRC_FILEADDR, "%u@%s" },
8177 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008178 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008179};
8180
8181/*
8182 * Address filter string parser
8183 */
8184static int
8185perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8186 struct list_head *filters)
8187{
8188 struct perf_addr_filter *filter = NULL;
8189 char *start, *orig, *filename = NULL;
8190 struct path path;
8191 substring_t args[MAX_OPT_ARGS];
8192 int state = IF_STATE_ACTION, token;
8193 unsigned int kernel = 0;
8194 int ret = -EINVAL;
8195
8196 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8197 if (!fstr)
8198 return -ENOMEM;
8199
8200 while ((start = strsep(&fstr, " ,\n")) != NULL) {
8201 ret = -EINVAL;
8202
8203 if (!*start)
8204 continue;
8205
8206 /* filter definition begins */
8207 if (state == IF_STATE_ACTION) {
8208 filter = perf_addr_filter_new(event, filters);
8209 if (!filter)
8210 goto fail;
8211 }
8212
8213 token = match_token(start, if_tokens, args);
8214 switch (token) {
8215 case IF_ACT_FILTER:
8216 case IF_ACT_START:
8217 filter->filter = 1;
8218
8219 case IF_ACT_STOP:
8220 if (state != IF_STATE_ACTION)
8221 goto fail;
8222
8223 state = IF_STATE_SOURCE;
8224 break;
8225
8226 case IF_SRC_KERNELADDR:
8227 case IF_SRC_KERNEL:
8228 kernel = 1;
8229
8230 case IF_SRC_FILEADDR:
8231 case IF_SRC_FILE:
8232 if (state != IF_STATE_SOURCE)
8233 goto fail;
8234
8235 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8236 filter->range = 1;
8237
8238 *args[0].to = 0;
8239 ret = kstrtoul(args[0].from, 0, &filter->offset);
8240 if (ret)
8241 goto fail;
8242
8243 if (filter->range) {
8244 *args[1].to = 0;
8245 ret = kstrtoul(args[1].from, 0, &filter->size);
8246 if (ret)
8247 goto fail;
8248 }
8249
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008250 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8251 int fpos = filter->range ? 2 : 1;
8252
8253 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008254 if (!filename) {
8255 ret = -ENOMEM;
8256 goto fail;
8257 }
8258 }
8259
8260 state = IF_STATE_END;
8261 break;
8262
8263 default:
8264 goto fail;
8265 }
8266
8267 /*
8268 * Filter definition is fully parsed, validate and install it.
8269 * Make sure that it doesn't contradict itself or the event's
8270 * attribute.
8271 */
8272 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02008273 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008274 if (kernel && event->attr.exclude_kernel)
8275 goto fail;
8276
8277 if (!kernel) {
8278 if (!filename)
8279 goto fail;
8280
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008281 /*
8282 * For now, we only support file-based filters
8283 * in per-task events; doing so for CPU-wide
8284 * events requires additional context switching
8285 * trickery, since same object code will be
8286 * mapped at different virtual addresses in
8287 * different processes.
8288 */
8289 ret = -EOPNOTSUPP;
8290 if (!event->ctx->task)
8291 goto fail_free_name;
8292
Alexander Shishkin375637b2016-04-27 18:44:46 +03008293 /* look up the path and grab its inode */
8294 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8295 if (ret)
8296 goto fail_free_name;
8297
8298 filter->inode = igrab(d_inode(path.dentry));
8299 path_put(&path);
8300 kfree(filename);
8301 filename = NULL;
8302
8303 ret = -EINVAL;
8304 if (!filter->inode ||
8305 !S_ISREG(filter->inode->i_mode))
8306 /* free_filters_list() will iput() */
8307 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008308
8309 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008310 }
8311
8312 /* ready to consume more filters */
8313 state = IF_STATE_ACTION;
8314 filter = NULL;
8315 }
8316 }
8317
8318 if (state != IF_STATE_ACTION)
8319 goto fail;
8320
8321 kfree(orig);
8322
8323 return 0;
8324
8325fail_free_name:
8326 kfree(filename);
8327fail:
8328 free_filters_list(filters);
8329 kfree(orig);
8330
8331 return ret;
8332}
8333
8334static int
8335perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8336{
8337 LIST_HEAD(filters);
8338 int ret;
8339
8340 /*
8341 * Since this is called in perf_ioctl() path, we're already holding
8342 * ctx::mutex.
8343 */
8344 lockdep_assert_held(&event->ctx->mutex);
8345
8346 if (WARN_ON_ONCE(event->parent))
8347 return -EINVAL;
8348
Alexander Shishkin375637b2016-04-27 18:44:46 +03008349 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8350 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008351 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008352
8353 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008354 if (ret)
8355 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008356
8357 /* remove existing filters, if any */
8358 perf_addr_filters_splice(event, &filters);
8359
8360 /* install new filters */
8361 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8362
8363 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008364
8365fail_free_filters:
8366 free_filters_list(&filters);
8367
8368fail_clear_files:
8369 event->addr_filters.nr_file_filters = 0;
8370
8371 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008372}
8373
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008374static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8375{
8376 char *filter_str;
8377 int ret = -EINVAL;
8378
Alexander Shishkin375637b2016-04-27 18:44:46 +03008379 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8380 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8381 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008382 return -EINVAL;
8383
8384 filter_str = strndup_user(arg, PAGE_SIZE);
8385 if (IS_ERR(filter_str))
8386 return PTR_ERR(filter_str);
8387
8388 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8389 event->attr.type == PERF_TYPE_TRACEPOINT)
8390 ret = ftrace_profile_set_filter(event, event->attr.config,
8391 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008392 else if (has_addr_filter(event))
8393 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008394
8395 kfree(filter_str);
8396 return ret;
8397}
8398
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008399/*
8400 * hrtimer based swevent callback
8401 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008402
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008403static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008404{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008405 enum hrtimer_restart ret = HRTIMER_RESTART;
8406 struct perf_sample_data data;
8407 struct pt_regs *regs;
8408 struct perf_event *event;
8409 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008410
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008411 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008412
8413 if (event->state != PERF_EVENT_STATE_ACTIVE)
8414 return HRTIMER_NORESTART;
8415
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008416 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008417
Robert Richterfd0d0002012-04-02 20:19:08 +02008418 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008419 regs = get_irq_regs();
8420
8421 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008422 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008423 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008424 ret = HRTIMER_NORESTART;
8425 }
8426
8427 period = max_t(u64, 10000, event->hw.sample_period);
8428 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8429
8430 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008431}
8432
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008433static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008434{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008435 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008436 s64 period;
8437
8438 if (!is_sampling_event(event))
8439 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008440
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008441 period = local64_read(&hwc->period_left);
8442 if (period) {
8443 if (period < 0)
8444 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008445
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008446 local64_set(&hwc->period_left, 0);
8447 } else {
8448 period = max_t(u64, 10000, hwc->sample_period);
8449 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008450 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8451 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008452}
8453
8454static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8455{
8456 struct hw_perf_event *hwc = &event->hw;
8457
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008458 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008459 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008460 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008461
8462 hrtimer_cancel(&hwc->hrtimer);
8463 }
8464}
8465
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008466static void perf_swevent_init_hrtimer(struct perf_event *event)
8467{
8468 struct hw_perf_event *hwc = &event->hw;
8469
8470 if (!is_sampling_event(event))
8471 return;
8472
8473 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8474 hwc->hrtimer.function = perf_swevent_hrtimer;
8475
8476 /*
8477 * Since hrtimers have a fixed rate, we can do a static freq->period
8478 * mapping and avoid the whole period adjust feedback stuff.
8479 */
8480 if (event->attr.freq) {
8481 long freq = event->attr.sample_freq;
8482
8483 event->attr.sample_period = NSEC_PER_SEC / freq;
8484 hwc->sample_period = event->attr.sample_period;
8485 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008486 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008487 event->attr.freq = 0;
8488 }
8489}
8490
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008491/*
8492 * Software event: cpu wall time clock
8493 */
8494
8495static void cpu_clock_event_update(struct perf_event *event)
8496{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008497 s64 prev;
8498 u64 now;
8499
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008500 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008501 prev = local64_xchg(&event->hw.prev_count, now);
8502 local64_add(now - prev, &event->count);
8503}
8504
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008505static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008506{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008507 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008508 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008509}
8510
8511static void cpu_clock_event_stop(struct perf_event *event, int flags)
8512{
8513 perf_swevent_cancel_hrtimer(event);
8514 cpu_clock_event_update(event);
8515}
8516
8517static int cpu_clock_event_add(struct perf_event *event, int flags)
8518{
8519 if (flags & PERF_EF_START)
8520 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008521 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008522
8523 return 0;
8524}
8525
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008526static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008527{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008528 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008529}
8530
8531static void cpu_clock_event_read(struct perf_event *event)
8532{
8533 cpu_clock_event_update(event);
8534}
8535
8536static int cpu_clock_event_init(struct perf_event *event)
8537{
8538 if (event->attr.type != PERF_TYPE_SOFTWARE)
8539 return -ENOENT;
8540
8541 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8542 return -ENOENT;
8543
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008544 /*
8545 * no branch sampling for software events
8546 */
8547 if (has_branch_stack(event))
8548 return -EOPNOTSUPP;
8549
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008550 perf_swevent_init_hrtimer(event);
8551
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008552 return 0;
8553}
8554
8555static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008556 .task_ctx_nr = perf_sw_context,
8557
Peter Zijlstra34f43922015-02-20 14:05:38 +01008558 .capabilities = PERF_PMU_CAP_NO_NMI,
8559
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008560 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008561 .add = cpu_clock_event_add,
8562 .del = cpu_clock_event_del,
8563 .start = cpu_clock_event_start,
8564 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008565 .read = cpu_clock_event_read,
8566};
8567
8568/*
8569 * Software event: task time clock
8570 */
8571
8572static void task_clock_event_update(struct perf_event *event, u64 now)
8573{
8574 u64 prev;
8575 s64 delta;
8576
8577 prev = local64_xchg(&event->hw.prev_count, now);
8578 delta = now - prev;
8579 local64_add(delta, &event->count);
8580}
8581
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008582static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008583{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008584 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008585 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008586}
8587
8588static void task_clock_event_stop(struct perf_event *event, int flags)
8589{
8590 perf_swevent_cancel_hrtimer(event);
8591 task_clock_event_update(event, event->ctx->time);
8592}
8593
8594static int task_clock_event_add(struct perf_event *event, int flags)
8595{
8596 if (flags & PERF_EF_START)
8597 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008598 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008599
8600 return 0;
8601}
8602
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008603static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008604{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008605 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008606}
8607
8608static void task_clock_event_read(struct perf_event *event)
8609{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008610 u64 now = perf_clock();
8611 u64 delta = now - event->ctx->timestamp;
8612 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008613
8614 task_clock_event_update(event, time);
8615}
8616
8617static int task_clock_event_init(struct perf_event *event)
8618{
8619 if (event->attr.type != PERF_TYPE_SOFTWARE)
8620 return -ENOENT;
8621
8622 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8623 return -ENOENT;
8624
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008625 /*
8626 * no branch sampling for software events
8627 */
8628 if (has_branch_stack(event))
8629 return -EOPNOTSUPP;
8630
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008631 perf_swevent_init_hrtimer(event);
8632
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008633 return 0;
8634}
8635
8636static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008637 .task_ctx_nr = perf_sw_context,
8638
Peter Zijlstra34f43922015-02-20 14:05:38 +01008639 .capabilities = PERF_PMU_CAP_NO_NMI,
8640
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008641 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008642 .add = task_clock_event_add,
8643 .del = task_clock_event_del,
8644 .start = task_clock_event_start,
8645 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008646 .read = task_clock_event_read,
8647};
8648
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008649static void perf_pmu_nop_void(struct pmu *pmu)
8650{
8651}
8652
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008653static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8654{
8655}
8656
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008657static int perf_pmu_nop_int(struct pmu *pmu)
8658{
8659 return 0;
8660}
8661
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008662static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008663
8664static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008665{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008666 __this_cpu_write(nop_txn_flags, flags);
8667
8668 if (flags & ~PERF_PMU_TXN_ADD)
8669 return;
8670
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008671 perf_pmu_disable(pmu);
8672}
8673
8674static int perf_pmu_commit_txn(struct pmu *pmu)
8675{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008676 unsigned int flags = __this_cpu_read(nop_txn_flags);
8677
8678 __this_cpu_write(nop_txn_flags, 0);
8679
8680 if (flags & ~PERF_PMU_TXN_ADD)
8681 return 0;
8682
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008683 perf_pmu_enable(pmu);
8684 return 0;
8685}
8686
8687static void perf_pmu_cancel_txn(struct pmu *pmu)
8688{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008689 unsigned int flags = __this_cpu_read(nop_txn_flags);
8690
8691 __this_cpu_write(nop_txn_flags, 0);
8692
8693 if (flags & ~PERF_PMU_TXN_ADD)
8694 return;
8695
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008696 perf_pmu_enable(pmu);
8697}
8698
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008699static int perf_event_idx_default(struct perf_event *event)
8700{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008701 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008702}
8703
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008704/*
8705 * Ensures all contexts with the same task_ctx_nr have the same
8706 * pmu_cpu_context too.
8707 */
Mark Rutland9e317042014-02-10 17:44:18 +00008708static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008709{
8710 struct pmu *pmu;
8711
8712 if (ctxn < 0)
8713 return NULL;
8714
8715 list_for_each_entry(pmu, &pmus, entry) {
8716 if (pmu->task_ctx_nr == ctxn)
8717 return pmu->pmu_cpu_context;
8718 }
8719
8720 return NULL;
8721}
8722
Peter Zijlstra51676952010-12-07 14:18:20 +01008723static void free_pmu_context(struct pmu *pmu)
8724{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008725 mutex_lock(&pmus_lock);
Peter Zijlstra51676952010-12-07 14:18:20 +01008726 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008727 mutex_unlock(&pmus_lock);
8728}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008729
8730/*
8731 * Let userspace know that this PMU supports address range filtering:
8732 */
8733static ssize_t nr_addr_filters_show(struct device *dev,
8734 struct device_attribute *attr,
8735 char *page)
8736{
8737 struct pmu *pmu = dev_get_drvdata(dev);
8738
8739 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8740}
8741DEVICE_ATTR_RO(nr_addr_filters);
8742
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008743static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008744
Peter Zijlstraabe43402010-11-17 23:17:37 +01008745static ssize_t
8746type_show(struct device *dev, struct device_attribute *attr, char *page)
8747{
8748 struct pmu *pmu = dev_get_drvdata(dev);
8749
8750 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8751}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008752static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008753
Stephane Eranian62b85632013-04-03 14:21:34 +02008754static ssize_t
8755perf_event_mux_interval_ms_show(struct device *dev,
8756 struct device_attribute *attr,
8757 char *page)
8758{
8759 struct pmu *pmu = dev_get_drvdata(dev);
8760
8761 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8762}
8763
Peter Zijlstra272325c2015-04-15 11:41:58 +02008764static DEFINE_MUTEX(mux_interval_mutex);
8765
Stephane Eranian62b85632013-04-03 14:21:34 +02008766static ssize_t
8767perf_event_mux_interval_ms_store(struct device *dev,
8768 struct device_attribute *attr,
8769 const char *buf, size_t count)
8770{
8771 struct pmu *pmu = dev_get_drvdata(dev);
8772 int timer, cpu, ret;
8773
8774 ret = kstrtoint(buf, 0, &timer);
8775 if (ret)
8776 return ret;
8777
8778 if (timer < 1)
8779 return -EINVAL;
8780
8781 /* same value, noting to do */
8782 if (timer == pmu->hrtimer_interval_ms)
8783 return count;
8784
Peter Zijlstra272325c2015-04-15 11:41:58 +02008785 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008786 pmu->hrtimer_interval_ms = timer;
8787
8788 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02008789 get_online_cpus();
8790 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008791 struct perf_cpu_context *cpuctx;
8792 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8793 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8794
Peter Zijlstra272325c2015-04-15 11:41:58 +02008795 cpu_function_call(cpu,
8796 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02008797 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02008798 put_online_cpus();
8799 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008800
8801 return count;
8802}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008803static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02008804
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008805static struct attribute *pmu_dev_attrs[] = {
8806 &dev_attr_type.attr,
8807 &dev_attr_perf_event_mux_interval_ms.attr,
8808 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008809};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008810ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008811
8812static int pmu_bus_running;
8813static struct bus_type pmu_bus = {
8814 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008815 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008816};
8817
8818static void pmu_dev_release(struct device *dev)
8819{
8820 kfree(dev);
8821}
8822
8823static int pmu_dev_alloc(struct pmu *pmu)
8824{
8825 int ret = -ENOMEM;
8826
8827 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
8828 if (!pmu->dev)
8829 goto out;
8830
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01008831 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01008832 device_initialize(pmu->dev);
8833 ret = dev_set_name(pmu->dev, "%s", pmu->name);
8834 if (ret)
8835 goto free_dev;
8836
8837 dev_set_drvdata(pmu->dev, pmu);
8838 pmu->dev->bus = &pmu_bus;
8839 pmu->dev->release = pmu_dev_release;
8840 ret = device_add(pmu->dev);
8841 if (ret)
8842 goto free_dev;
8843
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008844 /* For PMUs with address filters, throw in an extra attribute: */
8845 if (pmu->nr_addr_filters)
8846 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
8847
8848 if (ret)
8849 goto del_dev;
8850
Peter Zijlstraabe43402010-11-17 23:17:37 +01008851out:
8852 return ret;
8853
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008854del_dev:
8855 device_del(pmu->dev);
8856
Peter Zijlstraabe43402010-11-17 23:17:37 +01008857free_dev:
8858 put_device(pmu->dev);
8859 goto out;
8860}
8861
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008862static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008863static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008864
Mischa Jonker03d8e802013-06-04 11:45:48 +02008865int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008866{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008867 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008868
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008869 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008870 ret = -ENOMEM;
8871 pmu->pmu_disable_count = alloc_percpu(int);
8872 if (!pmu->pmu_disable_count)
8873 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008874
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008875 pmu->type = -1;
8876 if (!name)
8877 goto skip_type;
8878 pmu->name = name;
8879
8880 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08008881 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
8882 if (type < 0) {
8883 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008884 goto free_pdc;
8885 }
8886 }
8887 pmu->type = type;
8888
Peter Zijlstraabe43402010-11-17 23:17:37 +01008889 if (pmu_bus_running) {
8890 ret = pmu_dev_alloc(pmu);
8891 if (ret)
8892 goto free_idr;
8893 }
8894
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008895skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01008896 if (pmu->task_ctx_nr == perf_hw_context) {
8897 static int hw_context_taken = 0;
8898
Mark Rutland5101ef22016-04-26 11:33:46 +01008899 /*
8900 * Other than systems with heterogeneous CPUs, it never makes
8901 * sense for two PMUs to share perf_hw_context. PMUs which are
8902 * uncore must use perf_invalid_context.
8903 */
8904 if (WARN_ON_ONCE(hw_context_taken &&
8905 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01008906 pmu->task_ctx_nr = perf_invalid_context;
8907
8908 hw_context_taken = 1;
8909 }
8910
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008911 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
8912 if (pmu->pmu_cpu_context)
8913 goto got_cpu_context;
8914
Wei Yongjunc4814202013-04-12 11:05:54 +08008915 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008916 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
8917 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01008918 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008919
8920 for_each_possible_cpu(cpu) {
8921 struct perf_cpu_context *cpuctx;
8922
8923 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02008924 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008925 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008926 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008927 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02008928
Peter Zijlstra272325c2015-04-15 11:41:58 +02008929 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008930 }
8931
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008932got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008933 if (!pmu->start_txn) {
8934 if (pmu->pmu_enable) {
8935 /*
8936 * If we have pmu_enable/pmu_disable calls, install
8937 * transaction stubs that use that to try and batch
8938 * hardware accesses.
8939 */
8940 pmu->start_txn = perf_pmu_start_txn;
8941 pmu->commit_txn = perf_pmu_commit_txn;
8942 pmu->cancel_txn = perf_pmu_cancel_txn;
8943 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008944 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008945 pmu->commit_txn = perf_pmu_nop_int;
8946 pmu->cancel_txn = perf_pmu_nop_void;
8947 }
8948 }
8949
8950 if (!pmu->pmu_enable) {
8951 pmu->pmu_enable = perf_pmu_nop_void;
8952 pmu->pmu_disable = perf_pmu_nop_void;
8953 }
8954
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008955 if (!pmu->event_idx)
8956 pmu->event_idx = perf_event_idx_default;
8957
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008958 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008959 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008960 ret = 0;
8961unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008962 mutex_unlock(&pmus_lock);
8963
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008964 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008965
Peter Zijlstraabe43402010-11-17 23:17:37 +01008966free_dev:
8967 device_del(pmu->dev);
8968 put_device(pmu->dev);
8969
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008970free_idr:
8971 if (pmu->type >= PERF_TYPE_MAX)
8972 idr_remove(&pmu_idr, pmu->type);
8973
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008974free_pdc:
8975 free_percpu(pmu->pmu_disable_count);
8976 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008977}
Yan, Zhengc464c762014-03-18 16:56:41 +08008978EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008979
8980void perf_pmu_unregister(struct pmu *pmu)
8981{
Jiri Olsa09338402016-10-20 13:10:11 +02008982 int remove_device;
8983
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008984 mutex_lock(&pmus_lock);
Jiri Olsa09338402016-10-20 13:10:11 +02008985 remove_device = pmu_bus_running;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008986 list_del_rcu(&pmu->entry);
8987 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008988
8989 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02008990 * We dereference the pmu list under both SRCU and regular RCU, so
8991 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008992 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008993 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02008994 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008995
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008996 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008997 if (pmu->type >= PERF_TYPE_MAX)
8998 idr_remove(&pmu_idr, pmu->type);
Jiri Olsa09338402016-10-20 13:10:11 +02008999 if (remove_device) {
9000 if (pmu->nr_addr_filters)
9001 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
9002 device_del(pmu->dev);
9003 put_device(pmu->dev);
9004 }
Peter Zijlstra51676952010-12-07 14:18:20 +01009005 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009006}
Yan, Zhengc464c762014-03-18 16:56:41 +08009007EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009008
Mark Rutlandcc34b982015-01-07 14:56:51 +00009009static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
9010{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009011 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00009012 int ret;
9013
9014 if (!try_module_get(pmu->module))
9015 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009016
9017 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02009018 /*
9019 * This ctx->mutex can nest when we're called through
9020 * inheritance. See the perf_event_ctx_lock_nested() comment.
9021 */
9022 ctx = perf_event_ctx_lock_nested(event->group_leader,
9023 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009024 BUG_ON(!ctx);
9025 }
9026
Mark Rutlandcc34b982015-01-07 14:56:51 +00009027 event->pmu = pmu;
9028 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009029
9030 if (ctx)
9031 perf_event_ctx_unlock(event->group_leader, ctx);
9032
Mark Rutlandcc34b982015-01-07 14:56:51 +00009033 if (ret)
9034 module_put(pmu->module);
9035
9036 return ret;
9037}
9038
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009039static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009040{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009041 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009042 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08009043 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009044
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009045 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009046
Kan Liang40999312017-01-18 08:21:01 -05009047 /* Try parent's PMU first: */
9048 if (event->parent && event->parent->pmu) {
9049 pmu = event->parent->pmu;
9050 ret = perf_try_init_event(pmu, event);
9051 if (!ret)
9052 goto unlock;
9053 }
9054
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009055 rcu_read_lock();
9056 pmu = idr_find(&pmu_idr, event->attr.type);
9057 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08009058 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009059 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08009060 if (ret)
9061 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009062 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08009063 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009064
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009065 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009066 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009067 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009068 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009069
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009070 if (ret != -ENOENT) {
9071 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009072 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009073 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009074 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009075 pmu = ERR_PTR(-ENOENT);
9076unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009077 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009078
9079 return pmu;
9080}
9081
Kan Liangf2fb6be2016-03-23 11:24:37 -07009082static void attach_sb_event(struct perf_event *event)
9083{
9084 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
9085
9086 raw_spin_lock(&pel->lock);
9087 list_add_rcu(&event->sb_list, &pel->list);
9088 raw_spin_unlock(&pel->lock);
9089}
9090
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009091/*
9092 * We keep a list of all !task (and therefore per-cpu) events
9093 * that need to receive side-band records.
9094 *
9095 * This avoids having to scan all the various PMU per-cpu contexts
9096 * looking for them.
9097 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009098static void account_pmu_sb_event(struct perf_event *event)
9099{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009100 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009101 attach_sb_event(event);
9102}
9103
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009104static void account_event_cpu(struct perf_event *event, int cpu)
9105{
9106 if (event->parent)
9107 return;
9108
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009109 if (is_cgroup_event(event))
9110 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9111}
9112
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009113/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9114static void account_freq_event_nohz(void)
9115{
9116#ifdef CONFIG_NO_HZ_FULL
9117 /* Lock so we don't race with concurrent unaccount */
9118 spin_lock(&nr_freq_lock);
9119 if (atomic_inc_return(&nr_freq_events) == 1)
9120 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9121 spin_unlock(&nr_freq_lock);
9122#endif
9123}
9124
9125static void account_freq_event(void)
9126{
9127 if (tick_nohz_full_enabled())
9128 account_freq_event_nohz();
9129 else
9130 atomic_inc(&nr_freq_events);
9131}
9132
9133
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009134static void account_event(struct perf_event *event)
9135{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009136 bool inc = false;
9137
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009138 if (event->parent)
9139 return;
9140
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009141 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009142 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009143 if (event->attr.mmap || event->attr.mmap_data)
9144 atomic_inc(&nr_mmap_events);
9145 if (event->attr.comm)
9146 atomic_inc(&nr_comm_events);
9147 if (event->attr.task)
9148 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009149 if (event->attr.freq)
9150 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009151 if (event->attr.context_switch) {
9152 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009153 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009154 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009155 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009156 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009157 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009158 inc = true;
9159
Peter Zijlstra9107c892016-02-24 18:45:45 +01009160 if (inc) {
9161 if (atomic_inc_not_zero(&perf_sched_count))
9162 goto enabled;
9163
9164 mutex_lock(&perf_sched_mutex);
9165 if (!atomic_read(&perf_sched_count)) {
9166 static_branch_enable(&perf_sched_events);
9167 /*
9168 * Guarantee that all CPUs observe they key change and
9169 * call the perf scheduling hooks before proceeding to
9170 * install events that need them.
9171 */
9172 synchronize_sched();
9173 }
9174 /*
9175 * Now that we have waited for the sync_sched(), allow further
9176 * increments to by-pass the mutex.
9177 */
9178 atomic_inc(&perf_sched_count);
9179 mutex_unlock(&perf_sched_mutex);
9180 }
9181enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009182
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009183 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009184
9185 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009186}
9187
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009188/*
9189 * Allocate and initialize a event structure
9190 */
9191static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009192perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009193 struct task_struct *task,
9194 struct perf_event *group_leader,
9195 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009196 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009197 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009198{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009199 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009200 struct perf_event *event;
9201 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009202 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009203
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009204 if ((unsigned)cpu >= nr_cpu_ids) {
9205 if (!task || cpu != -1)
9206 return ERR_PTR(-EINVAL);
9207 }
9208
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009209 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009210 if (!event)
9211 return ERR_PTR(-ENOMEM);
9212
9213 /*
9214 * Single events are their own group leaders, with an
9215 * empty sibling list:
9216 */
9217 if (!group_leader)
9218 group_leader = event;
9219
9220 mutex_init(&event->child_mutex);
9221 INIT_LIST_HEAD(&event->child_list);
9222
9223 INIT_LIST_HEAD(&event->group_entry);
9224 INIT_LIST_HEAD(&event->event_entry);
9225 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009226 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009227 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009228 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009229 INIT_HLIST_NODE(&event->hlist_entry);
9230
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009231
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009232 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009233 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009234
9235 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009236 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009237
Al Viroa6fa9412012-08-20 14:59:25 +01009238 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009239 event->cpu = cpu;
9240 event->attr = *attr;
9241 event->group_leader = group_leader;
9242 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009243 event->oncpu = -1;
9244
9245 event->parent = parent_event;
9246
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009247 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009248 event->id = atomic64_inc_return(&perf_event_id);
9249
9250 event->state = PERF_EVENT_STATE_INACTIVE;
9251
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009252 if (task) {
9253 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009254 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009255 * XXX pmu::event_init needs to know what task to account to
9256 * and we cannot use the ctx information because we need the
9257 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009258 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009259 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009260 }
9261
Peter Zijlstra34f43922015-02-20 14:05:38 +01009262 event->clock = &local_clock;
9263 if (parent_event)
9264 event->clock = parent_event->clock;
9265
Avi Kivity4dc0da82011-06-29 18:42:35 +03009266 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009267 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009268 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +02009269#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009270 if (overflow_handler == bpf_overflow_handler) {
9271 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
9272
9273 if (IS_ERR(prog)) {
9274 err = PTR_ERR(prog);
9275 goto err_ns;
9276 }
9277 event->prog = prog;
9278 event->orig_overflow_handler =
9279 parent_event->orig_overflow_handler;
9280 }
9281#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +03009282 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009283
Wang Nan18794452016-03-28 06:41:30 +00009284 if (overflow_handler) {
9285 event->overflow_handler = overflow_handler;
9286 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009287 } else if (is_write_backward(event)){
9288 event->overflow_handler = perf_event_output_backward;
9289 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009290 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009291 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009292 event->overflow_handler_context = NULL;
9293 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009294
Jiri Olsa0231bb52013-02-01 11:23:45 +01009295 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009296
9297 pmu = NULL;
9298
9299 hwc = &event->hw;
9300 hwc->sample_period = attr->sample_period;
9301 if (attr->freq && attr->sample_freq)
9302 hwc->sample_period = 1;
9303 hwc->last_period = hwc->sample_period;
9304
Peter Zijlstrae7850592010-05-21 14:43:08 +02009305 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009306
9307 /*
9308 * we currently do not support PERF_FORMAT_GROUP on inherited events
9309 */
9310 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009311 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009312
Yan, Zhenga46a2302014-11-04 21:56:06 -05009313 if (!has_branch_stack(event))
9314 event->attr.branch_sample_type = 0;
9315
Matt Fleming79dff512015-01-23 18:45:42 +00009316 if (cgroup_fd != -1) {
9317 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9318 if (err)
9319 goto err_ns;
9320 }
9321
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009322 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009323 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009324 goto err_ns;
9325 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009326 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009327 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009328 }
9329
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009330 err = exclusive_event_init(event);
9331 if (err)
9332 goto err_pmu;
9333
Alexander Shishkin375637b2016-04-27 18:44:46 +03009334 if (has_addr_filter(event)) {
9335 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9336 sizeof(unsigned long),
9337 GFP_KERNEL);
9338 if (!event->addr_filters_offs)
9339 goto err_per_task;
9340
9341 /* force hw sync on the address filters */
9342 event->addr_filters_gen = 1;
9343 }
9344
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009345 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009346 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009347 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009348 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009349 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009350 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009351 }
9352
Alexander Shishkin927a5572016-03-02 13:24:14 +02009353 /* symmetric to unaccount_event() in _free_event() */
9354 account_event(event);
9355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009356 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009357
Alexander Shishkin375637b2016-04-27 18:44:46 +03009358err_addr_filters:
9359 kfree(event->addr_filters_offs);
9360
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009361err_per_task:
9362 exclusive_event_destroy(event);
9363
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009364err_pmu:
9365 if (event->destroy)
9366 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009367 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009368err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009369 if (is_cgroup_event(event))
9370 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009371 if (event->ns)
9372 put_pid_ns(event->ns);
9373 kfree(event);
9374
9375 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009376}
9377
9378static int perf_copy_attr(struct perf_event_attr __user *uattr,
9379 struct perf_event_attr *attr)
9380{
9381 u32 size;
9382 int ret;
9383
9384 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9385 return -EFAULT;
9386
9387 /*
9388 * zero the full structure, so that a short copy will be nice.
9389 */
9390 memset(attr, 0, sizeof(*attr));
9391
9392 ret = get_user(size, &uattr->size);
9393 if (ret)
9394 return ret;
9395
9396 if (size > PAGE_SIZE) /* silly large */
9397 goto err_size;
9398
9399 if (!size) /* abi compat */
9400 size = PERF_ATTR_SIZE_VER0;
9401
9402 if (size < PERF_ATTR_SIZE_VER0)
9403 goto err_size;
9404
9405 /*
9406 * If we're handed a bigger struct than we know of,
9407 * ensure all the unknown bits are 0 - i.e. new
9408 * user-space does not rely on any kernel feature
9409 * extensions we dont know about yet.
9410 */
9411 if (size > sizeof(*attr)) {
9412 unsigned char __user *addr;
9413 unsigned char __user *end;
9414 unsigned char val;
9415
9416 addr = (void __user *)uattr + sizeof(*attr);
9417 end = (void __user *)uattr + size;
9418
9419 for (; addr < end; addr++) {
9420 ret = get_user(val, addr);
9421 if (ret)
9422 return ret;
9423 if (val)
9424 goto err_size;
9425 }
9426 size = sizeof(*attr);
9427 }
9428
9429 ret = copy_from_user(attr, uattr, size);
9430 if (ret)
9431 return -EFAULT;
9432
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309433 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009434 return -EINVAL;
9435
9436 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9437 return -EINVAL;
9438
9439 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9440 return -EINVAL;
9441
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009442 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9443 u64 mask = attr->branch_sample_type;
9444
9445 /* only using defined bits */
9446 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9447 return -EINVAL;
9448
9449 /* at least one branch bit must be set */
9450 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9451 return -EINVAL;
9452
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009453 /* propagate priv level, when not set for branch */
9454 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9455
9456 /* exclude_kernel checked on syscall entry */
9457 if (!attr->exclude_kernel)
9458 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9459
9460 if (!attr->exclude_user)
9461 mask |= PERF_SAMPLE_BRANCH_USER;
9462
9463 if (!attr->exclude_hv)
9464 mask |= PERF_SAMPLE_BRANCH_HV;
9465 /*
9466 * adjust user setting (for HW filter setup)
9467 */
9468 attr->branch_sample_type = mask;
9469 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009470 /* privileged levels capture (kernel, hv): check permissions */
9471 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009472 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9473 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009474 }
Jiri Olsa40189942012-08-07 15:20:37 +02009475
Jiri Olsac5ebced2012-08-07 15:20:40 +02009476 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009477 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009478 if (ret)
9479 return ret;
9480 }
9481
9482 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9483 if (!arch_perf_have_user_stack_dump())
9484 return -ENOSYS;
9485
9486 /*
9487 * We have __u32 type for the size, but so far
9488 * we can only use __u16 as maximum due to the
9489 * __u16 sample size limit.
9490 */
9491 if (attr->sample_stack_user >= USHRT_MAX)
9492 ret = -EINVAL;
9493 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9494 ret = -EINVAL;
9495 }
Jiri Olsa40189942012-08-07 15:20:37 +02009496
Stephane Eranian60e23642014-09-24 13:48:37 +02009497 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9498 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009499out:
9500 return ret;
9501
9502err_size:
9503 put_user(sizeof(*attr), &uattr->size);
9504 ret = -E2BIG;
9505 goto out;
9506}
9507
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009508static int
9509perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009510{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009511 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009512 int ret = -EINVAL;
9513
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009514 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009515 goto set;
9516
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009517 /* don't allow circular references */
9518 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009519 goto out;
9520
Peter Zijlstra0f139302010-05-20 14:35:15 +02009521 /*
9522 * Don't allow cross-cpu buffers
9523 */
9524 if (output_event->cpu != event->cpu)
9525 goto out;
9526
9527 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009528 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009529 */
9530 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9531 goto out;
9532
Peter Zijlstra34f43922015-02-20 14:05:38 +01009533 /*
9534 * Mixing clocks in the same buffer is trouble you don't need.
9535 */
9536 if (output_event->clock != event->clock)
9537 goto out;
9538
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009539 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009540 * Either writing ring buffer from beginning or from end.
9541 * Mixing is not allowed.
9542 */
9543 if (is_write_backward(output_event) != is_write_backward(event))
9544 goto out;
9545
9546 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009547 * If both events generate aux data, they must be on the same PMU
9548 */
9549 if (has_aux(event) && has_aux(output_event) &&
9550 event->pmu != output_event->pmu)
9551 goto out;
9552
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009553set:
9554 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009555 /* Can't redirect output if we've got an active mmap() */
9556 if (atomic_read(&event->mmap_count))
9557 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009558
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009559 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009560 /* get the rb we want to redirect to */
9561 rb = ring_buffer_get(output_event);
9562 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009563 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009564 }
9565
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009566 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009568 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009569unlock:
9570 mutex_unlock(&event->mmap_mutex);
9571
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009572out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009573 return ret;
9574}
9575
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009576static void mutex_lock_double(struct mutex *a, struct mutex *b)
9577{
9578 if (b < a)
9579 swap(a, b);
9580
9581 mutex_lock(a);
9582 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9583}
9584
Peter Zijlstra34f43922015-02-20 14:05:38 +01009585static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9586{
9587 bool nmi_safe = false;
9588
9589 switch (clk_id) {
9590 case CLOCK_MONOTONIC:
9591 event->clock = &ktime_get_mono_fast_ns;
9592 nmi_safe = true;
9593 break;
9594
9595 case CLOCK_MONOTONIC_RAW:
9596 event->clock = &ktime_get_raw_fast_ns;
9597 nmi_safe = true;
9598 break;
9599
9600 case CLOCK_REALTIME:
9601 event->clock = &ktime_get_real_ns;
9602 break;
9603
9604 case CLOCK_BOOTTIME:
9605 event->clock = &ktime_get_boot_ns;
9606 break;
9607
9608 case CLOCK_TAI:
9609 event->clock = &ktime_get_tai_ns;
9610 break;
9611
9612 default:
9613 return -EINVAL;
9614 }
9615
9616 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9617 return -EINVAL;
9618
9619 return 0;
9620}
9621
Peter Zijlstra321027c2017-01-11 21:09:50 +01009622/*
9623 * Variation on perf_event_ctx_lock_nested(), except we take two context
9624 * mutexes.
9625 */
9626static struct perf_event_context *
9627__perf_event_ctx_lock_double(struct perf_event *group_leader,
9628 struct perf_event_context *ctx)
9629{
9630 struct perf_event_context *gctx;
9631
9632again:
9633 rcu_read_lock();
9634 gctx = READ_ONCE(group_leader->ctx);
9635 if (!atomic_inc_not_zero(&gctx->refcount)) {
9636 rcu_read_unlock();
9637 goto again;
9638 }
9639 rcu_read_unlock();
9640
9641 mutex_lock_double(&gctx->mutex, &ctx->mutex);
9642
9643 if (group_leader->ctx != gctx) {
9644 mutex_unlock(&ctx->mutex);
9645 mutex_unlock(&gctx->mutex);
9646 put_ctx(gctx);
9647 goto again;
9648 }
9649
9650 return gctx;
9651}
9652
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009653/**
9654 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9655 *
9656 * @attr_uptr: event_id type attributes for monitoring/sampling
9657 * @pid: target pid
9658 * @cpu: target cpu
9659 * @group_fd: group leader event fd
9660 */
9661SYSCALL_DEFINE5(perf_event_open,
9662 struct perf_event_attr __user *, attr_uptr,
9663 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9664{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009665 struct perf_event *group_leader = NULL, *output_event = NULL;
9666 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009667 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009668 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009669 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009670 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009671 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009672 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009673 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009674 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009675 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009676 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009677 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009678
9679 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009680 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009681 return -EINVAL;
9682
9683 err = perf_copy_attr(attr_uptr, &attr);
9684 if (err)
9685 return err;
9686
9687 if (!attr.exclude_kernel) {
9688 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9689 return -EACCES;
9690 }
9691
9692 if (attr.freq) {
9693 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9694 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009695 } else {
9696 if (attr.sample_period & (1ULL << 63))
9697 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009698 }
9699
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009700 if (!attr.sample_max_stack)
9701 attr.sample_max_stack = sysctl_perf_event_max_stack;
9702
Stephane Eraniane5d13672011-02-14 11:20:01 +02009703 /*
9704 * In cgroup mode, the pid argument is used to pass the fd
9705 * opened to the cgroup directory in cgroupfs. The cpu argument
9706 * designates the cpu on which to monitor threads from that
9707 * cgroup.
9708 */
9709 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9710 return -EINVAL;
9711
Yann Droneauda21b0b32014-01-05 21:36:33 +01009712 if (flags & PERF_FLAG_FD_CLOEXEC)
9713 f_flags |= O_CLOEXEC;
9714
9715 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009716 if (event_fd < 0)
9717 return event_fd;
9718
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009719 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009720 err = perf_fget_light(group_fd, &group);
9721 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009722 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009723 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009724 if (flags & PERF_FLAG_FD_OUTPUT)
9725 output_event = group_leader;
9726 if (flags & PERF_FLAG_FD_NO_GROUP)
9727 group_leader = NULL;
9728 }
9729
Stephane Eraniane5d13672011-02-14 11:20:01 +02009730 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009731 task = find_lively_task_by_vpid(pid);
9732 if (IS_ERR(task)) {
9733 err = PTR_ERR(task);
9734 goto err_group_fd;
9735 }
9736 }
9737
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009738 if (task && group_leader &&
9739 group_leader->attr.inherit != attr.inherit) {
9740 err = -EINVAL;
9741 goto err_task;
9742 }
9743
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009744 get_online_cpus();
9745
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009746 if (task) {
9747 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9748 if (err)
9749 goto err_cpus;
9750
9751 /*
9752 * Reuse ptrace permission checks for now.
9753 *
9754 * We must hold cred_guard_mutex across this and any potential
9755 * perf_install_in_context() call for this new event to
9756 * serialize against exec() altering our credentials (and the
9757 * perf_event_exit_task() that could imply).
9758 */
9759 err = -EACCES;
9760 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9761 goto err_cred;
9762 }
9763
Matt Fleming79dff512015-01-23 18:45:42 +00009764 if (flags & PERF_FLAG_PID_CGROUP)
9765 cgroup_fd = pid;
9766
Avi Kivity4dc0da82011-06-29 18:42:35 +03009767 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009768 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009769 if (IS_ERR(event)) {
9770 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009771 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009772 }
9773
Vince Weaver53b25332014-05-16 17:12:12 -04009774 if (is_sampling_event(event)) {
9775 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +05309776 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -04009777 goto err_alloc;
9778 }
9779 }
9780
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009781 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009782 * Special case software events and allow them to be part of
9783 * any hardware group.
9784 */
9785 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009786
Peter Zijlstra34f43922015-02-20 14:05:38 +01009787 if (attr.use_clockid) {
9788 err = perf_event_set_clock(event, attr.clockid);
9789 if (err)
9790 goto err_alloc;
9791 }
9792
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009793 if (pmu->task_ctx_nr == perf_sw_context)
9794 event->event_caps |= PERF_EV_CAP_SOFTWARE;
9795
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009796 if (group_leader &&
9797 (is_software_event(event) != is_software_event(group_leader))) {
9798 if (is_software_event(event)) {
9799 /*
9800 * If event and group_leader are not both a software
9801 * event, and event is, then group leader is not.
9802 *
9803 * Allow the addition of software events to !software
9804 * groups, this is safe because software events never
9805 * fail to schedule.
9806 */
9807 pmu = group_leader->pmu;
9808 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009809 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009810 /*
9811 * In case the group is a pure software group, and we
9812 * try to add a hardware event, move the whole group to
9813 * the hardware context.
9814 */
9815 move_group = 1;
9816 }
9817 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009818
9819 /*
9820 * Get the target context (task or percpu):
9821 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009822 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009823 if (IS_ERR(ctx)) {
9824 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009825 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009826 }
9827
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009828 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
9829 err = -EBUSY;
9830 goto err_context;
9831 }
9832
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009833 /*
9834 * Look up the group leader (we will attach this event to it):
9835 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009836 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009837 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009838
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009839 /*
9840 * Do not allow a recursive hierarchy (this new sibling
9841 * becoming part of another group-sibling):
9842 */
9843 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009844 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01009845
9846 /* All events in a group should have the same clock */
9847 if (group_leader->clock != event->clock)
9848 goto err_context;
9849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009850 /*
9851 * Do not allow to attach to a group in a different
9852 * task or CPU context:
9853 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009854 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01009855 /*
9856 * Make sure we're both on the same task, or both
9857 * per-cpu events.
9858 */
9859 if (group_leader->ctx->task != ctx->task)
9860 goto err_context;
9861
9862 /*
9863 * Make sure we're both events for the same CPU;
9864 * grouping events for different CPUs is broken; since
9865 * you can never concurrently schedule them anyhow.
9866 */
9867 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009868 goto err_context;
9869 } else {
9870 if (group_leader->ctx != ctx)
9871 goto err_context;
9872 }
9873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009874 /*
9875 * Only a group leader can be exclusive or pinned
9876 */
9877 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009878 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009879 }
9880
9881 if (output_event) {
9882 err = perf_event_set_output(event, output_event);
9883 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009884 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009885 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009886
Yann Droneauda21b0b32014-01-05 21:36:33 +01009887 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
9888 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009889 if (IS_ERR(event_file)) {
9890 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +02009891 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009892 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04009893 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009894
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009895 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +01009896 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
9897
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009898 if (gctx->task == TASK_TOMBSTONE) {
9899 err = -ESRCH;
9900 goto err_locked;
9901 }
Peter Zijlstra321027c2017-01-11 21:09:50 +01009902
9903 /*
9904 * Check if we raced against another sys_perf_event_open() call
9905 * moving the software group underneath us.
9906 */
9907 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
9908 /*
9909 * If someone moved the group out from under us, check
9910 * if this new event wound up on the same ctx, if so
9911 * its the regular !move_group case, otherwise fail.
9912 */
9913 if (gctx != ctx) {
9914 err = -EINVAL;
9915 goto err_locked;
9916 } else {
9917 perf_event_ctx_unlock(group_leader, gctx);
9918 move_group = 0;
9919 }
9920 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009921 } else {
9922 mutex_lock(&ctx->mutex);
9923 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009924
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009925 if (ctx->task == TASK_TOMBSTONE) {
9926 err = -ESRCH;
9927 goto err_locked;
9928 }
9929
Peter Zijlstraa7239682015-09-09 19:06:33 +02009930 if (!perf_event_validate_size(event)) {
9931 err = -E2BIG;
9932 goto err_locked;
9933 }
9934
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009935 /*
9936 * Must be under the same ctx::mutex as perf_install_in_context(),
9937 * because we need to serialize with concurrent event creation.
9938 */
9939 if (!exclusive_event_installable(event, ctx)) {
9940 /* exclusive and group stuff are assumed mutually exclusive */
9941 WARN_ON_ONCE(move_group);
9942
9943 err = -EBUSY;
9944 goto err_locked;
9945 }
9946
9947 WARN_ON_ONCE(ctx->parent_ctx);
9948
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009949 /*
9950 * This is the point on no return; we cannot fail hereafter. This is
9951 * where we start modifying current state.
9952 */
9953
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009954 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009955 /*
9956 * See perf_event_ctx_lock() for comments on the details
9957 * of swizzling perf_event::ctx.
9958 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009959 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +01009960 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +01009961
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009962 list_for_each_entry(sibling, &group_leader->sibling_list,
9963 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009964 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009965 put_ctx(gctx);
9966 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009967
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009968 /*
9969 * Wait for everybody to stop referencing the events through
9970 * the old lists, before installing it on new lists.
9971 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009972 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009973
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009974 /*
9975 * Install the group siblings before the group leader.
9976 *
9977 * Because a group leader will try and install the entire group
9978 * (through the sibling list, which is still in-tact), we can
9979 * end up with siblings installed in the wrong context.
9980 *
9981 * By installing siblings first we NO-OP because they're not
9982 * reachable through the group lists.
9983 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009984 list_for_each_entry(sibling, &group_leader->sibling_list,
9985 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009986 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01009987 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009988 get_ctx(ctx);
9989 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009990
9991 /*
9992 * Removing from the context ends up with disabled
9993 * event. What we want here is event in the initial
9994 * startup state, ready to be add into new context.
9995 */
9996 perf_event__state_init(group_leader);
9997 perf_install_in_context(ctx, group_leader, group_leader->cpu);
9998 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009999 }
10000
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020010001 /*
10002 * Precalculate sample_data sizes; do while holding ctx::mutex such
10003 * that we're serialized against further additions and before
10004 * perf_install_in_context() which is the point the event is active and
10005 * can use these values.
10006 */
10007 perf_event__header_size(event);
10008 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010009
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010010010 event->owner = current;
10011
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080010012 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010013 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010014
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010015 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010016 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010017 mutex_unlock(&ctx->mutex);
10018
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010019 if (task) {
10020 mutex_unlock(&task->signal->cred_guard_mutex);
10021 put_task_struct(task);
10022 }
10023
Yan, Zhengfbfc6232012-06-15 14:31:31 +080010024 put_online_cpus();
10025
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010026 mutex_lock(&current->perf_event_mutex);
10027 list_add_tail(&event->owner_entry, &current->perf_event_list);
10028 mutex_unlock(&current->perf_event_mutex);
10029
Peter Zijlstra8a495422010-05-27 15:47:49 +020010030 /*
10031 * Drop the reference on the group_event after placing the
10032 * new event on the sibling_list. This ensures destruction
10033 * of the group leader will find the pointer to itself in
10034 * perf_group_detach().
10035 */
Al Viro2903ff02012-08-28 12:52:22 -040010036 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010037 fd_install(event_fd, event_file);
10038 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010039
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010040err_locked:
10041 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010042 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010043 mutex_unlock(&ctx->mutex);
10044/* err_file: */
10045 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010046err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010047 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040010048 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010049err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010010050 /*
10051 * If event_file is set, the fput() above will have called ->release()
10052 * and that will take care of freeing the event.
10053 */
10054 if (!event_file)
10055 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010056err_cred:
10057 if (task)
10058 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010059err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +080010060 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010061err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020010062 if (task)
10063 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010064err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040010065 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010066err_fd:
10067 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010068 return err;
10069}
10070
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010071/**
10072 * perf_event_create_kernel_counter
10073 *
10074 * @attr: attributes of the counter to create
10075 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070010076 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010077 */
10078struct perf_event *
10079perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070010080 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010081 perf_overflow_handler_t overflow_handler,
10082 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010083{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010084 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010085 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010086 int err;
10087
10088 /*
10089 * Get the target context (task or percpu):
10090 */
10091
Avi Kivity4dc0da82011-06-29 18:42:35 +030010092 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010093 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010094 if (IS_ERR(event)) {
10095 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010096 goto err;
10097 }
10098
Jiri Olsaf8697762014-08-01 14:33:01 +020010099 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010100 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020010101
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010102 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010103 if (IS_ERR(ctx)) {
10104 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010105 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010106 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010107
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010108 WARN_ON_ONCE(ctx->parent_ctx);
10109 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010110 if (ctx->task == TASK_TOMBSTONE) {
10111 err = -ESRCH;
10112 goto err_unlock;
10113 }
10114
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010115 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010116 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010117 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010118 }
10119
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010120 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010121 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010122 mutex_unlock(&ctx->mutex);
10123
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010124 return event;
10125
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010126err_unlock:
10127 mutex_unlock(&ctx->mutex);
10128 perf_unpin_context(ctx);
10129 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010130err_free:
10131 free_event(event);
10132err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010133 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010134}
10135EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10136
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010137void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10138{
10139 struct perf_event_context *src_ctx;
10140 struct perf_event_context *dst_ctx;
10141 struct perf_event *event, *tmp;
10142 LIST_HEAD(events);
10143
10144 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10145 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10146
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010147 /*
10148 * See perf_event_ctx_lock() for comments on the details
10149 * of swizzling perf_event::ctx.
10150 */
10151 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010152 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10153 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010154 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010155 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010156 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010157 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010158 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010159
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010160 /*
10161 * Wait for the events to quiesce before re-instating them.
10162 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010163 synchronize_rcu();
10164
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010165 /*
10166 * Re-instate events in 2 passes.
10167 *
10168 * Skip over group leaders and only install siblings on this first
10169 * pass, siblings will not get enabled without a leader, however a
10170 * leader will enable its siblings, even if those are still on the old
10171 * context.
10172 */
10173 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10174 if (event->group_leader == event)
10175 continue;
10176
10177 list_del(&event->migrate_entry);
10178 if (event->state >= PERF_EVENT_STATE_OFF)
10179 event->state = PERF_EVENT_STATE_INACTIVE;
10180 account_event_cpu(event, dst_cpu);
10181 perf_install_in_context(dst_ctx, event, dst_cpu);
10182 get_ctx(dst_ctx);
10183 }
10184
10185 /*
10186 * Once all the siblings are setup properly, install the group leaders
10187 * to make it go.
10188 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010189 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10190 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010191 if (event->state >= PERF_EVENT_STATE_OFF)
10192 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010193 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010194 perf_install_in_context(dst_ctx, event, dst_cpu);
10195 get_ctx(dst_ctx);
10196 }
10197 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010198 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010199}
10200EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10201
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010202static void sync_child_event(struct perf_event *child_event,
10203 struct task_struct *child)
10204{
10205 struct perf_event *parent_event = child_event->parent;
10206 u64 child_val;
10207
10208 if (child_event->attr.inherit_stat)
10209 perf_event_read_event(child_event, child);
10210
Peter Zijlstrab5e58792010-05-21 14:43:12 +020010211 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010212
10213 /*
10214 * Add back the child's count to the parent's count:
10215 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020010216 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010217 atomic64_add(child_event->total_time_enabled,
10218 &parent_event->child_total_time_enabled);
10219 atomic64_add(child_event->total_time_running,
10220 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010221}
10222
10223static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010224perf_event_exit_event(struct perf_event *child_event,
10225 struct perf_event_context *child_ctx,
10226 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010227{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010228 struct perf_event *parent_event = child_event->parent;
10229
Peter Zijlstra1903d502014-07-15 17:27:27 +020010230 /*
10231 * Do not destroy the 'original' grouping; because of the context
10232 * switch optimization the original events could've ended up in a
10233 * random child task.
10234 *
10235 * If we were to destroy the original group, all group related
10236 * operations would cease to function properly after this random
10237 * child dies.
10238 *
10239 * Do destroy all inherited groups, we don't care about those
10240 * and being thorough is better.
10241 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010242 raw_spin_lock_irq(&child_ctx->lock);
10243 WARN_ON_ONCE(child_ctx->is_active);
10244
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010245 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010010246 perf_group_detach(child_event);
10247 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +010010248 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010249 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010250
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010251 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010252 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010253 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010254 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040010255 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010256 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010257 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010258 /*
10259 * Child events can be cleaned up.
10260 */
10261
10262 sync_child_event(child_event, child);
10263
10264 /*
10265 * Remove this event from the parent's list
10266 */
10267 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
10268 mutex_lock(&parent_event->child_mutex);
10269 list_del_init(&child_event->child_list);
10270 mutex_unlock(&parent_event->child_mutex);
10271
10272 /*
10273 * Kick perf_poll() for is_event_hup().
10274 */
10275 perf_event_wakeup(parent_event);
10276 free_event(child_event);
10277 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010278}
10279
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010280static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010281{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010282 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010283 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010284
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010285 WARN_ON_ONCE(child != current);
10286
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010287 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010288 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010289 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010290
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010291 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010292 * In order to reduce the amount of tricky in ctx tear-down, we hold
10293 * ctx::mutex over the entire thing. This serializes against almost
10294 * everything that wants to access the ctx.
10295 *
10296 * The exception is sys_perf_event_open() /
10297 * perf_event_create_kernel_count() which does find_get_context()
10298 * without ctx::mutex (it cannot because of the move_group double mutex
10299 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010300 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010301 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010302
10303 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010304 * In a single ctx::lock section, de-schedule the events and detach the
10305 * context from the task such that we cannot ever get it scheduled back
10306 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010307 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010308 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020010309 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010310
10311 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010312 * Now that the context is inactive, destroy the task <-> ctx relation
10313 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010314 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010315 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10316 put_ctx(child_ctx); /* cannot be last */
10317 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10318 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010319
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010320 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010321 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010322
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010323 if (clone_ctx)
10324 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010325
10326 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010327 * Report the task dead after unscheduling the events so that we
10328 * won't get any samples after PERF_RECORD_EXIT. We can however still
10329 * get a few PERF_RECORD_READ events.
10330 */
10331 perf_event_task(child, child_ctx, 0);
10332
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010333 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010334 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010335
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010336 mutex_unlock(&child_ctx->mutex);
10337
10338 put_ctx(child_ctx);
10339}
10340
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010341/*
10342 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010343 *
10344 * Can be called with cred_guard_mutex held when called from
10345 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010346 */
10347void perf_event_exit_task(struct task_struct *child)
10348{
Peter Zijlstra88821352010-11-09 19:01:43 +010010349 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010350 int ctxn;
10351
Peter Zijlstra88821352010-11-09 19:01:43 +010010352 mutex_lock(&child->perf_event_mutex);
10353 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10354 owner_entry) {
10355 list_del_init(&event->owner_entry);
10356
10357 /*
10358 * Ensure the list deletion is visible before we clear
10359 * the owner, closes a race against perf_release() where
10360 * we need to serialize on the owner->perf_event_mutex.
10361 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010362 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010363 }
10364 mutex_unlock(&child->perf_event_mutex);
10365
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010366 for_each_task_context_nr(ctxn)
10367 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010368
10369 /*
10370 * The perf_event_exit_task_context calls perf_event_task
10371 * with child's task_ctx, which generates EXIT events for
10372 * child contexts and sets child->perf_event_ctxp[] to NULL.
10373 * At this point we need to send EXIT events to cpu contexts.
10374 */
10375 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010376}
10377
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010378static void perf_free_event(struct perf_event *event,
10379 struct perf_event_context *ctx)
10380{
10381 struct perf_event *parent = event->parent;
10382
10383 if (WARN_ON_ONCE(!parent))
10384 return;
10385
10386 mutex_lock(&parent->child_mutex);
10387 list_del_init(&event->child_list);
10388 mutex_unlock(&parent->child_mutex);
10389
Al Viroa6fa9412012-08-20 14:59:25 +010010390 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010391
Peter Zijlstra652884f2015-01-23 11:20:10 +010010392 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010393 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010394 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010395 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010396 free_event(event);
10397}
10398
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010399/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010400 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010401 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010402 *
10403 * Not all locks are strictly required, but take them anyway to be nice and
10404 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010405 */
10406void perf_event_free_task(struct task_struct *task)
10407{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010408 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010409 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010410 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010411
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010412 for_each_task_context_nr(ctxn) {
10413 ctx = task->perf_event_ctxp[ctxn];
10414 if (!ctx)
10415 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010416
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010417 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010010418 raw_spin_lock_irq(&ctx->lock);
10419 /*
10420 * Destroy the task <-> ctx relation and mark the context dead.
10421 *
10422 * This is important because even though the task hasn't been
10423 * exposed yet the context has been (through child_list).
10424 */
10425 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
10426 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
10427 put_task_struct(task); /* cannot be last */
10428 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010429again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010430 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
10431 group_entry)
10432 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010433
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010434 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
10435 group_entry)
10436 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010437
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010438 if (!list_empty(&ctx->pinned_groups) ||
10439 !list_empty(&ctx->flexible_groups))
10440 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010441
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010442 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010443
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010444 put_ctx(ctx);
10445 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010446}
10447
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010448void perf_event_delayed_put(struct task_struct *task)
10449{
10450 int ctxn;
10451
10452 for_each_task_context_nr(ctxn)
10453 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10454}
10455
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010456struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010457{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010458 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010459
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010460 file = fget_raw(fd);
10461 if (!file)
10462 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010463
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010464 if (file->f_op != &perf_fops) {
10465 fput(file);
10466 return ERR_PTR(-EBADF);
10467 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010468
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010469 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010470}
10471
10472const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10473{
10474 if (!event)
10475 return ERR_PTR(-EINVAL);
10476
10477 return &event->attr;
10478}
10479
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010480/*
10481 * inherit a event from parent task to child task:
10482 */
10483static struct perf_event *
10484inherit_event(struct perf_event *parent_event,
10485 struct task_struct *parent,
10486 struct perf_event_context *parent_ctx,
10487 struct task_struct *child,
10488 struct perf_event *group_leader,
10489 struct perf_event_context *child_ctx)
10490{
Jiri Olsa1929def2014-09-12 13:18:27 +020010491 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010492 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010493 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010494
10495 /*
10496 * Instead of creating recursive hierarchies of events,
10497 * we link inherited events back to the original parent,
10498 * which has a filp for sure, which we use as the reference
10499 * count:
10500 */
10501 if (parent_event->parent)
10502 parent_event = parent_event->parent;
10503
10504 child_event = perf_event_alloc(&parent_event->attr,
10505 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010506 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010507 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010508 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010509 if (IS_ERR(child_event))
10510 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010511
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010512 /*
10513 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10514 * must be under the same lock in order to serialize against
10515 * perf_event_release_kernel(), such that either we must observe
10516 * is_orphaned_event() or they will observe us on the child_list.
10517 */
10518 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010519 if (is_orphaned_event(parent_event) ||
10520 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010521 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010522 free_event(child_event);
10523 return NULL;
10524 }
10525
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010526 get_ctx(child_ctx);
10527
10528 /*
10529 * Make the child state follow the state of the parent event,
10530 * not its attr.disabled bit. We hold the parent's mutex,
10531 * so we won't race with perf_event_{en, dis}able_family.
10532 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010533 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010534 child_event->state = PERF_EVENT_STATE_INACTIVE;
10535 else
10536 child_event->state = PERF_EVENT_STATE_OFF;
10537
10538 if (parent_event->attr.freq) {
10539 u64 sample_period = parent_event->hw.sample_period;
10540 struct hw_perf_event *hwc = &child_event->hw;
10541
10542 hwc->sample_period = sample_period;
10543 hwc->last_period = sample_period;
10544
10545 local64_set(&hwc->period_left, sample_period);
10546 }
10547
10548 child_event->ctx = child_ctx;
10549 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010550 child_event->overflow_handler_context
10551 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010552
10553 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010554 * Precalculate sample_data sizes
10555 */
10556 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010557 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010558
10559 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010560 * Link it up in the child's context:
10561 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010562 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010563 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010564 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010565
10566 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010567 * Link this into the parent event's child list
10568 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010569 list_add_tail(&child_event->child_list, &parent_event->child_list);
10570 mutex_unlock(&parent_event->child_mutex);
10571
10572 return child_event;
10573}
10574
10575static int inherit_group(struct perf_event *parent_event,
10576 struct task_struct *parent,
10577 struct perf_event_context *parent_ctx,
10578 struct task_struct *child,
10579 struct perf_event_context *child_ctx)
10580{
10581 struct perf_event *leader;
10582 struct perf_event *sub;
10583 struct perf_event *child_ctr;
10584
10585 leader = inherit_event(parent_event, parent, parent_ctx,
10586 child, NULL, child_ctx);
10587 if (IS_ERR(leader))
10588 return PTR_ERR(leader);
10589 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10590 child_ctr = inherit_event(sub, parent, parent_ctx,
10591 child, leader, child_ctx);
10592 if (IS_ERR(child_ctr))
10593 return PTR_ERR(child_ctr);
10594 }
10595 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010596}
10597
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010598static int
10599inherit_task_group(struct perf_event *event, struct task_struct *parent,
10600 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010601 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010602 int *inherited_all)
10603{
10604 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010605 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010606
10607 if (!event->attr.inherit) {
10608 *inherited_all = 0;
10609 return 0;
10610 }
10611
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010612 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010613 if (!child_ctx) {
10614 /*
10615 * This is executed from the parent task context, so
10616 * inherit events that have been marked for cloning.
10617 * First allocate and initialize a context for the
10618 * child.
10619 */
10620
Jiri Olsa734df5a2013-07-09 17:44:10 +020010621 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010622 if (!child_ctx)
10623 return -ENOMEM;
10624
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010625 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010626 }
10627
10628 ret = inherit_group(event, parent, parent_ctx,
10629 child, child_ctx);
10630
10631 if (ret)
10632 *inherited_all = 0;
10633
10634 return ret;
10635}
10636
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010637/*
10638 * Initialize the perf_event context in task_struct
10639 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010640static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010641{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010642 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010643 struct perf_event_context *cloned_ctx;
10644 struct perf_event *event;
10645 struct task_struct *parent = current;
10646 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010647 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010648 int ret = 0;
10649
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010650 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010651 return 0;
10652
10653 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010654 * If the parent's context is a clone, pin it so it won't get
10655 * swapped under us.
10656 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010657 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010658 if (!parent_ctx)
10659 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010660
10661 /*
10662 * No need to check if parent_ctx != NULL here; since we saw
10663 * it non-NULL earlier, the only reason for it to become NULL
10664 * is if we exit, and since we're currently in the middle of
10665 * a fork we can't be exiting at the same time.
10666 */
10667
10668 /*
10669 * Lock the parent list. No need to lock the child - not PID
10670 * hashed yet and not running, so nobody can access it.
10671 */
10672 mutex_lock(&parent_ctx->mutex);
10673
10674 /*
10675 * We dont have to disable NMIs - we are only looking at
10676 * the list, not manipulating it:
10677 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010678 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010679 ret = inherit_task_group(event, parent, parent_ctx,
10680 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010681 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010682 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010683 }
10684
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010685 /*
10686 * We can't hold ctx->lock when iterating the ->flexible_group list due
10687 * to allocations, but we need to prevent rotation because
10688 * rotate_ctx() will change the list from interrupt context.
10689 */
10690 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10691 parent_ctx->rotate_disable = 1;
10692 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10693
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010694 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010695 ret = inherit_task_group(event, parent, parent_ctx,
10696 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010697 if (ret)
10698 break;
10699 }
10700
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010701 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10702 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010703
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010704 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010705
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010706 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010707 /*
10708 * Mark the child context as a clone of the parent
10709 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010710 *
10711 * Note that if the parent is a clone, the holding of
10712 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010713 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010714 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010715 if (cloned_ctx) {
10716 child_ctx->parent_ctx = cloned_ctx;
10717 child_ctx->parent_gen = parent_ctx->parent_gen;
10718 } else {
10719 child_ctx->parent_ctx = parent_ctx;
10720 child_ctx->parent_gen = parent_ctx->generation;
10721 }
10722 get_ctx(child_ctx->parent_ctx);
10723 }
10724
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010725 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010726 mutex_unlock(&parent_ctx->mutex);
10727
10728 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010729 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010730
10731 return ret;
10732}
10733
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010734/*
10735 * Initialize the perf_event context in task_struct
10736 */
10737int perf_event_init_task(struct task_struct *child)
10738{
10739 int ctxn, ret;
10740
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010010741 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
10742 mutex_init(&child->perf_event_mutex);
10743 INIT_LIST_HEAD(&child->perf_event_list);
10744
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010745 for_each_task_context_nr(ctxn) {
10746 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010747 if (ret) {
10748 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010749 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010750 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010751 }
10752
10753 return 0;
10754}
10755
Paul Mackerras220b1402010-03-10 20:45:52 +110010756static void __init perf_event_init_all_cpus(void)
10757{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010758 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110010759 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110010760
10761 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010762 swhash = &per_cpu(swevent_htable, cpu);
10763 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000010764 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070010765
10766 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
10767 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010768
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080010769#ifdef CONFIG_CGROUP_PERF
10770 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
10771#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010772 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110010773 }
10774}
10775
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010776int perf_event_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010777{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010778 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010779
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010780 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000010781 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010782 struct swevent_hlist *hlist;
10783
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010784 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
10785 WARN_ON(!hlist);
10786 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010787 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010788 mutex_unlock(&swhash->hlist_mutex);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010789 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010790}
10791
Dave Young2965faa2015-09-09 15:38:55 -070010792#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010793static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010794{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010795 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010796 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
10797 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010798
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010799 raw_spin_lock(&ctx->lock);
10800 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010801 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010802 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010803}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010804
10805static void perf_event_exit_cpu_context(int cpu)
10806{
10807 struct perf_event_context *ctx;
10808 struct pmu *pmu;
10809 int idx;
10810
10811 idx = srcu_read_lock(&pmus_srcu);
10812 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +020010813 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010814
10815 mutex_lock(&ctx->mutex);
10816 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
10817 mutex_unlock(&ctx->mutex);
10818 }
10819 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010820}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010821#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010822
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010823static void perf_event_exit_cpu_context(int cpu) { }
10824
10825#endif
10826
10827int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010828{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010010829 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010830 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010831}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010832
Peter Zijlstrac2774432010-12-08 15:29:02 +010010833static int
10834perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
10835{
10836 int cpu;
10837
10838 for_each_online_cpu(cpu)
10839 perf_event_exit_cpu(cpu);
10840
10841 return NOTIFY_OK;
10842}
10843
10844/*
10845 * Run the perf reboot notifier at the very last possible moment so that
10846 * the generic watchdog code runs as long as possible.
10847 */
10848static struct notifier_block perf_reboot_notifier = {
10849 .notifier_call = perf_reboot,
10850 .priority = INT_MIN,
10851};
10852
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010853void __init perf_event_init(void)
10854{
Jason Wessel3c502e72010-11-04 17:33:01 -050010855 int ret;
10856
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010857 idr_init(&pmu_idr);
10858
Paul Mackerras220b1402010-03-10 20:45:52 +110010859 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010860 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010861 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
10862 perf_pmu_register(&perf_cpu_clock, NULL, -1);
10863 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010864 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010865 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010010866 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050010867
10868 ret = init_hw_breakpoint();
10869 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020010870
Jiri Olsab01c3a02012-03-23 15:41:20 +010010871 /*
10872 * Build time assertion that we keep the data_head at the intended
10873 * location. IOW, validation we got the __reserved[] size right.
10874 */
10875 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
10876 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010877}
Peter Zijlstraabe43402010-11-17 23:17:37 +010010878
Cody P Schaferfd979c02015-01-30 13:45:57 -080010879ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
10880 char *page)
10881{
10882 struct perf_pmu_events_attr *pmu_attr =
10883 container_of(attr, struct perf_pmu_events_attr, attr);
10884
10885 if (pmu_attr->event_str)
10886 return sprintf(page, "%s\n", pmu_attr->event_str);
10887
10888 return 0;
10889}
Thomas Gleixner675965b2016-02-22 22:19:27 +000010890EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080010891
Peter Zijlstraabe43402010-11-17 23:17:37 +010010892static int __init perf_event_sysfs_init(void)
10893{
10894 struct pmu *pmu;
10895 int ret;
10896
10897 mutex_lock(&pmus_lock);
10898
10899 ret = bus_register(&pmu_bus);
10900 if (ret)
10901 goto unlock;
10902
10903 list_for_each_entry(pmu, &pmus, entry) {
10904 if (!pmu->name || pmu->type < 0)
10905 continue;
10906
10907 ret = pmu_dev_alloc(pmu);
10908 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
10909 }
10910 pmu_bus_running = 1;
10911 ret = 0;
10912
10913unlock:
10914 mutex_unlock(&pmus_lock);
10915
10916 return ret;
10917}
10918device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010919
10920#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040010921static struct cgroup_subsys_state *
10922perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010923{
10924 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020010925
Li Zefan1b15d052011-03-03 14:26:06 +080010926 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010927 if (!jc)
10928 return ERR_PTR(-ENOMEM);
10929
Stephane Eraniane5d13672011-02-14 11:20:01 +020010930 jc->info = alloc_percpu(struct perf_cgroup_info);
10931 if (!jc->info) {
10932 kfree(jc);
10933 return ERR_PTR(-ENOMEM);
10934 }
10935
Stephane Eraniane5d13672011-02-14 11:20:01 +020010936 return &jc->css;
10937}
10938
Tejun Heoeb954192013-08-08 20:11:23 -040010939static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010940{
Tejun Heoeb954192013-08-08 20:11:23 -040010941 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
10942
Stephane Eraniane5d13672011-02-14 11:20:01 +020010943 free_percpu(jc->info);
10944 kfree(jc);
10945}
10946
10947static int __perf_cgroup_move(void *info)
10948{
10949 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010950 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010951 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010952 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010953 return 0;
10954}
10955
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010956static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010957{
Tejun Heobb9d97b2011-12-12 18:12:21 -080010958 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010959 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080010960
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010961 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080010962 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010963}
10964
Tejun Heo073219e2014-02-08 10:36:58 -050010965struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080010966 .css_alloc = perf_cgroup_css_alloc,
10967 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080010968 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050010969 /*
10970 * Implicitly enable on dfl hierarchy so that perf events can
10971 * always be filtered by cgroup2 path as long as perf_event
10972 * controller is not mounted on a legacy hierarchy.
10973 */
10974 .implicit_on_dfl = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020010975};
10976#endif /* CONFIG_CGROUP_PERF */