blob: 96db9ae5d5af751edd61189407aa064d591b54dd [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 Molnare6017572017-02-01 16:36:40 +010049#include <linux/sched/clock.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010050#include <linux/sched/mm.h>
Hari Bathinie4222672017-03-08 02:11:36 +053051#include <linux/proc_ns.h>
52#include <linux/mount.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020053
Frederic Weisbecker76369132011-05-19 19:55:04 +020054#include "internal.h"
55
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056#include <asm/irq_regs.h>
57
Peter Zijlstra272325c2015-04-15 11:41:58 +020058typedef int (*remote_function_f)(void *);
59
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010060struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020061 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020062 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020063 void *info;
64 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010065};
66
67static void remote_function(void *data)
68{
69 struct remote_function_call *tfc = data;
70 struct task_struct *p = tfc->p;
71
72 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010073 /* -EAGAIN */
74 if (task_cpu(p) != smp_processor_id())
75 return;
76
77 /*
78 * Now that we're on right CPU with IRQs disabled, we can test
79 * if we hit the right task without races.
80 */
81
82 tfc->ret = -ESRCH; /* No such (running) process */
83 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010084 return;
85 }
86
87 tfc->ret = tfc->func(tfc->info);
88}
89
90/**
91 * task_function_call - call a function on the cpu on which a task runs
92 * @p: the task to evaluate
93 * @func: the function to be called
94 * @info: the function call argument
95 *
96 * Calls the function @func when the task is currently running. This might
97 * be on the current CPU, which just calls the function directly
98 *
99 * returns: @func return value, or
100 * -ESRCH - when the process isn't running
101 * -EAGAIN - when the process moved away
102 */
103static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200104task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100105{
106 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200107 .p = p,
108 .func = func,
109 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100111 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100112 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100114 do {
115 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
116 if (!ret)
117 ret = data.ret;
118 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100119
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100120 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100121}
122
123/**
124 * cpu_function_call - call a function on the cpu
125 * @func: the function to be called
126 * @info: the function call argument
127 *
128 * Calls the function @func on the remote cpu.
129 *
130 * returns: @func return value or -ENXIO when the cpu is offline
131 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200132static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100133{
134 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200135 .p = NULL,
136 .func = func,
137 .info = info,
138 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100139 };
140
141 smp_call_function_single(cpu, remote_function, &data, 1);
142
143 return data.ret;
144}
145
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100146static inline struct perf_cpu_context *
147__get_cpu_context(struct perf_event_context *ctx)
148{
149 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
150}
151
152static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
153 struct perf_event_context *ctx)
154{
155 raw_spin_lock(&cpuctx->ctx.lock);
156 if (ctx)
157 raw_spin_lock(&ctx->lock);
158}
159
160static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
161 struct perf_event_context *ctx)
162{
163 if (ctx)
164 raw_spin_unlock(&ctx->lock);
165 raw_spin_unlock(&cpuctx->ctx.lock);
166}
167
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100168#define TASK_TOMBSTONE ((void *)-1L)
169
170static bool is_kernel_event(struct perf_event *event)
171{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100172 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100173}
174
Peter Zijlstra39a43642016-01-11 12:46:35 +0100175/*
176 * On task ctx scheduling...
177 *
178 * When !ctx->nr_events a task context will not be scheduled. This means
179 * we can disable the scheduler hooks (for performance) without leaving
180 * pending task ctx state.
181 *
182 * This however results in two special cases:
183 *
184 * - removing the last event from a task ctx; this is relatively straight
185 * forward and is done in __perf_remove_from_context.
186 *
187 * - adding the first event to a task ctx; this is tricky because we cannot
188 * rely on ctx->is_active and therefore cannot use event_function_call().
189 * See perf_install_in_context().
190 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100191 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
192 */
193
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100194typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
195 struct perf_event_context *, void *);
196
197struct event_function_struct {
198 struct perf_event *event;
199 event_f func;
200 void *data;
201};
202
203static int event_function(void *info)
204{
205 struct event_function_struct *efs = info;
206 struct perf_event *event = efs->event;
207 struct perf_event_context *ctx = event->ctx;
208 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
209 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100210 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100211
Frederic Weisbecker16444642017-11-06 16:01:24 +0100212 lockdep_assert_irqs_disabled();
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100213
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100214 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100215 /*
216 * Since we do the IPI call without holding ctx->lock things can have
217 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100218 */
219 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100220 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100221 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100222 goto unlock;
223 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100224
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100225 /*
226 * We only use event_function_call() on established contexts,
227 * and event_function() is only ever called when active (or
228 * rather, we'll have bailed in task_function_call() or the
229 * above ctx->task != current test), therefore we must have
230 * ctx->is_active here.
231 */
232 WARN_ON_ONCE(!ctx->is_active);
233 /*
234 * And since we have ctx->is_active, cpuctx->task_ctx must
235 * match.
236 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100237 WARN_ON_ONCE(task_ctx != ctx);
238 } else {
239 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100241
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100242 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100243unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100244 perf_ctx_unlock(cpuctx, task_ctx);
245
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100246 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100247}
248
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100249static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100250{
251 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100252 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100253 struct event_function_struct efs = {
254 .event = event,
255 .func = func,
256 .data = data,
257 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100258
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100259 if (!event->parent) {
260 /*
261 * If this is a !child event, we must hold ctx::mutex to
262 * stabilize the the event->ctx relation. See
263 * perf_event_ctx_lock().
264 */
265 lockdep_assert_held(&ctx->mutex);
266 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100267
268 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100269 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100270 return;
271 }
272
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100273 if (task == TASK_TOMBSTONE)
274 return;
275
Peter Zijlstraa0963092016-02-24 18:45:50 +0100276again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100277 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100278 return;
279
280 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100281 /*
282 * Reload the task pointer, it might have been changed by
283 * a concurrent perf_event_context_sched_out().
284 */
285 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100286 if (task == TASK_TOMBSTONE) {
287 raw_spin_unlock_irq(&ctx->lock);
288 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100289 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100290 if (ctx->is_active) {
291 raw_spin_unlock_irq(&ctx->lock);
292 goto again;
293 }
294 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100295 raw_spin_unlock_irq(&ctx->lock);
296}
297
Peter Zijlstracca20942016-08-16 13:33:26 +0200298/*
299 * Similar to event_function_call() + event_function(), but hard assumes IRQs
300 * are already disabled and we're on the right CPU.
301 */
302static void event_function_local(struct perf_event *event, event_f func, void *data)
303{
304 struct perf_event_context *ctx = event->ctx;
305 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
306 struct task_struct *task = READ_ONCE(ctx->task);
307 struct perf_event_context *task_ctx = NULL;
308
Frederic Weisbecker16444642017-11-06 16:01:24 +0100309 lockdep_assert_irqs_disabled();
Peter Zijlstracca20942016-08-16 13:33:26 +0200310
311 if (task) {
312 if (task == TASK_TOMBSTONE)
313 return;
314
315 task_ctx = ctx;
316 }
317
318 perf_ctx_lock(cpuctx, task_ctx);
319
320 task = ctx->task;
321 if (task == TASK_TOMBSTONE)
322 goto unlock;
323
324 if (task) {
325 /*
326 * We must be either inactive or active and the right task,
327 * otherwise we're screwed, since we cannot IPI to somewhere
328 * else.
329 */
330 if (ctx->is_active) {
331 if (WARN_ON_ONCE(task != current))
332 goto unlock;
333
334 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
335 goto unlock;
336 }
337 } else {
338 WARN_ON_ONCE(&cpuctx->ctx != ctx);
339 }
340
341 func(event, cpuctx, ctx, data);
342unlock:
343 perf_ctx_unlock(cpuctx, task_ctx);
344}
345
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
347 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100348 PERF_FLAG_PID_CGROUP |\
349 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200350
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100351/*
352 * branch priv levels that need permission checks
353 */
354#define PERF_SAMPLE_BRANCH_PERM_PLM \
355 (PERF_SAMPLE_BRANCH_KERNEL |\
356 PERF_SAMPLE_BRANCH_HV)
357
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200358enum event_type_t {
359 EVENT_FLEXIBLE = 0x1,
360 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100361 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200362 /* see ctx_resched() for details */
363 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200364 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
365};
366
Stephane Eraniane5d13672011-02-14 11:20:01 +0200367/*
368 * perf_sched_events : >0 events exist
369 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
370 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100371
372static void perf_sched_delayed(struct work_struct *work);
373DEFINE_STATIC_KEY_FALSE(perf_sched_events);
374static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
375static DEFINE_MUTEX(perf_sched_mutex);
376static atomic_t perf_sched_count;
377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500379static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700380static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200381
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200382static atomic_t nr_mmap_events __read_mostly;
383static atomic_t nr_comm_events __read_mostly;
Hari Bathinie4222672017-03-08 02:11:36 +0530384static atomic_t nr_namespaces_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200385static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200386static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300387static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200388
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200389static LIST_HEAD(pmus);
390static DEFINE_MUTEX(pmus_lock);
391static struct srcu_struct pmus_srcu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +0200392static cpumask_var_t perf_online_mask;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200393
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200394/*
395 * perf event paranoia level:
396 * -1 - not paranoid at all
397 * 0 - disallow raw tracepoint access for unpriv
398 * 1 - disallow cpu events for unpriv
399 * 2 - disallow kernel profiling for unpriv
400 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700401int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200402
Frederic Weisbecker20443382011-03-31 03:33:29 +0200403/* Minimum for 512 kiB + 1 user control page */
404int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200405
406/*
407 * max perf event sample rate
408 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700409#define DEFAULT_MAX_SAMPLE_RATE 100000
410#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
411#define DEFAULT_CPU_TIME_MAX_PERCENT 25
412
413int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
414
415static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
416static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
417
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200418static int perf_sample_allowed_ns __read_mostly =
419 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700420
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800421static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700422{
423 u64 tmp = perf_sample_period_ns;
424
425 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100426 tmp = div_u64(tmp, 100);
427 if (!tmp)
428 tmp = 1;
429
430 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700431}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100432
Stephane Eranian9e630202013-04-03 14:21:33 +0200433static int perf_rotate_context(struct perf_cpu_context *cpuctx);
434
Peter Zijlstra163ec432011-02-16 11:22:34 +0100435int perf_proc_update_handler(struct ctl_table *table, int write,
436 void __user *buffer, size_t *lenp,
437 loff_t *ppos)
438{
Knut Petersen723478c2013-09-25 14:29:37 +0200439 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100440
441 if (ret || !write)
442 return ret;
443
Kan Liangab7fdef2016-05-03 00:26:06 -0700444 /*
445 * If throttling is disabled don't allow the write:
446 */
447 if (sysctl_perf_cpu_time_max_percent == 100 ||
448 sysctl_perf_cpu_time_max_percent == 0)
449 return -EINVAL;
450
Peter Zijlstra163ec432011-02-16 11:22:34 +0100451 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700452 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
453 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100454
455 return 0;
456}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200457
Dave Hansen14c63f12013-06-21 08:51:36 -0700458int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
459
460int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
461 void __user *buffer, size_t *lenp,
462 loff_t *ppos)
463{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800464 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700465
466 if (ret || !write)
467 return ret;
468
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200469 if (sysctl_perf_cpu_time_max_percent == 100 ||
470 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100471 printk(KERN_WARNING
472 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
473 WRITE_ONCE(perf_sample_allowed_ns, 0);
474 } else {
475 update_perf_cpu_limits();
476 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700477
478 return 0;
479}
480
481/*
482 * perf samples are done in some very critical code paths (NMIs).
483 * If they take too much CPU time, the system can lock up and not
484 * get any real work done. This will drop the sample rate when
485 * we detect that events are taking too long.
486 */
487#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200488static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700489
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100490static u64 __report_avg;
491static u64 __report_allowed;
492
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100493static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700494{
David Ahern0d87d7e2016-08-01 13:49:29 -0700495 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100496 "perf: interrupt took too long (%lld > %lld), lowering "
497 "kernel.perf_event_max_sample_rate to %d\n",
498 __report_avg, __report_allowed,
499 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100500}
501
502static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
503
504void perf_sample_event_took(u64 sample_len_ns)
505{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100506 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
507 u64 running_len;
508 u64 avg_len;
509 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700510
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100511 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700512 return;
513
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100514 /* Decay the counter by 1 average sample. */
515 running_len = __this_cpu_read(running_sample_length);
516 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
517 running_len += sample_len_ns;
518 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700519
520 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100521 * Note: this will be biased artifically low until we have
522 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700523 * from having to maintain a count.
524 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100525 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
526 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700527 return;
528
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100529 __report_avg = avg_len;
530 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700531
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100532 /*
533 * Compute a throttle threshold 25% below the current duration.
534 */
535 avg_len += avg_len / 4;
536 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
537 if (avg_len < max)
538 max /= (u32)avg_len;
539 else
540 max = 1;
541
542 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
543 WRITE_ONCE(max_samples_per_tick, max);
544
545 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700546 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
547
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100548 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100549 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100550 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100551 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100552 sysctl_perf_event_sample_rate);
553 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700554}
555
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200556static atomic64_t perf_event_id;
557
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200558static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
559 enum event_type_t event_type);
560
561static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200562 enum event_type_t event_type,
563 struct task_struct *task);
564
565static void update_context_time(struct perf_event_context *ctx);
566static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200567
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200568void __weak perf_event_print_debug(void) { }
569
Matt Fleming84c79912010-10-03 21:41:13 +0100570extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200571{
Matt Fleming84c79912010-10-03 21:41:13 +0100572 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200573}
574
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200575static inline u64 perf_clock(void)
576{
577 return local_clock();
578}
579
Peter Zijlstra34f43922015-02-20 14:05:38 +0100580static inline u64 perf_event_clock(struct perf_event *event)
581{
582 return event->clock();
583}
584
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200585/*
586 * State based event timekeeping...
587 *
588 * The basic idea is to use event->state to determine which (if any) time
589 * fields to increment with the current delta. This means we only need to
590 * update timestamps when we change state or when they are explicitly requested
591 * (read).
592 *
593 * Event groups make things a little more complicated, but not terribly so. The
594 * rules for a group are that if the group leader is OFF the entire group is
595 * OFF, irrespecive of what the group member states are. This results in
596 * __perf_effective_state().
597 *
598 * A futher ramification is that when a group leader flips between OFF and
599 * !OFF, we need to update all group member times.
600 *
601 *
602 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
603 * need to make sure the relevant context time is updated before we try and
604 * update our timestamps.
605 */
606
607static __always_inline enum perf_event_state
608__perf_effective_state(struct perf_event *event)
609{
610 struct perf_event *leader = event->group_leader;
611
612 if (leader->state <= PERF_EVENT_STATE_OFF)
613 return leader->state;
614
615 return event->state;
616}
617
618static __always_inline void
619__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
620{
621 enum perf_event_state state = __perf_effective_state(event);
622 u64 delta = now - event->tstamp;
623
624 *enabled = event->total_time_enabled;
625 if (state >= PERF_EVENT_STATE_INACTIVE)
626 *enabled += delta;
627
628 *running = event->total_time_running;
629 if (state >= PERF_EVENT_STATE_ACTIVE)
630 *running += delta;
631}
632
633static void perf_event_update_time(struct perf_event *event)
634{
635 u64 now = perf_event_time(event);
636
637 __perf_update_times(event, now, &event->total_time_enabled,
638 &event->total_time_running);
639 event->tstamp = now;
640}
641
642static void perf_event_update_sibling_time(struct perf_event *leader)
643{
644 struct perf_event *sibling;
645
646 list_for_each_entry(sibling, &leader->sibling_list, group_entry)
647 perf_event_update_time(sibling);
648}
649
650static void
651perf_event_set_state(struct perf_event *event, enum perf_event_state state)
652{
653 if (event->state == state)
654 return;
655
656 perf_event_update_time(event);
657 /*
658 * If a group leader gets enabled/disabled all its siblings
659 * are affected too.
660 */
661 if ((event->state < 0) ^ (state < 0))
662 perf_event_update_sibling_time(event);
663
664 WRITE_ONCE(event->state, state);
665}
666
Stephane Eraniane5d13672011-02-14 11:20:01 +0200667#ifdef CONFIG_CGROUP_PERF
668
Stephane Eraniane5d13672011-02-14 11:20:01 +0200669static inline bool
670perf_cgroup_match(struct perf_event *event)
671{
672 struct perf_event_context *ctx = event->ctx;
673 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
674
Tejun Heoef824fa2013-04-08 19:00:38 -0700675 /* @event doesn't care about cgroup */
676 if (!event->cgrp)
677 return true;
678
679 /* wants specific cgroup scope but @cpuctx isn't associated with any */
680 if (!cpuctx->cgrp)
681 return false;
682
683 /*
684 * Cgroup scoping is recursive. An event enabled for a cgroup is
685 * also enabled for all its descendant cgroups. If @cpuctx's
686 * cgroup is a descendant of @event's (the test covers identity
687 * case), it's a match.
688 */
689 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
690 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200691}
692
Stephane Eraniane5d13672011-02-14 11:20:01 +0200693static inline void perf_detach_cgroup(struct perf_event *event)
694{
Zefan Li4e2ba652014-09-19 16:53:14 +0800695 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200696 event->cgrp = NULL;
697}
698
699static inline int is_cgroup_event(struct perf_event *event)
700{
701 return event->cgrp != NULL;
702}
703
704static inline u64 perf_cgroup_event_time(struct perf_event *event)
705{
706 struct perf_cgroup_info *t;
707
708 t = per_cpu_ptr(event->cgrp->info, event->cpu);
709 return t->time;
710}
711
712static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
713{
714 struct perf_cgroup_info *info;
715 u64 now;
716
717 now = perf_clock();
718
719 info = this_cpu_ptr(cgrp->info);
720
721 info->time += now - info->timestamp;
722 info->timestamp = now;
723}
724
725static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
726{
727 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
728 if (cgrp_out)
729 __update_cgrp_time(cgrp_out);
730}
731
732static inline void update_cgrp_time_from_event(struct perf_event *event)
733{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200734 struct perf_cgroup *cgrp;
735
Stephane Eraniane5d13672011-02-14 11:20:01 +0200736 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200737 * ensure we access cgroup data only when needed and
738 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200739 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200740 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200741 return;
742
Stephane Eranian614e4c42015-11-12 11:00:04 +0100743 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200744 /*
745 * Do not update time when cgroup is not active
746 */
leilei.line6a520332017-09-29 13:54:44 +0800747 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200748 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200749}
750
751static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200752perf_cgroup_set_timestamp(struct task_struct *task,
753 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200754{
755 struct perf_cgroup *cgrp;
756 struct perf_cgroup_info *info;
757
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200758 /*
759 * ctx->lock held by caller
760 * ensure we do not access cgroup data
761 * unless we have the cgroup pinned (css_get)
762 */
763 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200764 return;
765
Stephane Eranian614e4c42015-11-12 11:00:04 +0100766 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200767 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200768 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200769}
770
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800771static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
772
Stephane Eraniane5d13672011-02-14 11:20:01 +0200773#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
774#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
775
776/*
777 * reschedule events based on the cgroup constraint of task.
778 *
779 * mode SWOUT : schedule out everything
780 * mode SWIN : schedule in based on cgroup for next
781 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800782static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200783{
784 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800785 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200786 unsigned long flags;
787
788 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800789 * Disable interrupts and preemption to avoid this CPU's
790 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200791 */
792 local_irq_save(flags);
793
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800794 list = this_cpu_ptr(&cgrp_cpuctx_list);
795 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
796 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200797
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800798 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
799 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200800
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800801 if (mode & PERF_CGROUP_SWOUT) {
802 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
803 /*
804 * must not be done before ctxswout due
805 * to event_filter_match() in event_sched_out()
806 */
807 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200808 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800809
810 if (mode & PERF_CGROUP_SWIN) {
811 WARN_ON_ONCE(cpuctx->cgrp);
812 /*
813 * set cgrp before ctxsw in to allow
814 * event_filter_match() to not have to pass
815 * task around
816 * we pass the cpuctx->ctx to perf_cgroup_from_task()
817 * because cgorup events are only per-cpu
818 */
819 cpuctx->cgrp = perf_cgroup_from_task(task,
820 &cpuctx->ctx);
821 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
822 }
823 perf_pmu_enable(cpuctx->ctx.pmu);
824 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200825 }
826
Stephane Eraniane5d13672011-02-14 11:20:01 +0200827 local_irq_restore(flags);
828}
829
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200830static inline void perf_cgroup_sched_out(struct task_struct *task,
831 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200832{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200833 struct perf_cgroup *cgrp1;
834 struct perf_cgroup *cgrp2 = NULL;
835
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100836 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200837 /*
838 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100839 * we do not need to pass the ctx here because we know
840 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200841 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100842 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100843 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200844
845 /*
846 * only schedule out current cgroup events if we know
847 * that we are switching to a different cgroup. Otherwise,
848 * do no touch the cgroup events.
849 */
850 if (cgrp1 != cgrp2)
851 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100852
853 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200854}
855
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200856static inline void perf_cgroup_sched_in(struct task_struct *prev,
857 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200858{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200859 struct perf_cgroup *cgrp1;
860 struct perf_cgroup *cgrp2 = NULL;
861
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100862 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200863 /*
864 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100865 * we do not need to pass the ctx here because we know
866 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200867 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100868 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100869 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200870
871 /*
872 * only need to schedule in cgroup events if we are changing
873 * cgroup during ctxsw. Cgroup events were not scheduled
874 * out of ctxsw out if that was not the case.
875 */
876 if (cgrp1 != cgrp2)
877 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100878
879 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200880}
881
882static inline int perf_cgroup_connect(int fd, struct perf_event *event,
883 struct perf_event_attr *attr,
884 struct perf_event *group_leader)
885{
886 struct perf_cgroup *cgrp;
887 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400888 struct fd f = fdget(fd);
889 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200890
Al Viro2903ff02012-08-28 12:52:22 -0400891 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200892 return -EBADF;
893
Al Virob5830432014-10-31 01:22:04 -0400894 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400895 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800896 if (IS_ERR(css)) {
897 ret = PTR_ERR(css);
898 goto out;
899 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200900
901 cgrp = container_of(css, struct perf_cgroup, css);
902 event->cgrp = cgrp;
903
904 /*
905 * all events in a group must monitor
906 * the same cgroup because a task belongs
907 * to only one perf cgroup at a time
908 */
909 if (group_leader && group_leader->cgrp != cgrp) {
910 perf_detach_cgroup(event);
911 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200912 }
Li Zefan3db272c2011-03-03 14:25:37 +0800913out:
Al Viro2903ff02012-08-28 12:52:22 -0400914 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200915 return ret;
916}
917
918static inline void
919perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
920{
921 struct perf_cgroup_info *t;
922 t = per_cpu_ptr(event->cgrp->info, event->cpu);
923 event->shadow_ctx_time = now - t->timestamp;
924}
925
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700926/*
927 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
928 * cleared when last cgroup event is removed.
929 */
930static inline void
931list_update_cgroup_event(struct perf_event *event,
932 struct perf_event_context *ctx, bool add)
933{
934 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800935 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700936
937 if (!is_cgroup_event(event))
938 return;
939
940 if (add && ctx->nr_cgroups++)
941 return;
942 else if (!add && --ctx->nr_cgroups)
943 return;
944 /*
945 * Because cgroup events are always per-cpu events,
946 * this will always be called from the right CPU.
947 */
948 cpuctx = __get_cpu_context(ctx);
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800949 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
950 /* cpuctx->cgrp is NULL unless a cgroup event is active in this CPU .*/
951 if (add) {
Tejun Heobe96b312017-10-28 09:49:37 -0700952 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
953
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800954 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
Tejun Heobe96b312017-10-28 09:49:37 -0700955 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
956 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800957 } else {
958 list_del(cpuctx_entry);
David Carrillo-Cisneros8fc31ce2016-12-04 00:46:17 -0800959 cpuctx->cgrp = NULL;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800960 }
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700961}
962
Stephane Eraniane5d13672011-02-14 11:20:01 +0200963#else /* !CONFIG_CGROUP_PERF */
964
965static inline bool
966perf_cgroup_match(struct perf_event *event)
967{
968 return true;
969}
970
971static inline void perf_detach_cgroup(struct perf_event *event)
972{}
973
974static inline int is_cgroup_event(struct perf_event *event)
975{
976 return 0;
977}
978
Stephane Eraniane5d13672011-02-14 11:20:01 +0200979static inline void update_cgrp_time_from_event(struct perf_event *event)
980{
981}
982
983static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
984{
985}
986
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200987static inline void perf_cgroup_sched_out(struct task_struct *task,
988 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200989{
990}
991
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200992static inline void perf_cgroup_sched_in(struct task_struct *prev,
993 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200994{
995}
996
997static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
998 struct perf_event_attr *attr,
999 struct perf_event *group_leader)
1000{
1001 return -EINVAL;
1002}
1003
1004static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001005perf_cgroup_set_timestamp(struct task_struct *task,
1006 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001007{
1008}
1009
1010void
1011perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1012{
1013}
1014
1015static inline void
1016perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1017{
1018}
1019
1020static inline u64 perf_cgroup_event_time(struct perf_event *event)
1021{
1022 return 0;
1023}
1024
1025static inline void
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001026list_update_cgroup_event(struct perf_event *event,
1027 struct perf_event_context *ctx, bool add)
1028{
1029}
1030
Stephane Eraniane5d13672011-02-14 11:20:01 +02001031#endif
1032
Stephane Eranian9e630202013-04-03 14:21:33 +02001033/*
1034 * set default to be dependent on timer tick just
1035 * like original code
1036 */
1037#define PERF_CPU_HRTIMER (1000 / HZ)
1038/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001039 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001040 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001041static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001042{
1043 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001044 int rotations = 0;
1045
Frederic Weisbecker16444642017-11-06 16:01:24 +01001046 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001047
1048 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001049 rotations = perf_rotate_context(cpuctx);
1050
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001051 raw_spin_lock(&cpuctx->hrtimer_lock);
1052 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001053 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001054 else
1055 cpuctx->hrtimer_active = 0;
1056 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001057
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001058 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001059}
1060
Peter Zijlstra272325c2015-04-15 11:41:58 +02001061static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001062{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001063 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001064 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001065 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001066
1067 /* no multiplexing needed for SW PMU */
1068 if (pmu->task_ctx_nr == perf_sw_context)
1069 return;
1070
Stephane Eranian62b85632013-04-03 14:21:34 +02001071 /*
1072 * check default is sane, if not set then force to
1073 * default interval (1/tick)
1074 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001075 interval = pmu->hrtimer_interval_ms;
1076 if (interval < 1)
1077 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001078
Peter Zijlstra272325c2015-04-15 11:41:58 +02001079 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001080
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001081 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1082 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001083 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001084}
1085
Peter Zijlstra272325c2015-04-15 11:41:58 +02001086static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001087{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001088 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001089 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001090 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001091
1092 /* not for SW PMU */
1093 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001094 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001095
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001096 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1097 if (!cpuctx->hrtimer_active) {
1098 cpuctx->hrtimer_active = 1;
1099 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1100 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1101 }
1102 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001103
Peter Zijlstra272325c2015-04-15 11:41:58 +02001104 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001105}
1106
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001107void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001109 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1110 if (!(*count)++)
1111 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001112}
1113
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001114void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001115{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001116 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1117 if (!--(*count))
1118 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001119}
1120
Mark Rutland2fde4f92015-01-07 15:01:54 +00001121static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001122
1123/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001124 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1125 * perf_event_task_tick() are fully serialized because they're strictly cpu
1126 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1127 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001128 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001129static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001130{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001131 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001132
Frederic Weisbecker16444642017-11-06 16:01:24 +01001133 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001134
Mark Rutland2fde4f92015-01-07 15:01:54 +00001135 WARN_ON(!list_empty(&ctx->active_ctx_list));
1136
1137 list_add(&ctx->active_ctx_list, head);
1138}
1139
1140static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1141{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001142 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001143
1144 WARN_ON(list_empty(&ctx->active_ctx_list));
1145
1146 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001147}
1148
1149static void get_ctx(struct perf_event_context *ctx)
1150{
1151 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1152}
1153
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001154static void free_ctx(struct rcu_head *head)
1155{
1156 struct perf_event_context *ctx;
1157
1158 ctx = container_of(head, struct perf_event_context, rcu_head);
1159 kfree(ctx->task_ctx_data);
1160 kfree(ctx);
1161}
1162
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001163static void put_ctx(struct perf_event_context *ctx)
1164{
1165 if (atomic_dec_and_test(&ctx->refcount)) {
1166 if (ctx->parent_ctx)
1167 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001168 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001169 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001170 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171 }
1172}
1173
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001174/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001175 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1176 * perf_pmu_migrate_context() we need some magic.
1177 *
1178 * Those places that change perf_event::ctx will hold both
1179 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1180 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001181 * Lock ordering is by mutex address. There are two other sites where
1182 * perf_event_context::mutex nests and those are:
1183 *
1184 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001185 * perf_event_exit_event()
1186 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001187 *
1188 * - perf_event_init_context() [ parent, 0 ]
1189 * inherit_task_group()
1190 * inherit_group()
1191 * inherit_event()
1192 * perf_event_alloc()
1193 * perf_init_event()
1194 * perf_try_init_event() [ child , 1 ]
1195 *
1196 * While it appears there is an obvious deadlock here -- the parent and child
1197 * nesting levels are inverted between the two. This is in fact safe because
1198 * life-time rules separate them. That is an exiting task cannot fork, and a
1199 * spawning task cannot (yet) exit.
1200 *
1201 * But remember that that these are parent<->child context relations, and
1202 * migration does not affect children, therefore these two orderings should not
1203 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001204 *
1205 * The change in perf_event::ctx does not affect children (as claimed above)
1206 * because the sys_perf_event_open() case will install a new event and break
1207 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1208 * concerned with cpuctx and that doesn't have children.
1209 *
1210 * The places that change perf_event::ctx will issue:
1211 *
1212 * perf_remove_from_context();
1213 * synchronize_rcu();
1214 * perf_install_in_context();
1215 *
1216 * to affect the change. The remove_from_context() + synchronize_rcu() should
1217 * quiesce the event, after which we can install it in the new location. This
1218 * means that only external vectors (perf_fops, prctl) can perturb the event
1219 * while in transit. Therefore all such accessors should also acquire
1220 * perf_event_context::mutex to serialize against this.
1221 *
1222 * However; because event->ctx can change while we're waiting to acquire
1223 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1224 * function.
1225 *
1226 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001227 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001228 * task_struct::perf_event_mutex
1229 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001230 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001231 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001232 * perf_event::mmap_mutex
1233 * mmap_sem
Peter Zijlstra82d94852018-01-09 13:10:30 +01001234 *
1235 * cpu_hotplug_lock
1236 * pmus_lock
1237 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001238 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001239static struct perf_event_context *
1240perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001241{
1242 struct perf_event_context *ctx;
1243
1244again:
1245 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001246 ctx = READ_ONCE(event->ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001247 if (!atomic_inc_not_zero(&ctx->refcount)) {
1248 rcu_read_unlock();
1249 goto again;
1250 }
1251 rcu_read_unlock();
1252
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001253 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001254 if (event->ctx != ctx) {
1255 mutex_unlock(&ctx->mutex);
1256 put_ctx(ctx);
1257 goto again;
1258 }
1259
1260 return ctx;
1261}
1262
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001263static inline struct perf_event_context *
1264perf_event_ctx_lock(struct perf_event *event)
1265{
1266 return perf_event_ctx_lock_nested(event, 0);
1267}
1268
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001269static void perf_event_ctx_unlock(struct perf_event *event,
1270 struct perf_event_context *ctx)
1271{
1272 mutex_unlock(&ctx->mutex);
1273 put_ctx(ctx);
1274}
1275
1276/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001277 * This must be done under the ctx->lock, such as to serialize against
1278 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1279 * calling scheduler related locks and ctx->lock nests inside those.
1280 */
1281static __must_check struct perf_event_context *
1282unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001283{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001284 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1285
1286 lockdep_assert_held(&ctx->lock);
1287
1288 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001289 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001290 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001291
1292 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001293}
1294
Oleg Nesterov1d953112017-08-22 17:59:28 +02001295static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1296 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001297{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001298 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001299 /*
1300 * only top level events have the pid namespace they were created in
1301 */
1302 if (event->parent)
1303 event = event->parent;
1304
Oleg Nesterov1d953112017-08-22 17:59:28 +02001305 nr = __task_pid_nr_ns(p, type, event->ns);
1306 /* avoid -1 if it is idle thread or runs in another ns */
1307 if (!nr && !pid_alive(p))
1308 nr = -1;
1309 return nr;
1310}
1311
1312static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1313{
1314 return perf_event_pid_type(event, p, __PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001315}
1316
1317static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1318{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001319 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001320}
1321
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001322/*
1323 * If we inherit events we want to return the parent event id
1324 * to userspace.
1325 */
1326static u64 primary_event_id(struct perf_event *event)
1327{
1328 u64 id = event->id;
1329
1330 if (event->parent)
1331 id = event->parent->id;
1332
1333 return id;
1334}
1335
1336/*
1337 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001338 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001339 * This has to cope with with the fact that until it is locked,
1340 * the context could get moved to another task.
1341 */
1342static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001343perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001344{
1345 struct perf_event_context *ctx;
1346
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001347retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001348 /*
1349 * One of the few rules of preemptible RCU is that one cannot do
1350 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001351 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001352 * rcu_read_unlock_special().
1353 *
1354 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001355 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001356 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001357 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001358 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001359 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360 if (ctx) {
1361 /*
1362 * If this context is a clone of another, it might
1363 * get swapped for another underneath us by
1364 * perf_event_task_sched_out, though the
1365 * rcu_read_lock() protects us from any context
1366 * getting freed. Lock the context and check if it
1367 * got swapped before we could get the lock, and retry
1368 * if so. If we locked the right context, then it
1369 * can't get swapped on us any more.
1370 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001371 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001372 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001373 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001374 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001375 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001376 goto retry;
1377 }
1378
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001379 if (ctx->task == TASK_TOMBSTONE ||
1380 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001381 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001382 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001383 } else {
1384 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001385 }
1386 }
1387 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001388 if (!ctx)
1389 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001390 return ctx;
1391}
1392
1393/*
1394 * Get the context for a task and increment its pin_count so it
1395 * can't get swapped to another task. This also increments its
1396 * reference count so that the context can't get freed.
1397 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001398static struct perf_event_context *
1399perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001400{
1401 struct perf_event_context *ctx;
1402 unsigned long flags;
1403
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001404 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 if (ctx) {
1406 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001407 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001408 }
1409 return ctx;
1410}
1411
1412static void perf_unpin_context(struct perf_event_context *ctx)
1413{
1414 unsigned long flags;
1415
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001416 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001417 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001418 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001419}
1420
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001421/*
1422 * Update the record of the current time in a context.
1423 */
1424static void update_context_time(struct perf_event_context *ctx)
1425{
1426 u64 now = perf_clock();
1427
1428 ctx->time += now - ctx->timestamp;
1429 ctx->timestamp = now;
1430}
1431
Stephane Eranian41587552011-01-03 18:20:01 +02001432static u64 perf_event_time(struct perf_event *event)
1433{
1434 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001435
1436 if (is_cgroup_event(event))
1437 return perf_cgroup_event_time(event);
1438
Stephane Eranian41587552011-01-03 18:20:01 +02001439 return ctx ? ctx->time : 0;
1440}
1441
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001442static enum event_type_t get_event_type(struct perf_event *event)
1443{
1444 struct perf_event_context *ctx = event->ctx;
1445 enum event_type_t event_type;
1446
1447 lockdep_assert_held(&ctx->lock);
1448
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001449 /*
1450 * It's 'group type', really, because if our group leader is
1451 * pinned, so are we.
1452 */
1453 if (event->group_leader != event)
1454 event = event->group_leader;
1455
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001456 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1457 if (!ctx->task)
1458 event_type |= EVENT_CPU;
1459
1460 return event_type;
1461}
1462
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001463static struct list_head *
1464ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1465{
1466 if (event->attr.pinned)
1467 return &ctx->pinned_groups;
1468 else
1469 return &ctx->flexible_groups;
1470}
1471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001472/*
1473 * Add a event from the lists for its context.
1474 * Must be called with ctx->mutex and ctx->lock held.
1475 */
1476static void
1477list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1478{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001479 lockdep_assert_held(&ctx->lock);
1480
Peter Zijlstra8a495422010-05-27 15:47:49 +02001481 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1482 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001483
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001484 event->tstamp = perf_event_time(event);
1485
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001487 * If we're a stand alone event or group leader, we go to the context
1488 * list, group events are kept attached to the group so that
1489 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001491 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001492 struct list_head *list;
1493
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001494 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001495
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001496 list = ctx_group_list(event, ctx);
1497 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498 }
1499
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001500 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001502 list_add_rcu(&event->event_entry, &ctx->event_list);
1503 ctx->nr_events++;
1504 if (event->attr.inherit_stat)
1505 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001506
1507 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001508}
1509
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001510/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001511 * Initialize event state based on the perf_event_attr::disabled.
1512 */
1513static inline void perf_event__state_init(struct perf_event *event)
1514{
1515 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1516 PERF_EVENT_STATE_INACTIVE;
1517}
1518
Peter Zijlstraa7239682015-09-09 19:06:33 +02001519static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001520{
1521 int entry = sizeof(u64); /* value */
1522 int size = 0;
1523 int nr = 1;
1524
1525 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1526 size += sizeof(u64);
1527
1528 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1529 size += sizeof(u64);
1530
1531 if (event->attr.read_format & PERF_FORMAT_ID)
1532 entry += sizeof(u64);
1533
1534 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001535 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001536 size += sizeof(u64);
1537 }
1538
1539 size += entry * nr;
1540 event->read_size = size;
1541}
1542
Peter Zijlstraa7239682015-09-09 19:06:33 +02001543static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001544{
1545 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001546 u16 size = 0;
1547
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001548 if (sample_type & PERF_SAMPLE_IP)
1549 size += sizeof(data->ip);
1550
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001551 if (sample_type & PERF_SAMPLE_ADDR)
1552 size += sizeof(data->addr);
1553
1554 if (sample_type & PERF_SAMPLE_PERIOD)
1555 size += sizeof(data->period);
1556
Andi Kleenc3feedf2013-01-24 16:10:28 +01001557 if (sample_type & PERF_SAMPLE_WEIGHT)
1558 size += sizeof(data->weight);
1559
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001560 if (sample_type & PERF_SAMPLE_READ)
1561 size += event->read_size;
1562
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001563 if (sample_type & PERF_SAMPLE_DATA_SRC)
1564 size += sizeof(data->data_src.val);
1565
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001566 if (sample_type & PERF_SAMPLE_TRANSACTION)
1567 size += sizeof(data->txn);
1568
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001569 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1570 size += sizeof(data->phys_addr);
1571
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001572 event->header_size = size;
1573}
1574
Peter Zijlstraa7239682015-09-09 19:06:33 +02001575/*
1576 * Called at perf_event creation and when events are attached/detached from a
1577 * group.
1578 */
1579static void perf_event__header_size(struct perf_event *event)
1580{
1581 __perf_event_read_size(event,
1582 event->group_leader->nr_siblings);
1583 __perf_event_header_size(event, event->attr.sample_type);
1584}
1585
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001586static void perf_event__id_header_size(struct perf_event *event)
1587{
1588 struct perf_sample_data *data;
1589 u64 sample_type = event->attr.sample_type;
1590 u16 size = 0;
1591
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001592 if (sample_type & PERF_SAMPLE_TID)
1593 size += sizeof(data->tid_entry);
1594
1595 if (sample_type & PERF_SAMPLE_TIME)
1596 size += sizeof(data->time);
1597
Adrian Hunterff3d5272013-08-27 11:23:07 +03001598 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1599 size += sizeof(data->id);
1600
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001601 if (sample_type & PERF_SAMPLE_ID)
1602 size += sizeof(data->id);
1603
1604 if (sample_type & PERF_SAMPLE_STREAM_ID)
1605 size += sizeof(data->stream_id);
1606
1607 if (sample_type & PERF_SAMPLE_CPU)
1608 size += sizeof(data->cpu_entry);
1609
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001610 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001611}
1612
Peter Zijlstraa7239682015-09-09 19:06:33 +02001613static bool perf_event_validate_size(struct perf_event *event)
1614{
1615 /*
1616 * The values computed here will be over-written when we actually
1617 * attach the event.
1618 */
1619 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1620 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1621 perf_event__id_header_size(event);
1622
1623 /*
1624 * Sum the lot; should not exceed the 64k limit we have on records.
1625 * Conservative limit to allow for callchains and other variable fields.
1626 */
1627 if (event->read_size + event->header_size +
1628 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1629 return false;
1630
1631 return true;
1632}
1633
Peter Zijlstra8a495422010-05-27 15:47:49 +02001634static void perf_group_attach(struct perf_event *event)
1635{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001636 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001637
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001638 lockdep_assert_held(&event->ctx->lock);
1639
Peter Zijlstra74c33372010-10-15 11:40:29 +02001640 /*
1641 * We can have double attach due to group movement in perf_event_open.
1642 */
1643 if (event->attach_state & PERF_ATTACH_GROUP)
1644 return;
1645
Peter Zijlstra8a495422010-05-27 15:47:49 +02001646 event->attach_state |= PERF_ATTACH_GROUP;
1647
1648 if (group_leader == event)
1649 return;
1650
Peter Zijlstra652884f2015-01-23 11:20:10 +01001651 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1652
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001653 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001654
1655 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1656 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001657
1658 perf_event__header_size(group_leader);
1659
1660 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1661 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001662}
1663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001664/*
1665 * Remove a event from the lists for its context.
1666 * Must be called with ctx->mutex and ctx->lock held.
1667 */
1668static void
1669list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1670{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001671 WARN_ON_ONCE(event->ctx != ctx);
1672 lockdep_assert_held(&ctx->lock);
1673
Peter Zijlstra8a495422010-05-27 15:47:49 +02001674 /*
1675 * We can have double detach due to exit/hot-unplug + close.
1676 */
1677 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001678 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001679
1680 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1681
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001682 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001683
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684 ctx->nr_events--;
1685 if (event->attr.inherit_stat)
1686 ctx->nr_stat--;
1687
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001688 list_del_rcu(&event->event_entry);
1689
Peter Zijlstra8a495422010-05-27 15:47:49 +02001690 if (event->group_leader == event)
1691 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001692
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001693 /*
1694 * If event was in error state, then keep it
1695 * that way, otherwise bogus counts will be
1696 * returned on read(). The only way to get out
1697 * of error state is by explicit re-enabling
1698 * of the event
1699 */
1700 if (event->state > PERF_EVENT_STATE_OFF)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001701 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001702
1703 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001704}
1705
Peter Zijlstra8a495422010-05-27 15:47:49 +02001706static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001707{
1708 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001709 struct list_head *list = NULL;
1710
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001711 lockdep_assert_held(&event->ctx->lock);
1712
Peter Zijlstra8a495422010-05-27 15:47:49 +02001713 /*
1714 * We can have double detach due to exit/hot-unplug + close.
1715 */
1716 if (!(event->attach_state & PERF_ATTACH_GROUP))
1717 return;
1718
1719 event->attach_state &= ~PERF_ATTACH_GROUP;
1720
1721 /*
1722 * If this is a sibling, remove it from its group.
1723 */
1724 if (event->group_leader != event) {
1725 list_del_init(&event->group_entry);
1726 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001727 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001728 }
1729
1730 if (!list_empty(&event->group_entry))
1731 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001732
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001733 /*
1734 * If this was a group event with sibling events then
1735 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001736 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001737 */
1738 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001739 if (list)
1740 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001741 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001742
1743 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001744 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001745
1746 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001747 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001748
1749out:
1750 perf_event__header_size(event->group_leader);
1751
1752 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1753 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754}
1755
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001756static bool is_orphaned_event(struct perf_event *event)
1757{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001758 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001759}
1760
Mark Rutland2c81a642016-06-14 16:10:41 +01001761static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001762{
1763 struct pmu *pmu = event->pmu;
1764 return pmu->filter_match ? pmu->filter_match(event) : 1;
1765}
1766
Mark Rutland2c81a642016-06-14 16:10:41 +01001767/*
1768 * Check whether we should attempt to schedule an event group based on
1769 * PMU-specific filtering. An event group can consist of HW and SW events,
1770 * potentially with a SW leader, so we must check all the filters, to
1771 * determine whether a group is schedulable:
1772 */
1773static inline int pmu_filter_match(struct perf_event *event)
1774{
1775 struct perf_event *child;
1776
1777 if (!__pmu_filter_match(event))
1778 return 0;
1779
1780 list_for_each_entry(child, &event->sibling_list, group_entry) {
1781 if (!__pmu_filter_match(child))
1782 return 0;
1783 }
1784
1785 return 1;
1786}
1787
Stephane Eranianfa66f072010-08-26 16:40:01 +02001788static inline int
1789event_filter_match(struct perf_event *event)
1790{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001791 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1792 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001793}
1794
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001795static void
1796event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001797 struct perf_cpu_context *cpuctx,
1798 struct perf_event_context *ctx)
1799{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001800 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001801
1802 WARN_ON_ONCE(event->ctx != ctx);
1803 lockdep_assert_held(&ctx->lock);
1804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001805 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001806 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001807
Alexander Shishkin44377272013-12-16 14:17:36 +02001808 perf_pmu_disable(event->pmu);
1809
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001810 event->pmu->del(event, 0);
1811 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001812
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001813 if (event->pending_disable) {
1814 event->pending_disable = 0;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001815 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001816 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001817 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001818
1819 if (!is_software_event(event))
1820 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001821 if (!--ctx->nr_active)
1822 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001823 if (event->attr.freq && event->attr.sample_freq)
1824 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001825 if (event->attr.exclusive || !cpuctx->active_oncpu)
1826 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001827
1828 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001829}
1830
1831static void
1832group_sched_out(struct perf_event *group_event,
1833 struct perf_cpu_context *cpuctx,
1834 struct perf_event_context *ctx)
1835{
1836 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001837
1838 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
1839 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001840
Mark Rutland3f005e72016-07-26 18:12:21 +01001841 perf_pmu_disable(ctx->pmu);
1842
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001843 event_sched_out(group_event, cpuctx, ctx);
1844
1845 /*
1846 * Schedule out siblings (if any):
1847 */
1848 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1849 event_sched_out(event, cpuctx, ctx);
1850
Mark Rutland3f005e72016-07-26 18:12:21 +01001851 perf_pmu_enable(ctx->pmu);
1852
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001853 if (group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001854 cpuctx->exclusive = 0;
1855}
1856
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001857#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001858
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001859/*
1860 * Cross CPU call to remove a performance event
1861 *
1862 * We disable the event on the hardware level first. After that we
1863 * remove it from the context list.
1864 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001865static void
1866__perf_remove_from_context(struct perf_event *event,
1867 struct perf_cpu_context *cpuctx,
1868 struct perf_event_context *ctx,
1869 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001871 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02001873 if (ctx->is_active & EVENT_TIME) {
1874 update_context_time(ctx);
1875 update_cgrp_time_from_cpuctx(cpuctx);
1876 }
1877
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001878 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001879 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001880 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001881 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001882
Peter Zijlstra39a43642016-01-11 12:46:35 +01001883 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001884 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001885 if (ctx->task) {
1886 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1887 cpuctx->task_ctx = NULL;
1888 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001890}
1891
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892/*
1893 * Remove the event from a task's (or a CPU's) list of events.
1894 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895 * If event->ctx is a cloned context, callers must make sure that
1896 * every task struct that event->ctx->task could possibly point to
1897 * remains valid. This is OK when called from perf_release since
1898 * that only calls us on the top-level context, which can't be a clone.
1899 * When called from perf_event_exit_task, it's OK because the
1900 * context has been detached from its task.
1901 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001902static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001903{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001904 struct perf_event_context *ctx = event->ctx;
1905
1906 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001907
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001908 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001909
1910 /*
1911 * The above event_function_call() can NO-OP when it hits
1912 * TASK_TOMBSTONE. In that case we must already have been detached
1913 * from the context (by perf_event_exit_event()) but the grouping
1914 * might still be in-tact.
1915 */
1916 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1917 if ((flags & DETACH_GROUP) &&
1918 (event->attach_state & PERF_ATTACH_GROUP)) {
1919 /*
1920 * Since in that case we cannot possibly be scheduled, simply
1921 * detach now.
1922 */
1923 raw_spin_lock_irq(&ctx->lock);
1924 perf_group_detach(event);
1925 raw_spin_unlock_irq(&ctx->lock);
1926 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001927}
1928
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001929/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001930 * Cross CPU call to disable a performance event
1931 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001932static void __perf_event_disable(struct perf_event *event,
1933 struct perf_cpu_context *cpuctx,
1934 struct perf_event_context *ctx,
1935 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001936{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001937 if (event->state < PERF_EVENT_STATE_INACTIVE)
1938 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001939
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02001940 if (ctx->is_active & EVENT_TIME) {
1941 update_context_time(ctx);
1942 update_cgrp_time_from_event(event);
1943 }
1944
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001945 if (event == event->group_leader)
1946 group_sched_out(event, cpuctx, ctx);
1947 else
1948 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001949
1950 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001951}
1952
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001953/*
1954 * Disable a event.
1955 *
1956 * If event->ctx is a cloned context, callers must make sure that
1957 * every task struct that event->ctx->task could possibly point to
1958 * remains valid. This condition is satisifed when called through
1959 * perf_event_for_each_child or perf_event_for_each because they
1960 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001961 * goes to exit will block in perf_event_exit_event().
1962 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001963 * When called from perf_pending_event it's OK because event->ctx
1964 * is the current context on this CPU and preemption is disabled,
1965 * hence we can't get into perf_event_task_sched_out for this context.
1966 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001967static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001968{
1969 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001970
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001971 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001972 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001973 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001974 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001975 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001976 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001977
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001978 event_function_call(event, __perf_event_disable, NULL);
1979}
1980
1981void perf_event_disable_local(struct perf_event *event)
1982{
1983 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001984}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001985
1986/*
1987 * Strictly speaking kernel users cannot create groups and therefore this
1988 * interface does not need the perf_event_ctx_lock() magic.
1989 */
1990void perf_event_disable(struct perf_event *event)
1991{
1992 struct perf_event_context *ctx;
1993
1994 ctx = perf_event_ctx_lock(event);
1995 _perf_event_disable(event);
1996 perf_event_ctx_unlock(event, ctx);
1997}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001998EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002000void perf_event_disable_inatomic(struct perf_event *event)
2001{
2002 event->pending_disable = 1;
2003 irq_work_queue(&event->pending);
2004}
2005
Stephane Eraniane5d13672011-02-14 11:20:01 +02002006static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002007 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002008{
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))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002035 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002036 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002037 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002038}
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{
Alexander Shishkin44377272013-12-16 14:17:36 +02002050 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002051
Peter Zijlstra63342412014-05-05 11:49:16 +02002052 lockdep_assert_held(&ctx->lock);
2053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002054 if (event->state <= PERF_EVENT_STATE_OFF)
2055 return 0;
2056
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002057 WRITE_ONCE(event->oncpu, smp_processor_id());
2058 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002059 * Order event::oncpu write to happen before the ACTIVE state is
2060 * visible. This allows perf_event_{stop,read}() to observe the correct
2061 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002062 */
2063 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002064 perf_event_set_state(event, 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
Alexander Shishkin44377272013-12-16 14:17:36 +02002076 perf_pmu_disable(event->pmu);
2077
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002078 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002079
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002080 perf_log_itrace_start(event);
2081
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002082 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002083 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002084 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002085 ret = -EAGAIN;
2086 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002087 }
2088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002089 if (!is_software_event(event))
2090 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002091 if (!ctx->nr_active++)
2092 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002093 if (event->attr.freq && event->attr.sample_freq)
2094 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002095
2096 if (event->attr.exclusive)
2097 cpuctx->exclusive = 1;
2098
Alexander Shishkin44377272013-12-16 14:17:36 +02002099out:
2100 perf_pmu_enable(event->pmu);
2101
2102 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103}
2104
2105static int
2106group_sched_in(struct perf_event *group_event,
2107 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002108 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002109{
Lin Ming6bde9b62010-04-23 13:56:00 +08002110 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002111 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112
2113 if (group_event->state == PERF_EVENT_STATE_OFF)
2114 return 0;
2115
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002116 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002117
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002118 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002119 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002120 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002121 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002122 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002123
2124 /*
2125 * Schedule in siblings as one group (if any):
2126 */
2127 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002128 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129 partial_group = event;
2130 goto group_error;
2131 }
2132 }
2133
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002134 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002135 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002137group_error:
2138 /*
2139 * Groups can be scheduled in as one unit only, so undo any
2140 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002141 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002142 */
2143 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2144 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002145 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002146
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002147 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002149 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002151 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002152
Peter Zijlstra272325c2015-04-15 11:41:58 +02002153 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002154
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002155 return -EAGAIN;
2156}
2157
2158/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002159 * Work out whether we can put this event group on the CPU now.
2160 */
2161static int group_can_go_on(struct perf_event *event,
2162 struct perf_cpu_context *cpuctx,
2163 int can_add_hw)
2164{
2165 /*
2166 * Groups consisting entirely of software events can always go on.
2167 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002168 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002169 return 1;
2170 /*
2171 * If an exclusive group is already on, no other hardware
2172 * events can go on.
2173 */
2174 if (cpuctx->exclusive)
2175 return 0;
2176 /*
2177 * If this group is exclusive and there are already
2178 * events on the CPU, it can't go on.
2179 */
2180 if (event->attr.exclusive && cpuctx->active_oncpu)
2181 return 0;
2182 /*
2183 * Otherwise, try to add it if all previous groups were able
2184 * to go on.
2185 */
2186 return can_add_hw;
2187}
2188
2189static void add_event_to_ctx(struct perf_event *event,
2190 struct perf_event_context *ctx)
2191{
2192 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002193 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002194}
2195
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002196static void ctx_sched_out(struct perf_event_context *ctx,
2197 struct perf_cpu_context *cpuctx,
2198 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002199static void
2200ctx_sched_in(struct perf_event_context *ctx,
2201 struct perf_cpu_context *cpuctx,
2202 enum event_type_t event_type,
2203 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002204
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002205static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002206 struct perf_event_context *ctx,
2207 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002208{
2209 if (!cpuctx->task_ctx)
2210 return;
2211
2212 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2213 return;
2214
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002215 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002216}
2217
Peter Zijlstradce58552011-04-09 21:17:46 +02002218static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2219 struct perf_event_context *ctx,
2220 struct task_struct *task)
2221{
2222 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2223 if (ctx)
2224 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2225 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2226 if (ctx)
2227 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2228}
2229
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002230/*
2231 * We want to maintain the following priority of scheduling:
2232 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2233 * - task pinned (EVENT_PINNED)
2234 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2235 * - task flexible (EVENT_FLEXIBLE).
2236 *
2237 * In order to avoid unscheduling and scheduling back in everything every
2238 * time an event is added, only do it for the groups of equal priority and
2239 * below.
2240 *
2241 * This can be called after a batch operation on task events, in which case
2242 * event_type is a bit mask of the types of events involved. For CPU events,
2243 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2244 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002245static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002246 struct perf_event_context *task_ctx,
2247 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002248{
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002249 enum event_type_t ctx_event_type = event_type & EVENT_ALL;
2250 bool cpu_event = !!(event_type & EVENT_CPU);
2251
2252 /*
2253 * If pinned groups are involved, flexible groups also need to be
2254 * scheduled out.
2255 */
2256 if (event_type & EVENT_PINNED)
2257 event_type |= EVENT_FLEXIBLE;
2258
Peter Zijlstra3e349502016-01-08 10:01:18 +01002259 perf_pmu_disable(cpuctx->ctx.pmu);
2260 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002261 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2262
2263 /*
2264 * Decide which cpu ctx groups to schedule out based on the types
2265 * of events that caused rescheduling:
2266 * - EVENT_CPU: schedule out corresponding groups;
2267 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2268 * - otherwise, do nothing more.
2269 */
2270 if (cpu_event)
2271 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2272 else if (ctx_event_type & EVENT_PINNED)
2273 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2274
Peter Zijlstra3e349502016-01-08 10:01:18 +01002275 perf_event_sched_in(cpuctx, task_ctx, current);
2276 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002277}
2278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002279/*
2280 * Cross CPU call to install and enable a performance event
2281 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002282 * Very similar to remote_function() + event_function() but cannot assume that
2283 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002284 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002285static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002286{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002287 struct perf_event *event = info;
2288 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002289 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002290 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002291 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002292 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002293
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002294 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002295 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002296 raw_spin_lock(&ctx->lock);
2297 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002298
Peter Zijlstra63cae122016-12-09 14:59:00 +01002299 reprogram = (ctx->task == current);
2300
2301 /*
2302 * If the task is running, it must be running on this CPU,
2303 * otherwise we cannot reprogram things.
2304 *
2305 * If its not running, we don't care, ctx->lock will
2306 * serialize against it becoming runnable.
2307 */
2308 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002309 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002310 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002311 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002312
Peter Zijlstra63cae122016-12-09 14:59:00 +01002313 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002314 } else if (task_ctx) {
2315 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002316 }
2317
Peter Zijlstra63cae122016-12-09 14:59:00 +01002318 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002319 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2320 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002321 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002322 } else {
2323 add_event_to_ctx(event, ctx);
2324 }
2325
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002326unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002327 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002328
Peter Zijlstraa0963092016-02-24 18:45:50 +01002329 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002330}
2331
2332/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002333 * Attach a performance event to a context.
2334 *
2335 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002336 */
2337static void
2338perf_install_in_context(struct perf_event_context *ctx,
2339 struct perf_event *event,
2340 int cpu)
2341{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002342 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002343
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002344 lockdep_assert_held(&ctx->mutex);
2345
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002346 if (event->cpu != -1)
2347 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002348
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002349 /*
2350 * Ensures that if we can observe event->ctx, both the event and ctx
2351 * will be 'complete'. See perf_iterate_sb_cpu().
2352 */
2353 smp_store_release(&event->ctx, ctx);
2354
Peter Zijlstraa0963092016-02-24 18:45:50 +01002355 if (!task) {
2356 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002357 return;
2358 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002359
Peter Zijlstraa0963092016-02-24 18:45:50 +01002360 /*
2361 * Should not happen, we validate the ctx is still alive before calling.
2362 */
2363 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2364 return;
2365
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002366 /*
2367 * Installing events is tricky because we cannot rely on ctx->is_active
2368 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002369 *
2370 * Instead we use task_curr(), which tells us if the task is running.
2371 * However, since we use task_curr() outside of rq::lock, we can race
2372 * against the actual state. This means the result can be wrong.
2373 *
2374 * If we get a false positive, we retry, this is harmless.
2375 *
2376 * If we get a false negative, things are complicated. If we are after
2377 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2378 * value must be correct. If we're before, it doesn't matter since
2379 * perf_event_context_sched_in() will program the counter.
2380 *
2381 * However, this hinges on the remote context switch having observed
2382 * our task->perf_event_ctxp[] store, such that it will in fact take
2383 * ctx::lock in perf_event_context_sched_in().
2384 *
2385 * We do this by task_function_call(), if the IPI fails to hit the task
2386 * we know any future context switch of task must see the
2387 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002388 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002389
Peter Zijlstraa0963092016-02-24 18:45:50 +01002390 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002391 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2392 * task_cpu() load, such that if the IPI then does not find the task
2393 * running, a future context switch of that task must observe the
2394 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002395 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002396 smp_mb();
2397again:
2398 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002399 return;
2400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002401 raw_spin_lock_irq(&ctx->lock);
2402 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002403 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2404 /*
2405 * Cannot happen because we already checked above (which also
2406 * cannot happen), and we hold ctx->mutex, which serializes us
2407 * against perf_event_exit_task_context().
2408 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002409 raw_spin_unlock_irq(&ctx->lock);
2410 return;
2411 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002412 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002413 * If the task is not running, ctx->lock will avoid it becoming so,
2414 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002415 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002416 if (task_curr(task)) {
2417 raw_spin_unlock_irq(&ctx->lock);
2418 goto again;
2419 }
2420 add_event_to_ctx(event, ctx);
2421 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422}
2423
2424/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002425 * Cross CPU call to enable a performance event
2426 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002427static void __perf_event_enable(struct perf_event *event,
2428 struct perf_cpu_context *cpuctx,
2429 struct perf_event_context *ctx,
2430 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002431{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002432 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002433 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002434
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002435 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2436 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002437 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002438
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002439 if (ctx->is_active)
2440 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2441
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002442 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002444 if (!ctx->is_active)
2445 return;
2446
Stephane Eraniane5d13672011-02-14 11:20:01 +02002447 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002448 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002449 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002450 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002452 /*
2453 * If the event is in a group and isn't the group leader,
2454 * then don't put it on unless the group is on.
2455 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002456 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2457 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002458 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002459 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002460
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002461 task_ctx = cpuctx->task_ctx;
2462 if (ctx->task)
2463 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002464
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002465 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002466}
2467
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002468/*
2469 * Enable a event.
2470 *
2471 * If event->ctx is a cloned context, callers must make sure that
2472 * every task struct that event->ctx->task could possibly point to
2473 * remains valid. This condition is satisfied when called through
2474 * perf_event_for_each_child or perf_event_for_each as described
2475 * for perf_event_disable.
2476 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002477static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478{
2479 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002481 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002482 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2483 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002484 raw_spin_unlock_irq(&ctx->lock);
2485 return;
2486 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487
2488 /*
2489 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002490 *
2491 * That way, if we see the event in error state below, we know that it
2492 * has gone back into error state, as distinct from the task having
2493 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002494 */
2495 if (event->state == PERF_EVENT_STATE_ERROR)
2496 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002497 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002498
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002499 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002500}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002501
2502/*
2503 * See perf_event_disable();
2504 */
2505void perf_event_enable(struct perf_event *event)
2506{
2507 struct perf_event_context *ctx;
2508
2509 ctx = perf_event_ctx_lock(event);
2510 _perf_event_enable(event);
2511 perf_event_ctx_unlock(event, ctx);
2512}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002513EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002514
Alexander Shishkin375637b2016-04-27 18:44:46 +03002515struct stop_event_data {
2516 struct perf_event *event;
2517 unsigned int restart;
2518};
2519
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002520static int __perf_event_stop(void *info)
2521{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002522 struct stop_event_data *sd = info;
2523 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002524
Alexander Shishkin375637b2016-04-27 18:44:46 +03002525 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002526 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2527 return 0;
2528
2529 /* matches smp_wmb() in event_sched_in() */
2530 smp_rmb();
2531
2532 /*
2533 * There is a window with interrupts enabled before we get here,
2534 * so we need to check again lest we try to stop another CPU's event.
2535 */
2536 if (READ_ONCE(event->oncpu) != smp_processor_id())
2537 return -EAGAIN;
2538
2539 event->pmu->stop(event, PERF_EF_UPDATE);
2540
Alexander Shishkin375637b2016-04-27 18:44:46 +03002541 /*
2542 * May race with the actual stop (through perf_pmu_output_stop()),
2543 * but it is only used for events with AUX ring buffer, and such
2544 * events will refuse to restart because of rb::aux_mmap_count==0,
2545 * see comments in perf_aux_output_begin().
2546 *
2547 * Since this is happening on a event-local CPU, no trace is lost
2548 * while restarting.
2549 */
2550 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002551 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002552
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002553 return 0;
2554}
2555
Alexander Shishkin767ae082016-09-06 16:23:49 +03002556static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002557{
2558 struct stop_event_data sd = {
2559 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002560 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002561 };
2562 int ret = 0;
2563
2564 do {
2565 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2566 return 0;
2567
2568 /* matches smp_wmb() in event_sched_in() */
2569 smp_rmb();
2570
2571 /*
2572 * We only want to restart ACTIVE events, so if the event goes
2573 * inactive here (event->oncpu==-1), there's nothing more to do;
2574 * fall through with ret==-ENXIO.
2575 */
2576 ret = cpu_function_call(READ_ONCE(event->oncpu),
2577 __perf_event_stop, &sd);
2578 } while (ret == -EAGAIN);
2579
2580 return ret;
2581}
2582
2583/*
2584 * In order to contain the amount of racy and tricky in the address filter
2585 * configuration management, it is a two part process:
2586 *
2587 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2588 * we update the addresses of corresponding vmas in
2589 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2590 * (p2) when an event is scheduled in (pmu::add), it calls
2591 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2592 * if the generation has changed since the previous call.
2593 *
2594 * If (p1) happens while the event is active, we restart it to force (p2).
2595 *
2596 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2597 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2598 * ioctl;
2599 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2600 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2601 * for reading;
2602 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2603 * of exec.
2604 */
2605void perf_event_addr_filters_sync(struct perf_event *event)
2606{
2607 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2608
2609 if (!has_addr_filter(event))
2610 return;
2611
2612 raw_spin_lock(&ifh->lock);
2613 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2614 event->pmu->addr_filters_sync(event);
2615 event->hw.addr_filters_gen = event->addr_filters_gen;
2616 }
2617 raw_spin_unlock(&ifh->lock);
2618}
2619EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2620
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002621static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622{
2623 /*
2624 * not supported on inherited events
2625 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002626 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002627 return -EINVAL;
2628
2629 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002630 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002631
2632 return 0;
2633}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002634
2635/*
2636 * See perf_event_disable()
2637 */
2638int perf_event_refresh(struct perf_event *event, int refresh)
2639{
2640 struct perf_event_context *ctx;
2641 int ret;
2642
2643 ctx = perf_event_ctx_lock(event);
2644 ret = _perf_event_refresh(event, refresh);
2645 perf_event_ctx_unlock(event, ctx);
2646
2647 return ret;
2648}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002649EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002650
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002651static void ctx_sched_out(struct perf_event_context *ctx,
2652 struct perf_cpu_context *cpuctx,
2653 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002654{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002655 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002656 struct perf_event *event;
2657
2658 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002659
Peter Zijlstra39a43642016-01-11 12:46:35 +01002660 if (likely(!ctx->nr_events)) {
2661 /*
2662 * See __perf_remove_from_context().
2663 */
2664 WARN_ON_ONCE(ctx->is_active);
2665 if (ctx->task)
2666 WARN_ON_ONCE(cpuctx->task_ctx);
2667 return;
2668 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002669
Peter Zijlstradb24d332011-04-09 21:17:45 +02002670 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002671 if (!(ctx->is_active & EVENT_ALL))
2672 ctx->is_active = 0;
2673
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002674 if (ctx->task) {
2675 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2676 if (!ctx->is_active)
2677 cpuctx->task_ctx = NULL;
2678 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002679
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002680 /*
2681 * Always update time if it was set; not only when it changes.
2682 * Otherwise we can 'forget' to update time for any but the last
2683 * context we sched out. For example:
2684 *
2685 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2686 * ctx_sched_out(.event_type = EVENT_PINNED)
2687 *
2688 * would only update time for the pinned events.
2689 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002690 if (is_active & EVENT_TIME) {
2691 /* update (and stop) ctx time */
2692 update_context_time(ctx);
2693 update_cgrp_time_from_cpuctx(cpuctx);
2694 }
2695
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002696 is_active ^= ctx->is_active; /* changed bits */
2697
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002698 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002699 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002700
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002701 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002702 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002703 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2704 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002705 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002706
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002707 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002708 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002709 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002710 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002711 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002712}
2713
2714/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002715 * Test whether two contexts are equivalent, i.e. whether they have both been
2716 * cloned from the same version of the same context.
2717 *
2718 * Equivalence is measured using a generation number in the context that is
2719 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2720 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002721 */
2722static int context_equiv(struct perf_event_context *ctx1,
2723 struct perf_event_context *ctx2)
2724{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002725 lockdep_assert_held(&ctx1->lock);
2726 lockdep_assert_held(&ctx2->lock);
2727
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002728 /* Pinning disables the swap optimization */
2729 if (ctx1->pin_count || ctx2->pin_count)
2730 return 0;
2731
2732 /* If ctx1 is the parent of ctx2 */
2733 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2734 return 1;
2735
2736 /* If ctx2 is the parent of ctx1 */
2737 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2738 return 1;
2739
2740 /*
2741 * If ctx1 and ctx2 have the same parent; we flatten the parent
2742 * hierarchy, see perf_event_init_context().
2743 */
2744 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2745 ctx1->parent_gen == ctx2->parent_gen)
2746 return 1;
2747
2748 /* Unmatched */
2749 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002750}
2751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752static void __perf_event_sync_stat(struct perf_event *event,
2753 struct perf_event *next_event)
2754{
2755 u64 value;
2756
2757 if (!event->attr.inherit_stat)
2758 return;
2759
2760 /*
2761 * Update the event value, we cannot use perf_event_read()
2762 * because we're in the middle of a context switch and have IRQs
2763 * disabled, which upsets smp_call_function_single(), however
2764 * we know the event must be on the current CPU, therefore we
2765 * don't need to use it.
2766 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002767 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002768 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002769
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002770 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002771
2772 /*
2773 * In order to keep per-task stats reliable we need to flip the event
2774 * values when we flip the contexts.
2775 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002776 value = local64_read(&next_event->count);
2777 value = local64_xchg(&event->count, value);
2778 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002779
2780 swap(event->total_time_enabled, next_event->total_time_enabled);
2781 swap(event->total_time_running, next_event->total_time_running);
2782
2783 /*
2784 * Since we swizzled the values, update the user visible data too.
2785 */
2786 perf_event_update_userpage(event);
2787 perf_event_update_userpage(next_event);
2788}
2789
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002790static void perf_event_sync_stat(struct perf_event_context *ctx,
2791 struct perf_event_context *next_ctx)
2792{
2793 struct perf_event *event, *next_event;
2794
2795 if (!ctx->nr_stat)
2796 return;
2797
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002798 update_context_time(ctx);
2799
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800 event = list_first_entry(&ctx->event_list,
2801 struct perf_event, event_entry);
2802
2803 next_event = list_first_entry(&next_ctx->event_list,
2804 struct perf_event, event_entry);
2805
2806 while (&event->event_entry != &ctx->event_list &&
2807 &next_event->event_entry != &next_ctx->event_list) {
2808
2809 __perf_event_sync_stat(event, next_event);
2810
2811 event = list_next_entry(event, event_entry);
2812 next_event = list_next_entry(next_event, event_entry);
2813 }
2814}
2815
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002816static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2817 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002818{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002819 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002820 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002821 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002822 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002823 int do_switch = 1;
2824
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002825 if (likely(!ctx))
2826 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002827
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002828 cpuctx = __get_cpu_context(ctx);
2829 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002830 return;
2831
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002832 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002833 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002834 if (!next_ctx)
2835 goto unlock;
2836
2837 parent = rcu_dereference(ctx->parent_ctx);
2838 next_parent = rcu_dereference(next_ctx->parent_ctx);
2839
2840 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002841 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002842 goto unlock;
2843
2844 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002845 /*
2846 * Looks like the two contexts are clones, so we might be
2847 * able to optimize the context switch. We lock both
2848 * contexts and check that they are clones under the
2849 * lock (including re-checking that neither has been
2850 * uncloned in the meantime). It doesn't matter which
2851 * order we take the locks because no other cpu could
2852 * be trying to lock both of these tasks.
2853 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002854 raw_spin_lock(&ctx->lock);
2855 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002856 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002857 WRITE_ONCE(ctx->task, next);
2858 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002859
2860 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2861
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002862 /*
2863 * RCU_INIT_POINTER here is safe because we've not
2864 * modified the ctx and the above modification of
2865 * ctx->task and ctx->task_ctx_data are immaterial
2866 * since those values are always verified under
2867 * ctx->lock which we're now holding.
2868 */
2869 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2870 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872 do_switch = 0;
2873
2874 perf_event_sync_stat(ctx, next_ctx);
2875 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002876 raw_spin_unlock(&next_ctx->lock);
2877 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002878 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002879unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002880 rcu_read_unlock();
2881
2882 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002883 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002884 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002885 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002886 }
2887}
2888
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002889static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2890
Yan, Zhengba532502014-11-04 21:55:58 -05002891void perf_sched_cb_dec(struct pmu *pmu)
2892{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002893 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2894
Yan, Zhengba532502014-11-04 21:55:58 -05002895 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002896
2897 if (!--cpuctx->sched_cb_usage)
2898 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05002899}
2900
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002901
Yan, Zhengba532502014-11-04 21:55:58 -05002902void perf_sched_cb_inc(struct pmu *pmu)
2903{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002904 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2905
2906 if (!cpuctx->sched_cb_usage++)
2907 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
2908
Yan, Zhengba532502014-11-04 21:55:58 -05002909 this_cpu_inc(perf_sched_cb_usages);
2910}
2911
2912/*
2913 * This function provides the context switch callback to the lower code
2914 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02002915 *
2916 * This callback is relevant even to per-cpu events; for example multi event
2917 * PEBS requires this to provide PID/TID information. This requires we flush
2918 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05002919 */
2920static void perf_pmu_sched_task(struct task_struct *prev,
2921 struct task_struct *next,
2922 bool sched_in)
2923{
2924 struct perf_cpu_context *cpuctx;
2925 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05002926
2927 if (prev == next)
2928 return;
2929
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002930 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08002931 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05002932
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002933 if (WARN_ON_ONCE(!pmu->sched_task))
2934 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05002935
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002936 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2937 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05002938
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002939 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05002940
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002941 perf_pmu_enable(pmu);
2942 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05002943 }
Yan, Zhengba532502014-11-04 21:55:58 -05002944}
2945
Adrian Hunter45ac1402015-07-21 12:44:02 +03002946static void perf_event_switch(struct task_struct *task,
2947 struct task_struct *next_prev, bool sched_in);
2948
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002949#define for_each_task_context_nr(ctxn) \
2950 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2951
2952/*
2953 * Called from scheduler to remove the events of the current task,
2954 * with interrupts disabled.
2955 *
2956 * We stop each event and update the event value in event->count.
2957 *
2958 * This does not protect us against NMI, but disable()
2959 * sets the disabled bit in the control field of event _before_
2960 * accessing the event control register. If a NMI hits, then it will
2961 * not restart the event.
2962 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002963void __perf_event_task_sched_out(struct task_struct *task,
2964 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002965{
2966 int ctxn;
2967
Yan, Zhengba532502014-11-04 21:55:58 -05002968 if (__this_cpu_read(perf_sched_cb_usages))
2969 perf_pmu_sched_task(task, next, false);
2970
Adrian Hunter45ac1402015-07-21 12:44:02 +03002971 if (atomic_read(&nr_switch_events))
2972 perf_event_switch(task, next, false);
2973
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002974 for_each_task_context_nr(ctxn)
2975 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002976
2977 /*
2978 * if cgroup events exist on this CPU, then we need
2979 * to check if we have to switch out PMU state.
2980 * cgroup event are system-wide mode only
2981 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002982 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002983 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002984}
2985
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002986/*
2987 * Called with IRQs disabled
2988 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002989static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2990 enum event_type_t event_type)
2991{
2992 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002993}
2994
2995static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002996ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002997 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002998{
2999 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003000
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003001 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
3002 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02003004 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003005 continue;
3006
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003007 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01003008 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003009
3010 /*
3011 * If this pinned group hasn't been scheduled,
3012 * put it in error state.
3013 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003014 if (event->state == PERF_EVENT_STATE_INACTIVE)
3015 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003017}
3018
3019static void
3020ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003021 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003022{
3023 struct perf_event *event;
3024 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003026 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
3027 /* Ignore events in OFF or ERROR state */
3028 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003029 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030 /*
3031 * Listen to the 'cpu' scheduling filter constraint
3032 * of events:
3033 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02003034 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003035 continue;
3036
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003037 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003038 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003039 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003040 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003041 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003042}
3043
3044static void
3045ctx_sched_in(struct perf_event_context *ctx,
3046 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003047 enum event_type_t event_type,
3048 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003049{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003050 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003051 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003052
Peter Zijlstrac994d612016-01-08 09:20:23 +01003053 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003054
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003055 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003056 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003057
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003058 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003059 if (ctx->task) {
3060 if (!is_active)
3061 cpuctx->task_ctx = ctx;
3062 else
3063 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3064 }
3065
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003066 is_active ^= ctx->is_active; /* changed bits */
3067
3068 if (is_active & EVENT_TIME) {
3069 /* start ctx time */
3070 now = perf_clock();
3071 ctx->timestamp = now;
3072 perf_cgroup_set_timestamp(task, ctx);
3073 }
3074
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003075 /*
3076 * First go through the list and put on any pinned groups
3077 * in order to give them the best chance of going on.
3078 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003079 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003080 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003081
3082 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003083 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003084 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003085}
3086
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003087static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003088 enum event_type_t event_type,
3089 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003090{
3091 struct perf_event_context *ctx = &cpuctx->ctx;
3092
Stephane Eraniane5d13672011-02-14 11:20:01 +02003093 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003094}
3095
Stephane Eraniane5d13672011-02-14 11:20:01 +02003096static void perf_event_context_sched_in(struct perf_event_context *ctx,
3097 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003098{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003099 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003100
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003101 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003102 if (cpuctx->task_ctx == ctx)
3103 return;
3104
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003105 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003106 /*
3107 * We must check ctx->nr_events while holding ctx->lock, such
3108 * that we serialize against perf_install_in_context().
3109 */
3110 if (!ctx->nr_events)
3111 goto unlock;
3112
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003113 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003114 /*
3115 * We want to keep the following priority order:
3116 * cpu pinned (that don't need to move), task pinned,
3117 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003118 *
3119 * However, if task's ctx is not carrying any pinned
3120 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003121 */
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003122 if (!list_empty(&ctx->pinned_groups))
3123 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003124 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003125 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003126
3127unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003128 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129}
3130
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003131/*
3132 * Called from scheduler to add the events of the current task
3133 * with interrupts disabled.
3134 *
3135 * We restore the event value and then enable it.
3136 *
3137 * This does not protect us against NMI, but enable()
3138 * sets the enabled bit in the control field of event _before_
3139 * accessing the event control register. If a NMI hits, then it will
3140 * keep the event running.
3141 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003142void __perf_event_task_sched_in(struct task_struct *prev,
3143 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003144{
3145 struct perf_event_context *ctx;
3146 int ctxn;
3147
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003148 /*
3149 * If cgroup events exist on this CPU, then we need to check if we have
3150 * to switch in PMU state; cgroup event are system-wide mode only.
3151 *
3152 * Since cgroup events are CPU events, we must schedule these in before
3153 * we schedule in the task events.
3154 */
3155 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3156 perf_cgroup_sched_in(prev, task);
3157
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003158 for_each_task_context_nr(ctxn) {
3159 ctx = task->perf_event_ctxp[ctxn];
3160 if (likely(!ctx))
3161 continue;
3162
Stephane Eraniane5d13672011-02-14 11:20:01 +02003163 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003164 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003165
Adrian Hunter45ac1402015-07-21 12:44:02 +03003166 if (atomic_read(&nr_switch_events))
3167 perf_event_switch(task, prev, true);
3168
Yan, Zhengba532502014-11-04 21:55:58 -05003169 if (__this_cpu_read(perf_sched_cb_usages))
3170 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003171}
3172
Peter Zijlstraabd50712010-01-26 18:50:16 +01003173static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3174{
3175 u64 frequency = event->attr.sample_freq;
3176 u64 sec = NSEC_PER_SEC;
3177 u64 divisor, dividend;
3178
3179 int count_fls, nsec_fls, frequency_fls, sec_fls;
3180
3181 count_fls = fls64(count);
3182 nsec_fls = fls64(nsec);
3183 frequency_fls = fls64(frequency);
3184 sec_fls = 30;
3185
3186 /*
3187 * We got @count in @nsec, with a target of sample_freq HZ
3188 * the target period becomes:
3189 *
3190 * @count * 10^9
3191 * period = -------------------
3192 * @nsec * sample_freq
3193 *
3194 */
3195
3196 /*
3197 * Reduce accuracy by one bit such that @a and @b converge
3198 * to a similar magnitude.
3199 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003200#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003201do { \
3202 if (a##_fls > b##_fls) { \
3203 a >>= 1; \
3204 a##_fls--; \
3205 } else { \
3206 b >>= 1; \
3207 b##_fls--; \
3208 } \
3209} while (0)
3210
3211 /*
3212 * Reduce accuracy until either term fits in a u64, then proceed with
3213 * the other, so that finally we can do a u64/u64 division.
3214 */
3215 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3216 REDUCE_FLS(nsec, frequency);
3217 REDUCE_FLS(sec, count);
3218 }
3219
3220 if (count_fls + sec_fls > 64) {
3221 divisor = nsec * frequency;
3222
3223 while (count_fls + sec_fls > 64) {
3224 REDUCE_FLS(count, sec);
3225 divisor >>= 1;
3226 }
3227
3228 dividend = count * sec;
3229 } else {
3230 dividend = count * sec;
3231
3232 while (nsec_fls + frequency_fls > 64) {
3233 REDUCE_FLS(nsec, frequency);
3234 dividend >>= 1;
3235 }
3236
3237 divisor = nsec * frequency;
3238 }
3239
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003240 if (!divisor)
3241 return dividend;
3242
Peter Zijlstraabd50712010-01-26 18:50:16 +01003243 return div64_u64(dividend, divisor);
3244}
3245
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003246static DEFINE_PER_CPU(int, perf_throttled_count);
3247static DEFINE_PER_CPU(u64, perf_throttled_seq);
3248
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003249static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003250{
3251 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003252 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003253 s64 delta;
3254
Peter Zijlstraabd50712010-01-26 18:50:16 +01003255 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003256
3257 delta = (s64)(period - hwc->sample_period);
3258 delta = (delta + 7) / 8; /* low pass filter */
3259
3260 sample_period = hwc->sample_period + delta;
3261
3262 if (!sample_period)
3263 sample_period = 1;
3264
3265 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003266
Peter Zijlstrae7850592010-05-21 14:43:08 +02003267 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003268 if (disable)
3269 event->pmu->stop(event, PERF_EF_UPDATE);
3270
Peter Zijlstrae7850592010-05-21 14:43:08 +02003271 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003272
3273 if (disable)
3274 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003275 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003276}
3277
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003278/*
3279 * combine freq adjustment with unthrottling to avoid two passes over the
3280 * events. At the same time, make sure, having freq events does not change
3281 * the rate of unthrottling as that would introduce bias.
3282 */
3283static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3284 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003285{
3286 struct perf_event *event;
3287 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003288 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003289 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003290
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003291 /*
3292 * only need to iterate over all events iff:
3293 * - context have events in frequency mode (needs freq adjust)
3294 * - there are events to unthrottle on this cpu
3295 */
3296 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003297 return;
3298
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003299 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003300 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003301
Paul Mackerras03541f82009-10-14 16:58:03 +11003302 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003303 if (event->state != PERF_EVENT_STATE_ACTIVE)
3304 continue;
3305
Stephane Eranian5632ab12011-01-03 18:20:01 +02003306 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003307 continue;
3308
Alexander Shishkin44377272013-12-16 14:17:36 +02003309 perf_pmu_disable(event->pmu);
3310
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003311 hwc = &event->hw;
3312
Jiri Olsaae23bff2013-08-24 16:45:54 +02003313 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003314 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003315 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003316 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003317 }
3318
3319 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003320 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003321
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003322 /*
3323 * stop the event and update event->count
3324 */
3325 event->pmu->stop(event, PERF_EF_UPDATE);
3326
Peter Zijlstrae7850592010-05-21 14:43:08 +02003327 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003328 delta = now - hwc->freq_count_stamp;
3329 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003330
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003331 /*
3332 * restart the event
3333 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003334 * we have stopped the event so tell that
3335 * to perf_adjust_period() to avoid stopping it
3336 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003337 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003338 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003339 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003340
3341 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003342 next:
3343 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003344 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003345
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003346 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003347 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003348}
3349
3350/*
3351 * Round-robin a context's events:
3352 */
3353static void rotate_ctx(struct perf_event_context *ctx)
3354{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003355 /*
3356 * Rotate the first entry last of non-pinned groups. Rotation might be
3357 * disabled by the inheritance code.
3358 */
3359 if (!ctx->rotate_disable)
3360 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361}
3362
Stephane Eranian9e630202013-04-03 14:21:33 +02003363static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003364{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003365 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003366 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003367
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003368 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003369 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3370 rotate = 1;
3371 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003372
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003373 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003374 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003375 if (ctx->nr_events != ctx->nr_active)
3376 rotate = 1;
3377 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003378
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003379 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003380 goto done;
3381
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003382 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003383 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003384
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003385 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3386 if (ctx)
3387 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003388
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003389 rotate_ctx(&cpuctx->ctx);
3390 if (ctx)
3391 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003393 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003394
3395 perf_pmu_enable(cpuctx->ctx.pmu);
3396 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003397done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003398
3399 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003400}
3401
3402void perf_event_task_tick(void)
3403{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003404 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3405 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003406 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003407
Frederic Weisbecker16444642017-11-06 16:01:24 +01003408 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003409
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003410 __this_cpu_inc(perf_throttled_seq);
3411 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003412 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003413
Mark Rutland2fde4f92015-01-07 15:01:54 +00003414 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003415 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003416}
3417
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003418static int event_enable_on_exec(struct perf_event *event,
3419 struct perf_event_context *ctx)
3420{
3421 if (!event->attr.enable_on_exec)
3422 return 0;
3423
3424 event->attr.enable_on_exec = 0;
3425 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3426 return 0;
3427
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003428 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003429
3430 return 1;
3431}
3432
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433/*
3434 * Enable all of a task's events that have been marked enable-on-exec.
3435 * This expects task == current.
3436 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003437static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003438{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003439 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003440 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003441 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003442 struct perf_event *event;
3443 unsigned long flags;
3444 int enabled = 0;
3445
3446 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003447 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003448 if (!ctx || !ctx->nr_events)
3449 goto out;
3450
Peter Zijlstra3e349502016-01-08 10:01:18 +01003451 cpuctx = __get_cpu_context(ctx);
3452 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003453 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003454 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003455 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003456 event_type |= get_event_type(event);
3457 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003458
3459 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003460 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003461 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003462 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003463 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003464 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003465 } else {
3466 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003467 }
3468 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003469
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003470out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003471 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003472
3473 if (clone_ctx)
3474 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003475}
3476
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003477struct perf_read_data {
3478 struct perf_event *event;
3479 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003480 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003481};
3482
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003483static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003484{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003485 u16 local_pkg, event_pkg;
3486
3487 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003488 int local_cpu = smp_processor_id();
3489
3490 event_pkg = topology_physical_package_id(event_cpu);
3491 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003492
3493 if (event_pkg == local_pkg)
3494 return local_cpu;
3495 }
3496
3497 return event_cpu;
3498}
3499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500/*
3501 * Cross CPU call to read the hardware event
3502 */
3503static void __perf_event_read(void *info)
3504{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003505 struct perf_read_data *data = info;
3506 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003507 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003508 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003509 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003510
3511 /*
3512 * If this is a task context, we need to check whether it is
3513 * the current task context of this cpu. If not it has been
3514 * scheduled out before the smp call arrived. In that case
3515 * event->count would have been updated to a recent sample
3516 * when the event was scheduled out.
3517 */
3518 if (ctx->task && cpuctx->task_ctx != ctx)
3519 return;
3520
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003521 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003522 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003523 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003524 update_cgrp_time_from_event(event);
3525 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003526
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003527 perf_event_update_time(event);
3528 if (data->group)
3529 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003530
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003531 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003532 goto unlock;
3533
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003534 if (!data->group) {
3535 pmu->read(event);
3536 data->ret = 0;
3537 goto unlock;
3538 }
3539
3540 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3541
3542 pmu->read(event);
3543
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003544 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003545 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3546 /*
3547 * Use sibling's PMU rather than @event's since
3548 * sibling could be on different (eg: software) PMU.
3549 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003550 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003551 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003552 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003553
3554 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003555
3556unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003557 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003558}
3559
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003560static inline u64 perf_event_count(struct perf_event *event)
3561{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07003562 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003563}
3564
Kaixu Xiaffe86902015-08-06 07:02:32 +00003565/*
3566 * NMI-safe method to read a local event, that is an event that
3567 * is:
3568 * - either for the current task, or for this CPU
3569 * - does not have inherit set, for inherited task events
3570 * will not be local and we cannot read them atomically
3571 * - must not have a pmu::count method
3572 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07003573int perf_event_read_local(struct perf_event *event, u64 *value,
3574 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00003575{
3576 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003577 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003578
3579 /*
3580 * Disabling interrupts avoids all counter scheduling (context
3581 * switches, timer based rotation and IPIs).
3582 */
3583 local_irq_save(flags);
3584
Kaixu Xiaffe86902015-08-06 07:02:32 +00003585 /*
3586 * It must not be an event with inherit set, we cannot read
3587 * all child counters from atomic context.
3588 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003589 if (event->attr.inherit) {
3590 ret = -EOPNOTSUPP;
3591 goto out;
3592 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003593
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003594 /* If this is a per-task event, it must be for current */
3595 if ((event->attach_state & PERF_ATTACH_TASK) &&
3596 event->hw.target != current) {
3597 ret = -EINVAL;
3598 goto out;
3599 }
3600
3601 /* If this is a per-CPU event, it must be for this CPU */
3602 if (!(event->attach_state & PERF_ATTACH_TASK) &&
3603 event->cpu != smp_processor_id()) {
3604 ret = -EINVAL;
3605 goto out;
3606 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003607
3608 /*
3609 * If the event is currently on this CPU, its either a per-task event,
3610 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3611 * oncpu == -1).
3612 */
3613 if (event->oncpu == smp_processor_id())
3614 event->pmu->read(event);
3615
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003616 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003617 if (enabled || running) {
3618 u64 now = event->shadow_ctx_time + perf_clock();
3619 u64 __enabled, __running;
3620
3621 __perf_update_times(event, now, &__enabled, &__running);
3622 if (enabled)
3623 *enabled = __enabled;
3624 if (running)
3625 *running = __running;
3626 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003627out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00003628 local_irq_restore(flags);
3629
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003630 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003631}
3632
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003633static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003634{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003635 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003636 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003637
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003638 /*
3639 * If event is enabled and currently active on a CPU, update the
3640 * value in the event structure:
3641 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003642again:
3643 if (state == PERF_EVENT_STATE_ACTIVE) {
3644 struct perf_read_data data;
3645
3646 /*
3647 * Orders the ->state and ->oncpu loads such that if we see
3648 * ACTIVE we must also see the right ->oncpu.
3649 *
3650 * Matches the smp_wmb() from event_sched_in().
3651 */
3652 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003653
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003654 event_cpu = READ_ONCE(event->oncpu);
3655 if ((unsigned)event_cpu >= nr_cpu_ids)
3656 return 0;
3657
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003658 data = (struct perf_read_data){
3659 .event = event,
3660 .group = group,
3661 .ret = 0,
3662 };
3663
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003664 preempt_disable();
3665 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003666
Peter Zijlstra58763142016-08-30 10:15:03 +02003667 /*
3668 * Purposely ignore the smp_call_function_single() return
3669 * value.
3670 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003671 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02003672 * scheduled out and that will have updated the event count.
3673 *
3674 * Therefore, either way, we'll have an up-to-date event count
3675 * after this.
3676 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003677 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
3678 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02003679 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003680
3681 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003682 struct perf_event_context *ctx = event->ctx;
3683 unsigned long flags;
3684
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003685 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003686 state = event->state;
3687 if (state != PERF_EVENT_STATE_INACTIVE) {
3688 raw_spin_unlock_irqrestore(&ctx->lock, flags);
3689 goto again;
3690 }
3691
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003692 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003693 * May read while context is not active (e.g., thread is
3694 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003695 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003696 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003697 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003698 update_cgrp_time_from_event(event);
3699 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003700
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003701 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003702 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003703 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003704 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003705 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003706
3707 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003708}
3709
3710/*
3711 * Initialize the perf_event context in a task_struct:
3712 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003713static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003714{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003715 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003716 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003717 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003718 INIT_LIST_HEAD(&ctx->pinned_groups);
3719 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003720 INIT_LIST_HEAD(&ctx->event_list);
3721 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003722}
3723
Peter Zijlstraeb184472010-09-07 15:55:13 +02003724static struct perf_event_context *
3725alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003726{
3727 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003728
3729 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3730 if (!ctx)
3731 return NULL;
3732
3733 __perf_event_init_context(ctx);
3734 if (task) {
3735 ctx->task = task;
3736 get_task_struct(task);
3737 }
3738 ctx->pmu = pmu;
3739
3740 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003741}
3742
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003743static struct task_struct *
3744find_lively_task_by_vpid(pid_t vpid)
3745{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003747
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003748 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003749 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003750 task = current;
3751 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003752 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003753 if (task)
3754 get_task_struct(task);
3755 rcu_read_unlock();
3756
3757 if (!task)
3758 return ERR_PTR(-ESRCH);
3759
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003760 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003761}
3762
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003763/*
3764 * Returns a matching context with refcount and pincount.
3765 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003766static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003767find_get_context(struct pmu *pmu, struct task_struct *task,
3768 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003769{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003770 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003771 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003772 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003773 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003774 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003775 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003776
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003777 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003778 /* Must be root to operate on a CPU event: */
3779 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3780 return ERR_PTR(-EACCES);
3781
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003782 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003783 ctx = &cpuctx->ctx;
3784 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003785 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003786
3787 return ctx;
3788 }
3789
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003790 err = -EINVAL;
3791 ctxn = pmu->task_ctx_nr;
3792 if (ctxn < 0)
3793 goto errout;
3794
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003795 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3796 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3797 if (!task_ctx_data) {
3798 err = -ENOMEM;
3799 goto errout;
3800 }
3801 }
3802
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003803retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003804 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003805 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003806 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003807 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003808
3809 if (task_ctx_data && !ctx->task_ctx_data) {
3810 ctx->task_ctx_data = task_ctx_data;
3811 task_ctx_data = NULL;
3812 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003813 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003814
3815 if (clone_ctx)
3816 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003817 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003818 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003819 err = -ENOMEM;
3820 if (!ctx)
3821 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003822
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003823 if (task_ctx_data) {
3824 ctx->task_ctx_data = task_ctx_data;
3825 task_ctx_data = NULL;
3826 }
3827
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003828 err = 0;
3829 mutex_lock(&task->perf_event_mutex);
3830 /*
3831 * If it has already passed perf_event_exit_task().
3832 * we must see PF_EXITING, it takes this mutex too.
3833 */
3834 if (task->flags & PF_EXITING)
3835 err = -ESRCH;
3836 else if (task->perf_event_ctxp[ctxn])
3837 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003838 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003839 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003840 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003841 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003842 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003843 mutex_unlock(&task->perf_event_mutex);
3844
3845 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003846 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003847
3848 if (err == -EAGAIN)
3849 goto retry;
3850 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003851 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003852 }
3853
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003854 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003855 return ctx;
3856
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003857errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003858 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003859 return ERR_PTR(err);
3860}
3861
Li Zefan6fb29152009-10-15 11:21:42 +08003862static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003863static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003865static void free_event_rcu(struct rcu_head *head)
3866{
3867 struct perf_event *event;
3868
3869 event = container_of(head, struct perf_event, rcu_head);
3870 if (event->ns)
3871 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003872 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003873 kfree(event);
3874}
3875
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003876static void ring_buffer_attach(struct perf_event *event,
3877 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003878
Kan Liangf2fb6be2016-03-23 11:24:37 -07003879static void detach_sb_event(struct perf_event *event)
3880{
3881 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3882
3883 raw_spin_lock(&pel->lock);
3884 list_del_rcu(&event->sb_list);
3885 raw_spin_unlock(&pel->lock);
3886}
3887
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003888static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003889{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003890 struct perf_event_attr *attr = &event->attr;
3891
Kan Liangf2fb6be2016-03-23 11:24:37 -07003892 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003893 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003894
3895 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003896 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003897
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003898 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3899 attr->comm || attr->comm_exec ||
3900 attr->task ||
3901 attr->context_switch)
3902 return true;
3903 return false;
3904}
3905
3906static void unaccount_pmu_sb_event(struct perf_event *event)
3907{
3908 if (is_sb_event(event))
3909 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003910}
3911
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003912static void unaccount_event_cpu(struct perf_event *event, int cpu)
3913{
3914 if (event->parent)
3915 return;
3916
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003917 if (is_cgroup_event(event))
3918 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3919}
3920
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003921#ifdef CONFIG_NO_HZ_FULL
3922static DEFINE_SPINLOCK(nr_freq_lock);
3923#endif
3924
3925static void unaccount_freq_event_nohz(void)
3926{
3927#ifdef CONFIG_NO_HZ_FULL
3928 spin_lock(&nr_freq_lock);
3929 if (atomic_dec_and_test(&nr_freq_events))
3930 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3931 spin_unlock(&nr_freq_lock);
3932#endif
3933}
3934
3935static void unaccount_freq_event(void)
3936{
3937 if (tick_nohz_full_enabled())
3938 unaccount_freq_event_nohz();
3939 else
3940 atomic_dec(&nr_freq_events);
3941}
3942
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003943static void unaccount_event(struct perf_event *event)
3944{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003945 bool dec = false;
3946
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003947 if (event->parent)
3948 return;
3949
3950 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003951 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003952 if (event->attr.mmap || event->attr.mmap_data)
3953 atomic_dec(&nr_mmap_events);
3954 if (event->attr.comm)
3955 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05303956 if (event->attr.namespaces)
3957 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003958 if (event->attr.task)
3959 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003960 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003961 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003962 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003963 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003964 atomic_dec(&nr_switch_events);
3965 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003966 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003967 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003968 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003969 dec = true;
3970
Peter Zijlstra9107c892016-02-24 18:45:45 +01003971 if (dec) {
3972 if (!atomic_add_unless(&perf_sched_count, -1, 1))
3973 schedule_delayed_work(&perf_sched_work, HZ);
3974 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003975
3976 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003977
3978 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003979}
3980
Peter Zijlstra9107c892016-02-24 18:45:45 +01003981static void perf_sched_delayed(struct work_struct *work)
3982{
3983 mutex_lock(&perf_sched_mutex);
3984 if (atomic_dec_and_test(&perf_sched_count))
3985 static_branch_disable(&perf_sched_events);
3986 mutex_unlock(&perf_sched_mutex);
3987}
3988
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003989/*
3990 * The following implement mutual exclusion of events on "exclusive" pmus
3991 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3992 * at a time, so we disallow creating events that might conflict, namely:
3993 *
3994 * 1) cpu-wide events in the presence of per-task events,
3995 * 2) per-task events in the presence of cpu-wide events,
3996 * 3) two matching events on the same context.
3997 *
3998 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003999 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004000 */
4001static int exclusive_event_init(struct perf_event *event)
4002{
4003 struct pmu *pmu = event->pmu;
4004
4005 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4006 return 0;
4007
4008 /*
4009 * Prevent co-existence of per-task and cpu-wide events on the
4010 * same exclusive pmu.
4011 *
4012 * Negative pmu::exclusive_cnt means there are cpu-wide
4013 * events on this "exclusive" pmu, positive means there are
4014 * per-task events.
4015 *
4016 * Since this is called in perf_event_alloc() path, event::ctx
4017 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4018 * to mean "per-task event", because unlike other attach states it
4019 * never gets cleared.
4020 */
4021 if (event->attach_state & PERF_ATTACH_TASK) {
4022 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4023 return -EBUSY;
4024 } else {
4025 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4026 return -EBUSY;
4027 }
4028
4029 return 0;
4030}
4031
4032static void exclusive_event_destroy(struct perf_event *event)
4033{
4034 struct pmu *pmu = event->pmu;
4035
4036 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4037 return;
4038
4039 /* see comment in exclusive_event_init() */
4040 if (event->attach_state & PERF_ATTACH_TASK)
4041 atomic_dec(&pmu->exclusive_cnt);
4042 else
4043 atomic_inc(&pmu->exclusive_cnt);
4044}
4045
4046static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4047{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004048 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004049 (e1->cpu == e2->cpu ||
4050 e1->cpu == -1 ||
4051 e2->cpu == -1))
4052 return true;
4053 return false;
4054}
4055
4056/* Called under the same ctx::mutex as perf_install_in_context() */
4057static bool exclusive_event_installable(struct perf_event *event,
4058 struct perf_event_context *ctx)
4059{
4060 struct perf_event *iter_event;
4061 struct pmu *pmu = event->pmu;
4062
4063 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4064 return true;
4065
4066 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4067 if (exclusive_event_match(iter_event, event))
4068 return false;
4069 }
4070
4071 return true;
4072}
4073
Alexander Shishkin375637b2016-04-27 18:44:46 +03004074static void perf_addr_filters_splice(struct perf_event *event,
4075 struct list_head *head);
4076
Peter Zijlstra683ede42014-05-05 12:11:24 +02004077static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004078{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004079 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004080
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004081 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004082
Frederic Weisbecker76369132011-05-19 19:55:04 +02004083 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004084 /*
4085 * Can happen when we close an event with re-directed output.
4086 *
4087 * Since we have a 0 refcount, perf_mmap_close() will skip
4088 * over us; possibly making our ring_buffer_put() the last.
4089 */
4090 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004091 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004092 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004093 }
4094
Stephane Eraniane5d13672011-02-14 11:20:01 +02004095 if (is_cgroup_event(event))
4096 perf_detach_cgroup(event);
4097
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004098 if (!event->parent) {
4099 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4100 put_callchain_buffers();
4101 }
4102
4103 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004104 perf_addr_filters_splice(event, NULL);
4105 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004106
4107 if (event->destroy)
4108 event->destroy(event);
4109
4110 if (event->ctx)
4111 put_ctx(event->ctx);
4112
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004113 exclusive_event_destroy(event);
4114 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004115
4116 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004117}
4118
Peter Zijlstra683ede42014-05-05 12:11:24 +02004119/*
4120 * Used to free events which have a known refcount of 1, such as in error paths
4121 * where the event isn't exposed yet and inherited events.
4122 */
4123static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004124{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004125 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4126 "unexpected event refcount: %ld; ptr=%p\n",
4127 atomic_long_read(&event->refcount), event)) {
4128 /* leak to avoid use-after-free */
4129 return;
4130 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004131
Peter Zijlstra683ede42014-05-05 12:11:24 +02004132 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004133}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004134
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004135/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004136 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004137 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004138static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004139{
Peter Zijlstra88821352010-11-09 19:01:43 +01004140 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004141
Peter Zijlstra88821352010-11-09 19:01:43 +01004142 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004143 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004144 * Matches the smp_store_release() in perf_event_exit_task(). If we
4145 * observe !owner it means the list deletion is complete and we can
4146 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004147 * owner->perf_event_mutex.
4148 */
Will Deacon506458e2017-10-24 11:22:48 +01004149 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004150 if (owner) {
4151 /*
4152 * Since delayed_put_task_struct() also drops the last
4153 * task reference we can safely take a new reference
4154 * while holding the rcu_read_lock().
4155 */
4156 get_task_struct(owner);
4157 }
4158 rcu_read_unlock();
4159
4160 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004161 /*
4162 * If we're here through perf_event_exit_task() we're already
4163 * holding ctx->mutex which would be an inversion wrt. the
4164 * normal lock order.
4165 *
4166 * However we can safely take this lock because its the child
4167 * ctx->mutex.
4168 */
4169 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4170
Peter Zijlstra88821352010-11-09 19:01:43 +01004171 /*
4172 * We have to re-check the event->owner field, if it is cleared
4173 * we raced with perf_event_exit_task(), acquiring the mutex
4174 * ensured they're done, and we can proceed with freeing the
4175 * event.
4176 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004177 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004178 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004179 smp_store_release(&event->owner, NULL);
4180 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004181 mutex_unlock(&owner->perf_event_mutex);
4182 put_task_struct(owner);
4183 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004184}
4185
Jiri Olsaf8697762014-08-01 14:33:01 +02004186static void put_event(struct perf_event *event)
4187{
Jiri Olsaf8697762014-08-01 14:33:01 +02004188 if (!atomic_long_dec_and_test(&event->refcount))
4189 return;
4190
Peter Zijlstra683ede42014-05-05 12:11:24 +02004191 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004192}
4193
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004194/*
4195 * Kill an event dead; while event:refcount will preserve the event
4196 * object, it will not preserve its functionality. Once the last 'user'
4197 * gives up the object, we'll destroy the thing.
4198 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004199int perf_event_release_kernel(struct perf_event *event)
4200{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004201 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004202 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01004203 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004204
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004205 /*
4206 * If we got here through err_file: fput(event_file); we will not have
4207 * attached to a context yet.
4208 */
4209 if (!ctx) {
4210 WARN_ON_ONCE(event->attach_state &
4211 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4212 goto no_ctx;
4213 }
4214
Peter Zijlstra88821352010-11-09 19:01:43 +01004215 if (!is_kernel_event(event))
4216 perf_remove_from_owner(event);
4217
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004218 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004219 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004220 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004221
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004222 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004223 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004224 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004225 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004226 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004227 * Anybody acquiring event->child_mutex after the below loop _must_
4228 * also see this, most importantly inherit_event() which will avoid
4229 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004230 *
4231 * Thus this guarantees that we will in fact observe and kill _ALL_
4232 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004233 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004234 event->state = PERF_EVENT_STATE_DEAD;
4235 raw_spin_unlock_irq(&ctx->lock);
4236
4237 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004238
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004239again:
4240 mutex_lock(&event->child_mutex);
4241 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004242
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004243 /*
4244 * Cannot change, child events are not migrated, see the
4245 * comment with perf_event_ctx_lock_nested().
4246 */
Will Deacon506458e2017-10-24 11:22:48 +01004247 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004248 /*
4249 * Since child_mutex nests inside ctx::mutex, we must jump
4250 * through hoops. We start by grabbing a reference on the ctx.
4251 *
4252 * Since the event cannot get freed while we hold the
4253 * child_mutex, the context must also exist and have a !0
4254 * reference count.
4255 */
4256 get_ctx(ctx);
4257
4258 /*
4259 * Now that we have a ctx ref, we can drop child_mutex, and
4260 * acquire ctx::mutex without fear of it going away. Then we
4261 * can re-acquire child_mutex.
4262 */
4263 mutex_unlock(&event->child_mutex);
4264 mutex_lock(&ctx->mutex);
4265 mutex_lock(&event->child_mutex);
4266
4267 /*
4268 * Now that we hold ctx::mutex and child_mutex, revalidate our
4269 * state, if child is still the first entry, it didn't get freed
4270 * and we can continue doing so.
4271 */
4272 tmp = list_first_entry_or_null(&event->child_list,
4273 struct perf_event, child_list);
4274 if (tmp == child) {
4275 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004276 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004277 /*
4278 * This matches the refcount bump in inherit_event();
4279 * this can't be the last reference.
4280 */
4281 put_event(event);
4282 }
4283
4284 mutex_unlock(&event->child_mutex);
4285 mutex_unlock(&ctx->mutex);
4286 put_ctx(ctx);
4287 goto again;
4288 }
4289 mutex_unlock(&event->child_mutex);
4290
Peter Zijlstra82d94852018-01-09 13:10:30 +01004291 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
4292 list_del(&child->child_list);
4293 free_event(child);
4294 }
4295
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004296no_ctx:
4297 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004298 return 0;
4299}
4300EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4301
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004302/*
4303 * Called when the last reference to the file is gone.
4304 */
Al Viroa6fa9412012-08-20 14:59:25 +01004305static int perf_release(struct inode *inode, struct file *file)
4306{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004307 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004308 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004309}
4310
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004311static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004312{
4313 struct perf_event *child;
4314 u64 total = 0;
4315
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004316 *enabled = 0;
4317 *running = 0;
4318
Peter Zijlstra6f105812009-11-20 22:19:56 +01004319 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004320
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004321 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004322 total += perf_event_count(event);
4323
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004324 *enabled += event->total_time_enabled +
4325 atomic64_read(&event->child_total_time_enabled);
4326 *running += event->total_time_running +
4327 atomic64_read(&event->child_total_time_running);
4328
4329 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004330 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004331 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004332 *enabled += child->total_time_enabled;
4333 *running += child->total_time_running;
4334 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004335 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004336
4337 return total;
4338}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004339
4340u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
4341{
4342 struct perf_event_context *ctx;
4343 u64 count;
4344
4345 ctx = perf_event_ctx_lock(event);
4346 count = __perf_event_read_value(event, enabled, running);
4347 perf_event_ctx_unlock(event, ctx);
4348
4349 return count;
4350}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004351EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004352
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004353static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004354 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004355{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004356 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004357 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004358 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004359 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004360 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004361
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004362 ret = perf_event_read(leader, true);
4363 if (ret)
4364 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004365
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02004366 raw_spin_lock_irqsave(&ctx->lock, flags);
4367
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004368 /*
4369 * Since we co-schedule groups, {enabled,running} times of siblings
4370 * will be identical to those of the leader, so we only publish one
4371 * set.
4372 */
4373 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4374 values[n++] += leader->total_time_enabled +
4375 atomic64_read(&leader->child_total_time_enabled);
4376 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004377
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004378 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4379 values[n++] += leader->total_time_running +
4380 atomic64_read(&leader->child_total_time_running);
4381 }
4382
4383 /*
4384 * Write {count,id} tuples for every sibling.
4385 */
4386 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004387 if (read_format & PERF_FORMAT_ID)
4388 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004389
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004391 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004392 if (read_format & PERF_FORMAT_ID)
4393 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004394 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004395
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004396 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004397 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004398}
4399
4400static int perf_read_group(struct perf_event *event,
4401 u64 read_format, char __user *buf)
4402{
4403 struct perf_event *leader = event->group_leader, *child;
4404 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004405 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004406 u64 *values;
4407
4408 lockdep_assert_held(&ctx->mutex);
4409
4410 values = kzalloc(event->read_size, GFP_KERNEL);
4411 if (!values)
4412 return -ENOMEM;
4413
4414 values[0] = 1 + leader->nr_siblings;
4415
4416 /*
4417 * By locking the child_mutex of the leader we effectively
4418 * lock the child list of all siblings.. XXX explain how.
4419 */
4420 mutex_lock(&leader->child_mutex);
4421
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004422 ret = __perf_read_group_add(leader, read_format, values);
4423 if (ret)
4424 goto unlock;
4425
4426 list_for_each_entry(child, &leader->child_list, child_list) {
4427 ret = __perf_read_group_add(child, read_format, values);
4428 if (ret)
4429 goto unlock;
4430 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004431
4432 mutex_unlock(&leader->child_mutex);
4433
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004434 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004435 if (copy_to_user(buf, values, event->read_size))
4436 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004437 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004438
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004439unlock:
4440 mutex_unlock(&leader->child_mutex);
4441out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004442 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004443 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004444}
4445
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004446static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004447 u64 read_format, char __user *buf)
4448{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004449 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004450 u64 values[4];
4451 int n = 0;
4452
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004453 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004454 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4455 values[n++] = enabled;
4456 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4457 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004458 if (read_format & PERF_FORMAT_ID)
4459 values[n++] = primary_event_id(event);
4460
4461 if (copy_to_user(buf, values, n * sizeof(u64)))
4462 return -EFAULT;
4463
4464 return n * sizeof(u64);
4465}
4466
Jiri Olsadc633982014-09-12 13:18:26 +02004467static bool is_event_hup(struct perf_event *event)
4468{
4469 bool no_children;
4470
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004471 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004472 return false;
4473
4474 mutex_lock(&event->child_mutex);
4475 no_children = list_empty(&event->child_list);
4476 mutex_unlock(&event->child_mutex);
4477 return no_children;
4478}
4479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004480/*
4481 * Read the performance event - simple non blocking version for now
4482 */
4483static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004484__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004485{
4486 u64 read_format = event->attr.read_format;
4487 int ret;
4488
4489 /*
4490 * Return end-of-file for a read on a event that is in
4491 * error state (i.e. because it was pinned but it couldn't be
4492 * scheduled on to the CPU at some point).
4493 */
4494 if (event->state == PERF_EVENT_STATE_ERROR)
4495 return 0;
4496
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004497 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004498 return -ENOSPC;
4499
4500 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004501 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004502 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004503 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004504 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004505
4506 return ret;
4507}
4508
4509static ssize_t
4510perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4511{
4512 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004513 struct perf_event_context *ctx;
4514 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004515
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004516 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004517 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004518 perf_event_ctx_unlock(event, ctx);
4519
4520 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004521}
4522
Al Viro9dd95742017-07-03 00:42:43 -04004523static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004524{
4525 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004526 struct ring_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004527 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004528
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004529 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004530
Jiri Olsadc633982014-09-12 13:18:26 +02004531 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004532 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004533
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004534 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004535 * Pin the event->rb by taking event->mmap_mutex; otherwise
4536 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004537 */
4538 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004539 rb = event->rb;
4540 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004541 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004542 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004543 return events;
4544}
4545
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004546static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004547{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004548 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004549 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004550 perf_event_update_userpage(event);
4551}
4552
4553/*
4554 * Holding the top-level event's child_mutex means that any
4555 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004556 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004557 * task existence requirements of perf_event_enable/disable.
4558 */
4559static void perf_event_for_each_child(struct perf_event *event,
4560 void (*func)(struct perf_event *))
4561{
4562 struct perf_event *child;
4563
4564 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004566 mutex_lock(&event->child_mutex);
4567 func(event);
4568 list_for_each_entry(child, &event->child_list, child_list)
4569 func(child);
4570 mutex_unlock(&event->child_mutex);
4571}
4572
4573static void perf_event_for_each(struct perf_event *event,
4574 void (*func)(struct perf_event *))
4575{
4576 struct perf_event_context *ctx = event->ctx;
4577 struct perf_event *sibling;
4578
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004579 lockdep_assert_held(&ctx->mutex);
4580
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004581 event = event->group_leader;
4582
4583 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004584 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004585 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004586}
4587
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004588static void __perf_event_period(struct perf_event *event,
4589 struct perf_cpu_context *cpuctx,
4590 struct perf_event_context *ctx,
4591 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004592{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004593 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004594 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004595
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004596 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004597 event->attr.sample_freq = value;
4598 } else {
4599 event->attr.sample_period = value;
4600 event->hw.sample_period = value;
4601 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004602
4603 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4604 if (active) {
4605 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004606 /*
4607 * We could be throttled; unthrottle now to avoid the tick
4608 * trying to unthrottle while we already re-started the event.
4609 */
4610 if (event->hw.interrupts == MAX_INTERRUPTS) {
4611 event->hw.interrupts = 0;
4612 perf_log_throttle(event, 1);
4613 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004614 event->pmu->stop(event, PERF_EF_UPDATE);
4615 }
4616
4617 local64_set(&event->hw.period_left, 0);
4618
4619 if (active) {
4620 event->pmu->start(event, PERF_EF_RELOAD);
4621 perf_pmu_enable(ctx->pmu);
4622 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004623}
4624
4625static int perf_event_period(struct perf_event *event, u64 __user *arg)
4626{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004627 u64 value;
4628
4629 if (!is_sampling_event(event))
4630 return -EINVAL;
4631
4632 if (copy_from_user(&value, arg, sizeof(value)))
4633 return -EFAULT;
4634
4635 if (!value)
4636 return -EINVAL;
4637
4638 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4639 return -EINVAL;
4640
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004641 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004642
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004643 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004644}
4645
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004646static const struct file_operations perf_fops;
4647
Al Viro2903ff02012-08-28 12:52:22 -04004648static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004649{
Al Viro2903ff02012-08-28 12:52:22 -04004650 struct fd f = fdget(fd);
4651 if (!f.file)
4652 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004653
Al Viro2903ff02012-08-28 12:52:22 -04004654 if (f.file->f_op != &perf_fops) {
4655 fdput(f);
4656 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004657 }
Al Viro2903ff02012-08-28 12:52:22 -04004658 *p = f;
4659 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004660}
4661
4662static int perf_event_set_output(struct perf_event *event,
4663 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004664static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004665static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004666
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004667static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004668{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004669 void (*func)(struct perf_event *);
4670 u32 flags = arg;
4671
4672 switch (cmd) {
4673 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004674 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004675 break;
4676 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004677 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004678 break;
4679 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004680 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004681 break;
4682
4683 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004684 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004685
4686 case PERF_EVENT_IOC_PERIOD:
4687 return perf_event_period(event, (u64 __user *)arg);
4688
Jiri Olsacf4957f2012-10-24 13:37:58 +02004689 case PERF_EVENT_IOC_ID:
4690 {
4691 u64 id = primary_event_id(event);
4692
4693 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4694 return -EFAULT;
4695 return 0;
4696 }
4697
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004698 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004699 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004700 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004701 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004702 struct perf_event *output_event;
4703 struct fd output;
4704 ret = perf_fget_light(arg, &output);
4705 if (ret)
4706 return ret;
4707 output_event = output.file->private_data;
4708 ret = perf_event_set_output(event, output_event);
4709 fdput(output);
4710 } else {
4711 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004712 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004713 return ret;
4714 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004715
Li Zefan6fb29152009-10-15 11:21:42 +08004716 case PERF_EVENT_IOC_SET_FILTER:
4717 return perf_event_set_filter(event, (void __user *)arg);
4718
Alexei Starovoitov25415172015-03-25 12:49:20 -07004719 case PERF_EVENT_IOC_SET_BPF:
4720 return perf_event_set_bpf_prog(event, arg);
4721
Wang Nan86e79722016-03-28 06:41:29 +00004722 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4723 struct ring_buffer *rb;
4724
4725 rcu_read_lock();
4726 rb = rcu_dereference(event->rb);
4727 if (!rb || !rb->nr_pages) {
4728 rcu_read_unlock();
4729 return -EINVAL;
4730 }
4731 rb_toggle_paused(rb, !!arg);
4732 rcu_read_unlock();
4733 return 0;
4734 }
Yonghong Songf371b302017-12-11 11:39:02 -08004735
4736 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08004737 return perf_event_query_prog_array(event, (void __user *)arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004738 default:
4739 return -ENOTTY;
4740 }
4741
4742 if (flags & PERF_IOC_FLAG_GROUP)
4743 perf_event_for_each(event, func);
4744 else
4745 perf_event_for_each_child(event, func);
4746
4747 return 0;
4748}
4749
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004750static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4751{
4752 struct perf_event *event = file->private_data;
4753 struct perf_event_context *ctx;
4754 long ret;
4755
4756 ctx = perf_event_ctx_lock(event);
4757 ret = _perf_ioctl(event, cmd, arg);
4758 perf_event_ctx_unlock(event, ctx);
4759
4760 return ret;
4761}
4762
Pawel Mollb3f20782014-06-13 16:03:32 +01004763#ifdef CONFIG_COMPAT
4764static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4765 unsigned long arg)
4766{
4767 switch (_IOC_NR(cmd)) {
4768 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4769 case _IOC_NR(PERF_EVENT_IOC_ID):
4770 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4771 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4772 cmd &= ~IOCSIZE_MASK;
4773 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4774 }
4775 break;
4776 }
4777 return perf_ioctl(file, cmd, arg);
4778}
4779#else
4780# define perf_compat_ioctl NULL
4781#endif
4782
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004783int perf_event_task_enable(void)
4784{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004785 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004786 struct perf_event *event;
4787
4788 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004789 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4790 ctx = perf_event_ctx_lock(event);
4791 perf_event_for_each_child(event, _perf_event_enable);
4792 perf_event_ctx_unlock(event, ctx);
4793 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004794 mutex_unlock(&current->perf_event_mutex);
4795
4796 return 0;
4797}
4798
4799int perf_event_task_disable(void)
4800{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004801 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004802 struct perf_event *event;
4803
4804 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004805 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4806 ctx = perf_event_ctx_lock(event);
4807 perf_event_for_each_child(event, _perf_event_disable);
4808 perf_event_ctx_unlock(event, ctx);
4809 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004810 mutex_unlock(&current->perf_event_mutex);
4811
4812 return 0;
4813}
4814
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004815static int perf_event_index(struct perf_event *event)
4816{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004817 if (event->hw.state & PERF_HES_STOPPED)
4818 return 0;
4819
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004820 if (event->state != PERF_EVENT_STATE_ACTIVE)
4821 return 0;
4822
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004823 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824}
4825
Eric B Munsonc4794292011-06-23 16:34:38 -04004826static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004827 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004828 u64 *enabled,
4829 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004830{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004831 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004832
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004833 *now = perf_clock();
4834 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004835 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04004836}
4837
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004838static void perf_event_init_userpage(struct perf_event *event)
4839{
4840 struct perf_event_mmap_page *userpg;
4841 struct ring_buffer *rb;
4842
4843 rcu_read_lock();
4844 rb = rcu_dereference(event->rb);
4845 if (!rb)
4846 goto unlock;
4847
4848 userpg = rb->user_page;
4849
4850 /* Allow new userspace to detect that bit 0 is deprecated */
4851 userpg->cap_bit0_is_deprecated = 1;
4852 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004853 userpg->data_offset = PAGE_SIZE;
4854 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004855
4856unlock:
4857 rcu_read_unlock();
4858}
4859
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004860void __weak arch_perf_update_userpage(
4861 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004862{
4863}
4864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004865/*
4866 * Callers need to ensure there can be no nesting of this function, otherwise
4867 * the seqlock logic goes bad. We can not serialize this because the arch
4868 * code calls this from NMI context.
4869 */
4870void perf_event_update_userpage(struct perf_event *event)
4871{
4872 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004873 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004874 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004875
4876 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004877 rb = rcu_dereference(event->rb);
4878 if (!rb)
4879 goto unlock;
4880
Eric B Munson0d641202011-06-24 12:26:26 -04004881 /*
4882 * compute total_time_enabled, total_time_running
4883 * based on snapshot values taken when the event
4884 * was last scheduled in.
4885 *
4886 * we cannot simply called update_context_time()
4887 * because of locking issue as we can be called in
4888 * NMI context
4889 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004890 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004891
Frederic Weisbecker76369132011-05-19 19:55:04 +02004892 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004893 /*
4894 * Disable preemption so as to not let the corresponding user-space
4895 * spin too long if we get preempted.
4896 */
4897 preempt_disable();
4898 ++userpg->lock;
4899 barrier();
4900 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004901 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004902 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004903 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004904
Eric B Munson0d641202011-06-24 12:26:26 -04004905 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004906 atomic64_read(&event->child_total_time_enabled);
4907
Eric B Munson0d641202011-06-24 12:26:26 -04004908 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004909 atomic64_read(&event->child_total_time_running);
4910
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004911 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004912
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004913 barrier();
4914 ++userpg->lock;
4915 preempt_enable();
4916unlock:
4917 rcu_read_unlock();
4918}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00004919EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004920
Dave Jiang11bac802017-02-24 14:56:41 -08004921static int perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004922{
Dave Jiang11bac802017-02-24 14:56:41 -08004923 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004924 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004925 int ret = VM_FAULT_SIGBUS;
4926
4927 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4928 if (vmf->pgoff == 0)
4929 ret = 0;
4930 return ret;
4931 }
4932
4933 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004934 rb = rcu_dereference(event->rb);
4935 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004936 goto unlock;
4937
4938 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4939 goto unlock;
4940
Frederic Weisbecker76369132011-05-19 19:55:04 +02004941 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004942 if (!vmf->page)
4943 goto unlock;
4944
4945 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08004946 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004947 vmf->page->index = vmf->pgoff;
4948
4949 ret = 0;
4950unlock:
4951 rcu_read_unlock();
4952
4953 return ret;
4954}
4955
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004956static void ring_buffer_attach(struct perf_event *event,
4957 struct ring_buffer *rb)
4958{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004959 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004960 unsigned long flags;
4961
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004962 if (event->rb) {
4963 /*
4964 * Should be impossible, we set this when removing
4965 * event->rb_entry and wait/clear when adding event->rb_entry.
4966 */
4967 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004968
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004969 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004970 spin_lock_irqsave(&old_rb->event_lock, flags);
4971 list_del_rcu(&event->rb_entry);
4972 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004973
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004974 event->rcu_batches = get_state_synchronize_rcu();
4975 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004976 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004977
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004978 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004979 if (event->rcu_pending) {
4980 cond_synchronize_rcu(event->rcu_batches);
4981 event->rcu_pending = 0;
4982 }
4983
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004984 spin_lock_irqsave(&rb->event_lock, flags);
4985 list_add_rcu(&event->rb_entry, &rb->event_list);
4986 spin_unlock_irqrestore(&rb->event_lock, flags);
4987 }
4988
Alexander Shishkin767ae082016-09-06 16:23:49 +03004989 /*
4990 * Avoid racing with perf_mmap_close(AUX): stop the event
4991 * before swizzling the event::rb pointer; if it's getting
4992 * unmapped, its aux_mmap_count will be 0 and it won't
4993 * restart. See the comment in __perf_pmu_output_stop().
4994 *
4995 * Data will inevitably be lost when set_output is done in
4996 * mid-air, but then again, whoever does it like this is
4997 * not in for the data anyway.
4998 */
4999 if (has_aux(event))
5000 perf_event_stop(event, 0);
5001
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005002 rcu_assign_pointer(event->rb, rb);
5003
5004 if (old_rb) {
5005 ring_buffer_put(old_rb);
5006 /*
5007 * Since we detached before setting the new rb, so that we
5008 * could attach the new rb, we could have missed a wakeup.
5009 * Provide it now.
5010 */
5011 wake_up_all(&event->waitq);
5012 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005013}
5014
5015static void ring_buffer_wakeup(struct perf_event *event)
5016{
5017 struct ring_buffer *rb;
5018
5019 rcu_read_lock();
5020 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005021 if (rb) {
5022 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5023 wake_up_all(&event->waitq);
5024 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005025 rcu_read_unlock();
5026}
5027
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005028struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005029{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005030 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005031
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005032 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005033 rb = rcu_dereference(event->rb);
5034 if (rb) {
5035 if (!atomic_inc_not_zero(&rb->refcount))
5036 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005037 }
5038 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005039
Frederic Weisbecker76369132011-05-19 19:55:04 +02005040 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005041}
5042
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005043void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005044{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005045 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005046 return;
5047
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005048 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005049
Frederic Weisbecker76369132011-05-19 19:55:04 +02005050 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005051}
5052
5053static void perf_mmap_open(struct vm_area_struct *vma)
5054{
5055 struct perf_event *event = vma->vm_file->private_data;
5056
5057 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005058 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005059
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005060 if (vma->vm_pgoff)
5061 atomic_inc(&event->rb->aux_mmap_count);
5062
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005063 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005064 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005065}
5066
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005067static void perf_pmu_output_stop(struct perf_event *event);
5068
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005069/*
5070 * A buffer can be mmap()ed multiple times; either directly through the same
5071 * event, or through other events by use of perf_event_set_output().
5072 *
5073 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5074 * the buffer here, where we still have a VM context. This means we need
5075 * to detach all events redirecting to us.
5076 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005077static void perf_mmap_close(struct vm_area_struct *vma)
5078{
5079 struct perf_event *event = vma->vm_file->private_data;
5080
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005081 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005082 struct user_struct *mmap_user = rb->mmap_user;
5083 int mmap_locked = rb->mmap_locked;
5084 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005085
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005086 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005087 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005088
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005089 /*
5090 * rb->aux_mmap_count will always drop before rb->mmap_count and
5091 * event->mmap_count, so it is ok to use event->mmap_mutex to
5092 * serialize with perf_mmap here.
5093 */
5094 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5095 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005096 /*
5097 * Stop all AUX events that are writing to this buffer,
5098 * so that we can free its AUX pages and corresponding PMU
5099 * data. Note that after rb::aux_mmap_count dropped to zero,
5100 * they won't start any more (see perf_aux_output_begin()).
5101 */
5102 perf_pmu_output_stop(event);
5103
5104 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005105 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5106 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5107
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005108 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005109 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005110 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5111
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005112 mutex_unlock(&event->mmap_mutex);
5113 }
5114
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005115 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005116
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005117 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005118 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005119
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005120 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005121 mutex_unlock(&event->mmap_mutex);
5122
5123 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005124 if (atomic_read(&rb->mmap_count))
5125 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005126
5127 /*
5128 * No other mmap()s, detach from all other events that might redirect
5129 * into the now unreachable buffer. Somewhat complicated by the
5130 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5131 */
5132again:
5133 rcu_read_lock();
5134 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5135 if (!atomic_long_inc_not_zero(&event->refcount)) {
5136 /*
5137 * This event is en-route to free_event() which will
5138 * detach it and remove it from the list.
5139 */
5140 continue;
5141 }
5142 rcu_read_unlock();
5143
5144 mutex_lock(&event->mmap_mutex);
5145 /*
5146 * Check we didn't race with perf_event_set_output() which can
5147 * swizzle the rb from under us while we were waiting to
5148 * acquire mmap_mutex.
5149 *
5150 * If we find a different rb; ignore this event, a next
5151 * iteration will no longer find it on the list. We have to
5152 * still restart the iteration to make sure we're not now
5153 * iterating the wrong list.
5154 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005155 if (event->rb == rb)
5156 ring_buffer_attach(event, NULL);
5157
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005158 mutex_unlock(&event->mmap_mutex);
5159 put_event(event);
5160
5161 /*
5162 * Restart the iteration; either we're on the wrong list or
5163 * destroyed its integrity by doing a deletion.
5164 */
5165 goto again;
5166 }
5167 rcu_read_unlock();
5168
5169 /*
5170 * It could be there's still a few 0-ref events on the list; they'll
5171 * get cleaned up by free_event() -- they'll also still have their
5172 * ref on the rb and will free it whenever they are done with it.
5173 *
5174 * Aside from that, this buffer is 'fully' detached and unmapped,
5175 * undo the VM accounting.
5176 */
5177
5178 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5179 vma->vm_mm->pinned_vm -= mmap_locked;
5180 free_uid(mmap_user);
5181
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005182out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005183 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005184}
5185
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005186static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005187 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005188 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005189 .fault = perf_mmap_fault,
5190 .page_mkwrite = perf_mmap_fault,
5191};
5192
5193static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5194{
5195 struct perf_event *event = file->private_data;
5196 unsigned long user_locked, user_lock_limit;
5197 struct user_struct *user = current_user();
5198 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005199 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005200 unsigned long vma_size;
5201 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005202 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005203 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005204
Peter Zijlstrac7920612010-05-18 10:33:24 +02005205 /*
5206 * Don't allow mmap() of inherited per-task counters. This would
5207 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005208 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005209 */
5210 if (event->cpu == -1 && event->attr.inherit)
5211 return -EINVAL;
5212
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005213 if (!(vma->vm_flags & VM_SHARED))
5214 return -EINVAL;
5215
5216 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005217
5218 if (vma->vm_pgoff == 0) {
5219 nr_pages = (vma_size / PAGE_SIZE) - 1;
5220 } else {
5221 /*
5222 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5223 * mapped, all subsequent mappings should have the same size
5224 * and offset. Must be above the normal perf buffer.
5225 */
5226 u64 aux_offset, aux_size;
5227
5228 if (!event->rb)
5229 return -EINVAL;
5230
5231 nr_pages = vma_size / PAGE_SIZE;
5232
5233 mutex_lock(&event->mmap_mutex);
5234 ret = -EINVAL;
5235
5236 rb = event->rb;
5237 if (!rb)
5238 goto aux_unlock;
5239
Mark Rutland6aa7de02017-10-23 14:07:29 -07005240 aux_offset = READ_ONCE(rb->user_page->aux_offset);
5241 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005242
5243 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5244 goto aux_unlock;
5245
5246 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5247 goto aux_unlock;
5248
5249 /* already mapped with a different offset */
5250 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5251 goto aux_unlock;
5252
5253 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5254 goto aux_unlock;
5255
5256 /* already mapped with a different size */
5257 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5258 goto aux_unlock;
5259
5260 if (!is_power_of_2(nr_pages))
5261 goto aux_unlock;
5262
5263 if (!atomic_inc_not_zero(&rb->mmap_count))
5264 goto aux_unlock;
5265
5266 if (rb_has_aux(rb)) {
5267 atomic_inc(&rb->aux_mmap_count);
5268 ret = 0;
5269 goto unlock;
5270 }
5271
5272 atomic_set(&rb->aux_mmap_count, 1);
5273 user_extra = nr_pages;
5274
5275 goto accounting;
5276 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005277
5278 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005279 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005280 * can do bitmasks instead of modulo.
5281 */
Kan Liang2ed11312015-03-02 02:14:26 -05005282 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005283 return -EINVAL;
5284
5285 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5286 return -EINVAL;
5287
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005289again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005290 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005291 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005292 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005293 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005294 goto unlock;
5295 }
5296
5297 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5298 /*
5299 * Raced against perf_mmap_close() through
5300 * perf_event_set_output(). Try again, hope for better
5301 * luck.
5302 */
5303 mutex_unlock(&event->mmap_mutex);
5304 goto again;
5305 }
5306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005307 goto unlock;
5308 }
5309
5310 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005311
5312accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005313 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5314
5315 /*
5316 * Increase the limit linearly with more CPUs:
5317 */
5318 user_lock_limit *= num_online_cpus();
5319
5320 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5321
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005322 if (user_locked > user_lock_limit)
5323 extra = user_locked - user_lock_limit;
5324
Jiri Slaby78d7d402010-03-05 13:42:54 -08005325 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005326 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005327 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005328
5329 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5330 !capable(CAP_IPC_LOCK)) {
5331 ret = -EPERM;
5332 goto unlock;
5333 }
5334
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005335 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005336
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005337 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005338 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005339
Frederic Weisbecker76369132011-05-19 19:55:04 +02005340 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005341 rb = rb_alloc(nr_pages,
5342 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5343 event->cpu, flags);
5344
5345 if (!rb) {
5346 ret = -ENOMEM;
5347 goto unlock;
5348 }
5349
5350 atomic_set(&rb->mmap_count, 1);
5351 rb->mmap_user = get_current_user();
5352 rb->mmap_locked = extra;
5353
5354 ring_buffer_attach(event, rb);
5355
5356 perf_event_init_userpage(event);
5357 perf_event_update_userpage(event);
5358 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005359 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5360 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005361 if (!ret)
5362 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005363 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005364
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005365unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005366 if (!ret) {
5367 atomic_long_add(user_extra, &user->locked_vm);
5368 vma->vm_mm->pinned_vm += extra;
5369
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005370 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005371 } else if (rb) {
5372 atomic_dec(&rb->mmap_count);
5373 }
5374aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005375 mutex_unlock(&event->mmap_mutex);
5376
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005377 /*
5378 * Since pinned accounting is per vm we cannot allow fork() to copy our
5379 * vma.
5380 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005381 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005382 vma->vm_ops = &perf_mmap_vmops;
5383
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005384 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005385 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005386
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005387 return ret;
5388}
5389
5390static int perf_fasync(int fd, struct file *filp, int on)
5391{
Al Viro496ad9a2013-01-23 17:07:38 -05005392 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005393 struct perf_event *event = filp->private_data;
5394 int retval;
5395
Al Viro59551022016-01-22 15:40:57 -05005396 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005397 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005398 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005399
5400 if (retval < 0)
5401 return retval;
5402
5403 return 0;
5404}
5405
5406static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005407 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408 .release = perf_release,
5409 .read = perf_read,
5410 .poll = perf_poll,
5411 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005412 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413 .mmap = perf_mmap,
5414 .fasync = perf_fasync,
5415};
5416
5417/*
5418 * Perf event wakeup
5419 *
5420 * If there's data, ensure we set the poll() state and publish everything
5421 * to user-space before waking everybody up.
5422 */
5423
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005424static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5425{
5426 /* only the parent has fasync state */
5427 if (event->parent)
5428 event = event->parent;
5429 return &event->fasync;
5430}
5431
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005432void perf_event_wakeup(struct perf_event *event)
5433{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005434 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435
5436 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005437 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005438 event->pending_kill = 0;
5439 }
5440}
5441
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005442static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005443{
5444 struct perf_event *event = container_of(entry,
5445 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005446 int rctx;
5447
5448 rctx = perf_swevent_get_recursion_context();
5449 /*
5450 * If we 'fail' here, that's OK, it means recursion is already disabled
5451 * and we won't recurse 'further'.
5452 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005453
5454 if (event->pending_disable) {
5455 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005456 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005457 }
5458
5459 if (event->pending_wakeup) {
5460 event->pending_wakeup = 0;
5461 perf_event_wakeup(event);
5462 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005463
5464 if (rctx >= 0)
5465 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005466}
5467
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005468/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005469 * We assume there is only KVM supporting the callbacks.
5470 * Later on, we might change it to a list if there is
5471 * another virtualization implementation supporting the callbacks.
5472 */
5473struct perf_guest_info_callbacks *perf_guest_cbs;
5474
5475int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5476{
5477 perf_guest_cbs = cbs;
5478 return 0;
5479}
5480EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5481
5482int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5483{
5484 perf_guest_cbs = NULL;
5485 return 0;
5486}
5487EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5488
Jiri Olsa40189942012-08-07 15:20:37 +02005489static void
5490perf_output_sample_regs(struct perf_output_handle *handle,
5491 struct pt_regs *regs, u64 mask)
5492{
5493 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305494 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005495
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305496 bitmap_from_u64(_mask, mask);
5497 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005498 u64 val;
5499
5500 val = perf_reg_value(regs, bit);
5501 perf_output_put(handle, val);
5502 }
5503}
5504
Stephane Eranian60e23642014-09-24 13:48:37 +02005505static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005506 struct pt_regs *regs,
5507 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005508{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005509 if (user_mode(regs)) {
5510 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005511 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005512 } else if (current->mm) {
5513 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005514 } else {
5515 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5516 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005517 }
5518}
5519
Stephane Eranian60e23642014-09-24 13:48:37 +02005520static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5521 struct pt_regs *regs)
5522{
5523 regs_intr->regs = regs;
5524 regs_intr->abi = perf_reg_abi(current);
5525}
5526
5527
Jiri Olsac5ebced2012-08-07 15:20:40 +02005528/*
5529 * Get remaining task size from user stack pointer.
5530 *
5531 * It'd be better to take stack vma map and limit this more
5532 * precisly, but there's no way to get it safely under interrupt,
5533 * so using TASK_SIZE as limit.
5534 */
5535static u64 perf_ustack_task_size(struct pt_regs *regs)
5536{
5537 unsigned long addr = perf_user_stack_pointer(regs);
5538
5539 if (!addr || addr >= TASK_SIZE)
5540 return 0;
5541
5542 return TASK_SIZE - addr;
5543}
5544
5545static u16
5546perf_sample_ustack_size(u16 stack_size, u16 header_size,
5547 struct pt_regs *regs)
5548{
5549 u64 task_size;
5550
5551 /* No regs, no stack pointer, no dump. */
5552 if (!regs)
5553 return 0;
5554
5555 /*
5556 * Check if we fit in with the requested stack size into the:
5557 * - TASK_SIZE
5558 * If we don't, we limit the size to the TASK_SIZE.
5559 *
5560 * - remaining sample size
5561 * If we don't, we customize the stack size to
5562 * fit in to the remaining sample size.
5563 */
5564
5565 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5566 stack_size = min(stack_size, (u16) task_size);
5567
5568 /* Current header size plus static size and dynamic size. */
5569 header_size += 2 * sizeof(u64);
5570
5571 /* Do we fit in with the current stack dump size? */
5572 if ((u16) (header_size + stack_size) < header_size) {
5573 /*
5574 * If we overflow the maximum size for the sample,
5575 * we customize the stack dump size to fit in.
5576 */
5577 stack_size = USHRT_MAX - header_size - sizeof(u64);
5578 stack_size = round_up(stack_size, sizeof(u64));
5579 }
5580
5581 return stack_size;
5582}
5583
5584static void
5585perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5586 struct pt_regs *regs)
5587{
5588 /* Case of a kernel thread, nothing to dump */
5589 if (!regs) {
5590 u64 size = 0;
5591 perf_output_put(handle, size);
5592 } else {
5593 unsigned long sp;
5594 unsigned int rem;
5595 u64 dyn_size;
5596
5597 /*
5598 * We dump:
5599 * static size
5600 * - the size requested by user or the best one we can fit
5601 * in to the sample max size
5602 * data
5603 * - user stack dump data
5604 * dynamic size
5605 * - the actual dumped size
5606 */
5607
5608 /* Static size. */
5609 perf_output_put(handle, dump_size);
5610
5611 /* Data. */
5612 sp = perf_user_stack_pointer(regs);
5613 rem = __output_copy_user(handle, (void *) sp, dump_size);
5614 dyn_size = dump_size - rem;
5615
5616 perf_output_skip(handle, rem);
5617
5618 /* Dynamic size. */
5619 perf_output_put(handle, dyn_size);
5620 }
5621}
5622
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005623static void __perf_event_header__init_id(struct perf_event_header *header,
5624 struct perf_sample_data *data,
5625 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005626{
5627 u64 sample_type = event->attr.sample_type;
5628
5629 data->type = sample_type;
5630 header->size += event->id_header_size;
5631
5632 if (sample_type & PERF_SAMPLE_TID) {
5633 /* namespace issues */
5634 data->tid_entry.pid = perf_event_pid(event, current);
5635 data->tid_entry.tid = perf_event_tid(event, current);
5636 }
5637
5638 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005639 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005640
Adrian Hunterff3d5272013-08-27 11:23:07 +03005641 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005642 data->id = primary_event_id(event);
5643
5644 if (sample_type & PERF_SAMPLE_STREAM_ID)
5645 data->stream_id = event->id;
5646
5647 if (sample_type & PERF_SAMPLE_CPU) {
5648 data->cpu_entry.cpu = raw_smp_processor_id();
5649 data->cpu_entry.reserved = 0;
5650 }
5651}
5652
Frederic Weisbecker76369132011-05-19 19:55:04 +02005653void perf_event_header__init_id(struct perf_event_header *header,
5654 struct perf_sample_data *data,
5655 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005656{
5657 if (event->attr.sample_id_all)
5658 __perf_event_header__init_id(header, data, event);
5659}
5660
5661static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5662 struct perf_sample_data *data)
5663{
5664 u64 sample_type = data->type;
5665
5666 if (sample_type & PERF_SAMPLE_TID)
5667 perf_output_put(handle, data->tid_entry);
5668
5669 if (sample_type & PERF_SAMPLE_TIME)
5670 perf_output_put(handle, data->time);
5671
5672 if (sample_type & PERF_SAMPLE_ID)
5673 perf_output_put(handle, data->id);
5674
5675 if (sample_type & PERF_SAMPLE_STREAM_ID)
5676 perf_output_put(handle, data->stream_id);
5677
5678 if (sample_type & PERF_SAMPLE_CPU)
5679 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005680
5681 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5682 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005683}
5684
Frederic Weisbecker76369132011-05-19 19:55:04 +02005685void perf_event__output_id_sample(struct perf_event *event,
5686 struct perf_output_handle *handle,
5687 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005688{
5689 if (event->attr.sample_id_all)
5690 __perf_event__output_id_sample(handle, sample);
5691}
5692
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005693static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005694 struct perf_event *event,
5695 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005696{
5697 u64 read_format = event->attr.read_format;
5698 u64 values[4];
5699 int n = 0;
5700
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005701 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005703 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005704 atomic64_read(&event->child_total_time_enabled);
5705 }
5706 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005707 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005708 atomic64_read(&event->child_total_time_running);
5709 }
5710 if (read_format & PERF_FORMAT_ID)
5711 values[n++] = primary_event_id(event);
5712
Frederic Weisbecker76369132011-05-19 19:55:04 +02005713 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005714}
5715
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005716static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005717 struct perf_event *event,
5718 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005719{
5720 struct perf_event *leader = event->group_leader, *sub;
5721 u64 read_format = event->attr.read_format;
5722 u64 values[5];
5723 int n = 0;
5724
5725 values[n++] = 1 + leader->nr_siblings;
5726
5727 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005728 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005729
5730 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005731 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005732
5733 if (leader != event)
5734 leader->pmu->read(leader);
5735
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005736 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005737 if (read_format & PERF_FORMAT_ID)
5738 values[n++] = primary_event_id(leader);
5739
Frederic Weisbecker76369132011-05-19 19:55:04 +02005740 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005741
5742 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5743 n = 0;
5744
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005745 if ((sub != event) &&
5746 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005747 sub->pmu->read(sub);
5748
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005749 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005750 if (read_format & PERF_FORMAT_ID)
5751 values[n++] = primary_event_id(sub);
5752
Frederic Weisbecker76369132011-05-19 19:55:04 +02005753 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005754 }
5755}
5756
Stephane Eranianeed01522010-10-26 16:08:01 +02005757#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5758 PERF_FORMAT_TOTAL_TIME_RUNNING)
5759
Peter Zijlstraba5213a2017-05-30 11:45:12 +02005760/*
5761 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
5762 *
5763 * The problem is that its both hard and excessively expensive to iterate the
5764 * child list, not to mention that its impossible to IPI the children running
5765 * on another CPU, from interrupt/NMI context.
5766 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005767static void perf_output_read(struct perf_output_handle *handle,
5768 struct perf_event *event)
5769{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005770 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005771 u64 read_format = event->attr.read_format;
5772
5773 /*
5774 * compute total_time_enabled, total_time_running
5775 * based on snapshot values taken when the event
5776 * was last scheduled in.
5777 *
5778 * we cannot simply called update_context_time()
5779 * because of locking issue as we are called in
5780 * NMI context
5781 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005782 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005783 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005784
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005785 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005786 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005787 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005788 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005789}
5790
5791void perf_output_sample(struct perf_output_handle *handle,
5792 struct perf_event_header *header,
5793 struct perf_sample_data *data,
5794 struct perf_event *event)
5795{
5796 u64 sample_type = data->type;
5797
5798 perf_output_put(handle, *header);
5799
Adrian Hunterff3d5272013-08-27 11:23:07 +03005800 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5801 perf_output_put(handle, data->id);
5802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005803 if (sample_type & PERF_SAMPLE_IP)
5804 perf_output_put(handle, data->ip);
5805
5806 if (sample_type & PERF_SAMPLE_TID)
5807 perf_output_put(handle, data->tid_entry);
5808
5809 if (sample_type & PERF_SAMPLE_TIME)
5810 perf_output_put(handle, data->time);
5811
5812 if (sample_type & PERF_SAMPLE_ADDR)
5813 perf_output_put(handle, data->addr);
5814
5815 if (sample_type & PERF_SAMPLE_ID)
5816 perf_output_put(handle, data->id);
5817
5818 if (sample_type & PERF_SAMPLE_STREAM_ID)
5819 perf_output_put(handle, data->stream_id);
5820
5821 if (sample_type & PERF_SAMPLE_CPU)
5822 perf_output_put(handle, data->cpu_entry);
5823
5824 if (sample_type & PERF_SAMPLE_PERIOD)
5825 perf_output_put(handle, data->period);
5826
5827 if (sample_type & PERF_SAMPLE_READ)
5828 perf_output_read(handle, event);
5829
5830 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01005831 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005832
Jiri Olsa99e818c2018-01-07 17:03:50 +01005833 size += data->callchain->nr;
5834 size *= sizeof(u64);
5835 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005836 }
5837
5838 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005839 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005840
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005841 if (raw) {
5842 struct perf_raw_frag *frag = &raw->frag;
5843
5844 perf_output_put(handle, raw->size);
5845 do {
5846 if (frag->copy) {
5847 __output_custom(handle, frag->copy,
5848 frag->data, frag->size);
5849 } else {
5850 __output_copy(handle, frag->data,
5851 frag->size);
5852 }
5853 if (perf_raw_frag_last(frag))
5854 break;
5855 frag = frag->next;
5856 } while (1);
5857 if (frag->pad)
5858 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005859 } else {
5860 struct {
5861 u32 size;
5862 u32 data;
5863 } raw = {
5864 .size = sizeof(u32),
5865 .data = 0,
5866 };
5867 perf_output_put(handle, raw);
5868 }
5869 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005870
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005871 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5872 if (data->br_stack) {
5873 size_t size;
5874
5875 size = data->br_stack->nr
5876 * sizeof(struct perf_branch_entry);
5877
5878 perf_output_put(handle, data->br_stack->nr);
5879 perf_output_copy(handle, data->br_stack->entries, size);
5880 } else {
5881 /*
5882 * we always store at least the value of nr
5883 */
5884 u64 nr = 0;
5885 perf_output_put(handle, nr);
5886 }
5887 }
Jiri Olsa40189942012-08-07 15:20:37 +02005888
5889 if (sample_type & PERF_SAMPLE_REGS_USER) {
5890 u64 abi = data->regs_user.abi;
5891
5892 /*
5893 * If there are no regs to dump, notice it through
5894 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5895 */
5896 perf_output_put(handle, abi);
5897
5898 if (abi) {
5899 u64 mask = event->attr.sample_regs_user;
5900 perf_output_sample_regs(handle,
5901 data->regs_user.regs,
5902 mask);
5903 }
5904 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005905
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005906 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005907 perf_output_sample_ustack(handle,
5908 data->stack_user_size,
5909 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005910 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005911
5912 if (sample_type & PERF_SAMPLE_WEIGHT)
5913 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005914
5915 if (sample_type & PERF_SAMPLE_DATA_SRC)
5916 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005917
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005918 if (sample_type & PERF_SAMPLE_TRANSACTION)
5919 perf_output_put(handle, data->txn);
5920
Stephane Eranian60e23642014-09-24 13:48:37 +02005921 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5922 u64 abi = data->regs_intr.abi;
5923 /*
5924 * If there are no regs to dump, notice it through
5925 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5926 */
5927 perf_output_put(handle, abi);
5928
5929 if (abi) {
5930 u64 mask = event->attr.sample_regs_intr;
5931
5932 perf_output_sample_regs(handle,
5933 data->regs_intr.regs,
5934 mask);
5935 }
5936 }
5937
Kan Liangfc7ce9c2017-08-28 20:52:49 -04005938 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
5939 perf_output_put(handle, data->phys_addr);
5940
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005941 if (!event->attr.watermark) {
5942 int wakeup_events = event->attr.wakeup_events;
5943
5944 if (wakeup_events) {
5945 struct ring_buffer *rb = handle->rb;
5946 int events = local_inc_return(&rb->events);
5947
5948 if (events >= wakeup_events) {
5949 local_sub(wakeup_events, &rb->events);
5950 local_inc(&rb->wakeup);
5951 }
5952 }
5953 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005954}
5955
Kan Liangfc7ce9c2017-08-28 20:52:49 -04005956static u64 perf_virt_to_phys(u64 virt)
5957{
5958 u64 phys_addr = 0;
5959 struct page *p = NULL;
5960
5961 if (!virt)
5962 return 0;
5963
5964 if (virt >= TASK_SIZE) {
5965 /* If it's vmalloc()d memory, leave phys_addr as 0 */
5966 if (virt_addr_valid((void *)(uintptr_t)virt) &&
5967 !(virt >= VMALLOC_START && virt < VMALLOC_END))
5968 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
5969 } else {
5970 /*
5971 * Walking the pages tables for user address.
5972 * Interrupts are disabled, so it prevents any tear down
5973 * of the page tables.
5974 * Try IRQ-safe __get_user_pages_fast first.
5975 * If failed, leave phys_addr as 0.
5976 */
5977 if ((current->mm != NULL) &&
5978 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
5979 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
5980
5981 if (p)
5982 put_page(p);
5983 }
5984
5985 return phys_addr;
5986}
5987
Jiri Olsa99e818c2018-01-07 17:03:50 +01005988static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
5989
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01005990static struct perf_callchain_entry *
5991perf_callchain(struct perf_event *event, struct pt_regs *regs)
5992{
5993 bool kernel = !event->attr.exclude_callchain_kernel;
5994 bool user = !event->attr.exclude_callchain_user;
5995 /* Disallow cross-task user callchains. */
5996 bool crosstask = event->ctx->task && event->ctx->task != current;
5997 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01005998 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01005999
6000 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01006001 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006002
Jiri Olsa99e818c2018-01-07 17:03:50 +01006003 callchain = get_perf_callchain(regs, 0, kernel, user,
6004 max_stack, crosstask, true);
6005 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006006}
6007
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006008void perf_prepare_sample(struct perf_event_header *header,
6009 struct perf_sample_data *data,
6010 struct perf_event *event,
6011 struct pt_regs *regs)
6012{
6013 u64 sample_type = event->attr.sample_type;
6014
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006015 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006016 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006017
6018 header->misc = 0;
6019 header->misc |= perf_misc_flags(regs);
6020
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006021 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006022
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006023 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006024 data->ip = perf_instruction_pointer(regs);
6025
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006026 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6027 int size = 1;
6028
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006029 data->callchain = perf_callchain(event, regs);
Jiri Olsa99e818c2018-01-07 17:03:50 +01006030 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006031
6032 header->size += size * sizeof(u64);
6033 }
6034
6035 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006036 struct perf_raw_record *raw = data->raw;
6037 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006038
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006039 if (raw) {
6040 struct perf_raw_frag *frag = &raw->frag;
6041 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006042
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006043 do {
6044 sum += frag->size;
6045 if (perf_raw_frag_last(frag))
6046 break;
6047 frag = frag->next;
6048 } while (1);
6049
6050 size = round_up(sum + sizeof(u32), sizeof(u64));
6051 raw->size = size - sizeof(u32);
6052 frag->pad = raw->size - sum;
6053 } else {
6054 size = sizeof(u64);
6055 }
6056
6057 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006058 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006059
6060 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6061 int size = sizeof(u64); /* nr */
6062 if (data->br_stack) {
6063 size += data->br_stack->nr
6064 * sizeof(struct perf_branch_entry);
6065 }
6066 header->size += size;
6067 }
Jiri Olsa40189942012-08-07 15:20:37 +02006068
Peter Zijlstra25657112014-09-24 13:48:42 +02006069 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006070 perf_sample_regs_user(&data->regs_user, regs,
6071 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006072
Jiri Olsa40189942012-08-07 15:20:37 +02006073 if (sample_type & PERF_SAMPLE_REGS_USER) {
6074 /* regs dump ABI info */
6075 int size = sizeof(u64);
6076
Jiri Olsa40189942012-08-07 15:20:37 +02006077 if (data->regs_user.regs) {
6078 u64 mask = event->attr.sample_regs_user;
6079 size += hweight64(mask) * sizeof(u64);
6080 }
6081
6082 header->size += size;
6083 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006084
6085 if (sample_type & PERF_SAMPLE_STACK_USER) {
6086 /*
6087 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
6088 * processed as the last one or have additional check added
6089 * in case new sample type is added, because we could eat
6090 * up the rest of the sample size.
6091 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006092 u16 stack_size = event->attr.sample_stack_user;
6093 u16 size = sizeof(u64);
6094
Jiri Olsac5ebced2012-08-07 15:20:40 +02006095 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006096 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006097
6098 /*
6099 * If there is something to dump, add space for the dump
6100 * itself and for the field that tells the dynamic size,
6101 * which is how many have been actually dumped.
6102 */
6103 if (stack_size)
6104 size += sizeof(u64) + stack_size;
6105
6106 data->stack_user_size = stack_size;
6107 header->size += size;
6108 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006109
6110 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6111 /* regs dump ABI info */
6112 int size = sizeof(u64);
6113
6114 perf_sample_regs_intr(&data->regs_intr, regs);
6115
6116 if (data->regs_intr.regs) {
6117 u64 mask = event->attr.sample_regs_intr;
6118
6119 size += hweight64(mask) * sizeof(u64);
6120 }
6121
6122 header->size += size;
6123 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006124
6125 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6126 data->phys_addr = perf_virt_to_phys(data->addr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006127}
6128
Wang Nan9ecda412016-04-05 14:11:18 +00006129static void __always_inline
6130__perf_event_output(struct perf_event *event,
6131 struct perf_sample_data *data,
6132 struct pt_regs *regs,
6133 int (*output_begin)(struct perf_output_handle *,
6134 struct perf_event *,
6135 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006136{
6137 struct perf_output_handle handle;
6138 struct perf_event_header header;
6139
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006140 /* protect the callchain buffers */
6141 rcu_read_lock();
6142
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006143 perf_prepare_sample(&header, data, event, regs);
6144
Wang Nan9ecda412016-04-05 14:11:18 +00006145 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006146 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006147
6148 perf_output_sample(&handle, &header, data, event);
6149
6150 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006151
6152exit:
6153 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006154}
6155
Wang Nan9ecda412016-04-05 14:11:18 +00006156void
6157perf_event_output_forward(struct perf_event *event,
6158 struct perf_sample_data *data,
6159 struct pt_regs *regs)
6160{
6161 __perf_event_output(event, data, regs, perf_output_begin_forward);
6162}
6163
6164void
6165perf_event_output_backward(struct perf_event *event,
6166 struct perf_sample_data *data,
6167 struct pt_regs *regs)
6168{
6169 __perf_event_output(event, data, regs, perf_output_begin_backward);
6170}
6171
6172void
6173perf_event_output(struct perf_event *event,
6174 struct perf_sample_data *data,
6175 struct pt_regs *regs)
6176{
6177 __perf_event_output(event, data, regs, perf_output_begin);
6178}
6179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006180/*
6181 * read event_id
6182 */
6183
6184struct perf_read_event {
6185 struct perf_event_header header;
6186
6187 u32 pid;
6188 u32 tid;
6189};
6190
6191static void
6192perf_event_read_event(struct perf_event *event,
6193 struct task_struct *task)
6194{
6195 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006196 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006197 struct perf_read_event read_event = {
6198 .header = {
6199 .type = PERF_RECORD_READ,
6200 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006201 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006202 },
6203 .pid = perf_event_pid(event, task),
6204 .tid = perf_event_tid(event, task),
6205 };
6206 int ret;
6207
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006208 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006209 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006210 if (ret)
6211 return;
6212
6213 perf_output_put(&handle, read_event);
6214 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006215 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006216
6217 perf_output_end(&handle);
6218}
6219
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006220typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006221
6222static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006223perf_iterate_ctx(struct perf_event_context *ctx,
6224 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006225 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006226{
6227 struct perf_event *event;
6228
6229 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006230 if (!all) {
6231 if (event->state < PERF_EVENT_STATE_INACTIVE)
6232 continue;
6233 if (!event_filter_match(event))
6234 continue;
6235 }
6236
Jiri Olsa67516842013-07-09 18:56:31 +02006237 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006238 }
6239}
6240
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006241static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006242{
6243 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6244 struct perf_event *event;
6245
6246 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006247 /*
6248 * Skip events that are not fully formed yet; ensure that
6249 * if we observe event->ctx, both event and ctx will be
6250 * complete enough. See perf_install_in_context().
6251 */
6252 if (!smp_load_acquire(&event->ctx))
6253 continue;
6254
Kan Liangf2fb6be2016-03-23 11:24:37 -07006255 if (event->state < PERF_EVENT_STATE_INACTIVE)
6256 continue;
6257 if (!event_filter_match(event))
6258 continue;
6259 output(event, data);
6260 }
6261}
6262
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006263/*
6264 * Iterate all events that need to receive side-band events.
6265 *
6266 * For new callers; ensure that account_pmu_sb_event() includes
6267 * your event, otherwise it might not get delivered.
6268 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006269static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006270perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006271 struct perf_event_context *task_ctx)
6272{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006273 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006274 int ctxn;
6275
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006276 rcu_read_lock();
6277 preempt_disable();
6278
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006279 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006280 * If we have task_ctx != NULL we only notify the task context itself.
6281 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006282 * context.
6283 */
6284 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006285 perf_iterate_ctx(task_ctx, output, data, false);
6286 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006287 }
6288
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006289 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006290
6291 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006292 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6293 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006294 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006295 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006296done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006297 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006298 rcu_read_unlock();
6299}
6300
Alexander Shishkin375637b2016-04-27 18:44:46 +03006301/*
6302 * Clear all file-based filters at exec, they'll have to be
6303 * re-instated when/if these objects are mmapped again.
6304 */
6305static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6306{
6307 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6308 struct perf_addr_filter *filter;
6309 unsigned int restart = 0, count = 0;
6310 unsigned long flags;
6311
6312 if (!has_addr_filter(event))
6313 return;
6314
6315 raw_spin_lock_irqsave(&ifh->lock, flags);
6316 list_for_each_entry(filter, &ifh->list, entry) {
6317 if (filter->inode) {
6318 event->addr_filters_offs[count] = 0;
6319 restart++;
6320 }
6321
6322 count++;
6323 }
6324
6325 if (restart)
6326 event->addr_filters_gen++;
6327 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6328
6329 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006330 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006331}
6332
6333void perf_event_exec(void)
6334{
6335 struct perf_event_context *ctx;
6336 int ctxn;
6337
6338 rcu_read_lock();
6339 for_each_task_context_nr(ctxn) {
6340 ctx = current->perf_event_ctxp[ctxn];
6341 if (!ctx)
6342 continue;
6343
6344 perf_event_enable_on_exec(ctxn);
6345
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006346 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006347 true);
6348 }
6349 rcu_read_unlock();
6350}
6351
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006352struct remote_output {
6353 struct ring_buffer *rb;
6354 int err;
6355};
6356
6357static void __perf_event_output_stop(struct perf_event *event, void *data)
6358{
6359 struct perf_event *parent = event->parent;
6360 struct remote_output *ro = data;
6361 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006362 struct stop_event_data sd = {
6363 .event = event,
6364 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006365
6366 if (!has_aux(event))
6367 return;
6368
6369 if (!parent)
6370 parent = event;
6371
6372 /*
6373 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006374 * ring-buffer, but it will be the child that's actually using it.
6375 *
6376 * We are using event::rb to determine if the event should be stopped,
6377 * however this may race with ring_buffer_attach() (through set_output),
6378 * which will make us skip the event that actually needs to be stopped.
6379 * So ring_buffer_attach() has to stop an aux event before re-assigning
6380 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006381 */
6382 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006383 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006384}
6385
6386static int __perf_pmu_output_stop(void *info)
6387{
6388 struct perf_event *event = info;
6389 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006390 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006391 struct remote_output ro = {
6392 .rb = event->rb,
6393 };
6394
6395 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006396 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006397 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006398 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006399 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006400 rcu_read_unlock();
6401
6402 return ro.err;
6403}
6404
6405static void perf_pmu_output_stop(struct perf_event *event)
6406{
6407 struct perf_event *iter;
6408 int err, cpu;
6409
6410restart:
6411 rcu_read_lock();
6412 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6413 /*
6414 * For per-CPU events, we need to make sure that neither they
6415 * nor their children are running; for cpu==-1 events it's
6416 * sufficient to stop the event itself if it's active, since
6417 * it can't have children.
6418 */
6419 cpu = iter->cpu;
6420 if (cpu == -1)
6421 cpu = READ_ONCE(iter->oncpu);
6422
6423 if (cpu == -1)
6424 continue;
6425
6426 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6427 if (err == -EAGAIN) {
6428 rcu_read_unlock();
6429 goto restart;
6430 }
6431 }
6432 rcu_read_unlock();
6433}
6434
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006435/*
6436 * task tracking -- fork/exit
6437 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006438 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006439 */
6440
6441struct perf_task_event {
6442 struct task_struct *task;
6443 struct perf_event_context *task_ctx;
6444
6445 struct {
6446 struct perf_event_header header;
6447
6448 u32 pid;
6449 u32 ppid;
6450 u32 tid;
6451 u32 ptid;
6452 u64 time;
6453 } event_id;
6454};
6455
Jiri Olsa67516842013-07-09 18:56:31 +02006456static int perf_event_task_match(struct perf_event *event)
6457{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006458 return event->attr.comm || event->attr.mmap ||
6459 event->attr.mmap2 || event->attr.mmap_data ||
6460 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006461}
6462
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006463static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006464 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006465{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006466 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006467 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006468 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006469 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006470 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006471
Jiri Olsa67516842013-07-09 18:56:31 +02006472 if (!perf_event_task_match(event))
6473 return;
6474
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006475 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006476
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006477 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006478 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006479 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006480 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006481
6482 task_event->event_id.pid = perf_event_pid(event, task);
6483 task_event->event_id.ppid = perf_event_pid(event, current);
6484
6485 task_event->event_id.tid = perf_event_tid(event, task);
6486 task_event->event_id.ptid = perf_event_tid(event, current);
6487
Peter Zijlstra34f43922015-02-20 14:05:38 +01006488 task_event->event_id.time = perf_event_clock(event);
6489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006490 perf_output_put(&handle, task_event->event_id);
6491
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006492 perf_event__output_id_sample(event, &handle, &sample);
6493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006495out:
6496 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006497}
6498
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499static void perf_event_task(struct task_struct *task,
6500 struct perf_event_context *task_ctx,
6501 int new)
6502{
6503 struct perf_task_event task_event;
6504
6505 if (!atomic_read(&nr_comm_events) &&
6506 !atomic_read(&nr_mmap_events) &&
6507 !atomic_read(&nr_task_events))
6508 return;
6509
6510 task_event = (struct perf_task_event){
6511 .task = task,
6512 .task_ctx = task_ctx,
6513 .event_id = {
6514 .header = {
6515 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6516 .misc = 0,
6517 .size = sizeof(task_event.event_id),
6518 },
6519 /* .pid */
6520 /* .ppid */
6521 /* .tid */
6522 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006523 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006524 },
6525 };
6526
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006527 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006528 &task_event,
6529 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006530}
6531
6532void perf_event_fork(struct task_struct *task)
6533{
6534 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05306535 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006536}
6537
6538/*
6539 * comm tracking
6540 */
6541
6542struct perf_comm_event {
6543 struct task_struct *task;
6544 char *comm;
6545 int comm_size;
6546
6547 struct {
6548 struct perf_event_header header;
6549
6550 u32 pid;
6551 u32 tid;
6552 } event_id;
6553};
6554
Jiri Olsa67516842013-07-09 18:56:31 +02006555static int perf_event_comm_match(struct perf_event *event)
6556{
6557 return event->attr.comm;
6558}
6559
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006560static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006561 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006562{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006563 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006564 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006565 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006566 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006567 int ret;
6568
Jiri Olsa67516842013-07-09 18:56:31 +02006569 if (!perf_event_comm_match(event))
6570 return;
6571
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006572 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6573 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006574 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006575
6576 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006577 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006578
6579 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6580 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6581
6582 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006583 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006584 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006585
6586 perf_event__output_id_sample(event, &handle, &sample);
6587
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006588 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006589out:
6590 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006591}
6592
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006593static void perf_event_comm_event(struct perf_comm_event *comm_event)
6594{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006596 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006597
6598 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006599 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006600 size = ALIGN(strlen(comm)+1, sizeof(u64));
6601
6602 comm_event->comm = comm;
6603 comm_event->comm_size = size;
6604
6605 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006606
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006607 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006608 comm_event,
6609 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006610}
6611
Adrian Hunter82b89772014-05-28 11:45:04 +03006612void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006613{
6614 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006615
6616 if (!atomic_read(&nr_comm_events))
6617 return;
6618
6619 comm_event = (struct perf_comm_event){
6620 .task = task,
6621 /* .comm */
6622 /* .comm_size */
6623 .event_id = {
6624 .header = {
6625 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006626 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006627 /* .size */
6628 },
6629 /* .pid */
6630 /* .tid */
6631 },
6632 };
6633
6634 perf_event_comm_event(&comm_event);
6635}
6636
6637/*
Hari Bathinie4222672017-03-08 02:11:36 +05306638 * namespaces tracking
6639 */
6640
6641struct perf_namespaces_event {
6642 struct task_struct *task;
6643
6644 struct {
6645 struct perf_event_header header;
6646
6647 u32 pid;
6648 u32 tid;
6649 u64 nr_namespaces;
6650 struct perf_ns_link_info link_info[NR_NAMESPACES];
6651 } event_id;
6652};
6653
6654static int perf_event_namespaces_match(struct perf_event *event)
6655{
6656 return event->attr.namespaces;
6657}
6658
6659static void perf_event_namespaces_output(struct perf_event *event,
6660 void *data)
6661{
6662 struct perf_namespaces_event *namespaces_event = data;
6663 struct perf_output_handle handle;
6664 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02006665 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05306666 int ret;
6667
6668 if (!perf_event_namespaces_match(event))
6669 return;
6670
6671 perf_event_header__init_id(&namespaces_event->event_id.header,
6672 &sample, event);
6673 ret = perf_output_begin(&handle, event,
6674 namespaces_event->event_id.header.size);
6675 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02006676 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05306677
6678 namespaces_event->event_id.pid = perf_event_pid(event,
6679 namespaces_event->task);
6680 namespaces_event->event_id.tid = perf_event_tid(event,
6681 namespaces_event->task);
6682
6683 perf_output_put(&handle, namespaces_event->event_id);
6684
6685 perf_event__output_id_sample(event, &handle, &sample);
6686
6687 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02006688out:
6689 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05306690}
6691
6692static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
6693 struct task_struct *task,
6694 const struct proc_ns_operations *ns_ops)
6695{
6696 struct path ns_path;
6697 struct inode *ns_inode;
6698 void *error;
6699
6700 error = ns_get_path(&ns_path, task, ns_ops);
6701 if (!error) {
6702 ns_inode = ns_path.dentry->d_inode;
6703 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
6704 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03006705 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05306706 }
6707}
6708
6709void perf_event_namespaces(struct task_struct *task)
6710{
6711 struct perf_namespaces_event namespaces_event;
6712 struct perf_ns_link_info *ns_link_info;
6713
6714 if (!atomic_read(&nr_namespaces_events))
6715 return;
6716
6717 namespaces_event = (struct perf_namespaces_event){
6718 .task = task,
6719 .event_id = {
6720 .header = {
6721 .type = PERF_RECORD_NAMESPACES,
6722 .misc = 0,
6723 .size = sizeof(namespaces_event.event_id),
6724 },
6725 /* .pid */
6726 /* .tid */
6727 .nr_namespaces = NR_NAMESPACES,
6728 /* .link_info[NR_NAMESPACES] */
6729 },
6730 };
6731
6732 ns_link_info = namespaces_event.event_id.link_info;
6733
6734 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
6735 task, &mntns_operations);
6736
6737#ifdef CONFIG_USER_NS
6738 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
6739 task, &userns_operations);
6740#endif
6741#ifdef CONFIG_NET_NS
6742 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
6743 task, &netns_operations);
6744#endif
6745#ifdef CONFIG_UTS_NS
6746 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
6747 task, &utsns_operations);
6748#endif
6749#ifdef CONFIG_IPC_NS
6750 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
6751 task, &ipcns_operations);
6752#endif
6753#ifdef CONFIG_PID_NS
6754 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
6755 task, &pidns_operations);
6756#endif
6757#ifdef CONFIG_CGROUPS
6758 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
6759 task, &cgroupns_operations);
6760#endif
6761
6762 perf_iterate_sb(perf_event_namespaces_output,
6763 &namespaces_event,
6764 NULL);
6765}
6766
6767/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006768 * mmap tracking
6769 */
6770
6771struct perf_mmap_event {
6772 struct vm_area_struct *vma;
6773
6774 const char *file_name;
6775 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006776 int maj, min;
6777 u64 ino;
6778 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006779 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006780
6781 struct {
6782 struct perf_event_header header;
6783
6784 u32 pid;
6785 u32 tid;
6786 u64 start;
6787 u64 len;
6788 u64 pgoff;
6789 } event_id;
6790};
6791
Jiri Olsa67516842013-07-09 18:56:31 +02006792static int perf_event_mmap_match(struct perf_event *event,
6793 void *data)
6794{
6795 struct perf_mmap_event *mmap_event = data;
6796 struct vm_area_struct *vma = mmap_event->vma;
6797 int executable = vma->vm_flags & VM_EXEC;
6798
6799 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006800 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006801}
6802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006803static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006804 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006805{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006806 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006807 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006808 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006809 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006810 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006811
Jiri Olsa67516842013-07-09 18:56:31 +02006812 if (!perf_event_mmap_match(event, data))
6813 return;
6814
Stephane Eranian13d7a242013-08-21 12:10:24 +02006815 if (event->attr.mmap2) {
6816 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6817 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6818 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6819 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006820 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006821 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6822 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006823 }
6824
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006825 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6826 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006827 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006829 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006830
6831 mmap_event->event_id.pid = perf_event_pid(event, current);
6832 mmap_event->event_id.tid = perf_event_tid(event, current);
6833
6834 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006835
6836 if (event->attr.mmap2) {
6837 perf_output_put(&handle, mmap_event->maj);
6838 perf_output_put(&handle, mmap_event->min);
6839 perf_output_put(&handle, mmap_event->ino);
6840 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006841 perf_output_put(&handle, mmap_event->prot);
6842 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006843 }
6844
Frederic Weisbecker76369132011-05-19 19:55:04 +02006845 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006846 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006847
6848 perf_event__output_id_sample(event, &handle, &sample);
6849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006850 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006851out:
6852 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006853}
6854
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006855static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6856{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006857 struct vm_area_struct *vma = mmap_event->vma;
6858 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006859 int maj = 0, min = 0;
6860 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006861 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006862 unsigned int size;
6863 char tmp[16];
6864 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006865 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006866
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01006867 if (vma->vm_flags & VM_READ)
6868 prot |= PROT_READ;
6869 if (vma->vm_flags & VM_WRITE)
6870 prot |= PROT_WRITE;
6871 if (vma->vm_flags & VM_EXEC)
6872 prot |= PROT_EXEC;
6873
6874 if (vma->vm_flags & VM_MAYSHARE)
6875 flags = MAP_SHARED;
6876 else
6877 flags = MAP_PRIVATE;
6878
6879 if (vma->vm_flags & VM_DENYWRITE)
6880 flags |= MAP_DENYWRITE;
6881 if (vma->vm_flags & VM_MAYEXEC)
6882 flags |= MAP_EXECUTABLE;
6883 if (vma->vm_flags & VM_LOCKED)
6884 flags |= MAP_LOCKED;
6885 if (vma->vm_flags & VM_HUGETLB)
6886 flags |= MAP_HUGETLB;
6887
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006888 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006889 struct inode *inode;
6890 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006891
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006892 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006893 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006894 name = "//enomem";
6895 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006896 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006898 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006899 * need to add enough zero bytes after the string to handle
6900 * the 64bit alignment we do later.
6901 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006902 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006904 name = "//toolong";
6905 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006906 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006907 inode = file_inode(vma->vm_file);
6908 dev = inode->i_sb->s_dev;
6909 ino = inode->i_ino;
6910 gen = inode->i_generation;
6911 maj = MAJOR(dev);
6912 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006913
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006914 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006915 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006916 if (vma->vm_ops && vma->vm_ops->name) {
6917 name = (char *) vma->vm_ops->name(vma);
6918 if (name)
6919 goto cpy_name;
6920 }
6921
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006922 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006923 if (name)
6924 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006925
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006926 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006927 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006928 name = "[heap]";
6929 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006930 }
6931 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006932 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006933 name = "[stack]";
6934 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935 }
6936
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006937 name = "//anon";
6938 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006939 }
6940
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006941cpy_name:
6942 strlcpy(tmp, name, sizeof(tmp));
6943 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006944got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006945 /*
6946 * Since our buffer works in 8 byte units we need to align our string
6947 * size to a multiple of 8. However, we must guarantee the tail end is
6948 * zero'd out to avoid leaking random bits to userspace.
6949 */
6950 size = strlen(name)+1;
6951 while (!IS_ALIGNED(size, sizeof(u64)))
6952 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006953
6954 mmap_event->file_name = name;
6955 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006956 mmap_event->maj = maj;
6957 mmap_event->min = min;
6958 mmap_event->ino = ino;
6959 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006960 mmap_event->prot = prot;
6961 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006962
Stephane Eranian2fe85422013-01-24 16:10:39 +01006963 if (!(vma->vm_flags & VM_EXEC))
6964 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006966 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6967
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006968 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006969 mmap_event,
6970 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006971
6972 kfree(buf);
6973}
6974
Alexander Shishkin375637b2016-04-27 18:44:46 +03006975/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03006976 * Check whether inode and address range match filter criteria.
6977 */
6978static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6979 struct file *file, unsigned long offset,
6980 unsigned long size)
6981{
Al Viro45063092016-12-04 18:24:56 -05006982 if (filter->inode != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03006983 return false;
6984
6985 if (filter->offset > offset + size)
6986 return false;
6987
6988 if (filter->offset + filter->size < offset)
6989 return false;
6990
6991 return true;
6992}
6993
6994static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6995{
6996 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6997 struct vm_area_struct *vma = data;
6998 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6999 struct file *file = vma->vm_file;
7000 struct perf_addr_filter *filter;
7001 unsigned int restart = 0, count = 0;
7002
7003 if (!has_addr_filter(event))
7004 return;
7005
7006 if (!file)
7007 return;
7008
7009 raw_spin_lock_irqsave(&ifh->lock, flags);
7010 list_for_each_entry(filter, &ifh->list, entry) {
7011 if (perf_addr_filter_match(filter, file, off,
7012 vma->vm_end - vma->vm_start)) {
7013 event->addr_filters_offs[count] = vma->vm_start;
7014 restart++;
7015 }
7016
7017 count++;
7018 }
7019
7020 if (restart)
7021 event->addr_filters_gen++;
7022 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7023
7024 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007025 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007026}
7027
7028/*
7029 * Adjust all task's events' filters to the new vma
7030 */
7031static void perf_addr_filters_adjust(struct vm_area_struct *vma)
7032{
7033 struct perf_event_context *ctx;
7034 int ctxn;
7035
Mathieu Poirier12b40a22016-07-18 10:43:06 -06007036 /*
7037 * Data tracing isn't supported yet and as such there is no need
7038 * to keep track of anything that isn't related to executable code:
7039 */
7040 if (!(vma->vm_flags & VM_EXEC))
7041 return;
7042
Alexander Shishkin375637b2016-04-27 18:44:46 +03007043 rcu_read_lock();
7044 for_each_task_context_nr(ctxn) {
7045 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7046 if (!ctx)
7047 continue;
7048
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007049 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007050 }
7051 rcu_read_unlock();
7052}
7053
Eric B Munson3af9e852010-05-18 15:30:49 +01007054void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007055{
7056 struct perf_mmap_event mmap_event;
7057
7058 if (!atomic_read(&nr_mmap_events))
7059 return;
7060
7061 mmap_event = (struct perf_mmap_event){
7062 .vma = vma,
7063 /* .file_name */
7064 /* .file_size */
7065 .event_id = {
7066 .header = {
7067 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08007068 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007069 /* .size */
7070 },
7071 /* .pid */
7072 /* .tid */
7073 .start = vma->vm_start,
7074 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01007075 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007076 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02007077 /* .maj (attr_mmap2 only) */
7078 /* .min (attr_mmap2 only) */
7079 /* .ino (attr_mmap2 only) */
7080 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007081 /* .prot (attr_mmap2 only) */
7082 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007083 };
7084
Alexander Shishkin375637b2016-04-27 18:44:46 +03007085 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007086 perf_event_mmap_event(&mmap_event);
7087}
7088
Alexander Shishkin68db7e92015-01-14 14:18:15 +02007089void perf_event_aux_event(struct perf_event *event, unsigned long head,
7090 unsigned long size, u64 flags)
7091{
7092 struct perf_output_handle handle;
7093 struct perf_sample_data sample;
7094 struct perf_aux_event {
7095 struct perf_event_header header;
7096 u64 offset;
7097 u64 size;
7098 u64 flags;
7099 } rec = {
7100 .header = {
7101 .type = PERF_RECORD_AUX,
7102 .misc = 0,
7103 .size = sizeof(rec),
7104 },
7105 .offset = head,
7106 .size = size,
7107 .flags = flags,
7108 };
7109 int ret;
7110
7111 perf_event_header__init_id(&rec.header, &sample, event);
7112 ret = perf_output_begin(&handle, event, rec.header.size);
7113
7114 if (ret)
7115 return;
7116
7117 perf_output_put(&handle, rec);
7118 perf_event__output_id_sample(event, &handle, &sample);
7119
7120 perf_output_end(&handle);
7121}
7122
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007123/*
Kan Liangf38b0db2015-05-10 15:13:14 -04007124 * Lost/dropped samples logging
7125 */
7126void perf_log_lost_samples(struct perf_event *event, u64 lost)
7127{
7128 struct perf_output_handle handle;
7129 struct perf_sample_data sample;
7130 int ret;
7131
7132 struct {
7133 struct perf_event_header header;
7134 u64 lost;
7135 } lost_samples_event = {
7136 .header = {
7137 .type = PERF_RECORD_LOST_SAMPLES,
7138 .misc = 0,
7139 .size = sizeof(lost_samples_event),
7140 },
7141 .lost = lost,
7142 };
7143
7144 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
7145
7146 ret = perf_output_begin(&handle, event,
7147 lost_samples_event.header.size);
7148 if (ret)
7149 return;
7150
7151 perf_output_put(&handle, lost_samples_event);
7152 perf_event__output_id_sample(event, &handle, &sample);
7153 perf_output_end(&handle);
7154}
7155
7156/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03007157 * context_switch tracking
7158 */
7159
7160struct perf_switch_event {
7161 struct task_struct *task;
7162 struct task_struct *next_prev;
7163
7164 struct {
7165 struct perf_event_header header;
7166 u32 next_prev_pid;
7167 u32 next_prev_tid;
7168 } event_id;
7169};
7170
7171static int perf_event_switch_match(struct perf_event *event)
7172{
7173 return event->attr.context_switch;
7174}
7175
7176static void perf_event_switch_output(struct perf_event *event, void *data)
7177{
7178 struct perf_switch_event *se = data;
7179 struct perf_output_handle handle;
7180 struct perf_sample_data sample;
7181 int ret;
7182
7183 if (!perf_event_switch_match(event))
7184 return;
7185
7186 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7187 if (event->ctx->task) {
7188 se->event_id.header.type = PERF_RECORD_SWITCH;
7189 se->event_id.header.size = sizeof(se->event_id.header);
7190 } else {
7191 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7192 se->event_id.header.size = sizeof(se->event_id);
7193 se->event_id.next_prev_pid =
7194 perf_event_pid(event, se->next_prev);
7195 se->event_id.next_prev_tid =
7196 perf_event_tid(event, se->next_prev);
7197 }
7198
7199 perf_event_header__init_id(&se->event_id.header, &sample, event);
7200
7201 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7202 if (ret)
7203 return;
7204
7205 if (event->ctx->task)
7206 perf_output_put(&handle, se->event_id.header);
7207 else
7208 perf_output_put(&handle, se->event_id);
7209
7210 perf_event__output_id_sample(event, &handle, &sample);
7211
7212 perf_output_end(&handle);
7213}
7214
7215static void perf_event_switch(struct task_struct *task,
7216 struct task_struct *next_prev, bool sched_in)
7217{
7218 struct perf_switch_event switch_event;
7219
7220 /* N.B. caller checks nr_switch_events != 0 */
7221
7222 switch_event = (struct perf_switch_event){
7223 .task = task,
7224 .next_prev = next_prev,
7225 .event_id = {
7226 .header = {
7227 /* .type */
7228 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7229 /* .size */
7230 },
7231 /* .next_prev_pid */
7232 /* .next_prev_tid */
7233 },
7234 };
7235
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007236 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007237 &switch_event,
7238 NULL);
7239}
7240
7241/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007242 * IRQ throttle logging
7243 */
7244
7245static void perf_log_throttle(struct perf_event *event, int enable)
7246{
7247 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007248 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007249 int ret;
7250
7251 struct {
7252 struct perf_event_header header;
7253 u64 time;
7254 u64 id;
7255 u64 stream_id;
7256 } throttle_event = {
7257 .header = {
7258 .type = PERF_RECORD_THROTTLE,
7259 .misc = 0,
7260 .size = sizeof(throttle_event),
7261 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007262 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007263 .id = primary_event_id(event),
7264 .stream_id = event->id,
7265 };
7266
7267 if (enable)
7268 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7269
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007270 perf_event_header__init_id(&throttle_event.header, &sample, event);
7271
7272 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007273 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007274 if (ret)
7275 return;
7276
7277 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007278 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007279 perf_output_end(&handle);
7280}
7281
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007282void perf_event_itrace_started(struct perf_event *event)
7283{
7284 event->attach_state |= PERF_ATTACH_ITRACE;
7285}
7286
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007287static void perf_log_itrace_start(struct perf_event *event)
7288{
7289 struct perf_output_handle handle;
7290 struct perf_sample_data sample;
7291 struct perf_aux_event {
7292 struct perf_event_header header;
7293 u32 pid;
7294 u32 tid;
7295 } rec;
7296 int ret;
7297
7298 if (event->parent)
7299 event = event->parent;
7300
7301 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007302 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007303 return;
7304
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007305 rec.header.type = PERF_RECORD_ITRACE_START;
7306 rec.header.misc = 0;
7307 rec.header.size = sizeof(rec);
7308 rec.pid = perf_event_pid(event, current);
7309 rec.tid = perf_event_tid(event, current);
7310
7311 perf_event_header__init_id(&rec.header, &sample, event);
7312 ret = perf_output_begin(&handle, event, rec.header.size);
7313
7314 if (ret)
7315 return;
7316
7317 perf_output_put(&handle, rec);
7318 perf_event__output_id_sample(event, &handle, &sample);
7319
7320 perf_output_end(&handle);
7321}
7322
Jiri Olsa475113d2016-12-28 14:31:03 +01007323static int
7324__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007325{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007326 struct hw_perf_event *hwc = &event->hw;
7327 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01007328 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01007329
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007330 seq = __this_cpu_read(perf_throttled_seq);
7331 if (seq != hwc->interrupts_seq) {
7332 hwc->interrupts_seq = seq;
7333 hwc->interrupts = 1;
7334 } else {
7335 hwc->interrupts++;
7336 if (unlikely(throttle
7337 && hwc->interrupts >= max_samples_per_tick)) {
7338 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007339 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007340 hwc->interrupts = MAX_INTERRUPTS;
7341 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007342 ret = 1;
7343 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007344 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007345
7346 if (event->attr.freq) {
7347 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007348 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007349
Peter Zijlstraabd50712010-01-26 18:50:16 +01007350 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007351
Peter Zijlstraabd50712010-01-26 18:50:16 +01007352 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007353 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007354 }
7355
Jiri Olsa475113d2016-12-28 14:31:03 +01007356 return ret;
7357}
7358
7359int perf_event_account_interrupt(struct perf_event *event)
7360{
7361 return __perf_event_account_interrupt(event, 1);
7362}
7363
7364/*
7365 * Generic event overflow handling, sampling.
7366 */
7367
7368static int __perf_event_overflow(struct perf_event *event,
7369 int throttle, struct perf_sample_data *data,
7370 struct pt_regs *regs)
7371{
7372 int events = atomic_read(&event->event_limit);
7373 int ret = 0;
7374
7375 /*
7376 * Non-sampling counters might still use the PMI to fold short
7377 * hardware counters, ignore those.
7378 */
7379 if (unlikely(!is_sampling_event(event)))
7380 return 0;
7381
7382 ret = __perf_event_account_interrupt(event, throttle);
7383
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007384 /*
7385 * XXX event_limit might not quite work as expected on inherited
7386 * events
7387 */
7388
7389 event->pending_kill = POLL_IN;
7390 if (events && atomic_dec_and_test(&event->event_limit)) {
7391 ret = 1;
7392 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007393
7394 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007395 }
7396
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007397 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007398
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007399 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007400 event->pending_wakeup = 1;
7401 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007402 }
7403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007404 return ret;
7405}
7406
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007407int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007408 struct perf_sample_data *data,
7409 struct pt_regs *regs)
7410{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007411 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007412}
7413
7414/*
7415 * Generic software event infrastructure
7416 */
7417
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007418struct swevent_htable {
7419 struct swevent_hlist *swevent_hlist;
7420 struct mutex hlist_mutex;
7421 int hlist_refcount;
7422
7423 /* Recursion avoidance in each contexts */
7424 int recursion[PERF_NR_CONTEXTS];
7425};
7426
7427static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7428
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007429/*
7430 * We directly increment event->count and keep a second value in
7431 * event->hw.period_left to count intervals. This period event
7432 * is kept in the range [-sample_period, 0] so that we can use the
7433 * sign as trigger.
7434 */
7435
Jiri Olsaab573842013-05-01 17:25:44 +02007436u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007437{
7438 struct hw_perf_event *hwc = &event->hw;
7439 u64 period = hwc->last_period;
7440 u64 nr, offset;
7441 s64 old, val;
7442
7443 hwc->last_period = hwc->sample_period;
7444
7445again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007446 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007447 if (val < 0)
7448 return 0;
7449
7450 nr = div64_u64(period + val, period);
7451 offset = nr * period;
7452 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007453 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007454 goto again;
7455
7456 return nr;
7457}
7458
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007459static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007460 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007461 struct pt_regs *regs)
7462{
7463 struct hw_perf_event *hwc = &event->hw;
7464 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007465
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007466 if (!overflow)
7467 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007468
7469 if (hwc->interrupts == MAX_INTERRUPTS)
7470 return;
7471
7472 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007473 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007474 data, regs)) {
7475 /*
7476 * We inhibit the overflow from happening when
7477 * hwc->interrupts == MAX_INTERRUPTS.
7478 */
7479 break;
7480 }
7481 throttle = 1;
7482 }
7483}
7484
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007485static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007486 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007487 struct pt_regs *regs)
7488{
7489 struct hw_perf_event *hwc = &event->hw;
7490
Peter Zijlstrae7850592010-05-21 14:43:08 +02007491 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007492
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007493 if (!regs)
7494 return;
7495
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007496 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007497 return;
7498
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007499 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7500 data->period = nr;
7501 return perf_swevent_overflow(event, 1, data, regs);
7502 } else
7503 data->period = event->hw.last_period;
7504
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007505 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007506 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007507
Peter Zijlstrae7850592010-05-21 14:43:08 +02007508 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007509 return;
7510
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007511 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007512}
7513
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007514static int perf_exclude_event(struct perf_event *event,
7515 struct pt_regs *regs)
7516{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007517 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007518 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007519
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007520 if (regs) {
7521 if (event->attr.exclude_user && user_mode(regs))
7522 return 1;
7523
7524 if (event->attr.exclude_kernel && !user_mode(regs))
7525 return 1;
7526 }
7527
7528 return 0;
7529}
7530
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007531static int perf_swevent_match(struct perf_event *event,
7532 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007533 u32 event_id,
7534 struct perf_sample_data *data,
7535 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007536{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007537 if (event->attr.type != type)
7538 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007539
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007540 if (event->attr.config != event_id)
7541 return 0;
7542
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007543 if (perf_exclude_event(event, regs))
7544 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007545
7546 return 1;
7547}
7548
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007549static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007550{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007551 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007552
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007553 return hash_64(val, SWEVENT_HLIST_BITS);
7554}
7555
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007556static inline struct hlist_head *
7557__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007558{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007559 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007560
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007561 return &hlist->heads[hash];
7562}
7563
7564/* For the read side: events when they trigger */
7565static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007566find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007567{
7568 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007569
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007570 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007571 if (!hlist)
7572 return NULL;
7573
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007574 return __find_swevent_head(hlist, type, event_id);
7575}
7576
7577/* For the event head insertion and removal in the hlist */
7578static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007579find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007580{
7581 struct swevent_hlist *hlist;
7582 u32 event_id = event->attr.config;
7583 u64 type = event->attr.type;
7584
7585 /*
7586 * Event scheduling is always serialized against hlist allocation
7587 * and release. Which makes the protected version suitable here.
7588 * The context lock guarantees that.
7589 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007590 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007591 lockdep_is_held(&event->ctx->lock));
7592 if (!hlist)
7593 return NULL;
7594
7595 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007596}
7597
7598static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007599 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007600 struct perf_sample_data *data,
7601 struct pt_regs *regs)
7602{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007603 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007604 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007605 struct hlist_head *head;
7606
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007607 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007608 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007609 if (!head)
7610 goto end;
7611
Sasha Levinb67bfe02013-02-27 17:06:00 -08007612 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007613 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007614 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007615 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007616end:
7617 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007618}
7619
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007620DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7621
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007622int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007623{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007624 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007625
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007626 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007627}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007628EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007629
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007630void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007631{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007632 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007633
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007634 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007635}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007636
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007637void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007638{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007639 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007640
7641 if (WARN_ON_ONCE(!regs))
7642 return;
7643
7644 perf_sample_data_init(&data, addr, 0);
7645 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7646}
7647
7648void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7649{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007650 int rctx;
7651
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007652 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007653 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007654 if (unlikely(rctx < 0))
7655 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007656
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007657 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007658
7659 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007660fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007661 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007662}
7663
7664static void perf_swevent_read(struct perf_event *event)
7665{
7666}
7667
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007668static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007669{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007670 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007671 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007672 struct hlist_head *head;
7673
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007674 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007675 hwc->last_period = hwc->sample_period;
7676 perf_swevent_set_period(event);
7677 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007678
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007679 hwc->state = !(flags & PERF_EF_START);
7680
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007681 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007682 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007683 return -EINVAL;
7684
7685 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007686 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007687
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007688 return 0;
7689}
7690
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007691static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007692{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007693 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007694}
7695
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007696static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007697{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007698 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007699}
7700
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007701static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007702{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007703 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007704}
7705
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007706/* Deref the hlist from the update side */
7707static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007708swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007709{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007710 return rcu_dereference_protected(swhash->swevent_hlist,
7711 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007712}
7713
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007714static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007715{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007716 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007717
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007718 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007719 return;
7720
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007721 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007722 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007723}
7724
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007725static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007726{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007727 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007728
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007729 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007730
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007731 if (!--swhash->hlist_refcount)
7732 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007733
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007734 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007735}
7736
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007737static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007738{
7739 int cpu;
7740
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007741 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007742 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007743}
7744
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007745static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007746{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007747 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007748 int err = 0;
7749
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007750 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007751 if (!swevent_hlist_deref(swhash) &&
7752 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007753 struct swevent_hlist *hlist;
7754
7755 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7756 if (!hlist) {
7757 err = -ENOMEM;
7758 goto exit;
7759 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007760 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007761 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007762 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007763exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007764 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007765
7766 return err;
7767}
7768
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007769static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007770{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007771 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007772
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007773 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007774 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007775 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007776 if (err) {
7777 failed_cpu = cpu;
7778 goto fail;
7779 }
7780 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007781 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007782 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007783fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007784 for_each_possible_cpu(cpu) {
7785 if (cpu == failed_cpu)
7786 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007787 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007788 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007789 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007790 return err;
7791}
7792
Ingo Molnarc5905af2012-02-24 08:31:31 +01007793struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007794
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007795static void sw_perf_event_destroy(struct perf_event *event)
7796{
7797 u64 event_id = event->attr.config;
7798
7799 WARN_ON(event->parent);
7800
Ingo Molnarc5905af2012-02-24 08:31:31 +01007801 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007802 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007803}
7804
7805static int perf_swevent_init(struct perf_event *event)
7806{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007807 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007808
7809 if (event->attr.type != PERF_TYPE_SOFTWARE)
7810 return -ENOENT;
7811
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007812 /*
7813 * no branch sampling for software events
7814 */
7815 if (has_branch_stack(event))
7816 return -EOPNOTSUPP;
7817
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007818 switch (event_id) {
7819 case PERF_COUNT_SW_CPU_CLOCK:
7820 case PERF_COUNT_SW_TASK_CLOCK:
7821 return -ENOENT;
7822
7823 default:
7824 break;
7825 }
7826
Dan Carpenterce677832010-10-24 21:50:42 +02007827 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007828 return -ENOENT;
7829
7830 if (!event->parent) {
7831 int err;
7832
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007833 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007834 if (err)
7835 return err;
7836
Ingo Molnarc5905af2012-02-24 08:31:31 +01007837 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007838 event->destroy = sw_perf_event_destroy;
7839 }
7840
7841 return 0;
7842}
7843
7844static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007845 .task_ctx_nr = perf_sw_context,
7846
Peter Zijlstra34f43922015-02-20 14:05:38 +01007847 .capabilities = PERF_PMU_CAP_NO_NMI,
7848
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007849 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007850 .add = perf_swevent_add,
7851 .del = perf_swevent_del,
7852 .start = perf_swevent_start,
7853 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007854 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007855};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007856
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007857#ifdef CONFIG_EVENT_TRACING
7858
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007859static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007860 struct perf_sample_data *data)
7861{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007862 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007863
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007864 /* only top level events have filters set */
7865 if (event->parent)
7866 event = event->parent;
7867
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007868 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7869 return 1;
7870 return 0;
7871}
7872
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007873static int perf_tp_event_match(struct perf_event *event,
7874 struct perf_sample_data *data,
7875 struct pt_regs *regs)
7876{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007877 if (event->hw.state & PERF_HES_STOPPED)
7878 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007879 /*
7880 * All tracepoints are from kernel-space.
7881 */
7882 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007883 return 0;
7884
7885 if (!perf_tp_filter_match(event, data))
7886 return 0;
7887
7888 return 1;
7889}
7890
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007891void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7892 struct trace_event_call *call, u64 count,
7893 struct pt_regs *regs, struct hlist_head *head,
7894 struct task_struct *task)
7895{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07007896 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007897 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07007898 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007899 perf_swevent_put_recursion_context(rctx);
7900 return;
7901 }
7902 }
7903 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02007904 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007905}
7906EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7907
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007908void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007909 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02007910 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007911{
7912 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02007913 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007914
7915 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007916 .frag = {
7917 .size = entry_size,
7918 .data = record,
7919 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007920 };
7921
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007922 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007923 data.raw = &raw;
7924
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007925 perf_trace_buf_update(record, event_type);
7926
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02007927 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007928 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007929 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007930 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007931
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007932 /*
7933 * If we got specified a target task, also iterate its context and
7934 * deliver this event there too.
7935 */
7936 if (task && task != current) {
7937 struct perf_event_context *ctx;
7938 struct trace_entry *entry = record;
7939
7940 rcu_read_lock();
7941 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7942 if (!ctx)
7943 goto unlock;
7944
7945 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7946 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7947 continue;
7948 if (event->attr.config != entry->type)
7949 continue;
7950 if (perf_tp_event_match(event, &data, regs))
7951 perf_swevent_event(event, count, &data, regs);
7952 }
7953unlock:
7954 rcu_read_unlock();
7955 }
7956
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007957 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007958}
7959EXPORT_SYMBOL_GPL(perf_tp_event);
7960
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007961static void tp_perf_event_destroy(struct perf_event *event)
7962{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007963 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007964}
7965
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007966static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007967{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007968 int err;
7969
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007970 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7971 return -ENOENT;
7972
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007973 /*
7974 * no branch sampling for tracepoint events
7975 */
7976 if (has_branch_stack(event))
7977 return -EOPNOTSUPP;
7978
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007979 err = perf_trace_init(event);
7980 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007981 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007982
7983 event->destroy = tp_perf_event_destroy;
7984
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007985 return 0;
7986}
7987
7988static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007989 .task_ctx_nr = perf_sw_context,
7990
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007991 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007992 .add = perf_trace_add,
7993 .del = perf_trace_del,
7994 .start = perf_swevent_start,
7995 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007996 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007997};
7998
7999static inline void perf_tp_register(void)
8000{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008001 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008002}
Li Zefan6fb29152009-10-15 11:21:42 +08008003
Li Zefan6fb29152009-10-15 11:21:42 +08008004static void perf_event_free_filter(struct perf_event *event)
8005{
8006 ftrace_profile_free_filter(event);
8007}
8008
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008009#ifdef CONFIG_BPF_SYSCALL
8010static void bpf_overflow_handler(struct perf_event *event,
8011 struct perf_sample_data *data,
8012 struct pt_regs *regs)
8013{
8014 struct bpf_perf_event_data_kern ctx = {
8015 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07008016 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008017 };
8018 int ret = 0;
8019
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01008020 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008021 preempt_disable();
8022 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
8023 goto out;
8024 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01008025 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008026 rcu_read_unlock();
8027out:
8028 __this_cpu_dec(bpf_prog_active);
8029 preempt_enable();
8030 if (!ret)
8031 return;
8032
8033 event->orig_overflow_handler(event, data, regs);
8034}
8035
8036static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8037{
8038 struct bpf_prog *prog;
8039
8040 if (event->overflow_handler_context)
8041 /* hw breakpoint or kernel counter */
8042 return -EINVAL;
8043
8044 if (event->prog)
8045 return -EEXIST;
8046
8047 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
8048 if (IS_ERR(prog))
8049 return PTR_ERR(prog);
8050
8051 event->prog = prog;
8052 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
8053 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
8054 return 0;
8055}
8056
8057static void perf_event_free_bpf_handler(struct perf_event *event)
8058{
8059 struct bpf_prog *prog = event->prog;
8060
8061 if (!prog)
8062 return;
8063
8064 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
8065 event->prog = NULL;
8066 bpf_prog_put(prog);
8067}
8068#else
8069static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8070{
8071 return -EOPNOTSUPP;
8072}
8073static void perf_event_free_bpf_handler(struct perf_event *event)
8074{
8075}
8076#endif
8077
Alexei Starovoitov25415172015-03-25 12:49:20 -07008078static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8079{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008080 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008081 struct bpf_prog *prog;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008082 int ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008083
8084 if (event->attr.type != PERF_TYPE_TRACEPOINT)
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07008085 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008086
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008087 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
8088 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008089 is_syscall_tp = is_syscall_trace_event(event->tp_event);
8090 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008091 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07008092 return -EINVAL;
8093
8094 prog = bpf_prog_get(prog_fd);
8095 if (IS_ERR(prog))
8096 return PTR_ERR(prog);
8097
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008098 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008099 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
8100 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07008101 /* valid fd, but invalid bpf program type */
8102 bpf_prog_put(prog);
8103 return -EINVAL;
8104 }
8105
Josef Bacik9802d862017-12-11 11:36:48 -05008106 /* Kprobe override only works for kprobes, not uprobes. */
8107 if (prog->kprobe_override &&
8108 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
8109 bpf_prog_put(prog);
8110 return -EINVAL;
8111 }
8112
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008113 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07008114 int off = trace_event_get_offsets(event->tp_event);
8115
8116 if (prog->aux->max_ctx_offset > off) {
8117 bpf_prog_put(prog);
8118 return -EACCES;
8119 }
8120 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07008121
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008122 ret = perf_event_attach_bpf_prog(event, prog);
8123 if (ret)
8124 bpf_prog_put(prog);
8125 return ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008126}
8127
8128static void perf_event_free_bpf_prog(struct perf_event *event)
8129{
Yonghong Song0b4c6842017-10-23 23:53:07 -07008130 if (event->attr.type != PERF_TYPE_TRACEPOINT) {
8131 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008132 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008133 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008134 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008135}
8136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008137#else
Li Zefan6fb29152009-10-15 11:21:42 +08008138
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008139static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008140{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008141}
Li Zefan6fb29152009-10-15 11:21:42 +08008142
Li Zefan6fb29152009-10-15 11:21:42 +08008143static void perf_event_free_filter(struct perf_event *event)
8144{
8145}
8146
Alexei Starovoitov25415172015-03-25 12:49:20 -07008147static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8148{
8149 return -ENOENT;
8150}
8151
8152static void perf_event_free_bpf_prog(struct perf_event *event)
8153{
8154}
Li Zefan07b139c2009-12-21 14:27:35 +08008155#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008156
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008157#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008158void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008159{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008160 struct perf_sample_data sample;
8161 struct pt_regs *regs = data;
8162
Robert Richterfd0d0002012-04-02 20:19:08 +02008163 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008164
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008165 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008166 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008167}
8168#endif
8169
Alexander Shishkin375637b2016-04-27 18:44:46 +03008170/*
8171 * Allocate a new address filter
8172 */
8173static struct perf_addr_filter *
8174perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
8175{
8176 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
8177 struct perf_addr_filter *filter;
8178
8179 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
8180 if (!filter)
8181 return NULL;
8182
8183 INIT_LIST_HEAD(&filter->entry);
8184 list_add_tail(&filter->entry, filters);
8185
8186 return filter;
8187}
8188
8189static void free_filters_list(struct list_head *filters)
8190{
8191 struct perf_addr_filter *filter, *iter;
8192
8193 list_for_each_entry_safe(filter, iter, filters, entry) {
8194 if (filter->inode)
8195 iput(filter->inode);
8196 list_del(&filter->entry);
8197 kfree(filter);
8198 }
8199}
8200
8201/*
8202 * Free existing address filters and optionally install new ones
8203 */
8204static void perf_addr_filters_splice(struct perf_event *event,
8205 struct list_head *head)
8206{
8207 unsigned long flags;
8208 LIST_HEAD(list);
8209
8210 if (!has_addr_filter(event))
8211 return;
8212
8213 /* don't bother with children, they don't have their own filters */
8214 if (event->parent)
8215 return;
8216
8217 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
8218
8219 list_splice_init(&event->addr_filters.list, &list);
8220 if (head)
8221 list_splice(head, &event->addr_filters.list);
8222
8223 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
8224
8225 free_filters_list(&list);
8226}
8227
8228/*
8229 * Scan through mm's vmas and see if one of them matches the
8230 * @filter; if so, adjust filter's address range.
8231 * Called with mm::mmap_sem down for reading.
8232 */
8233static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
8234 struct mm_struct *mm)
8235{
8236 struct vm_area_struct *vma;
8237
8238 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8239 struct file *file = vma->vm_file;
8240 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8241 unsigned long vma_size = vma->vm_end - vma->vm_start;
8242
8243 if (!file)
8244 continue;
8245
8246 if (!perf_addr_filter_match(filter, file, off, vma_size))
8247 continue;
8248
8249 return vma->vm_start;
8250 }
8251
8252 return 0;
8253}
8254
8255/*
8256 * Update event's address range filters based on the
8257 * task's existing mappings, if any.
8258 */
8259static void perf_event_addr_filters_apply(struct perf_event *event)
8260{
8261 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8262 struct task_struct *task = READ_ONCE(event->ctx->task);
8263 struct perf_addr_filter *filter;
8264 struct mm_struct *mm = NULL;
8265 unsigned int count = 0;
8266 unsigned long flags;
8267
8268 /*
8269 * We may observe TASK_TOMBSTONE, which means that the event tear-down
8270 * will stop on the parent's child_mutex that our caller is also holding
8271 */
8272 if (task == TASK_TOMBSTONE)
8273 return;
8274
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008275 if (!ifh->nr_file_filters)
8276 return;
8277
Alexander Shishkin375637b2016-04-27 18:44:46 +03008278 mm = get_task_mm(event->ctx->task);
8279 if (!mm)
8280 goto restart;
8281
8282 down_read(&mm->mmap_sem);
8283
8284 raw_spin_lock_irqsave(&ifh->lock, flags);
8285 list_for_each_entry(filter, &ifh->list, entry) {
8286 event->addr_filters_offs[count] = 0;
8287
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008288 /*
8289 * Adjust base offset if the filter is associated to a binary
8290 * that needs to be mapped:
8291 */
8292 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008293 event->addr_filters_offs[count] =
8294 perf_addr_filter_apply(filter, mm);
8295
8296 count++;
8297 }
8298
8299 event->addr_filters_gen++;
8300 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8301
8302 up_read(&mm->mmap_sem);
8303
8304 mmput(mm);
8305
8306restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008307 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008308}
8309
8310/*
8311 * Address range filtering: limiting the data to certain
8312 * instruction address ranges. Filters are ioctl()ed to us from
8313 * userspace as ascii strings.
8314 *
8315 * Filter string format:
8316 *
8317 * ACTION RANGE_SPEC
8318 * where ACTION is one of the
8319 * * "filter": limit the trace to this region
8320 * * "start": start tracing from this address
8321 * * "stop": stop tracing at this address/region;
8322 * RANGE_SPEC is
8323 * * for kernel addresses: <start address>[/<size>]
8324 * * for object files: <start address>[/<size>]@</path/to/object/file>
8325 *
8326 * if <size> is not specified, the range is treated as a single address.
8327 */
8328enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008329 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008330 IF_ACT_FILTER,
8331 IF_ACT_START,
8332 IF_ACT_STOP,
8333 IF_SRC_FILE,
8334 IF_SRC_KERNEL,
8335 IF_SRC_FILEADDR,
8336 IF_SRC_KERNELADDR,
8337};
8338
8339enum {
8340 IF_STATE_ACTION = 0,
8341 IF_STATE_SOURCE,
8342 IF_STATE_END,
8343};
8344
8345static const match_table_t if_tokens = {
8346 { IF_ACT_FILTER, "filter" },
8347 { IF_ACT_START, "start" },
8348 { IF_ACT_STOP, "stop" },
8349 { IF_SRC_FILE, "%u/%u@%s" },
8350 { IF_SRC_KERNEL, "%u/%u" },
8351 { IF_SRC_FILEADDR, "%u@%s" },
8352 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008353 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008354};
8355
8356/*
8357 * Address filter string parser
8358 */
8359static int
8360perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8361 struct list_head *filters)
8362{
8363 struct perf_addr_filter *filter = NULL;
8364 char *start, *orig, *filename = NULL;
8365 struct path path;
8366 substring_t args[MAX_OPT_ARGS];
8367 int state = IF_STATE_ACTION, token;
8368 unsigned int kernel = 0;
8369 int ret = -EINVAL;
8370
8371 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8372 if (!fstr)
8373 return -ENOMEM;
8374
8375 while ((start = strsep(&fstr, " ,\n")) != NULL) {
8376 ret = -EINVAL;
8377
8378 if (!*start)
8379 continue;
8380
8381 /* filter definition begins */
8382 if (state == IF_STATE_ACTION) {
8383 filter = perf_addr_filter_new(event, filters);
8384 if (!filter)
8385 goto fail;
8386 }
8387
8388 token = match_token(start, if_tokens, args);
8389 switch (token) {
8390 case IF_ACT_FILTER:
8391 case IF_ACT_START:
8392 filter->filter = 1;
8393
8394 case IF_ACT_STOP:
8395 if (state != IF_STATE_ACTION)
8396 goto fail;
8397
8398 state = IF_STATE_SOURCE;
8399 break;
8400
8401 case IF_SRC_KERNELADDR:
8402 case IF_SRC_KERNEL:
8403 kernel = 1;
8404
8405 case IF_SRC_FILEADDR:
8406 case IF_SRC_FILE:
8407 if (state != IF_STATE_SOURCE)
8408 goto fail;
8409
8410 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8411 filter->range = 1;
8412
8413 *args[0].to = 0;
8414 ret = kstrtoul(args[0].from, 0, &filter->offset);
8415 if (ret)
8416 goto fail;
8417
8418 if (filter->range) {
8419 *args[1].to = 0;
8420 ret = kstrtoul(args[1].from, 0, &filter->size);
8421 if (ret)
8422 goto fail;
8423 }
8424
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008425 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8426 int fpos = filter->range ? 2 : 1;
8427
8428 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008429 if (!filename) {
8430 ret = -ENOMEM;
8431 goto fail;
8432 }
8433 }
8434
8435 state = IF_STATE_END;
8436 break;
8437
8438 default:
8439 goto fail;
8440 }
8441
8442 /*
8443 * Filter definition is fully parsed, validate and install it.
8444 * Make sure that it doesn't contradict itself or the event's
8445 * attribute.
8446 */
8447 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02008448 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008449 if (kernel && event->attr.exclude_kernel)
8450 goto fail;
8451
8452 if (!kernel) {
8453 if (!filename)
8454 goto fail;
8455
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008456 /*
8457 * For now, we only support file-based filters
8458 * in per-task events; doing so for CPU-wide
8459 * events requires additional context switching
8460 * trickery, since same object code will be
8461 * mapped at different virtual addresses in
8462 * different processes.
8463 */
8464 ret = -EOPNOTSUPP;
8465 if (!event->ctx->task)
8466 goto fail_free_name;
8467
Alexander Shishkin375637b2016-04-27 18:44:46 +03008468 /* look up the path and grab its inode */
8469 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8470 if (ret)
8471 goto fail_free_name;
8472
8473 filter->inode = igrab(d_inode(path.dentry));
8474 path_put(&path);
8475 kfree(filename);
8476 filename = NULL;
8477
8478 ret = -EINVAL;
8479 if (!filter->inode ||
8480 !S_ISREG(filter->inode->i_mode))
8481 /* free_filters_list() will iput() */
8482 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008483
8484 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008485 }
8486
8487 /* ready to consume more filters */
8488 state = IF_STATE_ACTION;
8489 filter = NULL;
8490 }
8491 }
8492
8493 if (state != IF_STATE_ACTION)
8494 goto fail;
8495
8496 kfree(orig);
8497
8498 return 0;
8499
8500fail_free_name:
8501 kfree(filename);
8502fail:
8503 free_filters_list(filters);
8504 kfree(orig);
8505
8506 return ret;
8507}
8508
8509static int
8510perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8511{
8512 LIST_HEAD(filters);
8513 int ret;
8514
8515 /*
8516 * Since this is called in perf_ioctl() path, we're already holding
8517 * ctx::mutex.
8518 */
8519 lockdep_assert_held(&event->ctx->mutex);
8520
8521 if (WARN_ON_ONCE(event->parent))
8522 return -EINVAL;
8523
Alexander Shishkin375637b2016-04-27 18:44:46 +03008524 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8525 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008526 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008527
8528 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008529 if (ret)
8530 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008531
8532 /* remove existing filters, if any */
8533 perf_addr_filters_splice(event, &filters);
8534
8535 /* install new filters */
8536 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8537
8538 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008539
8540fail_free_filters:
8541 free_filters_list(&filters);
8542
8543fail_clear_files:
8544 event->addr_filters.nr_file_filters = 0;
8545
8546 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008547}
8548
Peter Zijlstra43fa87f2018-01-09 17:07:59 +01008549static int
8550perf_tracepoint_set_filter(struct perf_event *event, char *filter_str)
8551{
8552 struct perf_event_context *ctx = event->ctx;
8553 int ret;
8554
8555 /*
8556 * Beware, here be dragons!!
8557 *
8558 * the tracepoint muck will deadlock against ctx->mutex, but the tracepoint
8559 * stuff does not actually need it. So temporarily drop ctx->mutex. As per
8560 * perf_event_ctx_lock() we already have a reference on ctx.
8561 *
8562 * This can result in event getting moved to a different ctx, but that
8563 * does not affect the tracepoint state.
8564 */
8565 mutex_unlock(&ctx->mutex);
8566 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
8567 mutex_lock(&ctx->mutex);
8568
8569 return ret;
8570}
8571
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008572static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8573{
8574 char *filter_str;
8575 int ret = -EINVAL;
8576
Alexander Shishkin375637b2016-04-27 18:44:46 +03008577 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8578 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8579 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008580 return -EINVAL;
8581
8582 filter_str = strndup_user(arg, PAGE_SIZE);
8583 if (IS_ERR(filter_str))
8584 return PTR_ERR(filter_str);
8585
8586 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8587 event->attr.type == PERF_TYPE_TRACEPOINT)
Peter Zijlstra43fa87f2018-01-09 17:07:59 +01008588 ret = perf_tracepoint_set_filter(event, filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008589 else if (has_addr_filter(event))
8590 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008591
8592 kfree(filter_str);
8593 return ret;
8594}
8595
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008596/*
8597 * hrtimer based swevent callback
8598 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008599
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008600static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008601{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008602 enum hrtimer_restart ret = HRTIMER_RESTART;
8603 struct perf_sample_data data;
8604 struct pt_regs *regs;
8605 struct perf_event *event;
8606 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008607
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008608 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008609
8610 if (event->state != PERF_EVENT_STATE_ACTIVE)
8611 return HRTIMER_NORESTART;
8612
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008613 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008614
Robert Richterfd0d0002012-04-02 20:19:08 +02008615 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008616 regs = get_irq_regs();
8617
8618 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008619 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008620 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008621 ret = HRTIMER_NORESTART;
8622 }
8623
8624 period = max_t(u64, 10000, event->hw.sample_period);
8625 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8626
8627 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008628}
8629
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008630static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008631{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008632 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008633 s64 period;
8634
8635 if (!is_sampling_event(event))
8636 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008637
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008638 period = local64_read(&hwc->period_left);
8639 if (period) {
8640 if (period < 0)
8641 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008642
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008643 local64_set(&hwc->period_left, 0);
8644 } else {
8645 period = max_t(u64, 10000, hwc->sample_period);
8646 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008647 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8648 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008649}
8650
8651static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8652{
8653 struct hw_perf_event *hwc = &event->hw;
8654
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008655 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008656 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008657 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008658
8659 hrtimer_cancel(&hwc->hrtimer);
8660 }
8661}
8662
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008663static void perf_swevent_init_hrtimer(struct perf_event *event)
8664{
8665 struct hw_perf_event *hwc = &event->hw;
8666
8667 if (!is_sampling_event(event))
8668 return;
8669
8670 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8671 hwc->hrtimer.function = perf_swevent_hrtimer;
8672
8673 /*
8674 * Since hrtimers have a fixed rate, we can do a static freq->period
8675 * mapping and avoid the whole period adjust feedback stuff.
8676 */
8677 if (event->attr.freq) {
8678 long freq = event->attr.sample_freq;
8679
8680 event->attr.sample_period = NSEC_PER_SEC / freq;
8681 hwc->sample_period = event->attr.sample_period;
8682 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008683 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008684 event->attr.freq = 0;
8685 }
8686}
8687
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008688/*
8689 * Software event: cpu wall time clock
8690 */
8691
8692static void cpu_clock_event_update(struct perf_event *event)
8693{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008694 s64 prev;
8695 u64 now;
8696
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008697 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008698 prev = local64_xchg(&event->hw.prev_count, now);
8699 local64_add(now - prev, &event->count);
8700}
8701
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008702static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008703{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008704 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008705 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008706}
8707
8708static void cpu_clock_event_stop(struct perf_event *event, int flags)
8709{
8710 perf_swevent_cancel_hrtimer(event);
8711 cpu_clock_event_update(event);
8712}
8713
8714static int cpu_clock_event_add(struct perf_event *event, int flags)
8715{
8716 if (flags & PERF_EF_START)
8717 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008718 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008719
8720 return 0;
8721}
8722
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008723static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008724{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008725 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008726}
8727
8728static void cpu_clock_event_read(struct perf_event *event)
8729{
8730 cpu_clock_event_update(event);
8731}
8732
8733static int cpu_clock_event_init(struct perf_event *event)
8734{
8735 if (event->attr.type != PERF_TYPE_SOFTWARE)
8736 return -ENOENT;
8737
8738 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8739 return -ENOENT;
8740
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008741 /*
8742 * no branch sampling for software events
8743 */
8744 if (has_branch_stack(event))
8745 return -EOPNOTSUPP;
8746
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008747 perf_swevent_init_hrtimer(event);
8748
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008749 return 0;
8750}
8751
8752static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008753 .task_ctx_nr = perf_sw_context,
8754
Peter Zijlstra34f43922015-02-20 14:05:38 +01008755 .capabilities = PERF_PMU_CAP_NO_NMI,
8756
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008757 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008758 .add = cpu_clock_event_add,
8759 .del = cpu_clock_event_del,
8760 .start = cpu_clock_event_start,
8761 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008762 .read = cpu_clock_event_read,
8763};
8764
8765/*
8766 * Software event: task time clock
8767 */
8768
8769static void task_clock_event_update(struct perf_event *event, u64 now)
8770{
8771 u64 prev;
8772 s64 delta;
8773
8774 prev = local64_xchg(&event->hw.prev_count, now);
8775 delta = now - prev;
8776 local64_add(delta, &event->count);
8777}
8778
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008779static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008780{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008781 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008782 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008783}
8784
8785static void task_clock_event_stop(struct perf_event *event, int flags)
8786{
8787 perf_swevent_cancel_hrtimer(event);
8788 task_clock_event_update(event, event->ctx->time);
8789}
8790
8791static int task_clock_event_add(struct perf_event *event, int flags)
8792{
8793 if (flags & PERF_EF_START)
8794 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008795 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008796
8797 return 0;
8798}
8799
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008800static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008801{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008802 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008803}
8804
8805static void task_clock_event_read(struct perf_event *event)
8806{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008807 u64 now = perf_clock();
8808 u64 delta = now - event->ctx->timestamp;
8809 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008810
8811 task_clock_event_update(event, time);
8812}
8813
8814static int task_clock_event_init(struct perf_event *event)
8815{
8816 if (event->attr.type != PERF_TYPE_SOFTWARE)
8817 return -ENOENT;
8818
8819 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8820 return -ENOENT;
8821
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008822 /*
8823 * no branch sampling for software events
8824 */
8825 if (has_branch_stack(event))
8826 return -EOPNOTSUPP;
8827
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008828 perf_swevent_init_hrtimer(event);
8829
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008830 return 0;
8831}
8832
8833static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008834 .task_ctx_nr = perf_sw_context,
8835
Peter Zijlstra34f43922015-02-20 14:05:38 +01008836 .capabilities = PERF_PMU_CAP_NO_NMI,
8837
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008838 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008839 .add = task_clock_event_add,
8840 .del = task_clock_event_del,
8841 .start = task_clock_event_start,
8842 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008843 .read = task_clock_event_read,
8844};
8845
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008846static void perf_pmu_nop_void(struct pmu *pmu)
8847{
8848}
8849
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008850static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8851{
8852}
8853
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008854static int perf_pmu_nop_int(struct pmu *pmu)
8855{
8856 return 0;
8857}
8858
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008859static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008860
8861static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008862{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008863 __this_cpu_write(nop_txn_flags, flags);
8864
8865 if (flags & ~PERF_PMU_TXN_ADD)
8866 return;
8867
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008868 perf_pmu_disable(pmu);
8869}
8870
8871static int perf_pmu_commit_txn(struct pmu *pmu)
8872{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008873 unsigned int flags = __this_cpu_read(nop_txn_flags);
8874
8875 __this_cpu_write(nop_txn_flags, 0);
8876
8877 if (flags & ~PERF_PMU_TXN_ADD)
8878 return 0;
8879
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008880 perf_pmu_enable(pmu);
8881 return 0;
8882}
8883
8884static void perf_pmu_cancel_txn(struct pmu *pmu)
8885{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008886 unsigned int flags = __this_cpu_read(nop_txn_flags);
8887
8888 __this_cpu_write(nop_txn_flags, 0);
8889
8890 if (flags & ~PERF_PMU_TXN_ADD)
8891 return;
8892
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008893 perf_pmu_enable(pmu);
8894}
8895
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008896static int perf_event_idx_default(struct perf_event *event)
8897{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008898 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008899}
8900
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008901/*
8902 * Ensures all contexts with the same task_ctx_nr have the same
8903 * pmu_cpu_context too.
8904 */
Mark Rutland9e317042014-02-10 17:44:18 +00008905static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008906{
8907 struct pmu *pmu;
8908
8909 if (ctxn < 0)
8910 return NULL;
8911
8912 list_for_each_entry(pmu, &pmus, entry) {
8913 if (pmu->task_ctx_nr == ctxn)
8914 return pmu->pmu_cpu_context;
8915 }
8916
8917 return NULL;
8918}
8919
Peter Zijlstra51676952010-12-07 14:18:20 +01008920static void free_pmu_context(struct pmu *pmu)
8921{
Will Deacondf0062b2017-10-03 15:20:50 +01008922 /*
8923 * Static contexts such as perf_sw_context have a global lifetime
8924 * and may be shared between different PMUs. Avoid freeing them
8925 * when a single PMU is going away.
8926 */
8927 if (pmu->task_ctx_nr > perf_invalid_context)
8928 return;
8929
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008930 mutex_lock(&pmus_lock);
Peter Zijlstra51676952010-12-07 14:18:20 +01008931 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008932 mutex_unlock(&pmus_lock);
8933}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008934
8935/*
8936 * Let userspace know that this PMU supports address range filtering:
8937 */
8938static ssize_t nr_addr_filters_show(struct device *dev,
8939 struct device_attribute *attr,
8940 char *page)
8941{
8942 struct pmu *pmu = dev_get_drvdata(dev);
8943
8944 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8945}
8946DEVICE_ATTR_RO(nr_addr_filters);
8947
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008948static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008949
Peter Zijlstraabe43402010-11-17 23:17:37 +01008950static ssize_t
8951type_show(struct device *dev, struct device_attribute *attr, char *page)
8952{
8953 struct pmu *pmu = dev_get_drvdata(dev);
8954
8955 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8956}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008957static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008958
Stephane Eranian62b85632013-04-03 14:21:34 +02008959static ssize_t
8960perf_event_mux_interval_ms_show(struct device *dev,
8961 struct device_attribute *attr,
8962 char *page)
8963{
8964 struct pmu *pmu = dev_get_drvdata(dev);
8965
8966 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8967}
8968
Peter Zijlstra272325c2015-04-15 11:41:58 +02008969static DEFINE_MUTEX(mux_interval_mutex);
8970
Stephane Eranian62b85632013-04-03 14:21:34 +02008971static ssize_t
8972perf_event_mux_interval_ms_store(struct device *dev,
8973 struct device_attribute *attr,
8974 const char *buf, size_t count)
8975{
8976 struct pmu *pmu = dev_get_drvdata(dev);
8977 int timer, cpu, ret;
8978
8979 ret = kstrtoint(buf, 0, &timer);
8980 if (ret)
8981 return ret;
8982
8983 if (timer < 1)
8984 return -EINVAL;
8985
8986 /* same value, noting to do */
8987 if (timer == pmu->hrtimer_interval_ms)
8988 return count;
8989
Peter Zijlstra272325c2015-04-15 11:41:58 +02008990 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008991 pmu->hrtimer_interval_ms = timer;
8992
8993 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008994 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02008995 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008996 struct perf_cpu_context *cpuctx;
8997 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8998 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8999
Peter Zijlstra272325c2015-04-15 11:41:58 +02009000 cpu_function_call(cpu,
9001 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02009002 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009003 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009004 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009005
9006 return count;
9007}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009008static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02009009
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009010static struct attribute *pmu_dev_attrs[] = {
9011 &dev_attr_type.attr,
9012 &dev_attr_perf_event_mux_interval_ms.attr,
9013 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009014};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009015ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009016
9017static int pmu_bus_running;
9018static struct bus_type pmu_bus = {
9019 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009020 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009021};
9022
9023static void pmu_dev_release(struct device *dev)
9024{
9025 kfree(dev);
9026}
9027
9028static int pmu_dev_alloc(struct pmu *pmu)
9029{
9030 int ret = -ENOMEM;
9031
9032 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
9033 if (!pmu->dev)
9034 goto out;
9035
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01009036 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01009037 device_initialize(pmu->dev);
9038 ret = dev_set_name(pmu->dev, "%s", pmu->name);
9039 if (ret)
9040 goto free_dev;
9041
9042 dev_set_drvdata(pmu->dev, pmu);
9043 pmu->dev->bus = &pmu_bus;
9044 pmu->dev->release = pmu_dev_release;
9045 ret = device_add(pmu->dev);
9046 if (ret)
9047 goto free_dev;
9048
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009049 /* For PMUs with address filters, throw in an extra attribute: */
9050 if (pmu->nr_addr_filters)
9051 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
9052
9053 if (ret)
9054 goto del_dev;
9055
Peter Zijlstraabe43402010-11-17 23:17:37 +01009056out:
9057 return ret;
9058
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009059del_dev:
9060 device_del(pmu->dev);
9061
Peter Zijlstraabe43402010-11-17 23:17:37 +01009062free_dev:
9063 put_device(pmu->dev);
9064 goto out;
9065}
9066
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009067static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009068static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009069
Mischa Jonker03d8e802013-06-04 11:45:48 +02009070int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009071{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009072 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009073
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009074 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009075 ret = -ENOMEM;
9076 pmu->pmu_disable_count = alloc_percpu(int);
9077 if (!pmu->pmu_disable_count)
9078 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009079
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009080 pmu->type = -1;
9081 if (!name)
9082 goto skip_type;
9083 pmu->name = name;
9084
9085 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08009086 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
9087 if (type < 0) {
9088 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009089 goto free_pdc;
9090 }
9091 }
9092 pmu->type = type;
9093
Peter Zijlstraabe43402010-11-17 23:17:37 +01009094 if (pmu_bus_running) {
9095 ret = pmu_dev_alloc(pmu);
9096 if (ret)
9097 goto free_idr;
9098 }
9099
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009100skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01009101 if (pmu->task_ctx_nr == perf_hw_context) {
9102 static int hw_context_taken = 0;
9103
Mark Rutland5101ef22016-04-26 11:33:46 +01009104 /*
9105 * Other than systems with heterogeneous CPUs, it never makes
9106 * sense for two PMUs to share perf_hw_context. PMUs which are
9107 * uncore must use perf_invalid_context.
9108 */
9109 if (WARN_ON_ONCE(hw_context_taken &&
9110 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01009111 pmu->task_ctx_nr = perf_invalid_context;
9112
9113 hw_context_taken = 1;
9114 }
9115
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009116 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
9117 if (pmu->pmu_cpu_context)
9118 goto got_cpu_context;
9119
Wei Yongjunc4814202013-04-12 11:05:54 +08009120 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009121 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
9122 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01009123 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009124
9125 for_each_possible_cpu(cpu) {
9126 struct perf_cpu_context *cpuctx;
9127
9128 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02009129 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009130 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009131 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009132 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009133 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +02009134
Peter Zijlstra272325c2015-04-15 11:41:58 +02009135 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009136 }
9137
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009138got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009139 if (!pmu->start_txn) {
9140 if (pmu->pmu_enable) {
9141 /*
9142 * If we have pmu_enable/pmu_disable calls, install
9143 * transaction stubs that use that to try and batch
9144 * hardware accesses.
9145 */
9146 pmu->start_txn = perf_pmu_start_txn;
9147 pmu->commit_txn = perf_pmu_commit_txn;
9148 pmu->cancel_txn = perf_pmu_cancel_txn;
9149 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009150 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009151 pmu->commit_txn = perf_pmu_nop_int;
9152 pmu->cancel_txn = perf_pmu_nop_void;
9153 }
9154 }
9155
9156 if (!pmu->pmu_enable) {
9157 pmu->pmu_enable = perf_pmu_nop_void;
9158 pmu->pmu_disable = perf_pmu_nop_void;
9159 }
9160
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009161 if (!pmu->event_idx)
9162 pmu->event_idx = perf_event_idx_default;
9163
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009164 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009165 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009166 ret = 0;
9167unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009168 mutex_unlock(&pmus_lock);
9169
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009170 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009171
Peter Zijlstraabe43402010-11-17 23:17:37 +01009172free_dev:
9173 device_del(pmu->dev);
9174 put_device(pmu->dev);
9175
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009176free_idr:
9177 if (pmu->type >= PERF_TYPE_MAX)
9178 idr_remove(&pmu_idr, pmu->type);
9179
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009180free_pdc:
9181 free_percpu(pmu->pmu_disable_count);
9182 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009183}
Yan, Zhengc464c762014-03-18 16:56:41 +08009184EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009185
9186void perf_pmu_unregister(struct pmu *pmu)
9187{
Jiri Olsa09338402016-10-20 13:10:11 +02009188 int remove_device;
9189
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009190 mutex_lock(&pmus_lock);
Jiri Olsa09338402016-10-20 13:10:11 +02009191 remove_device = pmu_bus_running;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009192 list_del_rcu(&pmu->entry);
9193 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009194
9195 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02009196 * We dereference the pmu list under both SRCU and regular RCU, so
9197 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009198 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009199 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02009200 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009201
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009202 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009203 if (pmu->type >= PERF_TYPE_MAX)
9204 idr_remove(&pmu_idr, pmu->type);
Jiri Olsa09338402016-10-20 13:10:11 +02009205 if (remove_device) {
9206 if (pmu->nr_addr_filters)
9207 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
9208 device_del(pmu->dev);
9209 put_device(pmu->dev);
9210 }
Peter Zijlstra51676952010-12-07 14:18:20 +01009211 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009212}
Yan, Zhengc464c762014-03-18 16:56:41 +08009213EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009214
Mark Rutlandcc34b982015-01-07 14:56:51 +00009215static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
9216{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009217 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00009218 int ret;
9219
9220 if (!try_module_get(pmu->module))
9221 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009222
Peter Zijlstra0c7296c2018-01-09 21:23:02 +01009223 /*
9224 * A number of pmu->event_init() methods iterate the sibling_list to,
9225 * for example, validate if the group fits on the PMU. Therefore,
9226 * if this is a sibling event, acquire the ctx->mutex to protect
9227 * the sibling_list.
9228 */
9229 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02009230 /*
9231 * This ctx->mutex can nest when we're called through
9232 * inheritance. See the perf_event_ctx_lock_nested() comment.
9233 */
9234 ctx = perf_event_ctx_lock_nested(event->group_leader,
9235 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009236 BUG_ON(!ctx);
9237 }
9238
Mark Rutlandcc34b982015-01-07 14:56:51 +00009239 event->pmu = pmu;
9240 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009241
9242 if (ctx)
9243 perf_event_ctx_unlock(event->group_leader, ctx);
9244
Mark Rutlandcc34b982015-01-07 14:56:51 +00009245 if (ret)
9246 module_put(pmu->module);
9247
9248 return ret;
9249}
9250
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009251static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009252{
Dan Carpenter85c617a2017-05-22 12:03:49 +03009253 struct pmu *pmu;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009254 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08009255 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009256
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009257 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009258
Kan Liang40999312017-01-18 08:21:01 -05009259 /* Try parent's PMU first: */
9260 if (event->parent && event->parent->pmu) {
9261 pmu = event->parent->pmu;
9262 ret = perf_try_init_event(pmu, event);
9263 if (!ret)
9264 goto unlock;
9265 }
9266
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009267 rcu_read_lock();
9268 pmu = idr_find(&pmu_idr, event->attr.type);
9269 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08009270 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009271 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08009272 if (ret)
9273 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009274 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08009275 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009276
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009277 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009278 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009279 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009280 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009281
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009282 if (ret != -ENOENT) {
9283 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009284 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009285 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009286 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009287 pmu = ERR_PTR(-ENOENT);
9288unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009289 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009290
9291 return pmu;
9292}
9293
Kan Liangf2fb6be2016-03-23 11:24:37 -07009294static void attach_sb_event(struct perf_event *event)
9295{
9296 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
9297
9298 raw_spin_lock(&pel->lock);
9299 list_add_rcu(&event->sb_list, &pel->list);
9300 raw_spin_unlock(&pel->lock);
9301}
9302
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009303/*
9304 * We keep a list of all !task (and therefore per-cpu) events
9305 * that need to receive side-band records.
9306 *
9307 * This avoids having to scan all the various PMU per-cpu contexts
9308 * looking for them.
9309 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009310static void account_pmu_sb_event(struct perf_event *event)
9311{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009312 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009313 attach_sb_event(event);
9314}
9315
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009316static void account_event_cpu(struct perf_event *event, int cpu)
9317{
9318 if (event->parent)
9319 return;
9320
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009321 if (is_cgroup_event(event))
9322 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9323}
9324
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009325/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9326static void account_freq_event_nohz(void)
9327{
9328#ifdef CONFIG_NO_HZ_FULL
9329 /* Lock so we don't race with concurrent unaccount */
9330 spin_lock(&nr_freq_lock);
9331 if (atomic_inc_return(&nr_freq_events) == 1)
9332 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9333 spin_unlock(&nr_freq_lock);
9334#endif
9335}
9336
9337static void account_freq_event(void)
9338{
9339 if (tick_nohz_full_enabled())
9340 account_freq_event_nohz();
9341 else
9342 atomic_inc(&nr_freq_events);
9343}
9344
9345
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009346static void account_event(struct perf_event *event)
9347{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009348 bool inc = false;
9349
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009350 if (event->parent)
9351 return;
9352
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009353 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009354 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009355 if (event->attr.mmap || event->attr.mmap_data)
9356 atomic_inc(&nr_mmap_events);
9357 if (event->attr.comm)
9358 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05309359 if (event->attr.namespaces)
9360 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009361 if (event->attr.task)
9362 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009363 if (event->attr.freq)
9364 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009365 if (event->attr.context_switch) {
9366 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009367 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009368 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009369 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009370 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009371 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009372 inc = true;
9373
Peter Zijlstra9107c892016-02-24 18:45:45 +01009374 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +03009375 /*
9376 * We need the mutex here because static_branch_enable()
9377 * must complete *before* the perf_sched_count increment
9378 * becomes visible.
9379 */
Peter Zijlstra9107c892016-02-24 18:45:45 +01009380 if (atomic_inc_not_zero(&perf_sched_count))
9381 goto enabled;
9382
9383 mutex_lock(&perf_sched_mutex);
9384 if (!atomic_read(&perf_sched_count)) {
9385 static_branch_enable(&perf_sched_events);
9386 /*
9387 * Guarantee that all CPUs observe they key change and
9388 * call the perf scheduling hooks before proceeding to
9389 * install events that need them.
9390 */
9391 synchronize_sched();
9392 }
9393 /*
9394 * Now that we have waited for the sync_sched(), allow further
9395 * increments to by-pass the mutex.
9396 */
9397 atomic_inc(&perf_sched_count);
9398 mutex_unlock(&perf_sched_mutex);
9399 }
9400enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009401
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009402 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009403
9404 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009405}
9406
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009407/*
9408 * Allocate and initialize a event structure
9409 */
9410static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009411perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009412 struct task_struct *task,
9413 struct perf_event *group_leader,
9414 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009415 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009416 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009417{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009418 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009419 struct perf_event *event;
9420 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009421 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009422
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009423 if ((unsigned)cpu >= nr_cpu_ids) {
9424 if (!task || cpu != -1)
9425 return ERR_PTR(-EINVAL);
9426 }
9427
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009428 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009429 if (!event)
9430 return ERR_PTR(-ENOMEM);
9431
9432 /*
9433 * Single events are their own group leaders, with an
9434 * empty sibling list:
9435 */
9436 if (!group_leader)
9437 group_leader = event;
9438
9439 mutex_init(&event->child_mutex);
9440 INIT_LIST_HEAD(&event->child_list);
9441
9442 INIT_LIST_HEAD(&event->group_entry);
9443 INIT_LIST_HEAD(&event->event_entry);
9444 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009445 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009446 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009447 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009448 INIT_HLIST_NODE(&event->hlist_entry);
9449
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009450
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009451 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009452 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009453
9454 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009455 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009456
Al Viroa6fa9412012-08-20 14:59:25 +01009457 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009458 event->cpu = cpu;
9459 event->attr = *attr;
9460 event->group_leader = group_leader;
9461 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009462 event->oncpu = -1;
9463
9464 event->parent = parent_event;
9465
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009466 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009467 event->id = atomic64_inc_return(&perf_event_id);
9468
9469 event->state = PERF_EVENT_STATE_INACTIVE;
9470
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009471 if (task) {
9472 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009473 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009474 * XXX pmu::event_init needs to know what task to account to
9475 * and we cannot use the ctx information because we need the
9476 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009477 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009478 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009479 }
9480
Peter Zijlstra34f43922015-02-20 14:05:38 +01009481 event->clock = &local_clock;
9482 if (parent_event)
9483 event->clock = parent_event->clock;
9484
Avi Kivity4dc0da82011-06-29 18:42:35 +03009485 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009486 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009487 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +02009488#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009489 if (overflow_handler == bpf_overflow_handler) {
9490 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
9491
9492 if (IS_ERR(prog)) {
9493 err = PTR_ERR(prog);
9494 goto err_ns;
9495 }
9496 event->prog = prog;
9497 event->orig_overflow_handler =
9498 parent_event->orig_overflow_handler;
9499 }
9500#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +03009501 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009502
Wang Nan18794452016-03-28 06:41:30 +00009503 if (overflow_handler) {
9504 event->overflow_handler = overflow_handler;
9505 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009506 } else if (is_write_backward(event)){
9507 event->overflow_handler = perf_event_output_backward;
9508 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009509 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009510 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009511 event->overflow_handler_context = NULL;
9512 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009513
Jiri Olsa0231bb52013-02-01 11:23:45 +01009514 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009515
9516 pmu = NULL;
9517
9518 hwc = &event->hw;
9519 hwc->sample_period = attr->sample_period;
9520 if (attr->freq && attr->sample_freq)
9521 hwc->sample_period = 1;
9522 hwc->last_period = hwc->sample_period;
9523
Peter Zijlstrae7850592010-05-21 14:43:08 +02009524 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009525
9526 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +02009527 * We currently do not support PERF_SAMPLE_READ on inherited events.
9528 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009529 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +02009530 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009531 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009532
Yan, Zhenga46a2302014-11-04 21:56:06 -05009533 if (!has_branch_stack(event))
9534 event->attr.branch_sample_type = 0;
9535
Matt Fleming79dff512015-01-23 18:45:42 +00009536 if (cgroup_fd != -1) {
9537 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9538 if (err)
9539 goto err_ns;
9540 }
9541
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009542 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +03009543 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009544 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009545 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009546 }
9547
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009548 err = exclusive_event_init(event);
9549 if (err)
9550 goto err_pmu;
9551
Alexander Shishkin375637b2016-04-27 18:44:46 +03009552 if (has_addr_filter(event)) {
9553 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9554 sizeof(unsigned long),
9555 GFP_KERNEL);
Dan Carpenter36cc2b92017-05-22 12:04:18 +03009556 if (!event->addr_filters_offs) {
9557 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009558 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +03009559 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009560
9561 /* force hw sync on the address filters */
9562 event->addr_filters_gen = 1;
9563 }
9564
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009565 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009566 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009567 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009568 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009569 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009570 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009571 }
9572
Alexander Shishkin927a5572016-03-02 13:24:14 +02009573 /* symmetric to unaccount_event() in _free_event() */
9574 account_event(event);
9575
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009576 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009577
Alexander Shishkin375637b2016-04-27 18:44:46 +03009578err_addr_filters:
9579 kfree(event->addr_filters_offs);
9580
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009581err_per_task:
9582 exclusive_event_destroy(event);
9583
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009584err_pmu:
9585 if (event->destroy)
9586 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009587 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009588err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009589 if (is_cgroup_event(event))
9590 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009591 if (event->ns)
9592 put_pid_ns(event->ns);
9593 kfree(event);
9594
9595 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009596}
9597
9598static int perf_copy_attr(struct perf_event_attr __user *uattr,
9599 struct perf_event_attr *attr)
9600{
9601 u32 size;
9602 int ret;
9603
9604 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9605 return -EFAULT;
9606
9607 /*
9608 * zero the full structure, so that a short copy will be nice.
9609 */
9610 memset(attr, 0, sizeof(*attr));
9611
9612 ret = get_user(size, &uattr->size);
9613 if (ret)
9614 return ret;
9615
9616 if (size > PAGE_SIZE) /* silly large */
9617 goto err_size;
9618
9619 if (!size) /* abi compat */
9620 size = PERF_ATTR_SIZE_VER0;
9621
9622 if (size < PERF_ATTR_SIZE_VER0)
9623 goto err_size;
9624
9625 /*
9626 * If we're handed a bigger struct than we know of,
9627 * ensure all the unknown bits are 0 - i.e. new
9628 * user-space does not rely on any kernel feature
9629 * extensions we dont know about yet.
9630 */
9631 if (size > sizeof(*attr)) {
9632 unsigned char __user *addr;
9633 unsigned char __user *end;
9634 unsigned char val;
9635
9636 addr = (void __user *)uattr + sizeof(*attr);
9637 end = (void __user *)uattr + size;
9638
9639 for (; addr < end; addr++) {
9640 ret = get_user(val, addr);
9641 if (ret)
9642 return ret;
9643 if (val)
9644 goto err_size;
9645 }
9646 size = sizeof(*attr);
9647 }
9648
9649 ret = copy_from_user(attr, uattr, size);
9650 if (ret)
9651 return -EFAULT;
9652
Meng Xuf12f42a2017-08-23 17:07:50 -04009653 attr->size = size;
9654
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309655 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009656 return -EINVAL;
9657
9658 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9659 return -EINVAL;
9660
9661 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9662 return -EINVAL;
9663
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009664 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9665 u64 mask = attr->branch_sample_type;
9666
9667 /* only using defined bits */
9668 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9669 return -EINVAL;
9670
9671 /* at least one branch bit must be set */
9672 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9673 return -EINVAL;
9674
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009675 /* propagate priv level, when not set for branch */
9676 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9677
9678 /* exclude_kernel checked on syscall entry */
9679 if (!attr->exclude_kernel)
9680 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9681
9682 if (!attr->exclude_user)
9683 mask |= PERF_SAMPLE_BRANCH_USER;
9684
9685 if (!attr->exclude_hv)
9686 mask |= PERF_SAMPLE_BRANCH_HV;
9687 /*
9688 * adjust user setting (for HW filter setup)
9689 */
9690 attr->branch_sample_type = mask;
9691 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009692 /* privileged levels capture (kernel, hv): check permissions */
9693 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009694 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9695 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009696 }
Jiri Olsa40189942012-08-07 15:20:37 +02009697
Jiri Olsac5ebced2012-08-07 15:20:40 +02009698 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009699 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009700 if (ret)
9701 return ret;
9702 }
9703
9704 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9705 if (!arch_perf_have_user_stack_dump())
9706 return -ENOSYS;
9707
9708 /*
9709 * We have __u32 type for the size, but so far
9710 * we can only use __u16 as maximum due to the
9711 * __u16 sample size limit.
9712 */
9713 if (attr->sample_stack_user >= USHRT_MAX)
9714 ret = -EINVAL;
9715 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9716 ret = -EINVAL;
9717 }
Jiri Olsa40189942012-08-07 15:20:37 +02009718
Stephane Eranian60e23642014-09-24 13:48:37 +02009719 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9720 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009721out:
9722 return ret;
9723
9724err_size:
9725 put_user(sizeof(*attr), &uattr->size);
9726 ret = -E2BIG;
9727 goto out;
9728}
9729
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009730static int
9731perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009732{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009733 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009734 int ret = -EINVAL;
9735
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009736 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009737 goto set;
9738
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009739 /* don't allow circular references */
9740 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009741 goto out;
9742
Peter Zijlstra0f139302010-05-20 14:35:15 +02009743 /*
9744 * Don't allow cross-cpu buffers
9745 */
9746 if (output_event->cpu != event->cpu)
9747 goto out;
9748
9749 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009750 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009751 */
9752 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9753 goto out;
9754
Peter Zijlstra34f43922015-02-20 14:05:38 +01009755 /*
9756 * Mixing clocks in the same buffer is trouble you don't need.
9757 */
9758 if (output_event->clock != event->clock)
9759 goto out;
9760
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009761 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009762 * Either writing ring buffer from beginning or from end.
9763 * Mixing is not allowed.
9764 */
9765 if (is_write_backward(output_event) != is_write_backward(event))
9766 goto out;
9767
9768 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009769 * If both events generate aux data, they must be on the same PMU
9770 */
9771 if (has_aux(event) && has_aux(output_event) &&
9772 event->pmu != output_event->pmu)
9773 goto out;
9774
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009775set:
9776 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009777 /* Can't redirect output if we've got an active mmap() */
9778 if (atomic_read(&event->mmap_count))
9779 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009780
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009781 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009782 /* get the rb we want to redirect to */
9783 rb = ring_buffer_get(output_event);
9784 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009785 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009786 }
9787
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009788 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009789
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009790 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009791unlock:
9792 mutex_unlock(&event->mmap_mutex);
9793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009794out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009795 return ret;
9796}
9797
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009798static void mutex_lock_double(struct mutex *a, struct mutex *b)
9799{
9800 if (b < a)
9801 swap(a, b);
9802
9803 mutex_lock(a);
9804 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9805}
9806
Peter Zijlstra34f43922015-02-20 14:05:38 +01009807static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9808{
9809 bool nmi_safe = false;
9810
9811 switch (clk_id) {
9812 case CLOCK_MONOTONIC:
9813 event->clock = &ktime_get_mono_fast_ns;
9814 nmi_safe = true;
9815 break;
9816
9817 case CLOCK_MONOTONIC_RAW:
9818 event->clock = &ktime_get_raw_fast_ns;
9819 nmi_safe = true;
9820 break;
9821
9822 case CLOCK_REALTIME:
9823 event->clock = &ktime_get_real_ns;
9824 break;
9825
9826 case CLOCK_BOOTTIME:
9827 event->clock = &ktime_get_boot_ns;
9828 break;
9829
9830 case CLOCK_TAI:
9831 event->clock = &ktime_get_tai_ns;
9832 break;
9833
9834 default:
9835 return -EINVAL;
9836 }
9837
9838 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9839 return -EINVAL;
9840
9841 return 0;
9842}
9843
Peter Zijlstra321027c2017-01-11 21:09:50 +01009844/*
9845 * Variation on perf_event_ctx_lock_nested(), except we take two context
9846 * mutexes.
9847 */
9848static struct perf_event_context *
9849__perf_event_ctx_lock_double(struct perf_event *group_leader,
9850 struct perf_event_context *ctx)
9851{
9852 struct perf_event_context *gctx;
9853
9854again:
9855 rcu_read_lock();
9856 gctx = READ_ONCE(group_leader->ctx);
9857 if (!atomic_inc_not_zero(&gctx->refcount)) {
9858 rcu_read_unlock();
9859 goto again;
9860 }
9861 rcu_read_unlock();
9862
9863 mutex_lock_double(&gctx->mutex, &ctx->mutex);
9864
9865 if (group_leader->ctx != gctx) {
9866 mutex_unlock(&ctx->mutex);
9867 mutex_unlock(&gctx->mutex);
9868 put_ctx(gctx);
9869 goto again;
9870 }
9871
9872 return gctx;
9873}
9874
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009875/**
9876 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9877 *
9878 * @attr_uptr: event_id type attributes for monitoring/sampling
9879 * @pid: target pid
9880 * @cpu: target cpu
9881 * @group_fd: group leader event fd
9882 */
9883SYSCALL_DEFINE5(perf_event_open,
9884 struct perf_event_attr __user *, attr_uptr,
9885 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9886{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009887 struct perf_event *group_leader = NULL, *output_event = NULL;
9888 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009889 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009890 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009891 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009892 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009893 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009894 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009895 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009896 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009897 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009898 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009899 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009900
9901 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009902 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009903 return -EINVAL;
9904
9905 err = perf_copy_attr(attr_uptr, &attr);
9906 if (err)
9907 return err;
9908
9909 if (!attr.exclude_kernel) {
9910 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9911 return -EACCES;
9912 }
9913
Hari Bathinie4222672017-03-08 02:11:36 +05309914 if (attr.namespaces) {
9915 if (!capable(CAP_SYS_ADMIN))
9916 return -EACCES;
9917 }
9918
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009919 if (attr.freq) {
9920 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9921 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009922 } else {
9923 if (attr.sample_period & (1ULL << 63))
9924 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009925 }
9926
Kan Liangfc7ce9c2017-08-28 20:52:49 -04009927 /* Only privileged users can get physical addresses */
9928 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR) &&
9929 perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9930 return -EACCES;
9931
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009932 if (!attr.sample_max_stack)
9933 attr.sample_max_stack = sysctl_perf_event_max_stack;
9934
Stephane Eraniane5d13672011-02-14 11:20:01 +02009935 /*
9936 * In cgroup mode, the pid argument is used to pass the fd
9937 * opened to the cgroup directory in cgroupfs. The cpu argument
9938 * designates the cpu on which to monitor threads from that
9939 * cgroup.
9940 */
9941 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9942 return -EINVAL;
9943
Yann Droneauda21b0b32014-01-05 21:36:33 +01009944 if (flags & PERF_FLAG_FD_CLOEXEC)
9945 f_flags |= O_CLOEXEC;
9946
9947 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009948 if (event_fd < 0)
9949 return event_fd;
9950
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009951 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009952 err = perf_fget_light(group_fd, &group);
9953 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009954 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009955 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009956 if (flags & PERF_FLAG_FD_OUTPUT)
9957 output_event = group_leader;
9958 if (flags & PERF_FLAG_FD_NO_GROUP)
9959 group_leader = NULL;
9960 }
9961
Stephane Eraniane5d13672011-02-14 11:20:01 +02009962 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009963 task = find_lively_task_by_vpid(pid);
9964 if (IS_ERR(task)) {
9965 err = PTR_ERR(task);
9966 goto err_group_fd;
9967 }
9968 }
9969
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009970 if (task && group_leader &&
9971 group_leader->attr.inherit != attr.inherit) {
9972 err = -EINVAL;
9973 goto err_task;
9974 }
9975
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009976 if (task) {
9977 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9978 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +00009979 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009980
9981 /*
9982 * Reuse ptrace permission checks for now.
9983 *
9984 * We must hold cred_guard_mutex across this and any potential
9985 * perf_install_in_context() call for this new event to
9986 * serialize against exec() altering our credentials (and the
9987 * perf_event_exit_task() that could imply).
9988 */
9989 err = -EACCES;
9990 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9991 goto err_cred;
9992 }
9993
Matt Fleming79dff512015-01-23 18:45:42 +00009994 if (flags & PERF_FLAG_PID_CGROUP)
9995 cgroup_fd = pid;
9996
Avi Kivity4dc0da82011-06-29 18:42:35 +03009997 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009998 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009999 if (IS_ERR(event)) {
10000 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010001 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010002 }
10003
Vince Weaver53b25332014-05-16 17:12:12 -040010004 if (is_sampling_event(event)) {
10005 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053010006 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040010007 goto err_alloc;
10008 }
10009 }
10010
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010011 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010012 * Special case software events and allow them to be part of
10013 * any hardware group.
10014 */
10015 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010016
Peter Zijlstra34f43922015-02-20 14:05:38 +010010017 if (attr.use_clockid) {
10018 err = perf_event_set_clock(event, attr.clockid);
10019 if (err)
10020 goto err_alloc;
10021 }
10022
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010023 if (pmu->task_ctx_nr == perf_sw_context)
10024 event->event_caps |= PERF_EV_CAP_SOFTWARE;
10025
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010026 if (group_leader &&
10027 (is_software_event(event) != is_software_event(group_leader))) {
10028 if (is_software_event(event)) {
10029 /*
10030 * If event and group_leader are not both a software
10031 * event, and event is, then group leader is not.
10032 *
10033 * Allow the addition of software events to !software
10034 * groups, this is safe because software events never
10035 * fail to schedule.
10036 */
10037 pmu = group_leader->pmu;
10038 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010039 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010040 /*
10041 * In case the group is a pure software group, and we
10042 * try to add a hardware event, move the whole group to
10043 * the hardware context.
10044 */
10045 move_group = 1;
10046 }
10047 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010048
10049 /*
10050 * Get the target context (task or percpu):
10051 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010052 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010053 if (IS_ERR(ctx)) {
10054 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010055 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010056 }
10057
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010058 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
10059 err = -EBUSY;
10060 goto err_context;
10061 }
10062
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010063 /*
10064 * Look up the group leader (we will attach this event to it):
10065 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010066 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010067 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010068
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010069 /*
10070 * Do not allow a recursive hierarchy (this new sibling
10071 * becoming part of another group-sibling):
10072 */
10073 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010074 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010010075
10076 /* All events in a group should have the same clock */
10077 if (group_leader->clock != event->clock)
10078 goto err_context;
10079
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010080 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010010081 * Make sure we're both events for the same CPU;
10082 * grouping events for different CPUs is broken; since
10083 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010084 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010010085 if (group_leader->cpu != event->cpu)
10086 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010010087
Mark Rutland64aee2a2017-06-22 15:41:38 +010010088 /*
10089 * Make sure we're both on the same task, or both
10090 * per-CPU events.
10091 */
10092 if (group_leader->ctx->task != ctx->task)
10093 goto err_context;
10094
10095 /*
10096 * Do not allow to attach to a group in a different task
10097 * or CPU context. If we're moving SW events, we'll fix
10098 * this up later, so allow that.
10099 */
10100 if (!move_group && group_leader->ctx != ctx)
10101 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010102
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010103 /*
10104 * Only a group leader can be exclusive or pinned
10105 */
10106 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010107 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010108 }
10109
10110 if (output_event) {
10111 err = perf_event_set_output(event, output_event);
10112 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010113 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010114 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010115
Yann Droneauda21b0b32014-01-05 21:36:33 +010010116 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
10117 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010118 if (IS_ERR(event_file)) {
10119 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020010120 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010121 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040010122 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010123
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010124 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010010125 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
10126
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010127 if (gctx->task == TASK_TOMBSTONE) {
10128 err = -ESRCH;
10129 goto err_locked;
10130 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010010131
10132 /*
10133 * Check if we raced against another sys_perf_event_open() call
10134 * moving the software group underneath us.
10135 */
10136 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
10137 /*
10138 * If someone moved the group out from under us, check
10139 * if this new event wound up on the same ctx, if so
10140 * its the regular !move_group case, otherwise fail.
10141 */
10142 if (gctx != ctx) {
10143 err = -EINVAL;
10144 goto err_locked;
10145 } else {
10146 perf_event_ctx_unlock(group_leader, gctx);
10147 move_group = 0;
10148 }
10149 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010150 } else {
10151 mutex_lock(&ctx->mutex);
10152 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010153
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010154 if (ctx->task == TASK_TOMBSTONE) {
10155 err = -ESRCH;
10156 goto err_locked;
10157 }
10158
Peter Zijlstraa7239682015-09-09 19:06:33 +020010159 if (!perf_event_validate_size(event)) {
10160 err = -E2BIG;
10161 goto err_locked;
10162 }
10163
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010164 if (!task) {
10165 /*
10166 * Check if the @cpu we're creating an event for is online.
10167 *
10168 * We use the perf_cpu_context::ctx::mutex to serialize against
10169 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10170 */
10171 struct perf_cpu_context *cpuctx =
10172 container_of(ctx, struct perf_cpu_context, ctx);
10173
10174 if (!cpuctx->online) {
10175 err = -ENODEV;
10176 goto err_locked;
10177 }
10178 }
10179
10180
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010181 /*
10182 * Must be under the same ctx::mutex as perf_install_in_context(),
10183 * because we need to serialize with concurrent event creation.
10184 */
10185 if (!exclusive_event_installable(event, ctx)) {
10186 /* exclusive and group stuff are assumed mutually exclusive */
10187 WARN_ON_ONCE(move_group);
10188
10189 err = -EBUSY;
10190 goto err_locked;
10191 }
10192
10193 WARN_ON_ONCE(ctx->parent_ctx);
10194
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010195 /*
10196 * This is the point on no return; we cannot fail hereafter. This is
10197 * where we start modifying current state.
10198 */
10199
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010200 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010201 /*
10202 * See perf_event_ctx_lock() for comments on the details
10203 * of swizzling perf_event::ctx.
10204 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010205 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010010206 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010010207
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010208 list_for_each_entry(sibling, &group_leader->sibling_list,
10209 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010210 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010211 put_ctx(gctx);
10212 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010213
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010214 /*
10215 * Wait for everybody to stop referencing the events through
10216 * the old lists, before installing it on new lists.
10217 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010218 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010219
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010220 /*
10221 * Install the group siblings before the group leader.
10222 *
10223 * Because a group leader will try and install the entire group
10224 * (through the sibling list, which is still in-tact), we can
10225 * end up with siblings installed in the wrong context.
10226 *
10227 * By installing siblings first we NO-OP because they're not
10228 * reachable through the group lists.
10229 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010230 list_for_each_entry(sibling, &group_leader->sibling_list,
10231 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010232 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010010233 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010234 get_ctx(ctx);
10235 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010236
10237 /*
10238 * Removing from the context ends up with disabled
10239 * event. What we want here is event in the initial
10240 * startup state, ready to be add into new context.
10241 */
10242 perf_event__state_init(group_leader);
10243 perf_install_in_context(ctx, group_leader, group_leader->cpu);
10244 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010245 }
10246
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020010247 /*
10248 * Precalculate sample_data sizes; do while holding ctx::mutex such
10249 * that we're serialized against further additions and before
10250 * perf_install_in_context() which is the point the event is active and
10251 * can use these values.
10252 */
10253 perf_event__header_size(event);
10254 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010255
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010010256 event->owner = current;
10257
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080010258 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010259 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010260
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010261 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010262 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010263 mutex_unlock(&ctx->mutex);
10264
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010265 if (task) {
10266 mutex_unlock(&task->signal->cred_guard_mutex);
10267 put_task_struct(task);
10268 }
10269
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010270 mutex_lock(&current->perf_event_mutex);
10271 list_add_tail(&event->owner_entry, &current->perf_event_list);
10272 mutex_unlock(&current->perf_event_mutex);
10273
Peter Zijlstra8a495422010-05-27 15:47:49 +020010274 /*
10275 * Drop the reference on the group_event after placing the
10276 * new event on the sibling_list. This ensures destruction
10277 * of the group leader will find the pointer to itself in
10278 * perf_group_detach().
10279 */
Al Viro2903ff02012-08-28 12:52:22 -040010280 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010281 fd_install(event_fd, event_file);
10282 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010283
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010284err_locked:
10285 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010286 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010287 mutex_unlock(&ctx->mutex);
10288/* err_file: */
10289 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010290err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010291 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040010292 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010293err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010010294 /*
10295 * If event_file is set, the fput() above will have called ->release()
10296 * and that will take care of freeing the event.
10297 */
10298 if (!event_file)
10299 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010300err_cred:
10301 if (task)
10302 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010303err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020010304 if (task)
10305 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010306err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040010307 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010308err_fd:
10309 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010310 return err;
10311}
10312
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010313/**
10314 * perf_event_create_kernel_counter
10315 *
10316 * @attr: attributes of the counter to create
10317 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070010318 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010319 */
10320struct perf_event *
10321perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070010322 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010323 perf_overflow_handler_t overflow_handler,
10324 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010325{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010326 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010327 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010328 int err;
10329
10330 /*
10331 * Get the target context (task or percpu):
10332 */
10333
Avi Kivity4dc0da82011-06-29 18:42:35 +030010334 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010335 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010336 if (IS_ERR(event)) {
10337 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010338 goto err;
10339 }
10340
Jiri Olsaf8697762014-08-01 14:33:01 +020010341 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010342 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020010343
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010344 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010345 if (IS_ERR(ctx)) {
10346 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010347 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010348 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010349
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010350 WARN_ON_ONCE(ctx->parent_ctx);
10351 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010352 if (ctx->task == TASK_TOMBSTONE) {
10353 err = -ESRCH;
10354 goto err_unlock;
10355 }
10356
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010357 if (!task) {
10358 /*
10359 * Check if the @cpu we're creating an event for is online.
10360 *
10361 * We use the perf_cpu_context::ctx::mutex to serialize against
10362 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10363 */
10364 struct perf_cpu_context *cpuctx =
10365 container_of(ctx, struct perf_cpu_context, ctx);
10366 if (!cpuctx->online) {
10367 err = -ENODEV;
10368 goto err_unlock;
10369 }
10370 }
10371
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010372 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010373 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010374 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010375 }
10376
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010377 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010378 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010379 mutex_unlock(&ctx->mutex);
10380
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010381 return event;
10382
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010383err_unlock:
10384 mutex_unlock(&ctx->mutex);
10385 perf_unpin_context(ctx);
10386 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010387err_free:
10388 free_event(event);
10389err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010390 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010391}
10392EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10393
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010394void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10395{
10396 struct perf_event_context *src_ctx;
10397 struct perf_event_context *dst_ctx;
10398 struct perf_event *event, *tmp;
10399 LIST_HEAD(events);
10400
10401 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10402 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10403
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010404 /*
10405 * See perf_event_ctx_lock() for comments on the details
10406 * of swizzling perf_event::ctx.
10407 */
10408 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010409 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10410 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010411 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010412 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010413 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010414 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010415 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010416
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010417 /*
10418 * Wait for the events to quiesce before re-instating them.
10419 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010420 synchronize_rcu();
10421
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010422 /*
10423 * Re-instate events in 2 passes.
10424 *
10425 * Skip over group leaders and only install siblings on this first
10426 * pass, siblings will not get enabled without a leader, however a
10427 * leader will enable its siblings, even if those are still on the old
10428 * context.
10429 */
10430 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10431 if (event->group_leader == event)
10432 continue;
10433
10434 list_del(&event->migrate_entry);
10435 if (event->state >= PERF_EVENT_STATE_OFF)
10436 event->state = PERF_EVENT_STATE_INACTIVE;
10437 account_event_cpu(event, dst_cpu);
10438 perf_install_in_context(dst_ctx, event, dst_cpu);
10439 get_ctx(dst_ctx);
10440 }
10441
10442 /*
10443 * Once all the siblings are setup properly, install the group leaders
10444 * to make it go.
10445 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010446 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10447 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010448 if (event->state >= PERF_EVENT_STATE_OFF)
10449 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010450 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010451 perf_install_in_context(dst_ctx, event, dst_cpu);
10452 get_ctx(dst_ctx);
10453 }
10454 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010455 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010456}
10457EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10458
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010459static void sync_child_event(struct perf_event *child_event,
10460 struct task_struct *child)
10461{
10462 struct perf_event *parent_event = child_event->parent;
10463 u64 child_val;
10464
10465 if (child_event->attr.inherit_stat)
10466 perf_event_read_event(child_event, child);
10467
Peter Zijlstrab5e58792010-05-21 14:43:12 +020010468 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010469
10470 /*
10471 * Add back the child's count to the parent's count:
10472 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020010473 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010474 atomic64_add(child_event->total_time_enabled,
10475 &parent_event->child_total_time_enabled);
10476 atomic64_add(child_event->total_time_running,
10477 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010478}
10479
10480static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010481perf_event_exit_event(struct perf_event *child_event,
10482 struct perf_event_context *child_ctx,
10483 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010484{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010485 struct perf_event *parent_event = child_event->parent;
10486
Peter Zijlstra1903d502014-07-15 17:27:27 +020010487 /*
10488 * Do not destroy the 'original' grouping; because of the context
10489 * switch optimization the original events could've ended up in a
10490 * random child task.
10491 *
10492 * If we were to destroy the original group, all group related
10493 * operations would cease to function properly after this random
10494 * child dies.
10495 *
10496 * Do destroy all inherited groups, we don't care about those
10497 * and being thorough is better.
10498 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010499 raw_spin_lock_irq(&child_ctx->lock);
10500 WARN_ON_ONCE(child_ctx->is_active);
10501
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010502 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010010503 perf_group_detach(child_event);
10504 list_del_event(child_event, child_ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +020010505 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010506 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010507
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010508 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010509 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010510 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010511 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040010512 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010513 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010514 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010515 /*
10516 * Child events can be cleaned up.
10517 */
10518
10519 sync_child_event(child_event, child);
10520
10521 /*
10522 * Remove this event from the parent's list
10523 */
10524 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
10525 mutex_lock(&parent_event->child_mutex);
10526 list_del_init(&child_event->child_list);
10527 mutex_unlock(&parent_event->child_mutex);
10528
10529 /*
10530 * Kick perf_poll() for is_event_hup().
10531 */
10532 perf_event_wakeup(parent_event);
10533 free_event(child_event);
10534 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010535}
10536
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010537static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010538{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010539 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010540 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010541
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010542 WARN_ON_ONCE(child != current);
10543
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010544 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010545 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010546 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010547
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010548 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010549 * In order to reduce the amount of tricky in ctx tear-down, we hold
10550 * ctx::mutex over the entire thing. This serializes against almost
10551 * everything that wants to access the ctx.
10552 *
10553 * The exception is sys_perf_event_open() /
10554 * perf_event_create_kernel_count() which does find_get_context()
10555 * without ctx::mutex (it cannot because of the move_group double mutex
10556 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010557 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010558 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010559
10560 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010561 * In a single ctx::lock section, de-schedule the events and detach the
10562 * context from the task such that we cannot ever get it scheduled back
10563 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010564 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010565 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020010566 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010567
10568 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010569 * Now that the context is inactive, destroy the task <-> ctx relation
10570 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010571 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010572 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10573 put_ctx(child_ctx); /* cannot be last */
10574 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10575 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010576
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010577 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010578 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010579
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010580 if (clone_ctx)
10581 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010582
10583 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010584 * Report the task dead after unscheduling the events so that we
10585 * won't get any samples after PERF_RECORD_EXIT. We can however still
10586 * get a few PERF_RECORD_READ events.
10587 */
10588 perf_event_task(child, child_ctx, 0);
10589
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010590 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010591 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010592
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010593 mutex_unlock(&child_ctx->mutex);
10594
10595 put_ctx(child_ctx);
10596}
10597
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010598/*
10599 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010600 *
10601 * Can be called with cred_guard_mutex held when called from
10602 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010603 */
10604void perf_event_exit_task(struct task_struct *child)
10605{
Peter Zijlstra88821352010-11-09 19:01:43 +010010606 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010607 int ctxn;
10608
Peter Zijlstra88821352010-11-09 19:01:43 +010010609 mutex_lock(&child->perf_event_mutex);
10610 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10611 owner_entry) {
10612 list_del_init(&event->owner_entry);
10613
10614 /*
10615 * Ensure the list deletion is visible before we clear
10616 * the owner, closes a race against perf_release() where
10617 * we need to serialize on the owner->perf_event_mutex.
10618 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010619 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010620 }
10621 mutex_unlock(&child->perf_event_mutex);
10622
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010623 for_each_task_context_nr(ctxn)
10624 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010625
10626 /*
10627 * The perf_event_exit_task_context calls perf_event_task
10628 * with child's task_ctx, which generates EXIT events for
10629 * child contexts and sets child->perf_event_ctxp[] to NULL.
10630 * At this point we need to send EXIT events to cpu contexts.
10631 */
10632 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010633}
10634
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010635static void perf_free_event(struct perf_event *event,
10636 struct perf_event_context *ctx)
10637{
10638 struct perf_event *parent = event->parent;
10639
10640 if (WARN_ON_ONCE(!parent))
10641 return;
10642
10643 mutex_lock(&parent->child_mutex);
10644 list_del_init(&event->child_list);
10645 mutex_unlock(&parent->child_mutex);
10646
Al Viroa6fa9412012-08-20 14:59:25 +010010647 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010648
Peter Zijlstra652884f2015-01-23 11:20:10 +010010649 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010650 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010651 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010652 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010653 free_event(event);
10654}
10655
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010656/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010657 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010658 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010659 *
10660 * Not all locks are strictly required, but take them anyway to be nice and
10661 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010662 */
10663void perf_event_free_task(struct task_struct *task)
10664{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010665 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010666 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010667 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010668
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010669 for_each_task_context_nr(ctxn) {
10670 ctx = task->perf_event_ctxp[ctxn];
10671 if (!ctx)
10672 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010673
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010674 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010010675 raw_spin_lock_irq(&ctx->lock);
10676 /*
10677 * Destroy the task <-> ctx relation and mark the context dead.
10678 *
10679 * This is important because even though the task hasn't been
10680 * exposed yet the context has been (through child_list).
10681 */
10682 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
10683 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
10684 put_task_struct(task); /* cannot be last */
10685 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010686
Peter Zijlstra15121c72017-03-16 13:47:50 +010010687 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010688 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010689
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010690 mutex_unlock(&ctx->mutex);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010691 put_ctx(ctx);
10692 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010693}
10694
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010695void perf_event_delayed_put(struct task_struct *task)
10696{
10697 int ctxn;
10698
10699 for_each_task_context_nr(ctxn)
10700 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10701}
10702
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010703struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010704{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010705 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010706
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010707 file = fget_raw(fd);
10708 if (!file)
10709 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010710
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010711 if (file->f_op != &perf_fops) {
10712 fput(file);
10713 return ERR_PTR(-EBADF);
10714 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010715
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010716 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010717}
10718
10719const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10720{
10721 if (!event)
10722 return ERR_PTR(-EINVAL);
10723
10724 return &event->attr;
10725}
10726
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010727/*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010728 * Inherit a event from parent task to child task.
10729 *
10730 * Returns:
10731 * - valid pointer on success
10732 * - NULL for orphaned events
10733 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010734 */
10735static struct perf_event *
10736inherit_event(struct perf_event *parent_event,
10737 struct task_struct *parent,
10738 struct perf_event_context *parent_ctx,
10739 struct task_struct *child,
10740 struct perf_event *group_leader,
10741 struct perf_event_context *child_ctx)
10742{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020010743 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010744 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010745 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010746
10747 /*
10748 * Instead of creating recursive hierarchies of events,
10749 * we link inherited events back to the original parent,
10750 * which has a filp for sure, which we use as the reference
10751 * count:
10752 */
10753 if (parent_event->parent)
10754 parent_event = parent_event->parent;
10755
10756 child_event = perf_event_alloc(&parent_event->attr,
10757 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010758 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010759 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010760 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010761 if (IS_ERR(child_event))
10762 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010763
Jiri Olsa313ccb92018-01-07 17:03:47 +010010764
10765 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
10766 !child_ctx->task_ctx_data) {
10767 struct pmu *pmu = child_event->pmu;
10768
10769 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
10770 GFP_KERNEL);
10771 if (!child_ctx->task_ctx_data) {
10772 free_event(child_event);
10773 return NULL;
10774 }
10775 }
10776
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010777 /*
10778 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10779 * must be under the same lock in order to serialize against
10780 * perf_event_release_kernel(), such that either we must observe
10781 * is_orphaned_event() or they will observe us on the child_list.
10782 */
10783 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010784 if (is_orphaned_event(parent_event) ||
10785 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010786 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010010787 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010010788 free_event(child_event);
10789 return NULL;
10790 }
10791
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010792 get_ctx(child_ctx);
10793
10794 /*
10795 * Make the child state follow the state of the parent event,
10796 * not its attr.disabled bit. We hold the parent's mutex,
10797 * so we won't race with perf_event_{en, dis}able_family.
10798 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010799 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010800 child_event->state = PERF_EVENT_STATE_INACTIVE;
10801 else
10802 child_event->state = PERF_EVENT_STATE_OFF;
10803
10804 if (parent_event->attr.freq) {
10805 u64 sample_period = parent_event->hw.sample_period;
10806 struct hw_perf_event *hwc = &child_event->hw;
10807
10808 hwc->sample_period = sample_period;
10809 hwc->last_period = sample_period;
10810
10811 local64_set(&hwc->period_left, sample_period);
10812 }
10813
10814 child_event->ctx = child_ctx;
10815 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010816 child_event->overflow_handler_context
10817 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010818
10819 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010820 * Precalculate sample_data sizes
10821 */
10822 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010823 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010824
10825 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010826 * Link it up in the child's context:
10827 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010828 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010829 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010830 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010831
10832 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010833 * Link this into the parent event's child list
10834 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010835 list_add_tail(&child_event->child_list, &parent_event->child_list);
10836 mutex_unlock(&parent_event->child_mutex);
10837
10838 return child_event;
10839}
10840
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010841/*
10842 * Inherits an event group.
10843 *
10844 * This will quietly suppress orphaned events; !inherit_event() is not an error.
10845 * This matches with perf_event_release_kernel() removing all child events.
10846 *
10847 * Returns:
10848 * - 0 on success
10849 * - <0 on error
10850 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010851static int inherit_group(struct perf_event *parent_event,
10852 struct task_struct *parent,
10853 struct perf_event_context *parent_ctx,
10854 struct task_struct *child,
10855 struct perf_event_context *child_ctx)
10856{
10857 struct perf_event *leader;
10858 struct perf_event *sub;
10859 struct perf_event *child_ctr;
10860
10861 leader = inherit_event(parent_event, parent, parent_ctx,
10862 child, NULL, child_ctx);
10863 if (IS_ERR(leader))
10864 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010865 /*
10866 * @leader can be NULL here because of is_orphaned_event(). In this
10867 * case inherit_event() will create individual events, similar to what
10868 * perf_group_detach() would do anyway.
10869 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010870 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10871 child_ctr = inherit_event(sub, parent, parent_ctx,
10872 child, leader, child_ctx);
10873 if (IS_ERR(child_ctr))
10874 return PTR_ERR(child_ctr);
10875 }
10876 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010877}
10878
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010879/*
10880 * Creates the child task context and tries to inherit the event-group.
10881 *
10882 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
10883 * inherited_all set when we 'fail' to inherit an orphaned event; this is
10884 * consistent with perf_event_release_kernel() removing all child events.
10885 *
10886 * Returns:
10887 * - 0 on success
10888 * - <0 on error
10889 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010890static int
10891inherit_task_group(struct perf_event *event, struct task_struct *parent,
10892 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010893 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010894 int *inherited_all)
10895{
10896 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010897 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010898
10899 if (!event->attr.inherit) {
10900 *inherited_all = 0;
10901 return 0;
10902 }
10903
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010904 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010905 if (!child_ctx) {
10906 /*
10907 * This is executed from the parent task context, so
10908 * inherit events that have been marked for cloning.
10909 * First allocate and initialize a context for the
10910 * child.
10911 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020010912 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010913 if (!child_ctx)
10914 return -ENOMEM;
10915
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010916 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010917 }
10918
10919 ret = inherit_group(event, parent, parent_ctx,
10920 child, child_ctx);
10921
10922 if (ret)
10923 *inherited_all = 0;
10924
10925 return ret;
10926}
10927
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010928/*
10929 * Initialize the perf_event context in task_struct
10930 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010931static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010932{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010933 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010934 struct perf_event_context *cloned_ctx;
10935 struct perf_event *event;
10936 struct task_struct *parent = current;
10937 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010938 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010939 int ret = 0;
10940
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010941 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010942 return 0;
10943
10944 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010945 * If the parent's context is a clone, pin it so it won't get
10946 * swapped under us.
10947 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010948 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010949 if (!parent_ctx)
10950 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010951
10952 /*
10953 * No need to check if parent_ctx != NULL here; since we saw
10954 * it non-NULL earlier, the only reason for it to become NULL
10955 * is if we exit, and since we're currently in the middle of
10956 * a fork we can't be exiting at the same time.
10957 */
10958
10959 /*
10960 * Lock the parent list. No need to lock the child - not PID
10961 * hashed yet and not running, so nobody can access it.
10962 */
10963 mutex_lock(&parent_ctx->mutex);
10964
10965 /*
10966 * We dont have to disable NMIs - we are only looking at
10967 * the list, not manipulating it:
10968 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010969 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010970 ret = inherit_task_group(event, parent, parent_ctx,
10971 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010972 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010010973 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010974 }
10975
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010976 /*
10977 * We can't hold ctx->lock when iterating the ->flexible_group list due
10978 * to allocations, but we need to prevent rotation because
10979 * rotate_ctx() will change the list from interrupt context.
10980 */
10981 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10982 parent_ctx->rotate_disable = 1;
10983 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10984
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010985 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010986 ret = inherit_task_group(event, parent, parent_ctx,
10987 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010988 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010010989 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010990 }
10991
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010992 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10993 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010994
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010995 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010996
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010997 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010998 /*
10999 * Mark the child context as a clone of the parent
11000 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011001 *
11002 * Note that if the parent is a clone, the holding of
11003 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011004 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011005 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011006 if (cloned_ctx) {
11007 child_ctx->parent_ctx = cloned_ctx;
11008 child_ctx->parent_gen = parent_ctx->parent_gen;
11009 } else {
11010 child_ctx->parent_ctx = parent_ctx;
11011 child_ctx->parent_gen = parent_ctx->generation;
11012 }
11013 get_ctx(child_ctx->parent_ctx);
11014 }
11015
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011016 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011017out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011018 mutex_unlock(&parent_ctx->mutex);
11019
11020 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011021 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011022
11023 return ret;
11024}
11025
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011026/*
11027 * Initialize the perf_event context in task_struct
11028 */
11029int perf_event_init_task(struct task_struct *child)
11030{
11031 int ctxn, ret;
11032
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010011033 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
11034 mutex_init(&child->perf_event_mutex);
11035 INIT_LIST_HEAD(&child->perf_event_list);
11036
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011037 for_each_task_context_nr(ctxn) {
11038 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011039 if (ret) {
11040 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011041 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011042 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011043 }
11044
11045 return 0;
11046}
11047
Paul Mackerras220b1402010-03-10 20:45:52 +110011048static void __init perf_event_init_all_cpus(void)
11049{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011050 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110011051 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110011052
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011053 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
11054
Paul Mackerras220b1402010-03-10 20:45:52 +110011055 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011056 swhash = &per_cpu(swevent_htable, cpu);
11057 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000011058 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070011059
11060 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
11061 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011062
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080011063#ifdef CONFIG_CGROUP_PERF
11064 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
11065#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011066 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110011067 }
11068}
11069
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011070void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011071{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011072 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011073
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011074 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000011075 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011076 struct swevent_hlist *hlist;
11077
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011078 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
11079 WARN_ON(!hlist);
11080 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011081 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011082 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011083}
11084
Dave Young2965faa2015-09-09 15:38:55 -070011085#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011086static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011087{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011088 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011089 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
11090 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011091
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011092 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020011093 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011094 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011095 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011096 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011097}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011098
11099static void perf_event_exit_cpu_context(int cpu)
11100{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011101 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011102 struct perf_event_context *ctx;
11103 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011104
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011105 mutex_lock(&pmus_lock);
11106 list_for_each_entry(pmu, &pmus, entry) {
11107 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11108 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011109
11110 mutex_lock(&ctx->mutex);
11111 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011112 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011113 mutex_unlock(&ctx->mutex);
11114 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011115 cpumask_clear_cpu(cpu, perf_online_mask);
11116 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011117}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011118#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011119
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011120static void perf_event_exit_cpu_context(int cpu) { }
11121
11122#endif
11123
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011124int perf_event_init_cpu(unsigned int cpu)
11125{
11126 struct perf_cpu_context *cpuctx;
11127 struct perf_event_context *ctx;
11128 struct pmu *pmu;
11129
11130 perf_swevent_init_cpu(cpu);
11131
11132 mutex_lock(&pmus_lock);
11133 cpumask_set_cpu(cpu, perf_online_mask);
11134 list_for_each_entry(pmu, &pmus, entry) {
11135 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11136 ctx = &cpuctx->ctx;
11137
11138 mutex_lock(&ctx->mutex);
11139 cpuctx->online = 1;
11140 mutex_unlock(&ctx->mutex);
11141 }
11142 mutex_unlock(&pmus_lock);
11143
11144 return 0;
11145}
11146
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011147int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011148{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010011149 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011150 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011151}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011152
Peter Zijlstrac2774432010-12-08 15:29:02 +010011153static int
11154perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
11155{
11156 int cpu;
11157
11158 for_each_online_cpu(cpu)
11159 perf_event_exit_cpu(cpu);
11160
11161 return NOTIFY_OK;
11162}
11163
11164/*
11165 * Run the perf reboot notifier at the very last possible moment so that
11166 * the generic watchdog code runs as long as possible.
11167 */
11168static struct notifier_block perf_reboot_notifier = {
11169 .notifier_call = perf_reboot,
11170 .priority = INT_MIN,
11171};
11172
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011173void __init perf_event_init(void)
11174{
Jason Wessel3c502e72010-11-04 17:33:01 -050011175 int ret;
11176
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011177 idr_init(&pmu_idr);
11178
Paul Mackerras220b1402010-03-10 20:45:52 +110011179 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011180 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011181 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
11182 perf_pmu_register(&perf_cpu_clock, NULL, -1);
11183 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011184 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011185 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010011186 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050011187
11188 ret = init_hw_breakpoint();
11189 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020011190
Jiri Olsab01c3a02012-03-23 15:41:20 +010011191 /*
11192 * Build time assertion that we keep the data_head at the intended
11193 * location. IOW, validation we got the __reserved[] size right.
11194 */
11195 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
11196 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011197}
Peter Zijlstraabe43402010-11-17 23:17:37 +010011198
Cody P Schaferfd979c02015-01-30 13:45:57 -080011199ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
11200 char *page)
11201{
11202 struct perf_pmu_events_attr *pmu_attr =
11203 container_of(attr, struct perf_pmu_events_attr, attr);
11204
11205 if (pmu_attr->event_str)
11206 return sprintf(page, "%s\n", pmu_attr->event_str);
11207
11208 return 0;
11209}
Thomas Gleixner675965b2016-02-22 22:19:27 +000011210EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080011211
Peter Zijlstraabe43402010-11-17 23:17:37 +010011212static int __init perf_event_sysfs_init(void)
11213{
11214 struct pmu *pmu;
11215 int ret;
11216
11217 mutex_lock(&pmus_lock);
11218
11219 ret = bus_register(&pmu_bus);
11220 if (ret)
11221 goto unlock;
11222
11223 list_for_each_entry(pmu, &pmus, entry) {
11224 if (!pmu->name || pmu->type < 0)
11225 continue;
11226
11227 ret = pmu_dev_alloc(pmu);
11228 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
11229 }
11230 pmu_bus_running = 1;
11231 ret = 0;
11232
11233unlock:
11234 mutex_unlock(&pmus_lock);
11235
11236 return ret;
11237}
11238device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011239
11240#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040011241static struct cgroup_subsys_state *
11242perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011243{
11244 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020011245
Li Zefan1b15d052011-03-03 14:26:06 +080011246 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011247 if (!jc)
11248 return ERR_PTR(-ENOMEM);
11249
Stephane Eraniane5d13672011-02-14 11:20:01 +020011250 jc->info = alloc_percpu(struct perf_cgroup_info);
11251 if (!jc->info) {
11252 kfree(jc);
11253 return ERR_PTR(-ENOMEM);
11254 }
11255
Stephane Eraniane5d13672011-02-14 11:20:01 +020011256 return &jc->css;
11257}
11258
Tejun Heoeb954192013-08-08 20:11:23 -040011259static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011260{
Tejun Heoeb954192013-08-08 20:11:23 -040011261 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
11262
Stephane Eraniane5d13672011-02-14 11:20:01 +020011263 free_percpu(jc->info);
11264 kfree(jc);
11265}
11266
11267static int __perf_cgroup_move(void *info)
11268{
11269 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011270 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011271 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011272 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011273 return 0;
11274}
11275
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011276static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011277{
Tejun Heobb9d97b2011-12-12 18:12:21 -080011278 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011279 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080011280
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011281 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080011282 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011283}
11284
Tejun Heo073219e2014-02-08 10:36:58 -050011285struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080011286 .css_alloc = perf_cgroup_css_alloc,
11287 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080011288 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050011289 /*
11290 * Implicitly enable on dfl hierarchy so that perf events can
11291 * always be filtered by cgroup2 path as long as perf_event
11292 * controller is not mounted on a legacy hierarchy.
11293 */
11294 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040011295 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020011296};
11297#endif /* CONFIG_CGROUP_PERF */