blob: fc18664f49b08743883b4ac0758ccdc58c7e7e08 [file] [log] [blame]
Thomas Gleixner8e86e012019-01-16 12:10:59 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002/*
Ingo Molnar57c0c152009-09-21 12:20:38 +02003 * Performance events core code:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004 *
5 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
Ingo Molnare7e7ee22011-05-04 08:42:29 +02006 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
Peter Zijlstra90eec102015-11-16 11:08:45 +01007 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra
Al Virod36b6912011-12-29 17:09:01 -05008 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009 */
10
11#include <linux/fs.h>
12#include <linux/mm.h>
13#include <linux/cpu.h>
14#include <linux/smp.h>
Peter Zijlstra2e80a822010-11-17 23:17:36 +010015#include <linux/idr.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020016#include <linux/file.h>
17#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020019#include <linux/hash.h>
Frederic Weisbecker12351ef2013-04-20 15:48:22 +020020#include <linux/tick.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020021#include <linux/sysfs.h>
22#include <linux/dcache.h>
23#include <linux/percpu.h>
24#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010025#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020026#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010027#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040028#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020029#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020030#include <linux/hardirq.h>
Anshuman Khandual03911132020-04-06 20:03:51 -070031#include <linux/hugetlb.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020032#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>
Ian Rogers6eef8a712020-02-13 23:51:30 -080053#include <linux/min_heap.h>
Kan Liang8d97e712020-10-01 06:57:46 -070054#include <linux/highmem.h>
Peter Zijlstra8af26be2020-11-11 13:43:57 +010055#include <linux/pgtable.h>
Jiri Olsa88a16a12021-01-14 14:40:44 +010056#include <linux/buildid.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020057
Frederic Weisbecker76369132011-05-19 19:55:04 +020058#include "internal.h"
59
Ingo Molnarcdd6c482009-09-21 12:02:48 +020060#include <asm/irq_regs.h>
61
Peter Zijlstra272325c2015-04-15 11:41:58 +020062typedef int (*remote_function_f)(void *);
63
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010064struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020065 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020066 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020067 void *info;
68 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010069};
70
71static void remote_function(void *data)
72{
73 struct remote_function_call *tfc = data;
74 struct task_struct *p = tfc->p;
75
76 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010077 /* -EAGAIN */
78 if (task_cpu(p) != smp_processor_id())
79 return;
80
81 /*
82 * Now that we're on right CPU with IRQs disabled, we can test
83 * if we hit the right task without races.
84 */
85
86 tfc->ret = -ESRCH; /* No such (running) process */
87 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010088 return;
89 }
90
91 tfc->ret = tfc->func(tfc->info);
92}
93
94/**
95 * task_function_call - call a function on the cpu on which a task runs
96 * @p: the task to evaluate
97 * @func: the function to be called
98 * @info: the function call argument
99 *
100 * Calls the function @func when the task is currently running. This might
Barret Rhoden2ed6edd2020-04-14 18:29:20 -0400101 * be on the current CPU, which just calls the function directly. This will
102 * retry due to any failures in smp_call_function_single(), such as if the
103 * task_cpu() goes offline concurrently.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100104 *
Kajol Jain6d6b8b92020-08-27 12:17:32 +0530105 * returns @func return value or -ESRCH or -ENXIO when the process isn't running
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100106 */
107static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200108task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100109{
110 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200111 .p = p,
112 .func = func,
113 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100114 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100115 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100116 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100117
Barret Rhoden2ed6edd2020-04-14 18:29:20 -0400118 for (;;) {
119 ret = smp_call_function_single(task_cpu(p), remote_function,
120 &data, 1);
Kajol Jain6d6b8b92020-08-27 12:17:32 +0530121 if (!ret)
122 ret = data.ret;
Barret Rhoden2ed6edd2020-04-14 18:29:20 -0400123
124 if (ret != -EAGAIN)
125 break;
126
127 cond_resched();
128 }
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100129
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100130 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100131}
132
133/**
134 * cpu_function_call - call a function on the cpu
Haocheng Xiea1ddf522021-05-27 11:19:46 +0800135 * @cpu: target cpu to queue this function
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100136 * @func: the function to be called
137 * @info: the function call argument
138 *
139 * Calls the function @func on the remote cpu.
140 *
141 * returns: @func return value or -ENXIO when the cpu is offline
142 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200143static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100144{
145 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200146 .p = NULL,
147 .func = func,
148 .info = info,
149 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100150 };
151
152 smp_call_function_single(cpu, remote_function, &data, 1);
153
154 return data.ret;
155}
156
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100157static inline struct perf_cpu_context *
158__get_cpu_context(struct perf_event_context *ctx)
159{
160 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
161}
162
163static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
164 struct perf_event_context *ctx)
165{
166 raw_spin_lock(&cpuctx->ctx.lock);
167 if (ctx)
168 raw_spin_lock(&ctx->lock);
169}
170
171static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
172 struct perf_event_context *ctx)
173{
174 if (ctx)
175 raw_spin_unlock(&ctx->lock);
176 raw_spin_unlock(&cpuctx->ctx.lock);
177}
178
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100179#define TASK_TOMBSTONE ((void *)-1L)
180
181static bool is_kernel_event(struct perf_event *event)
182{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100183 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100184}
185
Peter Zijlstra39a43642016-01-11 12:46:35 +0100186/*
187 * On task ctx scheduling...
188 *
189 * When !ctx->nr_events a task context will not be scheduled. This means
190 * we can disable the scheduler hooks (for performance) without leaving
191 * pending task ctx state.
192 *
193 * This however results in two special cases:
194 *
195 * - removing the last event from a task ctx; this is relatively straight
196 * forward and is done in __perf_remove_from_context.
197 *
198 * - adding the first event to a task ctx; this is tricky because we cannot
199 * rely on ctx->is_active and therefore cannot use event_function_call().
200 * See perf_install_in_context().
201 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100202 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
203 */
204
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100205typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
206 struct perf_event_context *, void *);
207
208struct event_function_struct {
209 struct perf_event *event;
210 event_f func;
211 void *data;
212};
213
214static int event_function(void *info)
215{
216 struct event_function_struct *efs = info;
217 struct perf_event *event = efs->event;
218 struct perf_event_context *ctx = event->ctx;
219 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
220 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100221 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100222
Frederic Weisbecker16444642017-11-06 16:01:24 +0100223 lockdep_assert_irqs_disabled();
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100224
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100225 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100226 /*
227 * Since we do the IPI call without holding ctx->lock things can have
228 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100229 */
230 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100231 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100232 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100233 goto unlock;
234 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100235
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100236 /*
237 * We only use event_function_call() on established contexts,
238 * and event_function() is only ever called when active (or
239 * rather, we'll have bailed in task_function_call() or the
240 * above ctx->task != current test), therefore we must have
241 * ctx->is_active here.
242 */
243 WARN_ON_ONCE(!ctx->is_active);
244 /*
245 * And since we have ctx->is_active, cpuctx->task_ctx must
246 * match.
247 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100248 WARN_ON_ONCE(task_ctx != ctx);
249 } else {
250 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100251 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100252
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100253 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100254unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100255 perf_ctx_unlock(cpuctx, task_ctx);
256
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100257 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100258}
259
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100260static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100261{
262 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100263 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100264 struct event_function_struct efs = {
265 .event = event,
266 .func = func,
267 .data = data,
268 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100269
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100270 if (!event->parent) {
271 /*
272 * If this is a !child event, we must hold ctx::mutex to
Randy Dunlapc034f482021-02-25 17:21:10 -0800273 * stabilize the event->ctx relation. See
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100274 * perf_event_ctx_lock().
275 */
276 lockdep_assert_held(&ctx->mutex);
277 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100278
279 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100280 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100281 return;
282 }
283
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100284 if (task == TASK_TOMBSTONE)
285 return;
286
Peter Zijlstraa0963092016-02-24 18:45:50 +0100287again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100288 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100289 return;
290
291 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100292 /*
293 * Reload the task pointer, it might have been changed by
294 * a concurrent perf_event_context_sched_out().
295 */
296 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100297 if (task == TASK_TOMBSTONE) {
298 raw_spin_unlock_irq(&ctx->lock);
299 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100300 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100301 if (ctx->is_active) {
302 raw_spin_unlock_irq(&ctx->lock);
303 goto again;
304 }
305 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100306 raw_spin_unlock_irq(&ctx->lock);
307}
308
Peter Zijlstracca20942016-08-16 13:33:26 +0200309/*
310 * Similar to event_function_call() + event_function(), but hard assumes IRQs
311 * are already disabled and we're on the right CPU.
312 */
313static void event_function_local(struct perf_event *event, event_f func, void *data)
314{
315 struct perf_event_context *ctx = event->ctx;
316 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
317 struct task_struct *task = READ_ONCE(ctx->task);
318 struct perf_event_context *task_ctx = NULL;
319
Frederic Weisbecker16444642017-11-06 16:01:24 +0100320 lockdep_assert_irqs_disabled();
Peter Zijlstracca20942016-08-16 13:33:26 +0200321
322 if (task) {
323 if (task == TASK_TOMBSTONE)
324 return;
325
326 task_ctx = ctx;
327 }
328
329 perf_ctx_lock(cpuctx, task_ctx);
330
331 task = ctx->task;
332 if (task == TASK_TOMBSTONE)
333 goto unlock;
334
335 if (task) {
336 /*
337 * We must be either inactive or active and the right task,
338 * otherwise we're screwed, since we cannot IPI to somewhere
339 * else.
340 */
341 if (ctx->is_active) {
342 if (WARN_ON_ONCE(task != current))
343 goto unlock;
344
345 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
346 goto unlock;
347 }
348 } else {
349 WARN_ON_ONCE(&cpuctx->ctx != ctx);
350 }
351
352 func(event, cpuctx, ctx, data);
353unlock:
354 perf_ctx_unlock(cpuctx, task_ctx);
355}
356
Stephane Eraniane5d13672011-02-14 11:20:01 +0200357#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
358 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100359 PERF_FLAG_PID_CGROUP |\
360 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200361
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100362/*
363 * branch priv levels that need permission checks
364 */
365#define PERF_SAMPLE_BRANCH_PERM_PLM \
366 (PERF_SAMPLE_BRANCH_KERNEL |\
367 PERF_SAMPLE_BRANCH_HV)
368
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200369enum event_type_t {
370 EVENT_FLEXIBLE = 0x1,
371 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100372 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200373 /* see ctx_resched() for details */
374 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200375 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
376};
377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378/*
379 * perf_sched_events : >0 events exist
380 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
381 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100382
383static void perf_sched_delayed(struct work_struct *work);
384DEFINE_STATIC_KEY_FALSE(perf_sched_events);
385static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
386static DEFINE_MUTEX(perf_sched_mutex);
387static atomic_t perf_sched_count;
388
Stephane Eraniane5d13672011-02-14 11:20:01 +0200389static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Kan Lianga5398bf2020-11-30 11:38:40 -0800390static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700391static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200392
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200393static atomic_t nr_mmap_events __read_mostly;
394static atomic_t nr_comm_events __read_mostly;
Hari Bathinie4222672017-03-08 02:11:36 +0530395static atomic_t nr_namespaces_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200396static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200397static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300398static atomic_t nr_switch_events __read_mostly;
Song Liu76193a92019-01-17 08:15:13 -0800399static atomic_t nr_ksymbol_events __read_mostly;
Song Liu6ee52e22019-01-17 08:15:15 -0800400static atomic_t nr_bpf_events __read_mostly;
Namhyung Kim96aaab62020-03-25 21:45:28 +0900401static atomic_t nr_cgroup_events __read_mostly;
Adrian Huntere17d43b2020-05-12 15:19:08 +0300402static atomic_t nr_text_poke_events __read_mostly;
Jiri Olsa88a16a12021-01-14 14:40:44 +0100403static atomic_t nr_build_id_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200404
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200405static LIST_HEAD(pmus);
406static DEFINE_MUTEX(pmus_lock);
407static struct srcu_struct pmus_srcu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +0200408static cpumask_var_t perf_online_mask;
Namhyung Kimbdacfaf2021-03-11 20:54:12 +0900409static struct kmem_cache *perf_event_cache;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200410
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200411/*
412 * perf event paranoia level:
413 * -1 - not paranoid at all
414 * 0 - disallow raw tracepoint access for unpriv
415 * 1 - disallow cpu events for unpriv
416 * 2 - disallow kernel profiling for unpriv
417 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700418int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200419
Frederic Weisbecker20443382011-03-31 03:33:29 +0200420/* Minimum for 512 kiB + 1 user control page */
421int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200422
423/*
424 * max perf event sample rate
425 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700426#define DEFAULT_MAX_SAMPLE_RATE 100000
427#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
428#define DEFAULT_CPU_TIME_MAX_PERCENT 25
429
430int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
431
432static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
433static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
434
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200435static int perf_sample_allowed_ns __read_mostly =
436 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700437
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800438static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700439{
440 u64 tmp = perf_sample_period_ns;
441
442 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100443 tmp = div_u64(tmp, 100);
444 if (!tmp)
445 tmp = 1;
446
447 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700448}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100449
Peter Zijlstra8d5bce02018-03-09 14:56:27 +0100450static bool perf_rotate_context(struct perf_cpu_context *cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +0200451
Peter Zijlstra163ec432011-02-16 11:22:34 +0100452int perf_proc_update_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200453 void *buffer, size_t *lenp, loff_t *ppos)
Peter Zijlstra163ec432011-02-16 11:22:34 +0100454{
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800455 int ret;
456 int perf_cpu = sysctl_perf_cpu_time_max_percent;
Kan Liangab7fdef2016-05-03 00:26:06 -0700457 /*
458 * If throttling is disabled don't allow the write:
459 */
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800460 if (write && (perf_cpu == 100 || perf_cpu == 0))
Kan Liangab7fdef2016-05-03 00:26:06 -0700461 return -EINVAL;
462
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800463 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
464 if (ret || !write)
465 return ret;
466
Peter Zijlstra163ec432011-02-16 11:22:34 +0100467 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700468 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
469 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100470
471 return 0;
472}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200473
Dave Hansen14c63f12013-06-21 08:51:36 -0700474int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
475
476int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200477 void *buffer, size_t *lenp, loff_t *ppos)
Dave Hansen14c63f12013-06-21 08:51:36 -0700478{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800479 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700480
481 if (ret || !write)
482 return ret;
483
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200484 if (sysctl_perf_cpu_time_max_percent == 100 ||
485 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100486 printk(KERN_WARNING
487 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
488 WRITE_ONCE(perf_sample_allowed_ns, 0);
489 } else {
490 update_perf_cpu_limits();
491 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700492
493 return 0;
494}
495
496/*
497 * perf samples are done in some very critical code paths (NMIs).
498 * If they take too much CPU time, the system can lock up and not
499 * get any real work done. This will drop the sample rate when
500 * we detect that events are taking too long.
501 */
502#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200503static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700504
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100505static u64 __report_avg;
506static u64 __report_allowed;
507
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100508static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700509{
David Ahern0d87d7e2016-08-01 13:49:29 -0700510 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100511 "perf: interrupt took too long (%lld > %lld), lowering "
512 "kernel.perf_event_max_sample_rate to %d\n",
513 __report_avg, __report_allowed,
514 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100515}
516
517static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
518
519void perf_sample_event_took(u64 sample_len_ns)
520{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100521 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
522 u64 running_len;
523 u64 avg_len;
524 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700525
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100526 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700527 return;
528
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100529 /* Decay the counter by 1 average sample. */
530 running_len = __this_cpu_read(running_sample_length);
531 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
532 running_len += sample_len_ns;
533 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700534
535 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100536 * Note: this will be biased artifically low until we have
537 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700538 * from having to maintain a count.
539 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100540 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
541 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700542 return;
543
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100544 __report_avg = avg_len;
545 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700546
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100547 /*
548 * Compute a throttle threshold 25% below the current duration.
549 */
550 avg_len += avg_len / 4;
551 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
552 if (avg_len < max)
553 max /= (u32)avg_len;
554 else
555 max = 1;
556
557 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
558 WRITE_ONCE(max_samples_per_tick, max);
559
560 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700561 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
562
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100563 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100564 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100565 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100566 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100567 sysctl_perf_event_sample_rate);
568 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700569}
570
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200571static atomic64_t perf_event_id;
572
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200573static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
574 enum event_type_t event_type);
575
576static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200577 enum event_type_t event_type,
578 struct task_struct *task);
579
580static void update_context_time(struct perf_event_context *ctx);
581static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200582
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200583void __weak perf_event_print_debug(void) { }
584
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200585static inline u64 perf_clock(void)
586{
587 return local_clock();
588}
589
Peter Zijlstra34f43922015-02-20 14:05:38 +0100590static inline u64 perf_event_clock(struct perf_event *event)
591{
592 return event->clock();
593}
594
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200595/*
596 * State based event timekeeping...
597 *
598 * The basic idea is to use event->state to determine which (if any) time
599 * fields to increment with the current delta. This means we only need to
600 * update timestamps when we change state or when they are explicitly requested
601 * (read).
602 *
603 * Event groups make things a little more complicated, but not terribly so. The
604 * rules for a group are that if the group leader is OFF the entire group is
605 * OFF, irrespecive of what the group member states are. This results in
606 * __perf_effective_state().
607 *
608 * A futher ramification is that when a group leader flips between OFF and
609 * !OFF, we need to update all group member times.
610 *
611 *
612 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
613 * need to make sure the relevant context time is updated before we try and
614 * update our timestamps.
615 */
616
617static __always_inline enum perf_event_state
618__perf_effective_state(struct perf_event *event)
619{
620 struct perf_event *leader = event->group_leader;
621
622 if (leader->state <= PERF_EVENT_STATE_OFF)
623 return leader->state;
624
625 return event->state;
626}
627
628static __always_inline void
629__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
630{
631 enum perf_event_state state = __perf_effective_state(event);
632 u64 delta = now - event->tstamp;
633
634 *enabled = event->total_time_enabled;
635 if (state >= PERF_EVENT_STATE_INACTIVE)
636 *enabled += delta;
637
638 *running = event->total_time_running;
639 if (state >= PERF_EVENT_STATE_ACTIVE)
640 *running += delta;
641}
642
643static void perf_event_update_time(struct perf_event *event)
644{
645 u64 now = perf_event_time(event);
646
647 __perf_update_times(event, now, &event->total_time_enabled,
648 &event->total_time_running);
649 event->tstamp = now;
650}
651
652static void perf_event_update_sibling_time(struct perf_event *leader)
653{
654 struct perf_event *sibling;
655
Peter Zijlstraedb39592018-03-15 17:36:56 +0100656 for_each_sibling_event(sibling, leader)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200657 perf_event_update_time(sibling);
658}
659
660static void
661perf_event_set_state(struct perf_event *event, enum perf_event_state state)
662{
663 if (event->state == state)
664 return;
665
666 perf_event_update_time(event);
667 /*
668 * If a group leader gets enabled/disabled all its siblings
669 * are affected too.
670 */
671 if ((event->state < 0) ^ (state < 0))
672 perf_event_update_sibling_time(event);
673
674 WRITE_ONCE(event->state, state);
675}
676
Stephane Eraniane5d13672011-02-14 11:20:01 +0200677#ifdef CONFIG_CGROUP_PERF
678
Stephane Eraniane5d13672011-02-14 11:20:01 +0200679static inline bool
680perf_cgroup_match(struct perf_event *event)
681{
682 struct perf_event_context *ctx = event->ctx;
683 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
684
Tejun Heoef824fa2013-04-08 19:00:38 -0700685 /* @event doesn't care about cgroup */
686 if (!event->cgrp)
687 return true;
688
689 /* wants specific cgroup scope but @cpuctx isn't associated with any */
690 if (!cpuctx->cgrp)
691 return false;
692
693 /*
694 * Cgroup scoping is recursive. An event enabled for a cgroup is
695 * also enabled for all its descendant cgroups. If @cpuctx's
696 * cgroup is a descendant of @event's (the test covers identity
697 * case), it's a match.
698 */
699 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
700 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200701}
702
Stephane Eraniane5d13672011-02-14 11:20:01 +0200703static inline void perf_detach_cgroup(struct perf_event *event)
704{
Zefan Li4e2ba652014-09-19 16:53:14 +0800705 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200706 event->cgrp = NULL;
707}
708
709static inline int is_cgroup_event(struct perf_event *event)
710{
711 return event->cgrp != NULL;
712}
713
714static inline u64 perf_cgroup_event_time(struct perf_event *event)
715{
716 struct perf_cgroup_info *t;
717
718 t = per_cpu_ptr(event->cgrp->info, event->cpu);
719 return t->time;
720}
721
722static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
723{
724 struct perf_cgroup_info *info;
725 u64 now;
726
727 now = perf_clock();
728
729 info = this_cpu_ptr(cgrp->info);
730
731 info->time += now - info->timestamp;
732 info->timestamp = now;
733}
734
735static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
736{
Song Liuc917e0f22018-03-12 09:59:43 -0700737 struct perf_cgroup *cgrp = cpuctx->cgrp;
738 struct cgroup_subsys_state *css;
739
740 if (cgrp) {
741 for (css = &cgrp->css; css; css = css->parent) {
742 cgrp = container_of(css, struct perf_cgroup, css);
743 __update_cgrp_time(cgrp);
744 }
745 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200746}
747
748static inline void update_cgrp_time_from_event(struct perf_event *event)
749{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200750 struct perf_cgroup *cgrp;
751
Stephane Eraniane5d13672011-02-14 11:20:01 +0200752 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200753 * ensure we access cgroup data only when needed and
754 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200755 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200756 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200757 return;
758
Stephane Eranian614e4c42015-11-12 11:00:04 +0100759 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200760 /*
761 * Do not update time when cgroup is not active
762 */
Colin Ian King28fa7412018-10-29 23:32:11 +0000763 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200764 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200765}
766
767static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200768perf_cgroup_set_timestamp(struct task_struct *task,
769 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200770{
771 struct perf_cgroup *cgrp;
772 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700773 struct cgroup_subsys_state *css;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200774
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200775 /*
776 * ctx->lock held by caller
777 * ensure we do not access cgroup data
778 * unless we have the cgroup pinned (css_get)
779 */
780 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200781 return;
782
Stephane Eranian614e4c42015-11-12 11:00:04 +0100783 cgrp = perf_cgroup_from_task(task, ctx);
Song Liuc917e0f22018-03-12 09:59:43 -0700784
785 for (css = &cgrp->css; css; css = css->parent) {
786 cgrp = container_of(css, struct perf_cgroup, css);
787 info = this_cpu_ptr(cgrp->info);
788 info->timestamp = ctx->timestamp;
789 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200790}
791
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800792static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
793
Stephane Eraniane5d13672011-02-14 11:20:01 +0200794#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
795#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
796
797/*
798 * reschedule events based on the cgroup constraint of task.
799 *
800 * mode SWOUT : schedule out everything
801 * mode SWIN : schedule in based on cgroup for next
802 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800803static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200804{
805 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800806 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200807 unsigned long flags;
808
809 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800810 * Disable interrupts and preemption to avoid this CPU's
811 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200812 */
813 local_irq_save(flags);
814
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800815 list = this_cpu_ptr(&cgrp_cpuctx_list);
816 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
817 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200818
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800819 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
820 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200821
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800822 if (mode & PERF_CGROUP_SWOUT) {
823 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
824 /*
825 * must not be done before ctxswout due
826 * to event_filter_match() in event_sched_out()
827 */
828 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200829 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800830
831 if (mode & PERF_CGROUP_SWIN) {
832 WARN_ON_ONCE(cpuctx->cgrp);
833 /*
834 * set cgrp before ctxsw in to allow
835 * event_filter_match() to not have to pass
836 * task around
837 * we pass the cpuctx->ctx to perf_cgroup_from_task()
838 * because cgorup events are only per-cpu
839 */
840 cpuctx->cgrp = perf_cgroup_from_task(task,
841 &cpuctx->ctx);
842 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
843 }
844 perf_pmu_enable(cpuctx->ctx.pmu);
845 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200846 }
847
Stephane Eraniane5d13672011-02-14 11:20:01 +0200848 local_irq_restore(flags);
849}
850
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200851static inline void perf_cgroup_sched_out(struct task_struct *task,
852 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200853{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200854 struct perf_cgroup *cgrp1;
855 struct perf_cgroup *cgrp2 = NULL;
856
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100857 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200858 /*
859 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100860 * we do not need to pass the ctx here because we know
861 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200862 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100863 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100864 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200865
866 /*
867 * only schedule out current cgroup events if we know
868 * that we are switching to a different cgroup. Otherwise,
869 * do no touch the cgroup events.
870 */
871 if (cgrp1 != cgrp2)
872 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100873
874 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200875}
876
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200877static inline void perf_cgroup_sched_in(struct task_struct *prev,
878 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200879{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200880 struct perf_cgroup *cgrp1;
881 struct perf_cgroup *cgrp2 = NULL;
882
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100883 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200884 /*
885 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100886 * we do not need to pass the ctx here because we know
887 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200888 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100889 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100890 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200891
892 /*
893 * only need to schedule in cgroup events if we are changing
894 * cgroup during ctxsw. Cgroup events were not scheduled
895 * out of ctxsw out if that was not the case.
896 */
897 if (cgrp1 != cgrp2)
898 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100899
900 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200901}
902
Ian Rogersc2283c92020-02-13 23:51:32 -0800903static int perf_cgroup_ensure_storage(struct perf_event *event,
904 struct cgroup_subsys_state *css)
905{
906 struct perf_cpu_context *cpuctx;
907 struct perf_event **storage;
908 int cpu, heap_size, ret = 0;
909
910 /*
911 * Allow storage to have sufficent space for an iterator for each
912 * possibly nested cgroup plus an iterator for events with no cgroup.
913 */
914 for (heap_size = 1; css; css = css->parent)
915 heap_size++;
916
917 for_each_possible_cpu(cpu) {
918 cpuctx = per_cpu_ptr(event->pmu->pmu_cpu_context, cpu);
919 if (heap_size <= cpuctx->heap_size)
920 continue;
921
922 storage = kmalloc_node(heap_size * sizeof(struct perf_event *),
923 GFP_KERNEL, cpu_to_node(cpu));
924 if (!storage) {
925 ret = -ENOMEM;
926 break;
927 }
928
929 raw_spin_lock_irq(&cpuctx->ctx.lock);
930 if (cpuctx->heap_size < heap_size) {
931 swap(cpuctx->heap, storage);
932 if (storage == cpuctx->heap_default)
933 storage = NULL;
934 cpuctx->heap_size = heap_size;
935 }
936 raw_spin_unlock_irq(&cpuctx->ctx.lock);
937
938 kfree(storage);
939 }
940
941 return ret;
942}
943
Stephane Eraniane5d13672011-02-14 11:20:01 +0200944static inline int perf_cgroup_connect(int fd, struct perf_event *event,
945 struct perf_event_attr *attr,
946 struct perf_event *group_leader)
947{
948 struct perf_cgroup *cgrp;
949 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400950 struct fd f = fdget(fd);
951 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200952
Al Viro2903ff02012-08-28 12:52:22 -0400953 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200954 return -EBADF;
955
Al Virob5830432014-10-31 01:22:04 -0400956 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400957 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800958 if (IS_ERR(css)) {
959 ret = PTR_ERR(css);
960 goto out;
961 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200962
Ian Rogersc2283c92020-02-13 23:51:32 -0800963 ret = perf_cgroup_ensure_storage(event, css);
964 if (ret)
965 goto out;
966
Stephane Eraniane5d13672011-02-14 11:20:01 +0200967 cgrp = container_of(css, struct perf_cgroup, css);
968 event->cgrp = cgrp;
969
970 /*
971 * all events in a group must monitor
972 * the same cgroup because a task belongs
973 * to only one perf cgroup at a time
974 */
975 if (group_leader && group_leader->cgrp != cgrp) {
976 perf_detach_cgroup(event);
977 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200978 }
Li Zefan3db272c2011-03-03 14:25:37 +0800979out:
Al Viro2903ff02012-08-28 12:52:22 -0400980 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200981 return ret;
982}
983
984static inline void
985perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
986{
987 struct perf_cgroup_info *t;
988 t = per_cpu_ptr(event->cgrp->info, event->cpu);
989 event->shadow_ctx_time = now - t->timestamp;
990}
991
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700992static inline void
Peter Zijlstra33238c52020-03-18 20:33:37 +0100993perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700994{
995 struct perf_cpu_context *cpuctx;
996
997 if (!is_cgroup_event(event))
998 return;
999
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001000 /*
1001 * Because cgroup events are always per-cpu events,
Song Liu07c59722020-01-22 11:50:27 -08001002 * @ctx == &cpuctx->ctx.
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001003 */
Song Liu07c59722020-01-22 11:50:27 -08001004 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
leilei.lin33801b92018-03-06 17:36:37 +08001005
1006 /*
1007 * Since setting cpuctx->cgrp is conditional on the current @cgrp
1008 * matching the event's cgroup, we must do this for every new event,
1009 * because if the first would mismatch, the second would not try again
1010 * and we would leave cpuctx->cgrp unset.
1011 */
Peter Zijlstra33238c52020-03-18 20:33:37 +01001012 if (ctx->is_active && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -07001013 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
1014
Tejun Heobe96b312017-10-28 09:49:37 -07001015 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
1016 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -08001017 }
leilei.lin33801b92018-03-06 17:36:37 +08001018
Peter Zijlstra33238c52020-03-18 20:33:37 +01001019 if (ctx->nr_cgroups++)
leilei.lin33801b92018-03-06 17:36:37 +08001020 return;
1021
Peter Zijlstra33238c52020-03-18 20:33:37 +01001022 list_add(&cpuctx->cgrp_cpuctx_entry,
1023 per_cpu_ptr(&cgrp_cpuctx_list, event->cpu));
1024}
1025
1026static inline void
1027perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1028{
1029 struct perf_cpu_context *cpuctx;
1030
1031 if (!is_cgroup_event(event))
1032 return;
1033
1034 /*
1035 * Because cgroup events are always per-cpu events,
1036 * @ctx == &cpuctx->ctx.
1037 */
1038 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
1039
1040 if (--ctx->nr_cgroups)
1041 return;
1042
1043 if (ctx->is_active && cpuctx->cgrp)
leilei.lin33801b92018-03-06 17:36:37 +08001044 cpuctx->cgrp = NULL;
1045
Peter Zijlstra33238c52020-03-18 20:33:37 +01001046 list_del(&cpuctx->cgrp_cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001047}
1048
Stephane Eraniane5d13672011-02-14 11:20:01 +02001049#else /* !CONFIG_CGROUP_PERF */
1050
1051static inline bool
1052perf_cgroup_match(struct perf_event *event)
1053{
1054 return true;
1055}
1056
1057static inline void perf_detach_cgroup(struct perf_event *event)
1058{}
1059
1060static inline int is_cgroup_event(struct perf_event *event)
1061{
1062 return 0;
1063}
1064
Stephane Eraniane5d13672011-02-14 11:20:01 +02001065static inline void update_cgrp_time_from_event(struct perf_event *event)
1066{
1067}
1068
1069static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1070{
1071}
1072
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001073static inline void perf_cgroup_sched_out(struct task_struct *task,
1074 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001075{
1076}
1077
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001078static inline void perf_cgroup_sched_in(struct task_struct *prev,
1079 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001080{
1081}
1082
1083static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1084 struct perf_event_attr *attr,
1085 struct perf_event *group_leader)
1086{
1087 return -EINVAL;
1088}
1089
1090static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001091perf_cgroup_set_timestamp(struct task_struct *task,
1092 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001093{
1094}
1095
Ben Dooks (Codethink)d00dbd292019-11-06 13:25:27 +00001096static inline void
Stephane Eraniane5d13672011-02-14 11:20:01 +02001097perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1098{
1099}
1100
1101static inline void
1102perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1103{
1104}
1105
1106static inline u64 perf_cgroup_event_time(struct perf_event *event)
1107{
1108 return 0;
1109}
1110
1111static inline void
Peter Zijlstra33238c52020-03-18 20:33:37 +01001112perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001113{
1114}
1115
Peter Zijlstra33238c52020-03-18 20:33:37 +01001116static inline void
1117perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1118{
1119}
Stephane Eraniane5d13672011-02-14 11:20:01 +02001120#endif
1121
Stephane Eranian9e630202013-04-03 14:21:33 +02001122/*
1123 * set default to be dependent on timer tick just
1124 * like original code
1125 */
1126#define PERF_CPU_HRTIMER (1000 / HZ)
1127/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001128 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001129 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001130static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001131{
1132 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001133 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001134
Frederic Weisbecker16444642017-11-06 16:01:24 +01001135 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001136
1137 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001138 rotations = perf_rotate_context(cpuctx);
1139
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001140 raw_spin_lock(&cpuctx->hrtimer_lock);
1141 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001142 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001143 else
1144 cpuctx->hrtimer_active = 0;
1145 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001146
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001147 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001148}
1149
Peter Zijlstra272325c2015-04-15 11:41:58 +02001150static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001151{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001152 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001153 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001154 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001155
1156 /* no multiplexing needed for SW PMU */
1157 if (pmu->task_ctx_nr == perf_sw_context)
1158 return;
1159
Stephane Eranian62b85632013-04-03 14:21:34 +02001160 /*
1161 * check default is sane, if not set then force to
1162 * default interval (1/tick)
1163 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001164 interval = pmu->hrtimer_interval_ms;
1165 if (interval < 1)
1166 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001167
Peter Zijlstra272325c2015-04-15 11:41:58 +02001168 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001169
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001170 raw_spin_lock_init(&cpuctx->hrtimer_lock);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001171 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001172 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001173}
1174
Peter Zijlstra272325c2015-04-15 11:41:58 +02001175static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001176{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001177 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001178 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001179 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001180
1181 /* not for SW PMU */
1182 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001183 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001184
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001185 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1186 if (!cpuctx->hrtimer_active) {
1187 cpuctx->hrtimer_active = 1;
1188 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001189 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001190 }
1191 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001192
Peter Zijlstra272325c2015-04-15 11:41:58 +02001193 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001194}
1195
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001196void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001197{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001198 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1199 if (!(*count)++)
1200 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001201}
1202
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001203void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001204{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001205 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1206 if (!--(*count))
1207 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001208}
1209
Mark Rutland2fde4f92015-01-07 15:01:54 +00001210static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001211
1212/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001213 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1214 * perf_event_task_tick() are fully serialized because they're strictly cpu
1215 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1216 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001217 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001218static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001219{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001220 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001221
Frederic Weisbecker16444642017-11-06 16:01:24 +01001222 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001223
Mark Rutland2fde4f92015-01-07 15:01:54 +00001224 WARN_ON(!list_empty(&ctx->active_ctx_list));
1225
1226 list_add(&ctx->active_ctx_list, head);
1227}
1228
1229static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1230{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001231 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001232
1233 WARN_ON(list_empty(&ctx->active_ctx_list));
1234
1235 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001236}
1237
1238static void get_ctx(struct perf_event_context *ctx)
1239{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001240 refcount_inc(&ctx->refcount);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001241}
1242
Kan Liangff9ff922020-07-03 05:49:21 -07001243static void *alloc_task_ctx_data(struct pmu *pmu)
1244{
Kan Liang217c2a62020-07-03 05:49:22 -07001245 if (pmu->task_ctx_cache)
1246 return kmem_cache_zalloc(pmu->task_ctx_cache, GFP_KERNEL);
1247
Kan Liang5a099282020-07-03 05:49:24 -07001248 return NULL;
Kan Liangff9ff922020-07-03 05:49:21 -07001249}
1250
1251static void free_task_ctx_data(struct pmu *pmu, void *task_ctx_data)
1252{
Kan Liang217c2a62020-07-03 05:49:22 -07001253 if (pmu->task_ctx_cache && task_ctx_data)
1254 kmem_cache_free(pmu->task_ctx_cache, task_ctx_data);
Kan Liangff9ff922020-07-03 05:49:21 -07001255}
1256
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001257static void free_ctx(struct rcu_head *head)
1258{
1259 struct perf_event_context *ctx;
1260
1261 ctx = container_of(head, struct perf_event_context, rcu_head);
Kan Liangff9ff922020-07-03 05:49:21 -07001262 free_task_ctx_data(ctx->pmu, ctx->task_ctx_data);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001263 kfree(ctx);
1264}
1265
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266static void put_ctx(struct perf_event_context *ctx)
1267{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001268 if (refcount_dec_and_test(&ctx->refcount)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001269 if (ctx->parent_ctx)
1270 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001271 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001272 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001273 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001274 }
1275}
1276
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001277/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001278 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1279 * perf_pmu_migrate_context() we need some magic.
1280 *
1281 * Those places that change perf_event::ctx will hold both
1282 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1283 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001284 * Lock ordering is by mutex address. There are two other sites where
1285 * perf_event_context::mutex nests and those are:
1286 *
1287 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001288 * perf_event_exit_event()
1289 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001290 *
1291 * - perf_event_init_context() [ parent, 0 ]
1292 * inherit_task_group()
1293 * inherit_group()
1294 * inherit_event()
1295 * perf_event_alloc()
1296 * perf_init_event()
1297 * perf_try_init_event() [ child , 1 ]
1298 *
1299 * While it appears there is an obvious deadlock here -- the parent and child
1300 * nesting levels are inverted between the two. This is in fact safe because
1301 * life-time rules separate them. That is an exiting task cannot fork, and a
1302 * spawning task cannot (yet) exit.
1303 *
Randy Dunlapc034f482021-02-25 17:21:10 -08001304 * But remember that these are parent<->child context relations, and
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001305 * migration does not affect children, therefore these two orderings should not
1306 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001307 *
1308 * The change in perf_event::ctx does not affect children (as claimed above)
1309 * because the sys_perf_event_open() case will install a new event and break
1310 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1311 * concerned with cpuctx and that doesn't have children.
1312 *
1313 * The places that change perf_event::ctx will issue:
1314 *
1315 * perf_remove_from_context();
1316 * synchronize_rcu();
1317 * perf_install_in_context();
1318 *
1319 * to affect the change. The remove_from_context() + synchronize_rcu() should
1320 * quiesce the event, after which we can install it in the new location. This
1321 * means that only external vectors (perf_fops, prctl) can perturb the event
1322 * while in transit. Therefore all such accessors should also acquire
1323 * perf_event_context::mutex to serialize against this.
1324 *
1325 * However; because event->ctx can change while we're waiting to acquire
1326 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1327 * function.
1328 *
1329 * Lock order:
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -06001330 * exec_update_lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001331 * task_struct::perf_event_mutex
1332 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001333 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001334 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001335 * perf_event::mmap_mutex
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001336 * mmap_lock
Alexander Shishkin18736ee2019-02-15 13:56:54 +02001337 * perf_addr_filters_head::lock
Peter Zijlstra82d94852018-01-09 13:10:30 +01001338 *
1339 * cpu_hotplug_lock
1340 * pmus_lock
1341 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001342 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001343static struct perf_event_context *
1344perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001345{
1346 struct perf_event_context *ctx;
1347
1348again:
1349 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001350 ctx = READ_ONCE(event->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001351 if (!refcount_inc_not_zero(&ctx->refcount)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001352 rcu_read_unlock();
1353 goto again;
1354 }
1355 rcu_read_unlock();
1356
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001357 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001358 if (event->ctx != ctx) {
1359 mutex_unlock(&ctx->mutex);
1360 put_ctx(ctx);
1361 goto again;
1362 }
1363
1364 return ctx;
1365}
1366
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001367static inline struct perf_event_context *
1368perf_event_ctx_lock(struct perf_event *event)
1369{
1370 return perf_event_ctx_lock_nested(event, 0);
1371}
1372
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001373static void perf_event_ctx_unlock(struct perf_event *event,
1374 struct perf_event_context *ctx)
1375{
1376 mutex_unlock(&ctx->mutex);
1377 put_ctx(ctx);
1378}
1379
1380/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001381 * This must be done under the ctx->lock, such as to serialize against
1382 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1383 * calling scheduler related locks and ctx->lock nests inside those.
1384 */
1385static __must_check struct perf_event_context *
1386unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001387{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001388 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1389
1390 lockdep_assert_held(&ctx->lock);
1391
1392 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001393 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001394 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001395
1396 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001397}
1398
Oleg Nesterov1d953112017-08-22 17:59:28 +02001399static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1400 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001401{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001402 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001403 /*
1404 * only top level events have the pid namespace they were created in
1405 */
1406 if (event->parent)
1407 event = event->parent;
1408
Oleg Nesterov1d953112017-08-22 17:59:28 +02001409 nr = __task_pid_nr_ns(p, type, event->ns);
1410 /* avoid -1 if it is idle thread or runs in another ns */
1411 if (!nr && !pid_alive(p))
1412 nr = -1;
1413 return nr;
1414}
1415
1416static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1417{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001418 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001419}
1420
1421static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1422{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001423 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001424}
1425
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001426/*
1427 * If we inherit events we want to return the parent event id
1428 * to userspace.
1429 */
1430static u64 primary_event_id(struct perf_event *event)
1431{
1432 u64 id = event->id;
1433
1434 if (event->parent)
1435 id = event->parent->id;
1436
1437 return id;
1438}
1439
1440/*
1441 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001442 *
Randy Dunlapc034f482021-02-25 17:21:10 -08001443 * This has to cope with the fact that until it is locked,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444 * the context could get moved to another task.
1445 */
1446static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001447perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001448{
1449 struct perf_event_context *ctx;
1450
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001451retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001452 /*
1453 * One of the few rules of preemptible RCU is that one cannot do
1454 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001455 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001456 * rcu_read_unlock_special().
1457 *
1458 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001459 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001460 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001461 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001462 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001463 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001464 if (ctx) {
1465 /*
1466 * If this context is a clone of another, it might
1467 * get swapped for another underneath us by
1468 * perf_event_task_sched_out, though the
1469 * rcu_read_lock() protects us from any context
1470 * getting freed. Lock the context and check if it
1471 * got swapped before we could get the lock, and retry
1472 * if so. If we locked the right context, then it
1473 * can't get swapped on us any more.
1474 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001475 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001476 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001477 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001478 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001479 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480 goto retry;
1481 }
1482
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001483 if (ctx->task == TASK_TOMBSTONE ||
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001484 !refcount_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001485 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001487 } else {
1488 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001489 }
1490 }
1491 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001492 if (!ctx)
1493 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 return ctx;
1495}
1496
1497/*
1498 * Get the context for a task and increment its pin_count so it
1499 * can't get swapped to another task. This also increments its
1500 * reference count so that the context can't get freed.
1501 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001502static struct perf_event_context *
1503perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001504{
1505 struct perf_event_context *ctx;
1506 unsigned long flags;
1507
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001508 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509 if (ctx) {
1510 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001511 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001512 }
1513 return ctx;
1514}
1515
1516static void perf_unpin_context(struct perf_event_context *ctx)
1517{
1518 unsigned long flags;
1519
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001520 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001521 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001522 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001523}
1524
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001525/*
1526 * Update the record of the current time in a context.
1527 */
1528static void update_context_time(struct perf_event_context *ctx)
1529{
1530 u64 now = perf_clock();
1531
1532 ctx->time += now - ctx->timestamp;
1533 ctx->timestamp = now;
1534}
1535
Stephane Eranian41587552011-01-03 18:20:01 +02001536static u64 perf_event_time(struct perf_event *event)
1537{
1538 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001539
1540 if (is_cgroup_event(event))
1541 return perf_cgroup_event_time(event);
1542
Stephane Eranian41587552011-01-03 18:20:01 +02001543 return ctx ? ctx->time : 0;
1544}
1545
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001546static enum event_type_t get_event_type(struct perf_event *event)
1547{
1548 struct perf_event_context *ctx = event->ctx;
1549 enum event_type_t event_type;
1550
1551 lockdep_assert_held(&ctx->lock);
1552
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001553 /*
1554 * It's 'group type', really, because if our group leader is
1555 * pinned, so are we.
1556 */
1557 if (event->group_leader != event)
1558 event = event->group_leader;
1559
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001560 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1561 if (!ctx->task)
1562 event_type |= EVENT_CPU;
1563
1564 return event_type;
1565}
1566
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001567/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001568 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001569 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001570static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001571{
1572 RB_CLEAR_NODE(&event->group_node);
1573 event->group_index = 0;
1574}
1575
1576/*
1577 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001578 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001579 */
1580static struct perf_event_groups *
1581get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001582{
1583 if (event->attr.pinned)
1584 return &ctx->pinned_groups;
1585 else
1586 return &ctx->flexible_groups;
1587}
1588
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001589/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001590 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001591 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001592static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001593{
1594 groups->tree = RB_ROOT;
1595 groups->index = 0;
1596}
1597
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001598static inline struct cgroup *event_cgroup(const struct perf_event *event)
1599{
1600 struct cgroup *cgroup = NULL;
1601
1602#ifdef CONFIG_CGROUP_PERF
1603 if (event->cgrp)
1604 cgroup = event->cgrp->css.cgroup;
1605#endif
1606
1607 return cgroup;
1608}
1609
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001610/*
1611 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001612 *
1613 * Implements complex key that first sorts by CPU and then by virtual index
1614 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001615 */
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001616static __always_inline int
1617perf_event_groups_cmp(const int left_cpu, const struct cgroup *left_cgroup,
1618 const u64 left_group_index, const struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001619{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001620 if (left_cpu < right->cpu)
1621 return -1;
1622 if (left_cpu > right->cpu)
1623 return 1;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001624
Ian Rogers95ed6c72020-02-13 23:51:33 -08001625#ifdef CONFIG_CGROUP_PERF
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001626 {
1627 const struct cgroup *right_cgroup = event_cgroup(right);
Ian Rogers95ed6c72020-02-13 23:51:33 -08001628
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001629 if (left_cgroup != right_cgroup) {
1630 if (!left_cgroup) {
1631 /*
1632 * Left has no cgroup but right does, no
1633 * cgroups come first.
1634 */
1635 return -1;
1636 }
1637 if (!right_cgroup) {
1638 /*
1639 * Right has no cgroup but left does, no
1640 * cgroups come first.
1641 */
1642 return 1;
1643 }
1644 /* Two dissimilar cgroups, order by id. */
1645 if (cgroup_id(left_cgroup) < cgroup_id(right_cgroup))
1646 return -1;
1647
1648 return 1;
1649 }
Ian Rogers95ed6c72020-02-13 23:51:33 -08001650 }
1651#endif
1652
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001653 if (left_group_index < right->group_index)
1654 return -1;
1655 if (left_group_index > right->group_index)
1656 return 1;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001657
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001658 return 0;
1659}
1660
1661#define __node_2_pe(node) \
1662 rb_entry((node), struct perf_event, group_node)
1663
1664static inline bool __group_less(struct rb_node *a, const struct rb_node *b)
1665{
1666 struct perf_event *e = __node_2_pe(a);
1667 return perf_event_groups_cmp(e->cpu, event_cgroup(e), e->group_index,
1668 __node_2_pe(b)) < 0;
1669}
1670
1671struct __group_key {
1672 int cpu;
1673 struct cgroup *cgroup;
1674};
1675
1676static inline int __group_cmp(const void *key, const struct rb_node *node)
1677{
1678 const struct __group_key *a = key;
1679 const struct perf_event *b = __node_2_pe(node);
1680
1681 /* partial/subtree match: @cpu, @cgroup; ignore: @group_index */
1682 return perf_event_groups_cmp(a->cpu, a->cgroup, b->group_index, b);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001683}
1684
1685/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001686 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1687 * key (see perf_event_groups_less). This places it last inside the CPU
1688 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001689 */
1690static void
1691perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001692 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001693{
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001694 event->group_index = ++groups->index;
1695
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001696 rb_add(&event->group_node, &groups->tree, __group_less);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001697}
1698
1699/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001700 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001701 */
1702static void
1703add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1704{
1705 struct perf_event_groups *groups;
1706
1707 groups = get_event_groups(event, ctx);
1708 perf_event_groups_insert(groups, event);
1709}
1710
1711/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001712 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001713 */
1714static void
1715perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001716 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001717{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001718 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1719 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001720
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001721 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001722 init_event_group(event);
1723}
1724
1725/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001726 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001727 */
1728static void
1729del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1730{
1731 struct perf_event_groups *groups;
1732
1733 groups = get_event_groups(event, ctx);
1734 perf_event_groups_delete(groups, event);
1735}
1736
1737/*
Ian Rogers95ed6c72020-02-13 23:51:33 -08001738 * Get the leftmost event in the cpu/cgroup subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001739 */
1740static struct perf_event *
Ian Rogers95ed6c72020-02-13 23:51:33 -08001741perf_event_groups_first(struct perf_event_groups *groups, int cpu,
1742 struct cgroup *cgrp)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001743{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001744 struct __group_key key = {
1745 .cpu = cpu,
1746 .cgroup = cgrp,
1747 };
1748 struct rb_node *node;
Ian Rogers95ed6c72020-02-13 23:51:33 -08001749
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001750 node = rb_find_first(&key, &groups->tree, __group_cmp);
1751 if (node)
1752 return __node_2_pe(node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001753
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001754 return NULL;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001755}
1756
1757/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001758 * Like rb_entry_next_safe() for the @cpu subtree.
1759 */
1760static struct perf_event *
1761perf_event_groups_next(struct perf_event *event)
1762{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001763 struct __group_key key = {
1764 .cpu = event->cpu,
1765 .cgroup = event_cgroup(event),
1766 };
1767 struct rb_node *next;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001768
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001769 next = rb_next_match(&key, &event->group_node, __group_cmp);
1770 if (next)
1771 return __node_2_pe(next);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001772
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001773 return NULL;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001774}
1775
1776/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001777 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001778 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001779#define perf_event_groups_for_each(event, groups) \
1780 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1781 typeof(*event), group_node); event; \
1782 event = rb_entry_safe(rb_next(&event->group_node), \
1783 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001784
1785/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001786 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001787 * Must be called with ctx->mutex and ctx->lock held.
1788 */
1789static void
1790list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1791{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001792 lockdep_assert_held(&ctx->lock);
1793
Peter Zijlstra8a495422010-05-27 15:47:49 +02001794 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1795 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001797 event->tstamp = perf_event_time(event);
1798
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001799 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001800 * If we're a stand alone event or group leader, we go to the context
1801 * list, group events are kept attached to the group so that
1802 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001803 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001804 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001805 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001806 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001807 }
1808
1809 list_add_rcu(&event->event_entry, &ctx->event_list);
1810 ctx->nr_events++;
Rob Herring82ff0c02021-12-08 14:11:21 -06001811 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT)
1812 ctx->nr_user++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001813 if (event->attr.inherit_stat)
1814 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001815
Peter Zijlstra33238c52020-03-18 20:33:37 +01001816 if (event->state > PERF_EVENT_STATE_OFF)
1817 perf_cgroup_event_enable(event, ctx);
1818
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001819 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001820}
1821
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001822/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001823 * Initialize event state based on the perf_event_attr::disabled.
1824 */
1825static inline void perf_event__state_init(struct perf_event *event)
1826{
1827 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1828 PERF_EVENT_STATE_INACTIVE;
1829}
1830
Peter Zijlstraa7239682015-09-09 19:06:33 +02001831static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001832{
1833 int entry = sizeof(u64); /* value */
1834 int size = 0;
1835 int nr = 1;
1836
1837 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1838 size += sizeof(u64);
1839
1840 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1841 size += sizeof(u64);
1842
1843 if (event->attr.read_format & PERF_FORMAT_ID)
1844 entry += sizeof(u64);
1845
1846 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001847 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001848 size += sizeof(u64);
1849 }
1850
1851 size += entry * nr;
1852 event->read_size = size;
1853}
1854
Peter Zijlstraa7239682015-09-09 19:06:33 +02001855static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001856{
1857 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001858 u16 size = 0;
1859
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001860 if (sample_type & PERF_SAMPLE_IP)
1861 size += sizeof(data->ip);
1862
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001863 if (sample_type & PERF_SAMPLE_ADDR)
1864 size += sizeof(data->addr);
1865
1866 if (sample_type & PERF_SAMPLE_PERIOD)
1867 size += sizeof(data->period);
1868
Kan Liang2a6c6b72021-01-28 14:40:07 -08001869 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
1870 size += sizeof(data->weight.full);
Andi Kleenc3feedf2013-01-24 16:10:28 +01001871
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001872 if (sample_type & PERF_SAMPLE_READ)
1873 size += event->read_size;
1874
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001875 if (sample_type & PERF_SAMPLE_DATA_SRC)
1876 size += sizeof(data->data_src.val);
1877
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001878 if (sample_type & PERF_SAMPLE_TRANSACTION)
1879 size += sizeof(data->txn);
1880
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001881 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1882 size += sizeof(data->phys_addr);
1883
Namhyung Kim6546b192020-03-25 21:45:29 +09001884 if (sample_type & PERF_SAMPLE_CGROUP)
1885 size += sizeof(data->cgroup);
1886
Kan Liang8d97e712020-10-01 06:57:46 -07001887 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1888 size += sizeof(data->data_page_size);
1889
Stephane Eranian995f0882020-10-01 06:57:49 -07001890 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1891 size += sizeof(data->code_page_size);
1892
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001893 event->header_size = size;
1894}
1895
Peter Zijlstraa7239682015-09-09 19:06:33 +02001896/*
1897 * Called at perf_event creation and when events are attached/detached from a
1898 * group.
1899 */
1900static void perf_event__header_size(struct perf_event *event)
1901{
1902 __perf_event_read_size(event,
1903 event->group_leader->nr_siblings);
1904 __perf_event_header_size(event, event->attr.sample_type);
1905}
1906
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001907static void perf_event__id_header_size(struct perf_event *event)
1908{
1909 struct perf_sample_data *data;
1910 u64 sample_type = event->attr.sample_type;
1911 u16 size = 0;
1912
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001913 if (sample_type & PERF_SAMPLE_TID)
1914 size += sizeof(data->tid_entry);
1915
1916 if (sample_type & PERF_SAMPLE_TIME)
1917 size += sizeof(data->time);
1918
Adrian Hunterff3d5272013-08-27 11:23:07 +03001919 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1920 size += sizeof(data->id);
1921
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001922 if (sample_type & PERF_SAMPLE_ID)
1923 size += sizeof(data->id);
1924
1925 if (sample_type & PERF_SAMPLE_STREAM_ID)
1926 size += sizeof(data->stream_id);
1927
1928 if (sample_type & PERF_SAMPLE_CPU)
1929 size += sizeof(data->cpu_entry);
1930
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001931 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001932}
1933
Peter Zijlstraa7239682015-09-09 19:06:33 +02001934static bool perf_event_validate_size(struct perf_event *event)
1935{
1936 /*
1937 * The values computed here will be over-written when we actually
1938 * attach the event.
1939 */
1940 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1941 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1942 perf_event__id_header_size(event);
1943
1944 /*
1945 * Sum the lot; should not exceed the 64k limit we have on records.
1946 * Conservative limit to allow for callchains and other variable fields.
1947 */
1948 if (event->read_size + event->header_size +
1949 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1950 return false;
1951
1952 return true;
1953}
1954
Peter Zijlstra8a495422010-05-27 15:47:49 +02001955static void perf_group_attach(struct perf_event *event)
1956{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001957 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001958
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001959 lockdep_assert_held(&event->ctx->lock);
1960
Peter Zijlstra74c33372010-10-15 11:40:29 +02001961 /*
1962 * We can have double attach due to group movement in perf_event_open.
1963 */
1964 if (event->attach_state & PERF_ATTACH_GROUP)
1965 return;
1966
Peter Zijlstra8a495422010-05-27 15:47:49 +02001967 event->attach_state |= PERF_ATTACH_GROUP;
1968
1969 if (group_leader == event)
1970 return;
1971
Peter Zijlstra652884f2015-01-23 11:20:10 +01001972 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1973
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001974 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001975
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001976 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001977 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001978
1979 perf_event__header_size(group_leader);
1980
Peter Zijlstraedb39592018-03-15 17:36:56 +01001981 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001982 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001983}
1984
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001986 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001987 * Must be called with ctx->mutex and ctx->lock held.
1988 */
1989static void
1990list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1991{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001992 WARN_ON_ONCE(event->ctx != ctx);
1993 lockdep_assert_held(&ctx->lock);
1994
Peter Zijlstra8a495422010-05-27 15:47:49 +02001995 /*
1996 * We can have double detach due to exit/hot-unplug + close.
1997 */
1998 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002000
2001 event->attach_state &= ~PERF_ATTACH_CONTEXT;
2002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002003 ctx->nr_events--;
Rob Herring82ff0c02021-12-08 14:11:21 -06002004 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT)
2005 ctx->nr_user--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002006 if (event->attr.inherit_stat)
2007 ctx->nr_stat--;
2008
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002009 list_del_rcu(&event->event_entry);
2010
Peter Zijlstra8a495422010-05-27 15:47:49 +02002011 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002012 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002013
Stephane Eranianb2e74a22009-11-26 09:24:30 -08002014 /*
2015 * If event was in error state, then keep it
2016 * that way, otherwise bogus counts will be
2017 * returned on read(). The only way to get out
2018 * of error state is by explicit re-enabling
2019 * of the event
2020 */
Peter Zijlstra33238c52020-03-18 20:33:37 +01002021 if (event->state > PERF_EVENT_STATE_OFF) {
2022 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002023 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002024 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002025
2026 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002027}
2028
Alexander Shishkinab437622019-08-06 11:46:00 +03002029static int
2030perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
2031{
2032 if (!has_aux(aux_event))
2033 return 0;
2034
2035 if (!event->pmu->aux_output_match)
2036 return 0;
2037
2038 return event->pmu->aux_output_match(aux_event);
2039}
2040
2041static void put_event(struct perf_event *event);
2042static void event_sched_out(struct perf_event *event,
2043 struct perf_cpu_context *cpuctx,
2044 struct perf_event_context *ctx);
2045
2046static void perf_put_aux_event(struct perf_event *event)
2047{
2048 struct perf_event_context *ctx = event->ctx;
2049 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2050 struct perf_event *iter;
2051
2052 /*
2053 * If event uses aux_event tear down the link
2054 */
2055 if (event->aux_event) {
2056 iter = event->aux_event;
2057 event->aux_event = NULL;
2058 put_event(iter);
2059 return;
2060 }
2061
2062 /*
2063 * If the event is an aux_event, tear down all links to
2064 * it from other events.
2065 */
2066 for_each_sibling_event(iter, event->group_leader) {
2067 if (iter->aux_event != event)
2068 continue;
2069
2070 iter->aux_event = NULL;
2071 put_event(event);
2072
2073 /*
2074 * If it's ACTIVE, schedule it out and put it into ERROR
2075 * state so that we don't try to schedule it again. Note
2076 * that perf_event_enable() will clear the ERROR status.
2077 */
2078 event_sched_out(iter, cpuctx, ctx);
2079 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2080 }
2081}
2082
Alexander Shishkina4faf002019-10-25 17:08:33 +03002083static bool perf_need_aux_event(struct perf_event *event)
2084{
2085 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
2086}
2087
Alexander Shishkinab437622019-08-06 11:46:00 +03002088static int perf_get_aux_event(struct perf_event *event,
2089 struct perf_event *group_leader)
2090{
2091 /*
2092 * Our group leader must be an aux event if we want to be
2093 * an aux_output. This way, the aux event will precede its
2094 * aux_output events in the group, and therefore will always
2095 * schedule first.
2096 */
2097 if (!group_leader)
2098 return 0;
2099
Alexander Shishkina4faf002019-10-25 17:08:33 +03002100 /*
2101 * aux_output and aux_sample_size are mutually exclusive.
2102 */
2103 if (event->attr.aux_output && event->attr.aux_sample_size)
2104 return 0;
2105
2106 if (event->attr.aux_output &&
2107 !perf_aux_output_match(event, group_leader))
2108 return 0;
2109
2110 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
Alexander Shishkinab437622019-08-06 11:46:00 +03002111 return 0;
2112
2113 if (!atomic_long_inc_not_zero(&group_leader->refcount))
2114 return 0;
2115
2116 /*
2117 * Link aux_outputs to their aux event; this is undone in
2118 * perf_group_detach() by perf_put_aux_event(). When the
2119 * group in torn down, the aux_output events loose their
2120 * link to the aux_event and can't schedule any more.
2121 */
2122 event->aux_event = group_leader;
2123
2124 return 1;
2125}
2126
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002127static inline struct list_head *get_event_list(struct perf_event *event)
2128{
2129 struct perf_event_context *ctx = event->ctx;
2130 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
2131}
2132
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002133/*
2134 * Events that have PERF_EV_CAP_SIBLING require being part of a group and
2135 * cannot exist on their own, schedule them out and move them into the ERROR
2136 * state. Also see _perf_event_enable(), it will not be able to recover
2137 * this ERROR state.
2138 */
2139static inline void perf_remove_sibling_event(struct perf_event *event)
2140{
2141 struct perf_event_context *ctx = event->ctx;
2142 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2143
2144 event_sched_out(event, cpuctx, ctx);
2145 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2146}
2147
Peter Zijlstra8a495422010-05-27 15:47:49 +02002148static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02002149{
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002150 struct perf_event *leader = event->group_leader;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002151 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01002152 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002153
Peter Zijlstra66681282017-11-13 14:28:38 +01002154 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002155
Peter Zijlstra8a495422010-05-27 15:47:49 +02002156 /*
2157 * We can have double detach due to exit/hot-unplug + close.
2158 */
2159 if (!(event->attach_state & PERF_ATTACH_GROUP))
2160 return;
2161
2162 event->attach_state &= ~PERF_ATTACH_GROUP;
2163
Alexander Shishkinab437622019-08-06 11:46:00 +03002164 perf_put_aux_event(event);
2165
Peter Zijlstra8a495422010-05-27 15:47:49 +02002166 /*
2167 * If this is a sibling, remove it from its group.
2168 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002169 if (leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002170 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002171 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002172 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002173 }
2174
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175 /*
2176 * If this was a group event with sibling events then
2177 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002178 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002179 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002180 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002181
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002182 if (sibling->event_caps & PERF_EV_CAP_SIBLING)
2183 perf_remove_sibling_event(sibling);
2184
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002185 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002186 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002187
2188 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002189 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002190
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002191 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002192 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002193
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002194 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2195 list_add_tail(&sibling->active_list, get_event_list(sibling));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002196 }
2197
Peter Zijlstra652884f2015-01-23 11:20:10 +01002198 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002199 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002200
2201out:
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002202 for_each_sibling_event(tmp, leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002203 perf_event__header_size(tmp);
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002204
2205 perf_event__header_size(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002206}
2207
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002208static void sync_child_event(struct perf_event *child_event);
2209
2210static void perf_child_detach(struct perf_event *event)
2211{
2212 struct perf_event *parent_event = event->parent;
2213
2214 if (!(event->attach_state & PERF_ATTACH_CHILD))
2215 return;
2216
2217 event->attach_state &= ~PERF_ATTACH_CHILD;
2218
2219 if (WARN_ON_ONCE(!parent_event))
2220 return;
2221
2222 lockdep_assert_held(&parent_event->child_mutex);
2223
2224 sync_child_event(event);
2225 list_del_init(&event->child_list);
2226}
2227
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002228static bool is_orphaned_event(struct perf_event *event)
2229{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002230 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002231}
2232
Mark Rutland2c81a642016-06-14 16:10:41 +01002233static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002234{
2235 struct pmu *pmu = event->pmu;
2236 return pmu->filter_match ? pmu->filter_match(event) : 1;
2237}
2238
Mark Rutland2c81a642016-06-14 16:10:41 +01002239/*
2240 * Check whether we should attempt to schedule an event group based on
2241 * PMU-specific filtering. An event group can consist of HW and SW events,
2242 * potentially with a SW leader, so we must check all the filters, to
2243 * determine whether a group is schedulable:
2244 */
2245static inline int pmu_filter_match(struct perf_event *event)
2246{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002247 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002248
2249 if (!__pmu_filter_match(event))
2250 return 0;
2251
Peter Zijlstraedb39592018-03-15 17:36:56 +01002252 for_each_sibling_event(sibling, event) {
2253 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002254 return 0;
2255 }
2256
2257 return 1;
2258}
2259
Stephane Eranianfa66f072010-08-26 16:40:01 +02002260static inline int
2261event_filter_match(struct perf_event *event)
2262{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002263 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2264 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002265}
2266
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002267static void
2268event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002269 struct perf_cpu_context *cpuctx,
2270 struct perf_event_context *ctx)
2271{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002272 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002273
2274 WARN_ON_ONCE(event->ctx != ctx);
2275 lockdep_assert_held(&ctx->lock);
2276
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002277 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002278 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002279
Peter Zijlstra66681282017-11-13 14:28:38 +01002280 /*
2281 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2282 * we can schedule events _OUT_ individually through things like
2283 * __perf_remove_from_context().
2284 */
2285 list_del_init(&event->active_list);
2286
Alexander Shishkin44377272013-12-16 14:17:36 +02002287 perf_pmu_disable(event->pmu);
2288
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002289 event->pmu->del(event, 0);
2290 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002291
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002292 if (READ_ONCE(event->pending_disable) >= 0) {
2293 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002294 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002295 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002296 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002297 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002298
2299 if (!is_software_event(event))
2300 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002301 if (!--ctx->nr_active)
2302 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002303 if (event->attr.freq && event->attr.sample_freq)
2304 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002305 if (event->attr.exclusive || !cpuctx->active_oncpu)
2306 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002307
2308 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002309}
2310
2311static void
2312group_sched_out(struct perf_event *group_event,
2313 struct perf_cpu_context *cpuctx,
2314 struct perf_event_context *ctx)
2315{
2316 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002317
2318 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2319 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002320
Mark Rutland3f005e72016-07-26 18:12:21 +01002321 perf_pmu_disable(ctx->pmu);
2322
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002323 event_sched_out(group_event, cpuctx, ctx);
2324
2325 /*
2326 * Schedule out siblings (if any):
2327 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002328 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002329 event_sched_out(event, cpuctx, ctx);
2330
Mark Rutland3f005e72016-07-26 18:12:21 +01002331 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002332}
2333
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002334#define DETACH_GROUP 0x01UL
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002335#define DETACH_CHILD 0x02UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002336
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002337/*
2338 * Cross CPU call to remove a performance event
2339 *
2340 * We disable the event on the hardware level first. After that we
2341 * remove it from the context list.
2342 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002343static void
2344__perf_remove_from_context(struct perf_event *event,
2345 struct perf_cpu_context *cpuctx,
2346 struct perf_event_context *ctx,
2347 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002348{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002349 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002351 if (ctx->is_active & EVENT_TIME) {
2352 update_context_time(ctx);
2353 update_cgrp_time_from_cpuctx(cpuctx);
2354 }
2355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002356 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002357 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002358 perf_group_detach(event);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002359 if (flags & DETACH_CHILD)
2360 perf_child_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002361 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002362
Peter Zijlstra39a43642016-01-11 12:46:35 +01002363 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002364 ctx->is_active = 0;
Peter Zijlstra90c91df2020-03-05 13:38:51 +01002365 ctx->rotate_necessary = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002366 if (ctx->task) {
2367 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2368 cpuctx->task_ctx = NULL;
2369 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002370 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002371}
2372
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002373/*
2374 * Remove the event from a task's (or a CPU's) list of events.
2375 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002376 * If event->ctx is a cloned context, callers must make sure that
2377 * every task struct that event->ctx->task could possibly point to
2378 * remains valid. This is OK when called from perf_release since
2379 * that only calls us on the top-level context, which can't be a clone.
2380 * When called from perf_event_exit_task, it's OK because the
2381 * context has been detached from its task.
2382 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002383static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002384{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002385 struct perf_event_context *ctx = event->ctx;
2386
2387 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002388
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002389 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002390 * Because of perf_event_exit_task(), perf_remove_from_context() ought
2391 * to work in the face of TASK_TOMBSTONE, unlike every other
2392 * event_function_call() user.
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002393 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002394 raw_spin_lock_irq(&ctx->lock);
2395 if (!ctx->is_active) {
2396 __perf_remove_from_context(event, __get_cpu_context(ctx),
2397 ctx, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002398 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002399 return;
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002400 }
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002401 raw_spin_unlock_irq(&ctx->lock);
2402
2403 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404}
2405
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002406/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002407 * Cross CPU call to disable a performance event
2408 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002409static void __perf_event_disable(struct perf_event *event,
2410 struct perf_cpu_context *cpuctx,
2411 struct perf_event_context *ctx,
2412 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002413{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002414 if (event->state < PERF_EVENT_STATE_INACTIVE)
2415 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002417 if (ctx->is_active & EVENT_TIME) {
2418 update_context_time(ctx);
2419 update_cgrp_time_from_event(event);
2420 }
2421
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002422 if (event == event->group_leader)
2423 group_sched_out(event, cpuctx, ctx);
2424 else
2425 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002426
2427 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002428 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002429}
2430
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002431/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002432 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002433 *
2434 * If event->ctx is a cloned context, callers must make sure that
2435 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002436 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002437 * perf_event_for_each_child or perf_event_for_each because they
2438 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002439 * goes to exit will block in perf_event_exit_event().
2440 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441 * When called from perf_pending_event it's OK because event->ctx
2442 * is the current context on this CPU and preemption is disabled,
2443 * hence we can't get into perf_event_task_sched_out for this context.
2444 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002445static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002446{
2447 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002448
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002449 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002450 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002451 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002452 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002453 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002454 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002455
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002456 event_function_call(event, __perf_event_disable, NULL);
2457}
2458
2459void perf_event_disable_local(struct perf_event *event)
2460{
2461 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002462}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002463
2464/*
2465 * Strictly speaking kernel users cannot create groups and therefore this
2466 * interface does not need the perf_event_ctx_lock() magic.
2467 */
2468void perf_event_disable(struct perf_event *event)
2469{
2470 struct perf_event_context *ctx;
2471
2472 ctx = perf_event_ctx_lock(event);
2473 _perf_event_disable(event);
2474 perf_event_ctx_unlock(event, ctx);
2475}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002476EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002477
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002478void perf_event_disable_inatomic(struct perf_event *event)
2479{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002480 WRITE_ONCE(event->pending_disable, smp_processor_id());
2481 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002482 irq_work_queue(&event->pending);
2483}
2484
Stephane Eraniane5d13672011-02-14 11:20:01 +02002485static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002486 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002487{
2488 /*
2489 * use the correct time source for the time snapshot
2490 *
2491 * We could get by without this by leveraging the
2492 * fact that to get to this function, the caller
2493 * has most likely already called update_context_time()
2494 * and update_cgrp_time_xx() and thus both timestamp
2495 * are identical (or very close). Given that tstamp is,
2496 * already adjusted for cgroup, we could say that:
2497 * tstamp - ctx->timestamp
2498 * is equivalent to
2499 * tstamp - cgrp->timestamp.
2500 *
2501 * Then, in perf_output_read(), the calculation would
2502 * work with no changes because:
2503 * - event is guaranteed scheduled in
2504 * - no scheduled out in between
2505 * - thus the timestamp would be the same
2506 *
2507 * But this is a bit hairy.
2508 *
2509 * So instead, we have an explicit cgroup call to remain
Randy Dunlapc034f482021-02-25 17:21:10 -08002510 * within the time source all along. We believe it
Stephane Eraniane5d13672011-02-14 11:20:01 +02002511 * is cleaner and simpler to understand.
2512 */
2513 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002514 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002515 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002516 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002517}
2518
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002519#define MAX_INTERRUPTS (~0ULL)
2520
2521static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002522static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002523
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002524static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002525event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002526 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002527 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002528{
Alexander Shishkin44377272013-12-16 14:17:36 +02002529 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002530
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002531 WARN_ON_ONCE(event->ctx != ctx);
2532
Peter Zijlstra63342412014-05-05 11:49:16 +02002533 lockdep_assert_held(&ctx->lock);
2534
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002535 if (event->state <= PERF_EVENT_STATE_OFF)
2536 return 0;
2537
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002538 WRITE_ONCE(event->oncpu, smp_processor_id());
2539 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002540 * Order event::oncpu write to happen before the ACTIVE state is
2541 * visible. This allows perf_event_{stop,read}() to observe the correct
2542 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002543 */
2544 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002545 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002546
2547 /*
2548 * Unthrottle events, since we scheduled we might have missed several
2549 * ticks already, also for a heavily scheduling task there is little
2550 * guarantee it'll get a tick in a timely manner.
2551 */
2552 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2553 perf_log_throttle(event, 1);
2554 event->hw.interrupts = 0;
2555 }
2556
Alexander Shishkin44377272013-12-16 14:17:36 +02002557 perf_pmu_disable(event->pmu);
2558
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002559 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002560
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002561 perf_log_itrace_start(event);
2562
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002563 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002564 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002565 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002566 ret = -EAGAIN;
2567 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568 }
2569
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002570 if (!is_software_event(event))
2571 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002572 if (!ctx->nr_active++)
2573 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002574 if (event->attr.freq && event->attr.sample_freq)
2575 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002576
2577 if (event->attr.exclusive)
2578 cpuctx->exclusive = 1;
2579
Alexander Shishkin44377272013-12-16 14:17:36 +02002580out:
2581 perf_pmu_enable(event->pmu);
2582
2583 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002584}
2585
2586static int
2587group_sched_in(struct perf_event *group_event,
2588 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002589 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002590{
Lin Ming6bde9b62010-04-23 13:56:00 +08002591 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002592 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002593
2594 if (group_event->state == PERF_EVENT_STATE_OFF)
2595 return 0;
2596
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002597 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002598
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002599 if (event_sched_in(group_event, cpuctx, ctx))
2600 goto error;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002601
2602 /*
2603 * Schedule in siblings as one group (if any):
2604 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002605 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002606 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002607 partial_group = event;
2608 goto group_error;
2609 }
2610 }
2611
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002612 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002613 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002614
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002615group_error:
2616 /*
2617 * Groups can be scheduled in as one unit only, so undo any
2618 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002619 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002620 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002621 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002623 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002624
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002625 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002626 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002627 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002628
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002629error:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002630 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002631 return -EAGAIN;
2632}
2633
2634/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002635 * Work out whether we can put this event group on the CPU now.
2636 */
2637static int group_can_go_on(struct perf_event *event,
2638 struct perf_cpu_context *cpuctx,
2639 int can_add_hw)
2640{
2641 /*
2642 * Groups consisting entirely of software events can always go on.
2643 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002644 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002645 return 1;
2646 /*
2647 * If an exclusive group is already on, no other hardware
2648 * events can go on.
2649 */
2650 if (cpuctx->exclusive)
2651 return 0;
2652 /*
2653 * If this group is exclusive and there are already
2654 * events on the CPU, it can't go on.
2655 */
Peter Zijlstra1908dc92020-10-29 16:32:22 +01002656 if (event->attr.exclusive && !list_empty(get_event_list(event)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002657 return 0;
2658 /*
2659 * Otherwise, try to add it if all previous groups were able
2660 * to go on.
2661 */
2662 return can_add_hw;
2663}
2664
2665static void add_event_to_ctx(struct perf_event *event,
2666 struct perf_event_context *ctx)
2667{
2668 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002669 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002670}
2671
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002672static void ctx_sched_out(struct perf_event_context *ctx,
2673 struct perf_cpu_context *cpuctx,
2674 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002675static void
2676ctx_sched_in(struct perf_event_context *ctx,
2677 struct perf_cpu_context *cpuctx,
2678 enum event_type_t event_type,
2679 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002680
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002681static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002682 struct perf_event_context *ctx,
2683 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002684{
2685 if (!cpuctx->task_ctx)
2686 return;
2687
2688 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2689 return;
2690
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002691 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002692}
2693
Peter Zijlstradce58552011-04-09 21:17:46 +02002694static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2695 struct perf_event_context *ctx,
2696 struct task_struct *task)
2697{
2698 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2699 if (ctx)
2700 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2701 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2702 if (ctx)
2703 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2704}
2705
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002706/*
2707 * We want to maintain the following priority of scheduling:
2708 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2709 * - task pinned (EVENT_PINNED)
2710 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2711 * - task flexible (EVENT_FLEXIBLE).
2712 *
2713 * In order to avoid unscheduling and scheduling back in everything every
2714 * time an event is added, only do it for the groups of equal priority and
2715 * below.
2716 *
2717 * This can be called after a batch operation on task events, in which case
2718 * event_type is a bit mask of the types of events involved. For CPU events,
2719 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2720 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002721static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002722 struct perf_event_context *task_ctx,
2723 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002724{
Song Liubd903af2018-03-05 21:55:04 -08002725 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002726 bool cpu_event = !!(event_type & EVENT_CPU);
2727
2728 /*
2729 * If pinned groups are involved, flexible groups also need to be
2730 * scheduled out.
2731 */
2732 if (event_type & EVENT_PINNED)
2733 event_type |= EVENT_FLEXIBLE;
2734
Song Liubd903af2018-03-05 21:55:04 -08002735 ctx_event_type = event_type & EVENT_ALL;
2736
Peter Zijlstra3e349502016-01-08 10:01:18 +01002737 perf_pmu_disable(cpuctx->ctx.pmu);
2738 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002739 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2740
2741 /*
2742 * Decide which cpu ctx groups to schedule out based on the types
2743 * of events that caused rescheduling:
2744 * - EVENT_CPU: schedule out corresponding groups;
2745 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2746 * - otherwise, do nothing more.
2747 */
2748 if (cpu_event)
2749 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2750 else if (ctx_event_type & EVENT_PINNED)
2751 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2752
Peter Zijlstra3e349502016-01-08 10:01:18 +01002753 perf_event_sched_in(cpuctx, task_ctx, current);
2754 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002755}
2756
Stephane Eranianc68d2242019-04-08 10:32:51 -07002757void perf_pmu_resched(struct pmu *pmu)
2758{
2759 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2760 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2761
2762 perf_ctx_lock(cpuctx, task_ctx);
2763 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2764 perf_ctx_unlock(cpuctx, task_ctx);
2765}
2766
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767/*
2768 * Cross CPU call to install and enable a performance event
2769 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002770 * Very similar to remote_function() + event_function() but cannot assume that
2771 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002773static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002774{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002775 struct perf_event *event = info;
2776 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002777 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002778 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002779 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002780 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002781
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002782 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002783 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002784 raw_spin_lock(&ctx->lock);
2785 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002786
Peter Zijlstra63cae122016-12-09 14:59:00 +01002787 reprogram = (ctx->task == current);
2788
2789 /*
2790 * If the task is running, it must be running on this CPU,
2791 * otherwise we cannot reprogram things.
2792 *
2793 * If its not running, we don't care, ctx->lock will
2794 * serialize against it becoming runnable.
2795 */
2796 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002797 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002798 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002799 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800
Peter Zijlstra63cae122016-12-09 14:59:00 +01002801 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002802 } else if (task_ctx) {
2803 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002804 }
2805
leilei.lin33801b92018-03-06 17:36:37 +08002806#ifdef CONFIG_CGROUP_PERF
Peter Zijlstra33238c52020-03-18 20:33:37 +01002807 if (event->state > PERF_EVENT_STATE_OFF && is_cgroup_event(event)) {
leilei.lin33801b92018-03-06 17:36:37 +08002808 /*
2809 * If the current cgroup doesn't match the event's
2810 * cgroup, we should not try to schedule it.
2811 */
2812 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2813 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2814 event->cgrp->css.cgroup);
2815 }
2816#endif
2817
Peter Zijlstra63cae122016-12-09 14:59:00 +01002818 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002819 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2820 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002821 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002822 } else {
2823 add_event_to_ctx(event, ctx);
2824 }
2825
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002826unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002827 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002828
Peter Zijlstraa0963092016-02-24 18:45:50 +01002829 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002830}
2831
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002832static bool exclusive_event_installable(struct perf_event *event,
2833 struct perf_event_context *ctx);
2834
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002835/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002836 * Attach a performance event to a context.
2837 *
2838 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002839 */
2840static void
2841perf_install_in_context(struct perf_event_context *ctx,
2842 struct perf_event *event,
2843 int cpu)
2844{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002845 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002846
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002847 lockdep_assert_held(&ctx->mutex);
2848
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002849 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2850
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002851 if (event->cpu != -1)
2852 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002853
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002854 /*
2855 * Ensures that if we can observe event->ctx, both the event and ctx
2856 * will be 'complete'. See perf_iterate_sb_cpu().
2857 */
2858 smp_store_release(&event->ctx, ctx);
2859
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002860 /*
2861 * perf_event_attr::disabled events will not run and can be initialized
2862 * without IPI. Except when this is the first event for the context, in
2863 * that case we need the magic of the IPI to set ctx->is_active.
2864 *
2865 * The IOC_ENABLE that is sure to follow the creation of a disabled
2866 * event will issue the IPI and reprogram the hardware.
2867 */
2868 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && ctx->nr_events) {
2869 raw_spin_lock_irq(&ctx->lock);
2870 if (ctx->task == TASK_TOMBSTONE) {
2871 raw_spin_unlock_irq(&ctx->lock);
2872 return;
2873 }
2874 add_event_to_ctx(event, ctx);
2875 raw_spin_unlock_irq(&ctx->lock);
2876 return;
2877 }
2878
Peter Zijlstraa0963092016-02-24 18:45:50 +01002879 if (!task) {
2880 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002881 return;
2882 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002883
Peter Zijlstraa0963092016-02-24 18:45:50 +01002884 /*
2885 * Should not happen, we validate the ctx is still alive before calling.
2886 */
2887 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2888 return;
2889
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002890 /*
2891 * Installing events is tricky because we cannot rely on ctx->is_active
2892 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002893 *
2894 * Instead we use task_curr(), which tells us if the task is running.
2895 * However, since we use task_curr() outside of rq::lock, we can race
2896 * against the actual state. This means the result can be wrong.
2897 *
2898 * If we get a false positive, we retry, this is harmless.
2899 *
2900 * If we get a false negative, things are complicated. If we are after
2901 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2902 * value must be correct. If we're before, it doesn't matter since
2903 * perf_event_context_sched_in() will program the counter.
2904 *
2905 * However, this hinges on the remote context switch having observed
2906 * our task->perf_event_ctxp[] store, such that it will in fact take
2907 * ctx::lock in perf_event_context_sched_in().
2908 *
2909 * We do this by task_function_call(), if the IPI fails to hit the task
2910 * we know any future context switch of task must see the
2911 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002912 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002913
Peter Zijlstraa0963092016-02-24 18:45:50 +01002914 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002915 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2916 * task_cpu() load, such that if the IPI then does not find the task
2917 * running, a future context switch of that task must observe the
2918 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002919 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002920 smp_mb();
2921again:
2922 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002923 return;
2924
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002925 raw_spin_lock_irq(&ctx->lock);
2926 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002927 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2928 /*
2929 * Cannot happen because we already checked above (which also
2930 * cannot happen), and we hold ctx->mutex, which serializes us
2931 * against perf_event_exit_task_context().
2932 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002933 raw_spin_unlock_irq(&ctx->lock);
2934 return;
2935 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002936 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002937 * If the task is not running, ctx->lock will avoid it becoming so,
2938 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002939 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002940 if (task_curr(task)) {
2941 raw_spin_unlock_irq(&ctx->lock);
2942 goto again;
2943 }
2944 add_event_to_ctx(event, ctx);
2945 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002946}
2947
2948/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002949 * Cross CPU call to enable a performance event
2950 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002951static void __perf_event_enable(struct perf_event *event,
2952 struct perf_cpu_context *cpuctx,
2953 struct perf_event_context *ctx,
2954 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002955{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002956 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002957 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002958
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002959 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2960 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002961 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002962
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002963 if (ctx->is_active)
2964 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2965
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002966 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002967 perf_cgroup_event_enable(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002968
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002969 if (!ctx->is_active)
2970 return;
2971
Stephane Eraniane5d13672011-02-14 11:20:01 +02002972 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002973 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002974 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002975 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002976
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002977 /*
2978 * If the event is in a group and isn't the group leader,
2979 * then don't put it on unless the group is on.
2980 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002981 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2982 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002983 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002984 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002986 task_ctx = cpuctx->task_ctx;
2987 if (ctx->task)
2988 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002989
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002990 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002991}
2992
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002993/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002994 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002995 *
2996 * If event->ctx is a cloned context, callers must make sure that
2997 * every task struct that event->ctx->task could possibly point to
2998 * remains valid. This condition is satisfied when called through
2999 * perf_event_for_each_child or perf_event_for_each as described
3000 * for perf_event_disable.
3001 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003002static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003{
3004 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003005
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003006 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01003007 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
3008 event->state < PERF_EVENT_STATE_ERROR) {
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003009out:
Peter Zijlstra7b648012015-12-03 18:35:21 +01003010 raw_spin_unlock_irq(&ctx->lock);
3011 return;
3012 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003013
3014 /*
3015 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01003016 *
3017 * That way, if we see the event in error state below, we know that it
3018 * has gone back into error state, as distinct from the task having
3019 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003021 if (event->state == PERF_EVENT_STATE_ERROR) {
3022 /*
3023 * Detached SIBLING events cannot leave ERROR state.
3024 */
3025 if (event->event_caps & PERF_EV_CAP_SIBLING &&
3026 event->group_leader == event)
3027 goto out;
3028
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003029 event->state = PERF_EVENT_STATE_OFF;
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003030 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003031 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003032
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003033 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003034}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003035
3036/*
3037 * See perf_event_disable();
3038 */
3039void perf_event_enable(struct perf_event *event)
3040{
3041 struct perf_event_context *ctx;
3042
3043 ctx = perf_event_ctx_lock(event);
3044 _perf_event_enable(event);
3045 perf_event_ctx_unlock(event, ctx);
3046}
Robert Richterdcfce4a2011-10-11 17:11:08 +02003047EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003048
Alexander Shishkin375637b2016-04-27 18:44:46 +03003049struct stop_event_data {
3050 struct perf_event *event;
3051 unsigned int restart;
3052};
3053
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003054static int __perf_event_stop(void *info)
3055{
Alexander Shishkin375637b2016-04-27 18:44:46 +03003056 struct stop_event_data *sd = info;
3057 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003058
Alexander Shishkin375637b2016-04-27 18:44:46 +03003059 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003060 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3061 return 0;
3062
3063 /* matches smp_wmb() in event_sched_in() */
3064 smp_rmb();
3065
3066 /*
3067 * There is a window with interrupts enabled before we get here,
3068 * so we need to check again lest we try to stop another CPU's event.
3069 */
3070 if (READ_ONCE(event->oncpu) != smp_processor_id())
3071 return -EAGAIN;
3072
3073 event->pmu->stop(event, PERF_EF_UPDATE);
3074
Alexander Shishkin375637b2016-04-27 18:44:46 +03003075 /*
3076 * May race with the actual stop (through perf_pmu_output_stop()),
3077 * but it is only used for events with AUX ring buffer, and such
3078 * events will refuse to restart because of rb::aux_mmap_count==0,
3079 * see comments in perf_aux_output_begin().
3080 *
Tobias Tefke788faab2018-07-09 12:57:15 +02003081 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03003082 * while restarting.
3083 */
3084 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01003085 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03003086
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003087 return 0;
3088}
3089
Alexander Shishkin767ae082016-09-06 16:23:49 +03003090static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03003091{
3092 struct stop_event_data sd = {
3093 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03003094 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03003095 };
3096 int ret = 0;
3097
3098 do {
3099 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3100 return 0;
3101
3102 /* matches smp_wmb() in event_sched_in() */
3103 smp_rmb();
3104
3105 /*
3106 * We only want to restart ACTIVE events, so if the event goes
3107 * inactive here (event->oncpu==-1), there's nothing more to do;
3108 * fall through with ret==-ENXIO.
3109 */
3110 ret = cpu_function_call(READ_ONCE(event->oncpu),
3111 __perf_event_stop, &sd);
3112 } while (ret == -EAGAIN);
3113
3114 return ret;
3115}
3116
3117/*
3118 * In order to contain the amount of racy and tricky in the address filter
3119 * configuration management, it is a two part process:
3120 *
3121 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
3122 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02003123 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03003124 * (p2) when an event is scheduled in (pmu::add), it calls
3125 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
3126 * if the generation has changed since the previous call.
3127 *
3128 * If (p1) happens while the event is active, we restart it to force (p2).
3129 *
3130 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
3131 * pre-existing mappings, called once when new filters arrive via SET_FILTER
3132 * ioctl;
3133 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003134 * registered mapping, called for every new mmap(), with mm::mmap_lock down
Alexander Shishkin375637b2016-04-27 18:44:46 +03003135 * for reading;
3136 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
3137 * of exec.
3138 */
3139void perf_event_addr_filters_sync(struct perf_event *event)
3140{
3141 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
3142
3143 if (!has_addr_filter(event))
3144 return;
3145
3146 raw_spin_lock(&ifh->lock);
3147 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
3148 event->pmu->addr_filters_sync(event);
3149 event->hw.addr_filters_gen = event->addr_filters_gen;
3150 }
3151 raw_spin_unlock(&ifh->lock);
3152}
3153EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
3154
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003155static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003156{
3157 /*
3158 * not supported on inherited events
3159 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01003160 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003161 return -EINVAL;
3162
3163 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003164 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003165
3166 return 0;
3167}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003168
3169/*
3170 * See perf_event_disable()
3171 */
3172int perf_event_refresh(struct perf_event *event, int refresh)
3173{
3174 struct perf_event_context *ctx;
3175 int ret;
3176
3177 ctx = perf_event_ctx_lock(event);
3178 ret = _perf_event_refresh(event, refresh);
3179 perf_event_ctx_unlock(event, ctx);
3180
3181 return ret;
3182}
Avi Kivity26ca5c12011-06-29 18:42:37 +03003183EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003184
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003185static int perf_event_modify_breakpoint(struct perf_event *bp,
3186 struct perf_event_attr *attr)
3187{
3188 int err;
3189
3190 _perf_event_disable(bp);
3191
3192 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003193
Jiri Olsabf062782018-08-27 11:12:28 +02003194 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003195 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02003196
3197 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003198}
3199
3200static int perf_event_modify_attr(struct perf_event *event,
3201 struct perf_event_attr *attr)
3202{
Marco Elver47f661e2021-04-08 12:35:57 +02003203 int (*func)(struct perf_event *, struct perf_event_attr *);
3204 struct perf_event *child;
3205 int err;
3206
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003207 if (event->attr.type != attr->type)
3208 return -EINVAL;
3209
3210 switch (event->attr.type) {
3211 case PERF_TYPE_BREAKPOINT:
Marco Elver47f661e2021-04-08 12:35:57 +02003212 func = perf_event_modify_breakpoint;
3213 break;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003214 default:
3215 /* Place holder for future additions. */
3216 return -EOPNOTSUPP;
3217 }
Marco Elver47f661e2021-04-08 12:35:57 +02003218
3219 WARN_ON_ONCE(event->ctx->parent_ctx);
3220
3221 mutex_lock(&event->child_mutex);
3222 err = func(event, attr);
3223 if (err)
3224 goto out;
3225 list_for_each_entry(child, &event->child_list, child_list) {
3226 err = func(child, attr);
3227 if (err)
3228 goto out;
3229 }
3230out:
3231 mutex_unlock(&event->child_mutex);
3232 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003233}
3234
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003235static void ctx_sched_out(struct perf_event_context *ctx,
3236 struct perf_cpu_context *cpuctx,
3237 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003238{
Peter Zijlstra66681282017-11-13 14:28:38 +01003239 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003240 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003241
3242 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003243
Peter Zijlstra39a43642016-01-11 12:46:35 +01003244 if (likely(!ctx->nr_events)) {
3245 /*
3246 * See __perf_remove_from_context().
3247 */
3248 WARN_ON_ONCE(ctx->is_active);
3249 if (ctx->task)
3250 WARN_ON_ONCE(cpuctx->task_ctx);
3251 return;
3252 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003253
Peter Zijlstradb24d332011-04-09 21:17:45 +02003254 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003255 if (!(ctx->is_active & EVENT_ALL))
3256 ctx->is_active = 0;
3257
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003258 if (ctx->task) {
3259 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3260 if (!ctx->is_active)
3261 cpuctx->task_ctx = NULL;
3262 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003263
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003264 /*
3265 * Always update time if it was set; not only when it changes.
3266 * Otherwise we can 'forget' to update time for any but the last
3267 * context we sched out. For example:
3268 *
3269 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3270 * ctx_sched_out(.event_type = EVENT_PINNED)
3271 *
3272 * would only update time for the pinned events.
3273 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003274 if (is_active & EVENT_TIME) {
3275 /* update (and stop) ctx time */
3276 update_context_time(ctx);
3277 update_cgrp_time_from_cpuctx(cpuctx);
3278 }
3279
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003280 is_active ^= ctx->is_active; /* changed bits */
3281
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003282 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003283 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003284
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003285 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003286 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003287 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003288 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003289 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003290
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003291 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003292 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003293 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra90c91df2020-03-05 13:38:51 +01003294
3295 /*
3296 * Since we cleared EVENT_FLEXIBLE, also clear
3297 * rotate_necessary, is will be reset by
3298 * ctx_flexible_sched_in() when needed.
3299 */
3300 ctx->rotate_necessary = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003301 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003302 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003303}
3304
3305/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003306 * Test whether two contexts are equivalent, i.e. whether they have both been
3307 * cloned from the same version of the same context.
3308 *
3309 * Equivalence is measured using a generation number in the context that is
3310 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3311 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003312 */
3313static int context_equiv(struct perf_event_context *ctx1,
3314 struct perf_event_context *ctx2)
3315{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003316 lockdep_assert_held(&ctx1->lock);
3317 lockdep_assert_held(&ctx2->lock);
3318
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003319 /* Pinning disables the swap optimization */
3320 if (ctx1->pin_count || ctx2->pin_count)
3321 return 0;
3322
3323 /* If ctx1 is the parent of ctx2 */
3324 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3325 return 1;
3326
3327 /* If ctx2 is the parent of ctx1 */
3328 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3329 return 1;
3330
3331 /*
3332 * If ctx1 and ctx2 have the same parent; we flatten the parent
3333 * hierarchy, see perf_event_init_context().
3334 */
3335 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3336 ctx1->parent_gen == ctx2->parent_gen)
3337 return 1;
3338
3339 /* Unmatched */
3340 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003341}
3342
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003343static void __perf_event_sync_stat(struct perf_event *event,
3344 struct perf_event *next_event)
3345{
3346 u64 value;
3347
3348 if (!event->attr.inherit_stat)
3349 return;
3350
3351 /*
3352 * Update the event value, we cannot use perf_event_read()
3353 * because we're in the middle of a context switch and have IRQs
3354 * disabled, which upsets smp_call_function_single(), however
3355 * we know the event must be on the current CPU, therefore we
3356 * don't need to use it.
3357 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003358 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003359 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003360
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003361 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003362
3363 /*
3364 * In order to keep per-task stats reliable we need to flip the event
3365 * values when we flip the contexts.
3366 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003367 value = local64_read(&next_event->count);
3368 value = local64_xchg(&event->count, value);
3369 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003370
3371 swap(event->total_time_enabled, next_event->total_time_enabled);
3372 swap(event->total_time_running, next_event->total_time_running);
3373
3374 /*
3375 * Since we swizzled the values, update the user visible data too.
3376 */
3377 perf_event_update_userpage(event);
3378 perf_event_update_userpage(next_event);
3379}
3380
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003381static void perf_event_sync_stat(struct perf_event_context *ctx,
3382 struct perf_event_context *next_ctx)
3383{
3384 struct perf_event *event, *next_event;
3385
3386 if (!ctx->nr_stat)
3387 return;
3388
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003389 update_context_time(ctx);
3390
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003391 event = list_first_entry(&ctx->event_list,
3392 struct perf_event, event_entry);
3393
3394 next_event = list_first_entry(&next_ctx->event_list,
3395 struct perf_event, event_entry);
3396
3397 while (&event->event_entry != &ctx->event_list &&
3398 &next_event->event_entry != &next_ctx->event_list) {
3399
3400 __perf_event_sync_stat(event, next_event);
3401
3402 event = list_next_entry(event, event_entry);
3403 next_event = list_next_entry(next_event, event_entry);
3404 }
3405}
3406
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003407static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3408 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003409{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003410 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003411 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003412 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003413 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003414 int do_switch = 1;
Kan Liang44fae1792020-08-21 12:57:53 -07003415 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003416
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003417 if (likely(!ctx))
3418 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003419
Kan Liang44fae1792020-08-21 12:57:53 -07003420 pmu = ctx->pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003421 cpuctx = __get_cpu_context(ctx);
3422 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003423 return;
3424
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003425 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003426 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003427 if (!next_ctx)
3428 goto unlock;
3429
3430 parent = rcu_dereference(ctx->parent_ctx);
3431 next_parent = rcu_dereference(next_ctx->parent_ctx);
3432
3433 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003434 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003435 goto unlock;
3436
3437 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003438 /*
3439 * Looks like the two contexts are clones, so we might be
3440 * able to optimize the context switch. We lock both
3441 * contexts and check that they are clones under the
3442 * lock (including re-checking that neither has been
3443 * uncloned in the meantime). It doesn't matter which
3444 * order we take the locks because no other cpu could
3445 * be trying to lock both of these tasks.
3446 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003447 raw_spin_lock(&ctx->lock);
3448 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003449 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003450
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003451 WRITE_ONCE(ctx->task, next);
3452 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003453
Kan Liang44fae1792020-08-21 12:57:53 -07003454 perf_pmu_disable(pmu);
3455
3456 if (cpuctx->sched_cb_usage && pmu->sched_task)
3457 pmu->sched_task(ctx, false);
3458
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003459 /*
3460 * PMU specific parts of task perf context can require
3461 * additional synchronization. As an example of such
3462 * synchronization see implementation details of Intel
3463 * LBR call stack data profiling;
3464 */
3465 if (pmu->swap_task_ctx)
3466 pmu->swap_task_ctx(ctx, next_ctx);
3467 else
3468 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003469
Kan Liang44fae1792020-08-21 12:57:53 -07003470 perf_pmu_enable(pmu);
3471
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003472 /*
3473 * RCU_INIT_POINTER here is safe because we've not
3474 * modified the ctx and the above modification of
3475 * ctx->task and ctx->task_ctx_data are immaterial
3476 * since those values are always verified under
3477 * ctx->lock which we're now holding.
3478 */
3479 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3480 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3481
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003482 do_switch = 0;
3483
3484 perf_event_sync_stat(ctx, next_ctx);
3485 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003486 raw_spin_unlock(&next_ctx->lock);
3487 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003488 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003489unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003490 rcu_read_unlock();
3491
3492 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003493 raw_spin_lock(&ctx->lock);
Kan Liang44fae1792020-08-21 12:57:53 -07003494 perf_pmu_disable(pmu);
3495
3496 if (cpuctx->sched_cb_usage && pmu->sched_task)
3497 pmu->sched_task(ctx, false);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003498 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Kan Liang44fae1792020-08-21 12:57:53 -07003499
3500 perf_pmu_enable(pmu);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003501 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003502 }
3503}
3504
Kan Lianga5398bf2020-11-30 11:38:40 -08003505static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3506
Yan, Zhengba532502014-11-04 21:55:58 -05003507void perf_sched_cb_dec(struct pmu *pmu)
3508{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003509 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3510
Kan Lianga5398bf2020-11-30 11:38:40 -08003511 this_cpu_dec(perf_sched_cb_usages);
3512
3513 if (!--cpuctx->sched_cb_usage)
3514 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003515}
3516
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003517
Yan, Zhengba532502014-11-04 21:55:58 -05003518void perf_sched_cb_inc(struct pmu *pmu)
3519{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003520 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3521
Kan Lianga5398bf2020-11-30 11:38:40 -08003522 if (!cpuctx->sched_cb_usage++)
3523 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3524
3525 this_cpu_inc(perf_sched_cb_usages);
Yan, Zhengba532502014-11-04 21:55:58 -05003526}
3527
3528/*
3529 * This function provides the context switch callback to the lower code
3530 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003531 *
3532 * This callback is relevant even to per-cpu events; for example multi event
3533 * PEBS requires this to provide PID/TID information. This requires we flush
3534 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003535 */
Kan Liang556ccca2020-08-21 12:57:52 -07003536static void __perf_pmu_sched_task(struct perf_cpu_context *cpuctx, bool sched_in)
3537{
3538 struct pmu *pmu;
3539
3540 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
3541
3542 if (WARN_ON_ONCE(!pmu->sched_task))
3543 return;
3544
3545 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3546 perf_pmu_disable(pmu);
3547
3548 pmu->sched_task(cpuctx->task_ctx, sched_in);
3549
3550 perf_pmu_enable(pmu);
3551 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
3552}
3553
Kan Lianga5398bf2020-11-30 11:38:40 -08003554static void perf_pmu_sched_task(struct task_struct *prev,
3555 struct task_struct *next,
3556 bool sched_in)
3557{
3558 struct perf_cpu_context *cpuctx;
3559
3560 if (prev == next)
3561 return;
3562
3563 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3564 /* will be handled in perf_event_context_sched_in/out */
3565 if (cpuctx->task_ctx)
3566 continue;
3567
3568 __perf_pmu_sched_task(cpuctx, sched_in);
3569 }
3570}
3571
Adrian Hunter45ac1402015-07-21 12:44:02 +03003572static void perf_event_switch(struct task_struct *task,
3573 struct task_struct *next_prev, bool sched_in);
3574
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003575#define for_each_task_context_nr(ctxn) \
3576 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3577
3578/*
3579 * Called from scheduler to remove the events of the current task,
3580 * with interrupts disabled.
3581 *
3582 * We stop each event and update the event value in event->count.
3583 *
3584 * This does not protect us against NMI, but disable()
3585 * sets the disabled bit in the control field of event _before_
3586 * accessing the event control register. If a NMI hits, then it will
3587 * not restart the event.
3588 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003589void __perf_event_task_sched_out(struct task_struct *task,
3590 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003591{
3592 int ctxn;
3593
Kan Lianga5398bf2020-11-30 11:38:40 -08003594 if (__this_cpu_read(perf_sched_cb_usages))
3595 perf_pmu_sched_task(task, next, false);
3596
Adrian Hunter45ac1402015-07-21 12:44:02 +03003597 if (atomic_read(&nr_switch_events))
3598 perf_event_switch(task, next, false);
3599
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003600 for_each_task_context_nr(ctxn)
3601 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003602
3603 /*
3604 * if cgroup events exist on this CPU, then we need
3605 * to check if we have to switch out PMU state.
3606 * cgroup event are system-wide mode only
3607 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003608 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003609 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003610}
3611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003612/*
3613 * Called with IRQs disabled
3614 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003615static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3616 enum event_type_t event_type)
3617{
3618 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003619}
3620
Ian Rogers6eef8a712020-02-13 23:51:30 -08003621static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003622{
Ian Rogers24fb6b82020-03-21 09:43:31 -07003623 const struct perf_event *le = *(const struct perf_event **)l;
3624 const struct perf_event *re = *(const struct perf_event **)r;
Ian Rogers6eef8a712020-02-13 23:51:30 -08003625
3626 return le->group_index < re->group_index;
3627}
3628
3629static void swap_ptr(void *l, void *r)
3630{
3631 void **lp = l, **rp = r;
3632
3633 swap(*lp, *rp);
3634}
3635
3636static const struct min_heap_callbacks perf_min_heap = {
3637 .elem_size = sizeof(struct perf_event *),
3638 .less = perf_less_group_idx,
3639 .swp = swap_ptr,
3640};
3641
3642static void __heap_add(struct min_heap *heap, struct perf_event *event)
3643{
3644 struct perf_event **itrs = heap->data;
3645
3646 if (event) {
3647 itrs[heap->nr] = event;
3648 heap->nr++;
3649 }
3650}
3651
Ian Rogers836196be2020-02-13 23:51:31 -08003652static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3653 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003654 int (*func)(struct perf_event *, void *),
3655 void *data)
3656{
Ian Rogers95ed6c72020-02-13 23:51:33 -08003657#ifdef CONFIG_CGROUP_PERF
3658 struct cgroup_subsys_state *css = NULL;
3659#endif
Ian Rogers6eef8a712020-02-13 23:51:30 -08003660 /* Space for per CPU and/or any CPU event iterators. */
3661 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003662 struct min_heap event_heap;
3663 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003664 int ret;
3665
Ian Rogers836196be2020-02-13 23:51:31 -08003666 if (cpuctx) {
3667 event_heap = (struct min_heap){
3668 .data = cpuctx->heap,
3669 .nr = 0,
3670 .size = cpuctx->heap_size,
3671 };
Ian Rogersc2283c92020-02-13 23:51:32 -08003672
3673 lockdep_assert_held(&cpuctx->ctx.lock);
Ian Rogers95ed6c72020-02-13 23:51:33 -08003674
3675#ifdef CONFIG_CGROUP_PERF
3676 if (cpuctx->cgrp)
3677 css = &cpuctx->cgrp->css;
3678#endif
Ian Rogers836196be2020-02-13 23:51:31 -08003679 } else {
3680 event_heap = (struct min_heap){
3681 .data = itrs,
3682 .nr = 0,
3683 .size = ARRAY_SIZE(itrs),
3684 };
3685 /* Events not within a CPU context may be on any CPU. */
Ian Rogers95ed6c72020-02-13 23:51:33 -08003686 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
Ian Rogers836196be2020-02-13 23:51:31 -08003687 }
3688 evt = event_heap.data;
3689
Ian Rogers95ed6c72020-02-13 23:51:33 -08003690 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3691
3692#ifdef CONFIG_CGROUP_PERF
3693 for (; css; css = css->parent)
3694 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3695#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003696
Ian Rogers6eef8a712020-02-13 23:51:30 -08003697 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003698
Ian Rogers6eef8a712020-02-13 23:51:30 -08003699 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003700 ret = func(*evt, data);
3701 if (ret)
3702 return ret;
3703
3704 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003705 if (*evt)
3706 min_heapify(&event_heap, 0, &perf_min_heap);
3707 else
3708 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003709 }
3710
3711 return 0;
3712}
3713
Song Liuf7925652021-09-29 12:43:13 -07003714static inline bool event_update_userpage(struct perf_event *event)
3715{
3716 if (likely(!atomic_read(&event->mmap_count)))
3717 return false;
3718
3719 perf_event_update_time(event);
3720 perf_set_shadow_time(event, event->ctx);
3721 perf_event_update_userpage(event);
3722
3723 return true;
3724}
3725
3726static inline void group_update_userpage(struct perf_event *group_event)
3727{
3728 struct perf_event *event;
3729
3730 if (!event_update_userpage(group_event))
3731 return;
3732
3733 for_each_sibling_event(event, group_event)
3734 event_update_userpage(event);
3735}
3736
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003737static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003738{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003739 struct perf_event_context *ctx = event->ctx;
3740 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3741 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003742
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003743 if (event->state <= PERF_EVENT_STATE_OFF)
3744 return 0;
3745
3746 if (!event_filter_match(event))
3747 return 0;
3748
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003749 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3750 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003751 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003752 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003753
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003754 if (event->state == PERF_EVENT_STATE_INACTIVE) {
Song Liuf7925652021-09-29 12:43:13 -07003755 *can_add_hw = 0;
Peter Zijlstra33238c52020-03-18 20:33:37 +01003756 if (event->attr.pinned) {
3757 perf_cgroup_event_disable(event, ctx);
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003758 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Song Liuf7925652021-09-29 12:43:13 -07003759 } else {
3760 ctx->rotate_necessary = 1;
3761 perf_mux_hrtimer_restart(cpuctx);
3762 group_update_userpage(event);
Peter Zijlstra33238c52020-03-18 20:33:37 +01003763 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003764 }
3765
3766 return 0;
3767}
3768
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003769static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003770ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003771 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003772{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003773 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774
Ian Rogers836196be2020-02-13 23:51:31 -08003775 if (ctx != &cpuctx->ctx)
3776 cpuctx = NULL;
3777
3778 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003779 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003780 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003781}
3782
3783static void
3784ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003785 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003786{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003787 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003788
Ian Rogers836196be2020-02-13 23:51:31 -08003789 if (ctx != &cpuctx->ctx)
3790 cpuctx = NULL;
3791
3792 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003793 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003794 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003795}
3796
3797static void
3798ctx_sched_in(struct perf_event_context *ctx,
3799 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003800 enum event_type_t event_type,
3801 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003802{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003803 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003804 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003805
Peter Zijlstrac994d612016-01-08 09:20:23 +01003806 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003807
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003808 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003809 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003810
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003811 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003812 if (ctx->task) {
3813 if (!is_active)
3814 cpuctx->task_ctx = ctx;
3815 else
3816 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3817 }
3818
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003819 is_active ^= ctx->is_active; /* changed bits */
3820
3821 if (is_active & EVENT_TIME) {
3822 /* start ctx time */
3823 now = perf_clock();
3824 ctx->timestamp = now;
3825 perf_cgroup_set_timestamp(task, ctx);
3826 }
3827
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003828 /*
3829 * First go through the list and put on any pinned groups
3830 * in order to give them the best chance of going on.
3831 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003832 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003833 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003834
3835 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003836 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003837 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003838}
3839
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003840static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003841 enum event_type_t event_type,
3842 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003843{
3844 struct perf_event_context *ctx = &cpuctx->ctx;
3845
Stephane Eraniane5d13672011-02-14 11:20:01 +02003846 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003847}
3848
Stephane Eraniane5d13672011-02-14 11:20:01 +02003849static void perf_event_context_sched_in(struct perf_event_context *ctx,
3850 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003851{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003852 struct perf_cpu_context *cpuctx;
Peter Zijlstra012669c2021-06-22 16:21:01 +02003853 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003854
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003855 cpuctx = __get_cpu_context(ctx);
Peter Zijlstra012669c2021-06-22 16:21:01 +02003856
3857 /*
3858 * HACK: for HETEROGENEOUS the task context might have switched to a
3859 * different PMU, force (re)set the context,
3860 */
3861 pmu = ctx->pmu = cpuctx->ctx.pmu;
3862
Kan Liang556ccca2020-08-21 12:57:52 -07003863 if (cpuctx->task_ctx == ctx) {
3864 if (cpuctx->sched_cb_usage)
3865 __perf_pmu_sched_task(cpuctx, true);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003866 return;
Kan Liang556ccca2020-08-21 12:57:52 -07003867 }
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003868
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003869 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003870 /*
3871 * We must check ctx->nr_events while holding ctx->lock, such
3872 * that we serialize against perf_install_in_context().
3873 */
3874 if (!ctx->nr_events)
3875 goto unlock;
3876
Kan Liang556ccca2020-08-21 12:57:52 -07003877 perf_pmu_disable(pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003878 /*
3879 * We want to keep the following priority order:
3880 * cpu pinned (that don't need to move), task pinned,
3881 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003882 *
3883 * However, if task's ctx is not carrying any pinned
3884 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003885 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003886 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003887 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003888 perf_event_sched_in(cpuctx, ctx, task);
Kan Liang556ccca2020-08-21 12:57:52 -07003889
3890 if (cpuctx->sched_cb_usage && pmu->sched_task)
3891 pmu->sched_task(cpuctx->task_ctx, true);
3892
3893 perf_pmu_enable(pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003894
3895unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003896 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003897}
3898
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003899/*
3900 * Called from scheduler to add the events of the current task
3901 * with interrupts disabled.
3902 *
3903 * We restore the event value and then enable it.
3904 *
3905 * This does not protect us against NMI, but enable()
3906 * sets the enabled bit in the control field of event _before_
3907 * accessing the event control register. If a NMI hits, then it will
3908 * keep the event running.
3909 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003910void __perf_event_task_sched_in(struct task_struct *prev,
3911 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003912{
3913 struct perf_event_context *ctx;
3914 int ctxn;
3915
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003916 /*
3917 * If cgroup events exist on this CPU, then we need to check if we have
3918 * to switch in PMU state; cgroup event are system-wide mode only.
3919 *
3920 * Since cgroup events are CPU events, we must schedule these in before
3921 * we schedule in the task events.
3922 */
3923 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3924 perf_cgroup_sched_in(prev, task);
3925
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003926 for_each_task_context_nr(ctxn) {
3927 ctx = task->perf_event_ctxp[ctxn];
3928 if (likely(!ctx))
3929 continue;
3930
Stephane Eraniane5d13672011-02-14 11:20:01 +02003931 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003932 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003933
Adrian Hunter45ac1402015-07-21 12:44:02 +03003934 if (atomic_read(&nr_switch_events))
3935 perf_event_switch(task, prev, true);
Kan Lianga5398bf2020-11-30 11:38:40 -08003936
3937 if (__this_cpu_read(perf_sched_cb_usages))
3938 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003939}
3940
Peter Zijlstraabd50712010-01-26 18:50:16 +01003941static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3942{
3943 u64 frequency = event->attr.sample_freq;
3944 u64 sec = NSEC_PER_SEC;
3945 u64 divisor, dividend;
3946
3947 int count_fls, nsec_fls, frequency_fls, sec_fls;
3948
3949 count_fls = fls64(count);
3950 nsec_fls = fls64(nsec);
3951 frequency_fls = fls64(frequency);
3952 sec_fls = 30;
3953
3954 /*
3955 * We got @count in @nsec, with a target of sample_freq HZ
3956 * the target period becomes:
3957 *
3958 * @count * 10^9
3959 * period = -------------------
3960 * @nsec * sample_freq
3961 *
3962 */
3963
3964 /*
3965 * Reduce accuracy by one bit such that @a and @b converge
3966 * to a similar magnitude.
3967 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003968#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003969do { \
3970 if (a##_fls > b##_fls) { \
3971 a >>= 1; \
3972 a##_fls--; \
3973 } else { \
3974 b >>= 1; \
3975 b##_fls--; \
3976 } \
3977} while (0)
3978
3979 /*
3980 * Reduce accuracy until either term fits in a u64, then proceed with
3981 * the other, so that finally we can do a u64/u64 division.
3982 */
3983 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3984 REDUCE_FLS(nsec, frequency);
3985 REDUCE_FLS(sec, count);
3986 }
3987
3988 if (count_fls + sec_fls > 64) {
3989 divisor = nsec * frequency;
3990
3991 while (count_fls + sec_fls > 64) {
3992 REDUCE_FLS(count, sec);
3993 divisor >>= 1;
3994 }
3995
3996 dividend = count * sec;
3997 } else {
3998 dividend = count * sec;
3999
4000 while (nsec_fls + frequency_fls > 64) {
4001 REDUCE_FLS(nsec, frequency);
4002 dividend >>= 1;
4003 }
4004
4005 divisor = nsec * frequency;
4006 }
4007
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004008 if (!divisor)
4009 return dividend;
4010
Peter Zijlstraabd50712010-01-26 18:50:16 +01004011 return div64_u64(dividend, divisor);
4012}
4013
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004014static DEFINE_PER_CPU(int, perf_throttled_count);
4015static DEFINE_PER_CPU(u64, perf_throttled_seq);
4016
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004017static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004018{
4019 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004020 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004021 s64 delta;
4022
Peter Zijlstraabd50712010-01-26 18:50:16 +01004023 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004024
4025 delta = (s64)(period - hwc->sample_period);
4026 delta = (delta + 7) / 8; /* low pass filter */
4027
4028 sample_period = hwc->sample_period + delta;
4029
4030 if (!sample_period)
4031 sample_period = 1;
4032
4033 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004034
Peter Zijlstrae7850592010-05-21 14:43:08 +02004035 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004036 if (disable)
4037 event->pmu->stop(event, PERF_EF_UPDATE);
4038
Peter Zijlstrae7850592010-05-21 14:43:08 +02004039 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004040
4041 if (disable)
4042 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004043 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004044}
4045
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004046/*
4047 * combine freq adjustment with unthrottling to avoid two passes over the
4048 * events. At the same time, make sure, having freq events does not change
4049 * the rate of unthrottling as that would introduce bias.
4050 */
4051static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
4052 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004053{
4054 struct perf_event *event;
4055 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004056 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004057 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004058
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004059 /*
4060 * only need to iterate over all events iff:
4061 * - context have events in frequency mode (needs freq adjust)
4062 * - there are events to unthrottle on this cpu
4063 */
4064 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004065 return;
4066
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004067 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004068 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004069
Paul Mackerras03541f82009-10-14 16:58:03 +11004070 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004071 if (event->state != PERF_EVENT_STATE_ACTIVE)
4072 continue;
4073
Stephane Eranian5632ab12011-01-03 18:20:01 +02004074 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004075 continue;
4076
Alexander Shishkin44377272013-12-16 14:17:36 +02004077 perf_pmu_disable(event->pmu);
4078
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004079 hwc = &event->hw;
4080
Jiri Olsaae23bff2013-08-24 16:45:54 +02004081 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004082 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004083 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004084 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004085 }
4086
4087 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02004088 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004089
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004090 /*
4091 * stop the event and update event->count
4092 */
4093 event->pmu->stop(event, PERF_EF_UPDATE);
4094
Peter Zijlstrae7850592010-05-21 14:43:08 +02004095 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004096 delta = now - hwc->freq_count_stamp;
4097 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004098
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004099 /*
4100 * restart the event
4101 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004102 * we have stopped the event so tell that
4103 * to perf_adjust_period() to avoid stopping it
4104 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004105 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01004106 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004107 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004108
4109 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02004110 next:
4111 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004112 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004113
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004114 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004115 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004116}
4117
4118/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004119 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004120 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004121static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004122{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01004123 /*
4124 * Rotate the first entry last of non-pinned groups. Rotation might be
4125 * disabled by the inheritance code.
4126 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004127 if (ctx->rotate_disable)
4128 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004129
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004130 perf_event_groups_delete(&ctx->flexible_groups, event);
4131 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004132}
4133
Song Liu7fa343b72019-10-08 09:59:49 -07004134/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004135static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07004136ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004137{
Song Liu7fa343b72019-10-08 09:59:49 -07004138 struct perf_event *event;
4139
4140 /* pick the first active flexible event */
4141 event = list_first_entry_or_null(&ctx->flexible_active,
4142 struct perf_event, active_list);
4143
4144 /* if no active flexible event, pick the first event */
4145 if (!event) {
4146 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
4147 typeof(*event), group_node);
4148 }
4149
Peter Zijlstra90c91df2020-03-05 13:38:51 +01004150 /*
4151 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in()
4152 * finds there are unschedulable events, it will set it again.
4153 */
4154 ctx->rotate_necessary = 0;
4155
Song Liu7fa343b72019-10-08 09:59:49 -07004156 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004157}
4158
4159static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
4160{
4161 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07004162 struct perf_event_context *task_ctx = NULL;
4163 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004164
4165 /*
4166 * Since we run this from IRQ context, nobody can install new
4167 * events, thus the event count values are stable.
4168 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004169
Ian Rogersfd7d5512019-06-01 01:27:22 -07004170 cpu_rotate = cpuctx->ctx.rotate_necessary;
4171 task_ctx = cpuctx->task_ctx;
4172 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004174 if (!(cpu_rotate || task_rotate))
4175 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004176
Peter Zijlstrafacc4302011-04-09 21:17:42 +02004177 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02004178 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004179
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004180 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004181 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004182 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004183 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004184
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004185 /*
4186 * As per the order given at ctx_resched() first 'pop' task flexible
4187 * and then, if needed CPU flexible.
4188 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07004189 if (task_event || (task_ctx && cpu_event))
4190 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004191 if (cpu_event)
4192 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01004193
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004194 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07004195 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004196 if (cpu_event)
4197 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004198
Ian Rogersfd7d5512019-06-01 01:27:22 -07004199 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004200
4201 perf_pmu_enable(cpuctx->ctx.pmu);
4202 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02004203
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004204 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004205}
4206
4207void perf_event_task_tick(void)
4208{
Mark Rutland2fde4f92015-01-07 15:01:54 +00004209 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4210 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004211 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004212
Frederic Weisbecker16444642017-11-06 16:01:24 +01004213 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004214
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004215 __this_cpu_inc(perf_throttled_seq);
4216 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004217 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004218
Mark Rutland2fde4f92015-01-07 15:01:54 +00004219 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004220 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004221}
4222
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004223static int event_enable_on_exec(struct perf_event *event,
4224 struct perf_event_context *ctx)
4225{
4226 if (!event->attr.enable_on_exec)
4227 return 0;
4228
4229 event->attr.enable_on_exec = 0;
4230 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4231 return 0;
4232
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004233 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004234
4235 return 1;
4236}
4237
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004238/*
4239 * Enable all of a task's events that have been marked enable-on-exec.
4240 * This expects task == current.
4241 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01004242static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004243{
Peter Zijlstrac1274492015-12-10 20:57:40 +01004244 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004245 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01004246 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004247 struct perf_event *event;
4248 unsigned long flags;
4249 int enabled = 0;
4250
4251 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01004252 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004253 if (!ctx || !ctx->nr_events)
4254 goto out;
4255
Peter Zijlstra3e349502016-01-08 10:01:18 +01004256 cpuctx = __get_cpu_context(ctx);
4257 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01004258 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004259 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01004260 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004261 event_type |= get_event_type(event);
4262 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004263
4264 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01004265 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004266 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01004267 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004268 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004269 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01004270 } else {
4271 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01004272 }
4273 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004274
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004275out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004276 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004277
4278 if (clone_ctx)
4279 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004280}
4281
Marco Elver2e498d02021-04-08 12:35:59 +02004282static void perf_remove_from_owner(struct perf_event *event);
4283static void perf_event_exit_event(struct perf_event *event,
4284 struct perf_event_context *ctx);
4285
4286/*
4287 * Removes all events from the current task that have been marked
4288 * remove-on-exec, and feeds their values back to parent events.
4289 */
4290static void perf_event_remove_on_exec(int ctxn)
4291{
4292 struct perf_event_context *ctx, *clone_ctx = NULL;
4293 struct perf_event *event, *next;
4294 LIST_HEAD(free_list);
4295 unsigned long flags;
4296 bool modified = false;
4297
4298 ctx = perf_pin_task_context(current, ctxn);
4299 if (!ctx)
4300 return;
4301
4302 mutex_lock(&ctx->mutex);
4303
4304 if (WARN_ON_ONCE(ctx->task != current))
4305 goto unlock;
4306
4307 list_for_each_entry_safe(event, next, &ctx->event_list, event_entry) {
4308 if (!event->attr.remove_on_exec)
4309 continue;
4310
4311 if (!is_kernel_event(event))
4312 perf_remove_from_owner(event);
4313
4314 modified = true;
4315
4316 perf_event_exit_event(event, ctx);
4317 }
4318
4319 raw_spin_lock_irqsave(&ctx->lock, flags);
4320 if (modified)
4321 clone_ctx = unclone_ctx(ctx);
4322 --ctx->pin_count;
4323 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4324
4325unlock:
4326 mutex_unlock(&ctx->mutex);
4327
4328 put_ctx(ctx);
4329 if (clone_ctx)
4330 put_ctx(clone_ctx);
4331}
4332
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004333struct perf_read_data {
4334 struct perf_event *event;
4335 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004336 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004337};
4338
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004339static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004340{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004341 u16 local_pkg, event_pkg;
4342
4343 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004344 int local_cpu = smp_processor_id();
4345
4346 event_pkg = topology_physical_package_id(event_cpu);
4347 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004348
4349 if (event_pkg == local_pkg)
4350 return local_cpu;
4351 }
4352
4353 return event_cpu;
4354}
4355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004356/*
4357 * Cross CPU call to read the hardware event
4358 */
4359static void __perf_event_read(void *info)
4360{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004361 struct perf_read_data *data = info;
4362 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004363 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004364 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004365 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004366
4367 /*
4368 * If this is a task context, we need to check whether it is
4369 * the current task context of this cpu. If not it has been
4370 * scheduled out before the smp call arrived. In that case
4371 * event->count would have been updated to a recent sample
4372 * when the event was scheduled out.
4373 */
4374 if (ctx->task && cpuctx->task_ctx != ctx)
4375 return;
4376
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004377 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004378 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004379 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004380 update_cgrp_time_from_event(event);
4381 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004382
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004383 perf_event_update_time(event);
4384 if (data->group)
4385 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004386
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004387 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004388 goto unlock;
4389
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004390 if (!data->group) {
4391 pmu->read(event);
4392 data->ret = 0;
4393 goto unlock;
4394 }
4395
4396 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4397
4398 pmu->read(event);
4399
Peter Zijlstraedb39592018-03-15 17:36:56 +01004400 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004401 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4402 /*
4403 * Use sibling's PMU rather than @event's since
4404 * sibling could be on different (eg: software) PMU.
4405 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004406 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004407 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004408 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004409
4410 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004411
4412unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004413 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004414}
4415
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004416static inline u64 perf_event_count(struct perf_event *event)
4417{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004418 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004419}
4420
Kaixu Xiaffe86902015-08-06 07:02:32 +00004421/*
4422 * NMI-safe method to read a local event, that is an event that
4423 * is:
4424 * - either for the current task, or for this CPU
4425 * - does not have inherit set, for inherited task events
4426 * will not be local and we cannot read them atomically
4427 * - must not have a pmu::count method
4428 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004429int perf_event_read_local(struct perf_event *event, u64 *value,
4430 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004431{
4432 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004433 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004434
4435 /*
4436 * Disabling interrupts avoids all counter scheduling (context
4437 * switches, timer based rotation and IPIs).
4438 */
4439 local_irq_save(flags);
4440
Kaixu Xiaffe86902015-08-06 07:02:32 +00004441 /*
4442 * It must not be an event with inherit set, we cannot read
4443 * all child counters from atomic context.
4444 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004445 if (event->attr.inherit) {
4446 ret = -EOPNOTSUPP;
4447 goto out;
4448 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004449
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004450 /* If this is a per-task event, it must be for current */
4451 if ((event->attach_state & PERF_ATTACH_TASK) &&
4452 event->hw.target != current) {
4453 ret = -EINVAL;
4454 goto out;
4455 }
4456
4457 /* If this is a per-CPU event, it must be for this CPU */
4458 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4459 event->cpu != smp_processor_id()) {
4460 ret = -EINVAL;
4461 goto out;
4462 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004463
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004464 /* If this is a pinned event it must be running on this CPU */
4465 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4466 ret = -EBUSY;
4467 goto out;
4468 }
4469
Kaixu Xiaffe86902015-08-06 07:02:32 +00004470 /*
4471 * If the event is currently on this CPU, its either a per-task event,
4472 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4473 * oncpu == -1).
4474 */
4475 if (event->oncpu == smp_processor_id())
4476 event->pmu->read(event);
4477
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004478 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004479 if (enabled || running) {
4480 u64 now = event->shadow_ctx_time + perf_clock();
4481 u64 __enabled, __running;
4482
4483 __perf_update_times(event, now, &__enabled, &__running);
4484 if (enabled)
4485 *enabled = __enabled;
4486 if (running)
4487 *running = __running;
4488 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004489out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004490 local_irq_restore(flags);
4491
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004492 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004493}
4494
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004495static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004496{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004497 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004498 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004500 /*
4501 * If event is enabled and currently active on a CPU, update the
4502 * value in the event structure:
4503 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004504again:
4505 if (state == PERF_EVENT_STATE_ACTIVE) {
4506 struct perf_read_data data;
4507
4508 /*
4509 * Orders the ->state and ->oncpu loads such that if we see
4510 * ACTIVE we must also see the right ->oncpu.
4511 *
4512 * Matches the smp_wmb() from event_sched_in().
4513 */
4514 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004515
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004516 event_cpu = READ_ONCE(event->oncpu);
4517 if ((unsigned)event_cpu >= nr_cpu_ids)
4518 return 0;
4519
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004520 data = (struct perf_read_data){
4521 .event = event,
4522 .group = group,
4523 .ret = 0,
4524 };
4525
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004526 preempt_disable();
4527 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004528
Peter Zijlstra58763142016-08-30 10:15:03 +02004529 /*
4530 * Purposely ignore the smp_call_function_single() return
4531 * value.
4532 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004533 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004534 * scheduled out and that will have updated the event count.
4535 *
4536 * Therefore, either way, we'll have an up-to-date event count
4537 * after this.
4538 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004539 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4540 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004541 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004542
4543 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004544 struct perf_event_context *ctx = event->ctx;
4545 unsigned long flags;
4546
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004547 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004548 state = event->state;
4549 if (state != PERF_EVENT_STATE_INACTIVE) {
4550 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4551 goto again;
4552 }
4553
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004554 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004555 * May read while context is not active (e.g., thread is
4556 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004557 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004558 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004559 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004560 update_cgrp_time_from_event(event);
4561 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004562
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004563 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004564 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004565 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004566 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004567 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004568
4569 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004570}
4571
4572/*
4573 * Initialize the perf_event context in a task_struct:
4574 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004575static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004576{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004577 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004578 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004579 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004580 perf_event_groups_init(&ctx->pinned_groups);
4581 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004582 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004583 INIT_LIST_HEAD(&ctx->pinned_active);
4584 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004585 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004586}
4587
Peter Zijlstraeb184472010-09-07 15:55:13 +02004588static struct perf_event_context *
4589alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004590{
4591 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004592
4593 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4594 if (!ctx)
4595 return NULL;
4596
4597 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004598 if (task)
4599 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004600 ctx->pmu = pmu;
4601
4602 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004603}
4604
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004605static struct task_struct *
4606find_lively_task_by_vpid(pid_t vpid)
4607{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004608 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004610 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004611 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004612 task = current;
4613 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004614 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004615 if (task)
4616 get_task_struct(task);
4617 rcu_read_unlock();
4618
4619 if (!task)
4620 return ERR_PTR(-ESRCH);
4621
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004622 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004623}
4624
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004625/*
4626 * Returns a matching context with refcount and pincount.
4627 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004628static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004629find_get_context(struct pmu *pmu, struct task_struct *task,
4630 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004631{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004632 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004633 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004634 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004635 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004636 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004637 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004638
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004639 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004640 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004641 err = perf_allow_cpu(&event->attr);
4642 if (err)
4643 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004644
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004645 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004646 ctx = &cpuctx->ctx;
4647 get_ctx(ctx);
Marco Elver6c605f82021-05-27 12:47:11 +02004648 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004649 ++ctx->pin_count;
Marco Elver6c605f82021-05-27 12:47:11 +02004650 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004651
4652 return ctx;
4653 }
4654
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004655 err = -EINVAL;
4656 ctxn = pmu->task_ctx_nr;
4657 if (ctxn < 0)
4658 goto errout;
4659
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004660 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
Kan Liangff9ff922020-07-03 05:49:21 -07004661 task_ctx_data = alloc_task_ctx_data(pmu);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004662 if (!task_ctx_data) {
4663 err = -ENOMEM;
4664 goto errout;
4665 }
4666 }
4667
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004668retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004669 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004670 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004671 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004672 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004673
4674 if (task_ctx_data && !ctx->task_ctx_data) {
4675 ctx->task_ctx_data = task_ctx_data;
4676 task_ctx_data = NULL;
4677 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004678 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004679
4680 if (clone_ctx)
4681 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004682 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004683 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004684 err = -ENOMEM;
4685 if (!ctx)
4686 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004687
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004688 if (task_ctx_data) {
4689 ctx->task_ctx_data = task_ctx_data;
4690 task_ctx_data = NULL;
4691 }
4692
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004693 err = 0;
4694 mutex_lock(&task->perf_event_mutex);
4695 /*
4696 * If it has already passed perf_event_exit_task().
4697 * we must see PF_EXITING, it takes this mutex too.
4698 */
4699 if (task->flags & PF_EXITING)
4700 err = -ESRCH;
4701 else if (task->perf_event_ctxp[ctxn])
4702 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004703 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004704 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004705 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004706 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004707 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004708 mutex_unlock(&task->perf_event_mutex);
4709
4710 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004711 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004712
4713 if (err == -EAGAIN)
4714 goto retry;
4715 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004716 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004717 }
4718
Kan Liangff9ff922020-07-03 05:49:21 -07004719 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004720 return ctx;
4721
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004722errout:
Kan Liangff9ff922020-07-03 05:49:21 -07004723 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004724 return ERR_PTR(err);
4725}
4726
Li Zefan6fb29152009-10-15 11:21:42 +08004727static void perf_event_free_filter(struct perf_event *event);
4728
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729static void free_event_rcu(struct rcu_head *head)
4730{
4731 struct perf_event *event;
4732
4733 event = container_of(head, struct perf_event, rcu_head);
4734 if (event->ns)
4735 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004736 perf_event_free_filter(event);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +09004737 kmem_cache_free(perf_event_cache, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004738}
4739
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004740static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004741 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004742
Kan Liangf2fb6be2016-03-23 11:24:37 -07004743static void detach_sb_event(struct perf_event *event)
4744{
4745 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4746
4747 raw_spin_lock(&pel->lock);
4748 list_del_rcu(&event->sb_list);
4749 raw_spin_unlock(&pel->lock);
4750}
4751
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004752static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004753{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004754 struct perf_event_attr *attr = &event->attr;
4755
Kan Liangf2fb6be2016-03-23 11:24:37 -07004756 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004757 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004758
4759 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004760 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004761
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004762 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4763 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004764 attr->task || attr->ksymbol ||
Adrian Huntere17d43b2020-05-12 15:19:08 +03004765 attr->context_switch || attr->text_poke ||
Song Liu21038f22019-02-25 16:20:05 -08004766 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004767 return true;
4768 return false;
4769}
4770
4771static void unaccount_pmu_sb_event(struct perf_event *event)
4772{
4773 if (is_sb_event(event))
4774 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004775}
4776
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004777static void unaccount_event_cpu(struct perf_event *event, int cpu)
4778{
4779 if (event->parent)
4780 return;
4781
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004782 if (is_cgroup_event(event))
4783 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4784}
4785
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004786#ifdef CONFIG_NO_HZ_FULL
4787static DEFINE_SPINLOCK(nr_freq_lock);
4788#endif
4789
4790static void unaccount_freq_event_nohz(void)
4791{
4792#ifdef CONFIG_NO_HZ_FULL
4793 spin_lock(&nr_freq_lock);
4794 if (atomic_dec_and_test(&nr_freq_events))
4795 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4796 spin_unlock(&nr_freq_lock);
4797#endif
4798}
4799
4800static void unaccount_freq_event(void)
4801{
4802 if (tick_nohz_full_enabled())
4803 unaccount_freq_event_nohz();
4804 else
4805 atomic_dec(&nr_freq_events);
4806}
4807
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004808static void unaccount_event(struct perf_event *event)
4809{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004810 bool dec = false;
4811
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004812 if (event->parent)
4813 return;
4814
Kan Lianga5398bf2020-11-30 11:38:40 -08004815 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004816 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004817 if (event->attr.mmap || event->attr.mmap_data)
4818 atomic_dec(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +01004819 if (event->attr.build_id)
4820 atomic_dec(&nr_build_id_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004821 if (event->attr.comm)
4822 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304823 if (event->attr.namespaces)
4824 atomic_dec(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +09004825 if (event->attr.cgroup)
4826 atomic_dec(&nr_cgroup_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004827 if (event->attr.task)
4828 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004829 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004830 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004831 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004832 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004833 atomic_dec(&nr_switch_events);
4834 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004835 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004836 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004837 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004838 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004839 if (event->attr.ksymbol)
4840 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004841 if (event->attr.bpf_event)
4842 atomic_dec(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +03004843 if (event->attr.text_poke)
4844 atomic_dec(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004845
Peter Zijlstra9107c892016-02-24 18:45:45 +01004846 if (dec) {
4847 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4848 schedule_delayed_work(&perf_sched_work, HZ);
4849 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004850
4851 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004852
4853 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004854}
4855
Peter Zijlstra9107c892016-02-24 18:45:45 +01004856static void perf_sched_delayed(struct work_struct *work)
4857{
4858 mutex_lock(&perf_sched_mutex);
4859 if (atomic_dec_and_test(&perf_sched_count))
4860 static_branch_disable(&perf_sched_events);
4861 mutex_unlock(&perf_sched_mutex);
4862}
4863
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004864/*
4865 * The following implement mutual exclusion of events on "exclusive" pmus
4866 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4867 * at a time, so we disallow creating events that might conflict, namely:
4868 *
4869 * 1) cpu-wide events in the presence of per-task events,
4870 * 2) per-task events in the presence of cpu-wide events,
4871 * 3) two matching events on the same context.
4872 *
4873 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004874 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004875 */
4876static int exclusive_event_init(struct perf_event *event)
4877{
4878 struct pmu *pmu = event->pmu;
4879
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004880 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004881 return 0;
4882
4883 /*
4884 * Prevent co-existence of per-task and cpu-wide events on the
4885 * same exclusive pmu.
4886 *
4887 * Negative pmu::exclusive_cnt means there are cpu-wide
4888 * events on this "exclusive" pmu, positive means there are
4889 * per-task events.
4890 *
4891 * Since this is called in perf_event_alloc() path, event::ctx
4892 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4893 * to mean "per-task event", because unlike other attach states it
4894 * never gets cleared.
4895 */
4896 if (event->attach_state & PERF_ATTACH_TASK) {
4897 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4898 return -EBUSY;
4899 } else {
4900 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4901 return -EBUSY;
4902 }
4903
4904 return 0;
4905}
4906
4907static void exclusive_event_destroy(struct perf_event *event)
4908{
4909 struct pmu *pmu = event->pmu;
4910
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004911 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004912 return;
4913
4914 /* see comment in exclusive_event_init() */
4915 if (event->attach_state & PERF_ATTACH_TASK)
4916 atomic_dec(&pmu->exclusive_cnt);
4917 else
4918 atomic_inc(&pmu->exclusive_cnt);
4919}
4920
4921static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4922{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004923 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004924 (e1->cpu == e2->cpu ||
4925 e1->cpu == -1 ||
4926 e2->cpu == -1))
4927 return true;
4928 return false;
4929}
4930
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004931static bool exclusive_event_installable(struct perf_event *event,
4932 struct perf_event_context *ctx)
4933{
4934 struct perf_event *iter_event;
4935 struct pmu *pmu = event->pmu;
4936
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004937 lockdep_assert_held(&ctx->mutex);
4938
4939 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004940 return true;
4941
4942 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4943 if (exclusive_event_match(iter_event, event))
4944 return false;
4945 }
4946
4947 return true;
4948}
4949
Alexander Shishkin375637b2016-04-27 18:44:46 +03004950static void perf_addr_filters_splice(struct perf_event *event,
4951 struct list_head *head);
4952
Peter Zijlstra683ede42014-05-05 12:11:24 +02004953static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004954{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004955 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004956
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004957 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004958
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004959 security_perf_event_free(event);
4960
Frederic Weisbecker76369132011-05-19 19:55:04 +02004961 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004962 /*
4963 * Can happen when we close an event with re-directed output.
4964 *
4965 * Since we have a 0 refcount, perf_mmap_close() will skip
4966 * over us; possibly making our ring_buffer_put() the last.
4967 */
4968 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004969 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004970 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004971 }
4972
Stephane Eraniane5d13672011-02-14 11:20:01 +02004973 if (is_cgroup_event(event))
4974 perf_detach_cgroup(event);
4975
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004976 if (!event->parent) {
4977 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4978 put_callchain_buffers();
4979 }
4980
4981 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004982 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02004983 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004984
4985 if (event->destroy)
4986 event->destroy(event);
4987
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004988 /*
4989 * Must be after ->destroy(), due to uprobe_perf_close() using
4990 * hw.target.
4991 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09004992 if (event->hw.target)
4993 put_task_struct(event->hw.target);
4994
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004995 /*
4996 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4997 * all task references must be cleaned up.
4998 */
4999 if (event->ctx)
5000 put_ctx(event->ctx);
5001
Alexander Shishkin62a92c82016-06-07 15:44:15 +03005002 exclusive_event_destroy(event);
5003 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005004
5005 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005006}
5007
Peter Zijlstra683ede42014-05-05 12:11:24 +02005008/*
5009 * Used to free events which have a known refcount of 1, such as in error paths
5010 * where the event isn't exposed yet and inherited events.
5011 */
5012static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005013{
Peter Zijlstra683ede42014-05-05 12:11:24 +02005014 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
5015 "unexpected event refcount: %ld; ptr=%p\n",
5016 atomic_long_read(&event->refcount), event)) {
5017 /* leak to avoid use-after-free */
5018 return;
5019 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005020
Peter Zijlstra683ede42014-05-05 12:11:24 +02005021 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005022}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005023
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005024/*
Jiri Olsaf8697762014-08-01 14:33:01 +02005025 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005026 */
Jiri Olsaf8697762014-08-01 14:33:01 +02005027static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005028{
Peter Zijlstra88821352010-11-09 19:01:43 +01005029 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005030
Peter Zijlstra88821352010-11-09 19:01:43 +01005031 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01005032 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005033 * Matches the smp_store_release() in perf_event_exit_task(). If we
5034 * observe !owner it means the list deletion is complete and we can
5035 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01005036 * owner->perf_event_mutex.
5037 */
Will Deacon506458e2017-10-24 11:22:48 +01005038 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01005039 if (owner) {
5040 /*
5041 * Since delayed_put_task_struct() also drops the last
5042 * task reference we can safely take a new reference
5043 * while holding the rcu_read_lock().
5044 */
5045 get_task_struct(owner);
5046 }
5047 rcu_read_unlock();
5048
5049 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005050 /*
5051 * If we're here through perf_event_exit_task() we're already
5052 * holding ctx->mutex which would be an inversion wrt. the
5053 * normal lock order.
5054 *
5055 * However we can safely take this lock because its the child
5056 * ctx->mutex.
5057 */
5058 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
5059
Peter Zijlstra88821352010-11-09 19:01:43 +01005060 /*
5061 * We have to re-check the event->owner field, if it is cleared
5062 * we raced with perf_event_exit_task(), acquiring the mutex
5063 * ensured they're done, and we can proceed with freeing the
5064 * event.
5065 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005066 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01005067 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005068 smp_store_release(&event->owner, NULL);
5069 }
Peter Zijlstra88821352010-11-09 19:01:43 +01005070 mutex_unlock(&owner->perf_event_mutex);
5071 put_task_struct(owner);
5072 }
Jiri Olsaf8697762014-08-01 14:33:01 +02005073}
5074
Jiri Olsaf8697762014-08-01 14:33:01 +02005075static void put_event(struct perf_event *event)
5076{
Jiri Olsaf8697762014-08-01 14:33:01 +02005077 if (!atomic_long_dec_and_test(&event->refcount))
5078 return;
5079
Peter Zijlstra683ede42014-05-05 12:11:24 +02005080 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01005081}
5082
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005083/*
5084 * Kill an event dead; while event:refcount will preserve the event
5085 * object, it will not preserve its functionality. Once the last 'user'
5086 * gives up the object, we'll destroy the thing.
5087 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005088int perf_event_release_kernel(struct perf_event *event)
5089{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005090 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005091 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01005092 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005093
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005094 /*
5095 * If we got here through err_file: fput(event_file); we will not have
5096 * attached to a context yet.
5097 */
5098 if (!ctx) {
5099 WARN_ON_ONCE(event->attach_state &
5100 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
5101 goto no_ctx;
5102 }
5103
Peter Zijlstra88821352010-11-09 19:01:43 +01005104 if (!is_kernel_event(event))
5105 perf_remove_from_owner(event);
5106
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01005107 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02005108 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005109 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01005110
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005111 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005112 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01005113 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005114 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005115 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005116 * Anybody acquiring event->child_mutex after the below loop _must_
5117 * also see this, most importantly inherit_event() which will avoid
5118 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005119 *
5120 * Thus this guarantees that we will in fact observe and kill _ALL_
5121 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01005122 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005123 event->state = PERF_EVENT_STATE_DEAD;
5124 raw_spin_unlock_irq(&ctx->lock);
5125
5126 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005127
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005128again:
5129 mutex_lock(&event->child_mutex);
5130 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01005131
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005132 /*
5133 * Cannot change, child events are not migrated, see the
5134 * comment with perf_event_ctx_lock_nested().
5135 */
Will Deacon506458e2017-10-24 11:22:48 +01005136 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005137 /*
5138 * Since child_mutex nests inside ctx::mutex, we must jump
5139 * through hoops. We start by grabbing a reference on the ctx.
5140 *
5141 * Since the event cannot get freed while we hold the
5142 * child_mutex, the context must also exist and have a !0
5143 * reference count.
5144 */
5145 get_ctx(ctx);
5146
5147 /*
5148 * Now that we have a ctx ref, we can drop child_mutex, and
5149 * acquire ctx::mutex without fear of it going away. Then we
5150 * can re-acquire child_mutex.
5151 */
5152 mutex_unlock(&event->child_mutex);
5153 mutex_lock(&ctx->mutex);
5154 mutex_lock(&event->child_mutex);
5155
5156 /*
5157 * Now that we hold ctx::mutex and child_mutex, revalidate our
5158 * state, if child is still the first entry, it didn't get freed
5159 * and we can continue doing so.
5160 */
5161 tmp = list_first_entry_or_null(&event->child_list,
5162 struct perf_event, child_list);
5163 if (tmp == child) {
5164 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005165 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005166 /*
5167 * This matches the refcount bump in inherit_event();
5168 * this can't be the last reference.
5169 */
5170 put_event(event);
5171 }
5172
5173 mutex_unlock(&event->child_mutex);
5174 mutex_unlock(&ctx->mutex);
5175 put_ctx(ctx);
5176 goto again;
5177 }
5178 mutex_unlock(&event->child_mutex);
5179
Peter Zijlstra82d94852018-01-09 13:10:30 +01005180 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005181 void *var = &child->ctx->refcount;
5182
Peter Zijlstra82d94852018-01-09 13:10:30 +01005183 list_del(&child->child_list);
5184 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005185
5186 /*
5187 * Wake any perf_event_free_task() waiting for this event to be
5188 * freed.
5189 */
5190 smp_mb(); /* pairs with wait_var_event() */
5191 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005192 }
5193
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005194no_ctx:
5195 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005196 return 0;
5197}
5198EXPORT_SYMBOL_GPL(perf_event_release_kernel);
5199
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02005200/*
5201 * Called when the last reference to the file is gone.
5202 */
Al Viroa6fa9412012-08-20 14:59:25 +01005203static int perf_release(struct inode *inode, struct file *file)
5204{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005205 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01005206 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005207}
5208
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005209static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005210{
5211 struct perf_event *child;
5212 u64 total = 0;
5213
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005214 *enabled = 0;
5215 *running = 0;
5216
Peter Zijlstra6f105812009-11-20 22:19:56 +01005217 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005218
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005219 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005220 total += perf_event_count(event);
5221
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005222 *enabled += event->total_time_enabled +
5223 atomic64_read(&event->child_total_time_enabled);
5224 *running += event->total_time_running +
5225 atomic64_read(&event->child_total_time_running);
5226
5227 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005228 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005229 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005230 *enabled += child->total_time_enabled;
5231 *running += child->total_time_running;
5232 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01005233 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005234
5235 return total;
5236}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005237
5238u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5239{
5240 struct perf_event_context *ctx;
5241 u64 count;
5242
5243 ctx = perf_event_ctx_lock(event);
5244 count = __perf_event_read_value(event, enabled, running);
5245 perf_event_ctx_unlock(event, ctx);
5246
5247 return count;
5248}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005249EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005250
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005251static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005252 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005253{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005254 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005255 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005256 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005257 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005258 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01005259
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005260 ret = perf_event_read(leader, true);
5261 if (ret)
5262 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005263
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02005264 raw_spin_lock_irqsave(&ctx->lock, flags);
5265
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005266 /*
5267 * Since we co-schedule groups, {enabled,running} times of siblings
5268 * will be identical to those of the leader, so we only publish one
5269 * set.
5270 */
5271 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5272 values[n++] += leader->total_time_enabled +
5273 atomic64_read(&leader->child_total_time_enabled);
5274 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005276 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5277 values[n++] += leader->total_time_running +
5278 atomic64_read(&leader->child_total_time_running);
5279 }
5280
5281 /*
5282 * Write {count,id} tuples for every sibling.
5283 */
5284 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005285 if (read_format & PERF_FORMAT_ID)
5286 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005287
Peter Zijlstraedb39592018-03-15 17:36:56 +01005288 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005289 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005290 if (read_format & PERF_FORMAT_ID)
5291 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005292 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005293
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005294 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005295 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005296}
5297
5298static int perf_read_group(struct perf_event *event,
5299 u64 read_format, char __user *buf)
5300{
5301 struct perf_event *leader = event->group_leader, *child;
5302 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005303 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005304 u64 *values;
5305
5306 lockdep_assert_held(&ctx->mutex);
5307
5308 values = kzalloc(event->read_size, GFP_KERNEL);
5309 if (!values)
5310 return -ENOMEM;
5311
5312 values[0] = 1 + leader->nr_siblings;
5313
5314 /*
5315 * By locking the child_mutex of the leader we effectively
5316 * lock the child list of all siblings.. XXX explain how.
5317 */
5318 mutex_lock(&leader->child_mutex);
5319
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005320 ret = __perf_read_group_add(leader, read_format, values);
5321 if (ret)
5322 goto unlock;
5323
5324 list_for_each_entry(child, &leader->child_list, child_list) {
5325 ret = __perf_read_group_add(child, read_format, values);
5326 if (ret)
5327 goto unlock;
5328 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005329
5330 mutex_unlock(&leader->child_mutex);
5331
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005332 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005333 if (copy_to_user(buf, values, event->read_size))
5334 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005335 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005336
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005337unlock:
5338 mutex_unlock(&leader->child_mutex);
5339out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005340 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005341 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005342}
5343
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005344static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005345 u64 read_format, char __user *buf)
5346{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005347 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005348 u64 values[4];
5349 int n = 0;
5350
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005351 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005352 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5353 values[n++] = enabled;
5354 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5355 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005356 if (read_format & PERF_FORMAT_ID)
5357 values[n++] = primary_event_id(event);
5358
5359 if (copy_to_user(buf, values, n * sizeof(u64)))
5360 return -EFAULT;
5361
5362 return n * sizeof(u64);
5363}
5364
Jiri Olsadc633982014-09-12 13:18:26 +02005365static bool is_event_hup(struct perf_event *event)
5366{
5367 bool no_children;
5368
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005369 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005370 return false;
5371
5372 mutex_lock(&event->child_mutex);
5373 no_children = list_empty(&event->child_list);
5374 mutex_unlock(&event->child_mutex);
5375 return no_children;
5376}
5377
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005378/*
5379 * Read the performance event - simple non blocking version for now
5380 */
5381static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005382__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005383{
5384 u64 read_format = event->attr.read_format;
5385 int ret;
5386
5387 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005388 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005389 * error state (i.e. because it was pinned but it couldn't be
5390 * scheduled on to the CPU at some point).
5391 */
5392 if (event->state == PERF_EVENT_STATE_ERROR)
5393 return 0;
5394
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005395 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005396 return -ENOSPC;
5397
5398 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005399 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005400 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005401 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005402 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005403
5404 return ret;
5405}
5406
5407static ssize_t
5408perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5409{
5410 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005411 struct perf_event_context *ctx;
5412 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005414 ret = security_perf_event_read(event);
5415 if (ret)
5416 return ret;
5417
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005418 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005419 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005420 perf_event_ctx_unlock(event, ctx);
5421
5422 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005423}
5424
Al Viro9dd95742017-07-03 00:42:43 -04005425static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005426{
5427 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005428 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005429 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005431 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005432
Jiri Olsadc633982014-09-12 13:18:26 +02005433 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005434 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005436 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005437 * Pin the event->rb by taking event->mmap_mutex; otherwise
5438 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005439 */
5440 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005441 rb = event->rb;
5442 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005443 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005444 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005445 return events;
5446}
5447
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005448static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005449{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005450 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005451 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452 perf_event_update_userpage(event);
5453}
5454
Like Xu52ba4b02019-10-27 18:52:39 +08005455/* Assume it's not an event with inherit set. */
5456u64 perf_event_pause(struct perf_event *event, bool reset)
5457{
5458 struct perf_event_context *ctx;
5459 u64 count;
5460
5461 ctx = perf_event_ctx_lock(event);
5462 WARN_ON_ONCE(event->attr.inherit);
5463 _perf_event_disable(event);
5464 count = local64_read(&event->count);
5465 if (reset)
5466 local64_set(&event->count, 0);
5467 perf_event_ctx_unlock(event, ctx);
5468
5469 return count;
5470}
5471EXPORT_SYMBOL_GPL(perf_event_pause);
5472
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005473/*
5474 * Holding the top-level event's child_mutex means that any
5475 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005476 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005477 * task existence requirements of perf_event_enable/disable.
5478 */
5479static void perf_event_for_each_child(struct perf_event *event,
5480 void (*func)(struct perf_event *))
5481{
5482 struct perf_event *child;
5483
5484 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005485
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005486 mutex_lock(&event->child_mutex);
5487 func(event);
5488 list_for_each_entry(child, &event->child_list, child_list)
5489 func(child);
5490 mutex_unlock(&event->child_mutex);
5491}
5492
5493static void perf_event_for_each(struct perf_event *event,
5494 void (*func)(struct perf_event *))
5495{
5496 struct perf_event_context *ctx = event->ctx;
5497 struct perf_event *sibling;
5498
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005499 lockdep_assert_held(&ctx->mutex);
5500
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005501 event = event->group_leader;
5502
5503 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005504 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005505 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005506}
5507
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005508static void __perf_event_period(struct perf_event *event,
5509 struct perf_cpu_context *cpuctx,
5510 struct perf_event_context *ctx,
5511 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005512{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005513 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005514 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005515
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005516 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005517 event->attr.sample_freq = value;
5518 } else {
5519 event->attr.sample_period = value;
5520 event->hw.sample_period = value;
5521 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005522
5523 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5524 if (active) {
5525 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005526 /*
5527 * We could be throttled; unthrottle now to avoid the tick
5528 * trying to unthrottle while we already re-started the event.
5529 */
5530 if (event->hw.interrupts == MAX_INTERRUPTS) {
5531 event->hw.interrupts = 0;
5532 perf_log_throttle(event, 1);
5533 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005534 event->pmu->stop(event, PERF_EF_UPDATE);
5535 }
5536
5537 local64_set(&event->hw.period_left, 0);
5538
5539 if (active) {
5540 event->pmu->start(event, PERF_EF_RELOAD);
5541 perf_pmu_enable(ctx->pmu);
5542 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005543}
5544
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005545static int perf_event_check_period(struct perf_event *event, u64 value)
5546{
5547 return event->pmu->check_period(event, value);
5548}
5549
Like Xu3ca270f2019-10-27 18:52:38 +08005550static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005551{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005552 if (!is_sampling_event(event))
5553 return -EINVAL;
5554
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005555 if (!value)
5556 return -EINVAL;
5557
5558 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5559 return -EINVAL;
5560
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005561 if (perf_event_check_period(event, value))
5562 return -EINVAL;
5563
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305564 if (!event->attr.freq && (value & (1ULL << 63)))
5565 return -EINVAL;
5566
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005567 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005568
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005569 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005570}
5571
Like Xu3ca270f2019-10-27 18:52:38 +08005572int perf_event_period(struct perf_event *event, u64 value)
5573{
5574 struct perf_event_context *ctx;
5575 int ret;
5576
5577 ctx = perf_event_ctx_lock(event);
5578 ret = _perf_event_period(event, value);
5579 perf_event_ctx_unlock(event, ctx);
5580
5581 return ret;
5582}
5583EXPORT_SYMBOL_GPL(perf_event_period);
5584
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005585static const struct file_operations perf_fops;
5586
Al Viro2903ff02012-08-28 12:52:22 -04005587static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005588{
Al Viro2903ff02012-08-28 12:52:22 -04005589 struct fd f = fdget(fd);
5590 if (!f.file)
5591 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005592
Al Viro2903ff02012-08-28 12:52:22 -04005593 if (f.file->f_op != &perf_fops) {
5594 fdput(f);
5595 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005596 }
Al Viro2903ff02012-08-28 12:52:22 -04005597 *p = f;
5598 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005599}
5600
5601static int perf_event_set_output(struct perf_event *event,
5602 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005603static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005604static int perf_copy_attr(struct perf_event_attr __user *uattr,
5605 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005606
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005607static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005608{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005609 void (*func)(struct perf_event *);
5610 u32 flags = arg;
5611
5612 switch (cmd) {
5613 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005614 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005615 break;
5616 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005617 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005618 break;
5619 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005620 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005621 break;
5622
5623 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005624 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005625
5626 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005627 {
5628 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005629
Like Xu3ca270f2019-10-27 18:52:38 +08005630 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5631 return -EFAULT;
5632
5633 return _perf_event_period(event, value);
5634 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005635 case PERF_EVENT_IOC_ID:
5636 {
5637 u64 id = primary_event_id(event);
5638
5639 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5640 return -EFAULT;
5641 return 0;
5642 }
5643
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005644 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005645 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005646 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005647 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005648 struct perf_event *output_event;
5649 struct fd output;
5650 ret = perf_fget_light(arg, &output);
5651 if (ret)
5652 return ret;
5653 output_event = output.file->private_data;
5654 ret = perf_event_set_output(event, output_event);
5655 fdput(output);
5656 } else {
5657 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005658 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005659 return ret;
5660 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005661
Li Zefan6fb29152009-10-15 11:21:42 +08005662 case PERF_EVENT_IOC_SET_FILTER:
5663 return perf_event_set_filter(event, (void __user *)arg);
5664
Alexei Starovoitov25415172015-03-25 12:49:20 -07005665 case PERF_EVENT_IOC_SET_BPF:
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005666 {
5667 struct bpf_prog *prog;
5668 int err;
5669
5670 prog = bpf_prog_get(arg);
5671 if (IS_ERR(prog))
5672 return PTR_ERR(prog);
5673
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07005674 err = perf_event_set_bpf_prog(event, prog, 0);
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005675 if (err) {
5676 bpf_prog_put(prog);
5677 return err;
5678 }
5679
5680 return 0;
5681 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07005682
Wang Nan86e79722016-03-28 06:41:29 +00005683 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005684 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005685
5686 rcu_read_lock();
5687 rb = rcu_dereference(event->rb);
5688 if (!rb || !rb->nr_pages) {
5689 rcu_read_unlock();
5690 return -EINVAL;
5691 }
5692 rb_toggle_paused(rb, !!arg);
5693 rcu_read_unlock();
5694 return 0;
5695 }
Yonghong Songf371b302017-12-11 11:39:02 -08005696
5697 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005698 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005699
5700 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5701 struct perf_event_attr new_attr;
5702 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5703 &new_attr);
5704
5705 if (err)
5706 return err;
5707
5708 return perf_event_modify_attr(event, &new_attr);
5709 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005710 default:
5711 return -ENOTTY;
5712 }
5713
5714 if (flags & PERF_IOC_FLAG_GROUP)
5715 perf_event_for_each(event, func);
5716 else
5717 perf_event_for_each_child(event, func);
5718
5719 return 0;
5720}
5721
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005722static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5723{
5724 struct perf_event *event = file->private_data;
5725 struct perf_event_context *ctx;
5726 long ret;
5727
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005728 /* Treat ioctl like writes as it is likely a mutating operation. */
5729 ret = security_perf_event_write(event);
5730 if (ret)
5731 return ret;
5732
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005733 ctx = perf_event_ctx_lock(event);
5734 ret = _perf_ioctl(event, cmd, arg);
5735 perf_event_ctx_unlock(event, ctx);
5736
5737 return ret;
5738}
5739
Pawel Mollb3f20782014-06-13 16:03:32 +01005740#ifdef CONFIG_COMPAT
5741static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5742 unsigned long arg)
5743{
5744 switch (_IOC_NR(cmd)) {
5745 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5746 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005747 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5748 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005749 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5750 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5751 cmd &= ~IOCSIZE_MASK;
5752 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5753 }
5754 break;
5755 }
5756 return perf_ioctl(file, cmd, arg);
5757}
5758#else
5759# define perf_compat_ioctl NULL
5760#endif
5761
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005762int perf_event_task_enable(void)
5763{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005764 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005765 struct perf_event *event;
5766
5767 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005768 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5769 ctx = perf_event_ctx_lock(event);
5770 perf_event_for_each_child(event, _perf_event_enable);
5771 perf_event_ctx_unlock(event, ctx);
5772 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773 mutex_unlock(&current->perf_event_mutex);
5774
5775 return 0;
5776}
5777
5778int perf_event_task_disable(void)
5779{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005780 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005781 struct perf_event *event;
5782
5783 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005784 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5785 ctx = perf_event_ctx_lock(event);
5786 perf_event_for_each_child(event, _perf_event_disable);
5787 perf_event_ctx_unlock(event, ctx);
5788 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005789 mutex_unlock(&current->perf_event_mutex);
5790
5791 return 0;
5792}
5793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794static int perf_event_index(struct perf_event *event)
5795{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005796 if (event->hw.state & PERF_HES_STOPPED)
5797 return 0;
5798
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005799 if (event->state != PERF_EVENT_STATE_ACTIVE)
5800 return 0;
5801
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005802 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005803}
5804
Eric B Munsonc4794292011-06-23 16:34:38 -04005805static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005806 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005807 u64 *enabled,
5808 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005809{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005810 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005811
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005812 *now = perf_clock();
5813 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005814 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005815}
5816
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005817static void perf_event_init_userpage(struct perf_event *event)
5818{
5819 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005820 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005821
5822 rcu_read_lock();
5823 rb = rcu_dereference(event->rb);
5824 if (!rb)
5825 goto unlock;
5826
5827 userpg = rb->user_page;
5828
5829 /* Allow new userspace to detect that bit 0 is deprecated */
5830 userpg->cap_bit0_is_deprecated = 1;
5831 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005832 userpg->data_offset = PAGE_SIZE;
5833 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005834
5835unlock:
5836 rcu_read_unlock();
5837}
5838
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005839void __weak arch_perf_update_userpage(
5840 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005841{
5842}
5843
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005844/*
5845 * Callers need to ensure there can be no nesting of this function, otherwise
5846 * the seqlock logic goes bad. We can not serialize this because the arch
5847 * code calls this from NMI context.
5848 */
5849void perf_event_update_userpage(struct perf_event *event)
5850{
5851 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005852 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005853 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005854
5855 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005856 rb = rcu_dereference(event->rb);
5857 if (!rb)
5858 goto unlock;
5859
Eric B Munson0d641202011-06-24 12:26:26 -04005860 /*
5861 * compute total_time_enabled, total_time_running
5862 * based on snapshot values taken when the event
5863 * was last scheduled in.
5864 *
5865 * we cannot simply called update_context_time()
5866 * because of locking issue as we can be called in
5867 * NMI context
5868 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005869 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005870
Frederic Weisbecker76369132011-05-19 19:55:04 +02005871 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005872 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005873 * Disable preemption to guarantee consistent time stamps are stored to
5874 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005875 */
5876 preempt_disable();
5877 ++userpg->lock;
5878 barrier();
5879 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005880 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005881 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005882 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005883
Eric B Munson0d641202011-06-24 12:26:26 -04005884 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005885 atomic64_read(&event->child_total_time_enabled);
5886
Eric B Munson0d641202011-06-24 12:26:26 -04005887 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005888 atomic64_read(&event->child_total_time_running);
5889
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005890 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005891
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005892 barrier();
5893 ++userpg->lock;
5894 preempt_enable();
5895unlock:
5896 rcu_read_unlock();
5897}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005898EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005899
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305900static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005901{
Dave Jiang11bac802017-02-24 14:56:41 -08005902 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005903 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305904 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005905
5906 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5907 if (vmf->pgoff == 0)
5908 ret = 0;
5909 return ret;
5910 }
5911
5912 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005913 rb = rcu_dereference(event->rb);
5914 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005915 goto unlock;
5916
5917 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5918 goto unlock;
5919
Frederic Weisbecker76369132011-05-19 19:55:04 +02005920 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005921 if (!vmf->page)
5922 goto unlock;
5923
5924 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005925 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005926 vmf->page->index = vmf->pgoff;
5927
5928 ret = 0;
5929unlock:
5930 rcu_read_unlock();
5931
5932 return ret;
5933}
5934
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005935static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005936 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005937{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005938 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005939 unsigned long flags;
5940
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005941 if (event->rb) {
5942 /*
5943 * Should be impossible, we set this when removing
5944 * event->rb_entry and wait/clear when adding event->rb_entry.
5945 */
5946 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005947
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005948 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005949 spin_lock_irqsave(&old_rb->event_lock, flags);
5950 list_del_rcu(&event->rb_entry);
5951 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005952
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005953 event->rcu_batches = get_state_synchronize_rcu();
5954 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005955 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005956
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005957 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005958 if (event->rcu_pending) {
5959 cond_synchronize_rcu(event->rcu_batches);
5960 event->rcu_pending = 0;
5961 }
5962
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005963 spin_lock_irqsave(&rb->event_lock, flags);
5964 list_add_rcu(&event->rb_entry, &rb->event_list);
5965 spin_unlock_irqrestore(&rb->event_lock, flags);
5966 }
5967
Alexander Shishkin767ae082016-09-06 16:23:49 +03005968 /*
5969 * Avoid racing with perf_mmap_close(AUX): stop the event
5970 * before swizzling the event::rb pointer; if it's getting
5971 * unmapped, its aux_mmap_count will be 0 and it won't
5972 * restart. See the comment in __perf_pmu_output_stop().
5973 *
5974 * Data will inevitably be lost when set_output is done in
5975 * mid-air, but then again, whoever does it like this is
5976 * not in for the data anyway.
5977 */
5978 if (has_aux(event))
5979 perf_event_stop(event, 0);
5980
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005981 rcu_assign_pointer(event->rb, rb);
5982
5983 if (old_rb) {
5984 ring_buffer_put(old_rb);
5985 /*
5986 * Since we detached before setting the new rb, so that we
5987 * could attach the new rb, we could have missed a wakeup.
5988 * Provide it now.
5989 */
5990 wake_up_all(&event->waitq);
5991 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005992}
5993
5994static void ring_buffer_wakeup(struct perf_event *event)
5995{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005996 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005997
5998 rcu_read_lock();
5999 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006000 if (rb) {
6001 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
6002 wake_up_all(&event->waitq);
6003 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006004 rcu_read_unlock();
6005}
6006
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006007struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006008{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006009 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006010
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006011 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02006012 rb = rcu_dereference(event->rb);
6013 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006014 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02006015 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006016 }
6017 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006018
Frederic Weisbecker76369132011-05-19 19:55:04 +02006019 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006020}
6021
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006022void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006023{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006024 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006025 return;
6026
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006027 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006028
Frederic Weisbecker76369132011-05-19 19:55:04 +02006029 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006030}
6031
6032static void perf_mmap_open(struct vm_area_struct *vma)
6033{
6034 struct perf_event *event = vma->vm_file->private_data;
6035
6036 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006037 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006038
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006039 if (vma->vm_pgoff)
6040 atomic_inc(&event->rb->aux_mmap_count);
6041
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006042 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006043 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006044}
6045
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006046static void perf_pmu_output_stop(struct perf_event *event);
6047
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006048/*
6049 * A buffer can be mmap()ed multiple times; either directly through the same
6050 * event, or through other events by use of perf_event_set_output().
6051 *
6052 * In order to undo the VM accounting done by perf_mmap() we need to destroy
6053 * the buffer here, where we still have a VM context. This means we need
6054 * to detach all events redirecting to us.
6055 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006056static void perf_mmap_close(struct vm_area_struct *vma)
6057{
6058 struct perf_event *event = vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006059 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006060 struct user_struct *mmap_user = rb->mmap_user;
6061 int mmap_locked = rb->mmap_locked;
6062 unsigned long size = perf_data_size(rb);
Jiri Olsaf91072e2020-09-16 13:53:11 +02006063 bool detach_rest = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006064
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006065 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006066 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006067
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006068 /*
6069 * rb->aux_mmap_count will always drop before rb->mmap_count and
6070 * event->mmap_count, so it is ok to use event->mmap_mutex to
6071 * serialize with perf_mmap here.
6072 */
6073 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
6074 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006075 /*
6076 * Stop all AUX events that are writing to this buffer,
6077 * so that we can free its AUX pages and corresponding PMU
6078 * data. Note that after rb::aux_mmap_count dropped to zero,
6079 * they won't start any more (see perf_aux_output_begin()).
6080 */
6081 perf_pmu_output_stop(event);
6082
6083 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02006084 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
6085 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006086
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006087 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006088 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02006089 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006090
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006091 mutex_unlock(&event->mmap_mutex);
6092 }
6093
Jiri Olsaf91072e2020-09-16 13:53:11 +02006094 if (atomic_dec_and_test(&rb->mmap_count))
6095 detach_rest = true;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006096
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006097 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006098 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006099
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006100 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006101 mutex_unlock(&event->mmap_mutex);
6102
6103 /* If there's still other mmap()s of this buffer, we're done. */
Jiri Olsaf91072e2020-09-16 13:53:11 +02006104 if (!detach_rest)
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006105 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006106
6107 /*
6108 * No other mmap()s, detach from all other events that might redirect
6109 * into the now unreachable buffer. Somewhat complicated by the
6110 * fact that rb::event_lock otherwise nests inside mmap_mutex.
6111 */
6112again:
6113 rcu_read_lock();
6114 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
6115 if (!atomic_long_inc_not_zero(&event->refcount)) {
6116 /*
6117 * This event is en-route to free_event() which will
6118 * detach it and remove it from the list.
6119 */
6120 continue;
6121 }
6122 rcu_read_unlock();
6123
6124 mutex_lock(&event->mmap_mutex);
6125 /*
6126 * Check we didn't race with perf_event_set_output() which can
6127 * swizzle the rb from under us while we were waiting to
6128 * acquire mmap_mutex.
6129 *
6130 * If we find a different rb; ignore this event, a next
6131 * iteration will no longer find it on the list. We have to
6132 * still restart the iteration to make sure we're not now
6133 * iterating the wrong list.
6134 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006135 if (event->rb == rb)
6136 ring_buffer_attach(event, NULL);
6137
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006138 mutex_unlock(&event->mmap_mutex);
6139 put_event(event);
6140
6141 /*
6142 * Restart the iteration; either we're on the wrong list or
6143 * destroyed its integrity by doing a deletion.
6144 */
6145 goto again;
6146 }
6147 rcu_read_unlock();
6148
6149 /*
6150 * It could be there's still a few 0-ref events on the list; they'll
6151 * get cleaned up by free_event() -- they'll also still have their
6152 * ref on the rb and will free it whenever they are done with it.
6153 *
6154 * Aside from that, this buffer is 'fully' detached and unmapped,
6155 * undo the VM accounting.
6156 */
6157
Song Liud44248a2019-09-04 14:46:18 -07006158 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
6159 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006160 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006161 free_uid(mmap_user);
6162
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006163out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006164 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006165}
6166
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04006167static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006168 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01006169 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006170 .fault = perf_mmap_fault,
6171 .page_mkwrite = perf_mmap_fault,
6172};
6173
6174static int perf_mmap(struct file *file, struct vm_area_struct *vma)
6175{
6176 struct perf_event *event = file->private_data;
6177 unsigned long user_locked, user_lock_limit;
6178 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006179 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006180 unsigned long locked, lock_limit;
6181 unsigned long vma_size;
6182 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006183 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006184 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006185
Peter Zijlstrac7920612010-05-18 10:33:24 +02006186 /*
6187 * Don't allow mmap() of inherited per-task counters. This would
6188 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02006189 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02006190 */
6191 if (event->cpu == -1 && event->attr.inherit)
6192 return -EINVAL;
6193
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006194 if (!(vma->vm_flags & VM_SHARED))
6195 return -EINVAL;
6196
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006197 ret = security_perf_event_read(event);
6198 if (ret)
6199 return ret;
6200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006201 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006202
6203 if (vma->vm_pgoff == 0) {
6204 nr_pages = (vma_size / PAGE_SIZE) - 1;
6205 } else {
6206 /*
6207 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
6208 * mapped, all subsequent mappings should have the same size
6209 * and offset. Must be above the normal perf buffer.
6210 */
6211 u64 aux_offset, aux_size;
6212
6213 if (!event->rb)
6214 return -EINVAL;
6215
6216 nr_pages = vma_size / PAGE_SIZE;
6217
6218 mutex_lock(&event->mmap_mutex);
6219 ret = -EINVAL;
6220
6221 rb = event->rb;
6222 if (!rb)
6223 goto aux_unlock;
6224
Mark Rutland6aa7de02017-10-23 14:07:29 -07006225 aux_offset = READ_ONCE(rb->user_page->aux_offset);
6226 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006227
6228 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
6229 goto aux_unlock;
6230
6231 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
6232 goto aux_unlock;
6233
6234 /* already mapped with a different offset */
6235 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
6236 goto aux_unlock;
6237
6238 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
6239 goto aux_unlock;
6240
6241 /* already mapped with a different size */
6242 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6243 goto aux_unlock;
6244
6245 if (!is_power_of_2(nr_pages))
6246 goto aux_unlock;
6247
6248 if (!atomic_inc_not_zero(&rb->mmap_count))
6249 goto aux_unlock;
6250
6251 if (rb_has_aux(rb)) {
6252 atomic_inc(&rb->aux_mmap_count);
6253 ret = 0;
6254 goto unlock;
6255 }
6256
6257 atomic_set(&rb->aux_mmap_count, 1);
6258 user_extra = nr_pages;
6259
6260 goto accounting;
6261 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006262
6263 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006264 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006265 * can do bitmasks instead of modulo.
6266 */
Kan Liang2ed11312015-03-02 02:14:26 -05006267 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006268 return -EINVAL;
6269
6270 if (vma_size != PAGE_SIZE * (1 + nr_pages))
6271 return -EINVAL;
6272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006273 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006274again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006275 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006276 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006277 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006278 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006279 goto unlock;
6280 }
6281
6282 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6283 /*
6284 * Raced against perf_mmap_close() through
6285 * perf_event_set_output(). Try again, hope for better
6286 * luck.
6287 */
6288 mutex_unlock(&event->mmap_mutex);
6289 goto again;
6290 }
6291
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006292 goto unlock;
6293 }
6294
6295 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006296
6297accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006298 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
6299
6300 /*
6301 * Increase the limit linearly with more CPUs:
6302 */
6303 user_lock_limit *= num_online_cpus();
6304
Song Liu00346152020-01-23 10:11:46 -08006305 user_locked = atomic_long_read(&user->locked_vm);
6306
6307 /*
6308 * sysctl_perf_event_mlock may have changed, so that
6309 * user->locked_vm > user_lock_limit
6310 */
6311 if (user_locked > user_lock_limit)
6312 user_locked = user_lock_limit;
6313 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006314
Alexander Shishkinc4b75472019-11-20 19:06:40 +02006315 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07006316 /*
6317 * charge locked_vm until it hits user_lock_limit;
6318 * charge the rest from pinned_vm
6319 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006320 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07006321 user_extra -= extra;
6322 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006323
Jiri Slaby78d7d402010-03-05 13:42:54 -08006324 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006325 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006326 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006327
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006328 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006329 !capable(CAP_IPC_LOCK)) {
6330 ret = -EPERM;
6331 goto unlock;
6332 }
6333
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006334 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02006335
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006336 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02006337 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006338
Frederic Weisbecker76369132011-05-19 19:55:04 +02006339 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006340 rb = rb_alloc(nr_pages,
6341 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6342 event->cpu, flags);
6343
6344 if (!rb) {
6345 ret = -ENOMEM;
6346 goto unlock;
6347 }
6348
6349 atomic_set(&rb->mmap_count, 1);
6350 rb->mmap_user = get_current_user();
6351 rb->mmap_locked = extra;
6352
6353 ring_buffer_attach(event, rb);
6354
Song Liuf7925652021-09-29 12:43:13 -07006355 perf_event_update_time(event);
6356 perf_set_shadow_time(event, event->ctx);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006357 perf_event_init_userpage(event);
6358 perf_event_update_userpage(event);
6359 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02006360 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6361 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006362 if (!ret)
6363 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006364 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006365
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006366unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006367 if (!ret) {
6368 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006369 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006370
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006371 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006372 } else if (rb) {
6373 atomic_dec(&rb->mmap_count);
6374 }
6375aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376 mutex_unlock(&event->mmap_mutex);
6377
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006378 /*
6379 * Since pinned accounting is per vm we cannot allow fork() to copy our
6380 * vma.
6381 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006382 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006383 vma->vm_ops = &perf_mmap_vmops;
6384
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006385 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006386 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006388 return ret;
6389}
6390
6391static int perf_fasync(int fd, struct file *filp, int on)
6392{
Al Viro496ad9a2013-01-23 17:07:38 -05006393 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006394 struct perf_event *event = filp->private_data;
6395 int retval;
6396
Al Viro59551022016-01-22 15:40:57 -05006397 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006398 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006399 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006400
6401 if (retval < 0)
6402 return retval;
6403
6404 return 0;
6405}
6406
6407static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006408 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006409 .release = perf_release,
6410 .read = perf_read,
6411 .poll = perf_poll,
6412 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006413 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414 .mmap = perf_mmap,
6415 .fasync = perf_fasync,
6416};
6417
6418/*
6419 * Perf event wakeup
6420 *
6421 * If there's data, ensure we set the poll() state and publish everything
6422 * to user-space before waking everybody up.
6423 */
6424
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006425static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6426{
6427 /* only the parent has fasync state */
6428 if (event->parent)
6429 event = event->parent;
6430 return &event->fasync;
6431}
6432
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006433void perf_event_wakeup(struct perf_event *event)
6434{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006435 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006436
6437 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006438 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006439 event->pending_kill = 0;
6440 }
6441}
6442
Marco Elver97ba62b2021-04-08 12:36:01 +02006443static void perf_sigtrap(struct perf_event *event)
6444{
Marco Elver97ba62b2021-04-08 12:36:01 +02006445 /*
6446 * We'd expect this to only occur if the irq_work is delayed and either
6447 * ctx->task or current has changed in the meantime. This can be the
6448 * case on architectures that do not implement arch_irq_work_raise().
6449 */
6450 if (WARN_ON_ONCE(event->ctx->task != current))
6451 return;
6452
6453 /*
6454 * perf_pending_event() can race with the task exiting.
6455 */
6456 if (current->flags & PF_EXITING)
6457 return;
6458
Eric W. Biedermanaf5eeab2021-05-02 14:27:24 -05006459 force_sig_perf((void __user *)event->pending_addr,
6460 event->attr.type, event->attr.sig_data);
Marco Elver97ba62b2021-04-08 12:36:01 +02006461}
6462
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006463static void perf_pending_event_disable(struct perf_event *event)
6464{
6465 int cpu = READ_ONCE(event->pending_disable);
6466
6467 if (cpu < 0)
6468 return;
6469
6470 if (cpu == smp_processor_id()) {
6471 WRITE_ONCE(event->pending_disable, -1);
Marco Elver97ba62b2021-04-08 12:36:01 +02006472
6473 if (event->attr.sigtrap) {
6474 perf_sigtrap(event);
6475 atomic_set_release(&event->event_limit, 1); /* rearm event */
6476 return;
6477 }
6478
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006479 perf_event_disable_local(event);
6480 return;
6481 }
6482
6483 /*
6484 * CPU-A CPU-B
6485 *
6486 * perf_event_disable_inatomic()
6487 * @pending_disable = CPU-A;
6488 * irq_work_queue();
6489 *
6490 * sched-out
6491 * @pending_disable = -1;
6492 *
6493 * sched-in
6494 * perf_event_disable_inatomic()
6495 * @pending_disable = CPU-B;
6496 * irq_work_queue(); // FAILS
6497 *
6498 * irq_work_run()
6499 * perf_pending_event()
6500 *
6501 * But the event runs on CPU-B and wants disabling there.
6502 */
6503 irq_work_queue_on(&event->pending, cpu);
6504}
6505
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006506static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006507{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006508 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006509 int rctx;
6510
6511 rctx = perf_swevent_get_recursion_context();
6512 /*
6513 * If we 'fail' here, that's OK, it means recursion is already disabled
6514 * and we won't recurse 'further'.
6515 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006516
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006517 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006518
6519 if (event->pending_wakeup) {
6520 event->pending_wakeup = 0;
6521 perf_event_wakeup(event);
6522 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006523
6524 if (rctx >= 0)
6525 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006526}
6527
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006528#ifdef CONFIG_GUEST_PERF_EVENTS
Sean Christophersonff083a22021-11-11 02:07:22 +00006529struct perf_guest_info_callbacks __rcu *perf_guest_cbs;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006530
Sean Christopherson87b940a2021-11-11 02:07:30 +00006531DEFINE_STATIC_CALL_RET0(__perf_guest_state, *perf_guest_cbs->state);
6532DEFINE_STATIC_CALL_RET0(__perf_guest_get_ip, *perf_guest_cbs->get_ip);
6533DEFINE_STATIC_CALL_RET0(__perf_guest_handle_intel_pt_intr, *perf_guest_cbs->handle_intel_pt_intr);
6534
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006535void perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006536{
Sean Christophersonff083a22021-11-11 02:07:22 +00006537 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs)))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006538 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006539
6540 rcu_assign_pointer(perf_guest_cbs, cbs);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006541 static_call_update(__perf_guest_state, cbs->state);
6542 static_call_update(__perf_guest_get_ip, cbs->get_ip);
6543
6544 /* Implementing ->handle_intel_pt_intr is optional. */
6545 if (cbs->handle_intel_pt_intr)
6546 static_call_update(__perf_guest_handle_intel_pt_intr,
6547 cbs->handle_intel_pt_intr);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006548}
6549EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6550
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006551void perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006552{
Sean Christophersonff083a22021-11-11 02:07:22 +00006553 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs) != cbs))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006554 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006555
6556 rcu_assign_pointer(perf_guest_cbs, NULL);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006557 static_call_update(__perf_guest_state, (void *)&__static_call_return0);
6558 static_call_update(__perf_guest_get_ip, (void *)&__static_call_return0);
6559 static_call_update(__perf_guest_handle_intel_pt_intr,
6560 (void *)&__static_call_return0);
Sean Christophersonff083a22021-11-11 02:07:22 +00006561 synchronize_rcu();
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006562}
6563EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006564#endif
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006565
Jiri Olsa40189942012-08-07 15:20:37 +02006566static void
6567perf_output_sample_regs(struct perf_output_handle *handle,
6568 struct pt_regs *regs, u64 mask)
6569{
6570 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306571 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006572
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306573 bitmap_from_u64(_mask, mask);
6574 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006575 u64 val;
6576
6577 val = perf_reg_value(regs, bit);
6578 perf_output_put(handle, val);
6579 }
6580}
6581
Stephane Eranian60e23642014-09-24 13:48:37 +02006582static void perf_sample_regs_user(struct perf_regs *regs_user,
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006583 struct pt_regs *regs)
Jiri Olsa40189942012-08-07 15:20:37 +02006584{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006585 if (user_mode(regs)) {
6586 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006587 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006588 } else if (!(current->flags & PF_KTHREAD)) {
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006589 perf_get_regs_user(regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02006590 } else {
6591 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6592 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006593 }
6594}
6595
Stephane Eranian60e23642014-09-24 13:48:37 +02006596static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6597 struct pt_regs *regs)
6598{
6599 regs_intr->regs = regs;
6600 regs_intr->abi = perf_reg_abi(current);
6601}
6602
6603
Jiri Olsac5ebced2012-08-07 15:20:40 +02006604/*
6605 * Get remaining task size from user stack pointer.
6606 *
6607 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006608 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006609 * so using TASK_SIZE as limit.
6610 */
6611static u64 perf_ustack_task_size(struct pt_regs *regs)
6612{
6613 unsigned long addr = perf_user_stack_pointer(regs);
6614
6615 if (!addr || addr >= TASK_SIZE)
6616 return 0;
6617
6618 return TASK_SIZE - addr;
6619}
6620
6621static u16
6622perf_sample_ustack_size(u16 stack_size, u16 header_size,
6623 struct pt_regs *regs)
6624{
6625 u64 task_size;
6626
6627 /* No regs, no stack pointer, no dump. */
6628 if (!regs)
6629 return 0;
6630
6631 /*
6632 * Check if we fit in with the requested stack size into the:
6633 * - TASK_SIZE
6634 * If we don't, we limit the size to the TASK_SIZE.
6635 *
6636 * - remaining sample size
6637 * If we don't, we customize the stack size to
6638 * fit in to the remaining sample size.
6639 */
6640
6641 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6642 stack_size = min(stack_size, (u16) task_size);
6643
6644 /* Current header size plus static size and dynamic size. */
6645 header_size += 2 * sizeof(u64);
6646
6647 /* Do we fit in with the current stack dump size? */
6648 if ((u16) (header_size + stack_size) < header_size) {
6649 /*
6650 * If we overflow the maximum size for the sample,
6651 * we customize the stack dump size to fit in.
6652 */
6653 stack_size = USHRT_MAX - header_size - sizeof(u64);
6654 stack_size = round_up(stack_size, sizeof(u64));
6655 }
6656
6657 return stack_size;
6658}
6659
6660static void
6661perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6662 struct pt_regs *regs)
6663{
6664 /* Case of a kernel thread, nothing to dump */
6665 if (!regs) {
6666 u64 size = 0;
6667 perf_output_put(handle, size);
6668 } else {
6669 unsigned long sp;
6670 unsigned int rem;
6671 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006672 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006673
6674 /*
6675 * We dump:
6676 * static size
6677 * - the size requested by user or the best one we can fit
6678 * in to the sample max size
6679 * data
6680 * - user stack dump data
6681 * dynamic size
6682 * - the actual dumped size
6683 */
6684
6685 /* Static size. */
6686 perf_output_put(handle, dump_size);
6687
6688 /* Data. */
6689 sp = perf_user_stack_pointer(regs);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006690 fs = force_uaccess_begin();
Jiri Olsac5ebced2012-08-07 15:20:40 +02006691 rem = __output_copy_user(handle, (void *) sp, dump_size);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006692 force_uaccess_end(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006693 dyn_size = dump_size - rem;
6694
6695 perf_output_skip(handle, rem);
6696
6697 /* Dynamic size. */
6698 perf_output_put(handle, dyn_size);
6699 }
6700}
6701
Alexander Shishkina4faf002019-10-25 17:08:33 +03006702static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6703 struct perf_sample_data *data,
6704 size_t size)
6705{
6706 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006707 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006708
6709 data->aux_size = 0;
6710
6711 if (!sampler)
6712 goto out;
6713
6714 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6715 goto out;
6716
6717 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6718 goto out;
6719
6720 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6721 if (!rb)
6722 goto out;
6723
6724 /*
6725 * If this is an NMI hit inside sampling code, don't take
6726 * the sample. See also perf_aux_sample_output().
6727 */
6728 if (READ_ONCE(rb->aux_in_sampling)) {
6729 data->aux_size = 0;
6730 } else {
6731 size = min_t(size_t, size, perf_aux_size(rb));
6732 data->aux_size = ALIGN(size, sizeof(u64));
6733 }
6734 ring_buffer_put(rb);
6735
6736out:
6737 return data->aux_size;
6738}
6739
Haocheng Xie32961ae2021-05-27 11:19:45 +08006740static long perf_pmu_snapshot_aux(struct perf_buffer *rb,
6741 struct perf_event *event,
6742 struct perf_output_handle *handle,
6743 unsigned long size)
Alexander Shishkina4faf002019-10-25 17:08:33 +03006744{
6745 unsigned long flags;
6746 long ret;
6747
6748 /*
6749 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6750 * paths. If we start calling them in NMI context, they may race with
6751 * the IRQ ones, that is, for example, re-starting an event that's just
6752 * been stopped, which is why we're using a separate callback that
6753 * doesn't change the event state.
6754 *
6755 * IRQs need to be disabled to prevent IPIs from racing with us.
6756 */
6757 local_irq_save(flags);
6758 /*
6759 * Guard against NMI hits inside the critical section;
6760 * see also perf_prepare_sample_aux().
6761 */
6762 WRITE_ONCE(rb->aux_in_sampling, 1);
6763 barrier();
6764
6765 ret = event->pmu->snapshot_aux(event, handle, size);
6766
6767 barrier();
6768 WRITE_ONCE(rb->aux_in_sampling, 0);
6769 local_irq_restore(flags);
6770
6771 return ret;
6772}
6773
6774static void perf_aux_sample_output(struct perf_event *event,
6775 struct perf_output_handle *handle,
6776 struct perf_sample_data *data)
6777{
6778 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006779 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006780 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006781 long size;
6782
6783 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6784 return;
6785
6786 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6787 if (!rb)
6788 return;
6789
6790 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6791
6792 /*
6793 * An error here means that perf_output_copy() failed (returned a
6794 * non-zero surplus that it didn't copy), which in its current
6795 * enlightened implementation is not possible. If that changes, we'd
6796 * like to know.
6797 */
6798 if (WARN_ON_ONCE(size < 0))
6799 goto out_put;
6800
6801 /*
6802 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6803 * perf_prepare_sample_aux(), so should not be more than that.
6804 */
6805 pad = data->aux_size - size;
6806 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6807 pad = 8;
6808
6809 if (pad) {
6810 u64 zero = 0;
6811 perf_output_copy(handle, &zero, pad);
6812 }
6813
6814out_put:
6815 ring_buffer_put(rb);
6816}
6817
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006818static void __perf_event_header__init_id(struct perf_event_header *header,
6819 struct perf_sample_data *data,
6820 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006821{
6822 u64 sample_type = event->attr.sample_type;
6823
6824 data->type = sample_type;
6825 header->size += event->id_header_size;
6826
6827 if (sample_type & PERF_SAMPLE_TID) {
6828 /* namespace issues */
6829 data->tid_entry.pid = perf_event_pid(event, current);
6830 data->tid_entry.tid = perf_event_tid(event, current);
6831 }
6832
6833 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006834 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006835
Adrian Hunterff3d5272013-08-27 11:23:07 +03006836 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006837 data->id = primary_event_id(event);
6838
6839 if (sample_type & PERF_SAMPLE_STREAM_ID)
6840 data->stream_id = event->id;
6841
6842 if (sample_type & PERF_SAMPLE_CPU) {
6843 data->cpu_entry.cpu = raw_smp_processor_id();
6844 data->cpu_entry.reserved = 0;
6845 }
6846}
6847
Frederic Weisbecker76369132011-05-19 19:55:04 +02006848void perf_event_header__init_id(struct perf_event_header *header,
6849 struct perf_sample_data *data,
6850 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006851{
6852 if (event->attr.sample_id_all)
6853 __perf_event_header__init_id(header, data, event);
6854}
6855
6856static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6857 struct perf_sample_data *data)
6858{
6859 u64 sample_type = data->type;
6860
6861 if (sample_type & PERF_SAMPLE_TID)
6862 perf_output_put(handle, data->tid_entry);
6863
6864 if (sample_type & PERF_SAMPLE_TIME)
6865 perf_output_put(handle, data->time);
6866
6867 if (sample_type & PERF_SAMPLE_ID)
6868 perf_output_put(handle, data->id);
6869
6870 if (sample_type & PERF_SAMPLE_STREAM_ID)
6871 perf_output_put(handle, data->stream_id);
6872
6873 if (sample_type & PERF_SAMPLE_CPU)
6874 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006875
6876 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6877 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006878}
6879
Frederic Weisbecker76369132011-05-19 19:55:04 +02006880void perf_event__output_id_sample(struct perf_event *event,
6881 struct perf_output_handle *handle,
6882 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006883{
6884 if (event->attr.sample_id_all)
6885 __perf_event__output_id_sample(handle, sample);
6886}
6887
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006888static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006889 struct perf_event *event,
6890 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006891{
6892 u64 read_format = event->attr.read_format;
6893 u64 values[4];
6894 int n = 0;
6895
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006896 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006898 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006899 atomic64_read(&event->child_total_time_enabled);
6900 }
6901 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006902 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903 atomic64_read(&event->child_total_time_running);
6904 }
6905 if (read_format & PERF_FORMAT_ID)
6906 values[n++] = primary_event_id(event);
6907
Frederic Weisbecker76369132011-05-19 19:55:04 +02006908 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006909}
6910
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006911static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006912 struct perf_event *event,
6913 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006914{
6915 struct perf_event *leader = event->group_leader, *sub;
6916 u64 read_format = event->attr.read_format;
6917 u64 values[5];
6918 int n = 0;
6919
6920 values[n++] = 1 + leader->nr_siblings;
6921
6922 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006923 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006924
6925 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006926 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006927
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006928 if ((leader != event) &&
6929 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006930 leader->pmu->read(leader);
6931
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006932 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006933 if (read_format & PERF_FORMAT_ID)
6934 values[n++] = primary_event_id(leader);
6935
Frederic Weisbecker76369132011-05-19 19:55:04 +02006936 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006937
Peter Zijlstraedb39592018-03-15 17:36:56 +01006938 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006939 n = 0;
6940
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006941 if ((sub != event) &&
6942 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006943 sub->pmu->read(sub);
6944
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006945 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006946 if (read_format & PERF_FORMAT_ID)
6947 values[n++] = primary_event_id(sub);
6948
Frederic Weisbecker76369132011-05-19 19:55:04 +02006949 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006950 }
6951}
6952
Stephane Eranianeed01522010-10-26 16:08:01 +02006953#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6954 PERF_FORMAT_TOTAL_TIME_RUNNING)
6955
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006956/*
6957 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6958 *
6959 * The problem is that its both hard and excessively expensive to iterate the
6960 * child list, not to mention that its impossible to IPI the children running
6961 * on another CPU, from interrupt/NMI context.
6962 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006963static void perf_output_read(struct perf_output_handle *handle,
6964 struct perf_event *event)
6965{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006966 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006967 u64 read_format = event->attr.read_format;
6968
6969 /*
6970 * compute total_time_enabled, total_time_running
6971 * based on snapshot values taken when the event
6972 * was last scheduled in.
6973 *
6974 * we cannot simply called update_context_time()
6975 * because of locking issue as we are called in
6976 * NMI context
6977 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006978 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006979 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006980
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006981 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006982 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006983 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006984 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006985}
6986
Kan Liangbbfd5e42020-01-27 08:53:54 -08006987static inline bool perf_sample_save_hw_index(struct perf_event *event)
6988{
6989 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
6990}
6991
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006992void perf_output_sample(struct perf_output_handle *handle,
6993 struct perf_event_header *header,
6994 struct perf_sample_data *data,
6995 struct perf_event *event)
6996{
6997 u64 sample_type = data->type;
6998
6999 perf_output_put(handle, *header);
7000
Adrian Hunterff3d5272013-08-27 11:23:07 +03007001 if (sample_type & PERF_SAMPLE_IDENTIFIER)
7002 perf_output_put(handle, data->id);
7003
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007004 if (sample_type & PERF_SAMPLE_IP)
7005 perf_output_put(handle, data->ip);
7006
7007 if (sample_type & PERF_SAMPLE_TID)
7008 perf_output_put(handle, data->tid_entry);
7009
7010 if (sample_type & PERF_SAMPLE_TIME)
7011 perf_output_put(handle, data->time);
7012
7013 if (sample_type & PERF_SAMPLE_ADDR)
7014 perf_output_put(handle, data->addr);
7015
7016 if (sample_type & PERF_SAMPLE_ID)
7017 perf_output_put(handle, data->id);
7018
7019 if (sample_type & PERF_SAMPLE_STREAM_ID)
7020 perf_output_put(handle, data->stream_id);
7021
7022 if (sample_type & PERF_SAMPLE_CPU)
7023 perf_output_put(handle, data->cpu_entry);
7024
7025 if (sample_type & PERF_SAMPLE_PERIOD)
7026 perf_output_put(handle, data->period);
7027
7028 if (sample_type & PERF_SAMPLE_READ)
7029 perf_output_read(handle, event);
7030
7031 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01007032 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007033
Jiri Olsa99e818c2018-01-07 17:03:50 +01007034 size += data->callchain->nr;
7035 size *= sizeof(u64);
7036 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007037 }
7038
7039 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007040 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07007041
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007042 if (raw) {
7043 struct perf_raw_frag *frag = &raw->frag;
7044
7045 perf_output_put(handle, raw->size);
7046 do {
7047 if (frag->copy) {
7048 __output_custom(handle, frag->copy,
7049 frag->data, frag->size);
7050 } else {
7051 __output_copy(handle, frag->data,
7052 frag->size);
7053 }
7054 if (perf_raw_frag_last(frag))
7055 break;
7056 frag = frag->next;
7057 } while (1);
7058 if (frag->pad)
7059 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007060 } else {
7061 struct {
7062 u32 size;
7063 u32 data;
7064 } raw = {
7065 .size = sizeof(u32),
7066 .data = 0,
7067 };
7068 perf_output_put(handle, raw);
7069 }
7070 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007071
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007072 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7073 if (data->br_stack) {
7074 size_t size;
7075
7076 size = data->br_stack->nr
7077 * sizeof(struct perf_branch_entry);
7078
7079 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08007080 if (perf_sample_save_hw_index(event))
7081 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007082 perf_output_copy(handle, data->br_stack->entries, size);
7083 } else {
7084 /*
7085 * we always store at least the value of nr
7086 */
7087 u64 nr = 0;
7088 perf_output_put(handle, nr);
7089 }
7090 }
Jiri Olsa40189942012-08-07 15:20:37 +02007091
7092 if (sample_type & PERF_SAMPLE_REGS_USER) {
7093 u64 abi = data->regs_user.abi;
7094
7095 /*
7096 * If there are no regs to dump, notice it through
7097 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7098 */
7099 perf_output_put(handle, abi);
7100
7101 if (abi) {
7102 u64 mask = event->attr.sample_regs_user;
7103 perf_output_sample_regs(handle,
7104 data->regs_user.regs,
7105 mask);
7106 }
7107 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007108
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007109 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02007110 perf_output_sample_ustack(handle,
7111 data->stack_user_size,
7112 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007113 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01007114
Kan Liang2a6c6b72021-01-28 14:40:07 -08007115 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
7116 perf_output_put(handle, data->weight.full);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01007117
7118 if (sample_type & PERF_SAMPLE_DATA_SRC)
7119 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007120
Andi Kleenfdfbbd02013-09-20 07:40:39 -07007121 if (sample_type & PERF_SAMPLE_TRANSACTION)
7122 perf_output_put(handle, data->txn);
7123
Stephane Eranian60e23642014-09-24 13:48:37 +02007124 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7125 u64 abi = data->regs_intr.abi;
7126 /*
7127 * If there are no regs to dump, notice it through
7128 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7129 */
7130 perf_output_put(handle, abi);
7131
7132 if (abi) {
7133 u64 mask = event->attr.sample_regs_intr;
7134
7135 perf_output_sample_regs(handle,
7136 data->regs_intr.regs,
7137 mask);
7138 }
7139 }
7140
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007141 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7142 perf_output_put(handle, data->phys_addr);
7143
Namhyung Kim6546b192020-03-25 21:45:29 +09007144 if (sample_type & PERF_SAMPLE_CGROUP)
7145 perf_output_put(handle, data->cgroup);
7146
Kan Liang8d97e712020-10-01 06:57:46 -07007147 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7148 perf_output_put(handle, data->data_page_size);
7149
Stephane Eranian995f0882020-10-01 06:57:49 -07007150 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7151 perf_output_put(handle, data->code_page_size);
7152
Alexander Shishkina4faf002019-10-25 17:08:33 +03007153 if (sample_type & PERF_SAMPLE_AUX) {
7154 perf_output_put(handle, data->aux_size);
7155
7156 if (data->aux_size)
7157 perf_aux_sample_output(event, handle, data);
7158 }
7159
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007160 if (!event->attr.watermark) {
7161 int wakeup_events = event->attr.wakeup_events;
7162
7163 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007164 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007165 int events = local_inc_return(&rb->events);
7166
7167 if (events >= wakeup_events) {
7168 local_sub(wakeup_events, &rb->events);
7169 local_inc(&rb->wakeup);
7170 }
7171 }
7172 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007173}
7174
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007175static u64 perf_virt_to_phys(u64 virt)
7176{
7177 u64 phys_addr = 0;
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007178
7179 if (!virt)
7180 return 0;
7181
7182 if (virt >= TASK_SIZE) {
7183 /* If it's vmalloc()d memory, leave phys_addr as 0 */
7184 if (virt_addr_valid((void *)(uintptr_t)virt) &&
7185 !(virt >= VMALLOC_START && virt < VMALLOC_END))
7186 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
7187 } else {
7188 /*
7189 * Walking the pages tables for user address.
7190 * Interrupts are disabled, so it prevents any tear down
7191 * of the page tables.
Souptick Joarderdadbb612020-06-07 21:40:55 -07007192 * Try IRQ-safe get_user_page_fast_only first.
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007193 * If failed, leave phys_addr as 0.
7194 */
Jiri Olsad3296fb2020-04-07 16:14:27 +02007195 if (current->mm != NULL) {
Greg Thelen47160232021-11-10 18:18:14 -08007196 struct page *p;
7197
Jiri Olsad3296fb2020-04-07 16:14:27 +02007198 pagefault_disable();
Greg Thelen47160232021-11-10 18:18:14 -08007199 if (get_user_page_fast_only(virt, 0, &p)) {
Jiri Olsad3296fb2020-04-07 16:14:27 +02007200 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
Greg Thelen47160232021-11-10 18:18:14 -08007201 put_page(p);
7202 }
Jiri Olsad3296fb2020-04-07 16:14:27 +02007203 pagefault_enable();
7204 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007205 }
7206
7207 return phys_addr;
7208}
7209
Kan Liang8d97e712020-10-01 06:57:46 -07007210/*
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007211 * Return the pagetable size of a given virtual address.
Kan Liang8d97e712020-10-01 06:57:46 -07007212 */
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007213static u64 perf_get_pgtable_size(struct mm_struct *mm, unsigned long addr)
Kan Liang8d97e712020-10-01 06:57:46 -07007214{
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007215 u64 size = 0;
Kan Liang8d97e712020-10-01 06:57:46 -07007216
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007217#ifdef CONFIG_HAVE_FAST_GUP
7218 pgd_t *pgdp, pgd;
7219 p4d_t *p4dp, p4d;
7220 pud_t *pudp, pud;
7221 pmd_t *pmdp, pmd;
7222 pte_t *ptep, pte;
7223
7224 pgdp = pgd_offset(mm, addr);
7225 pgd = READ_ONCE(*pgdp);
7226 if (pgd_none(pgd))
Kan Liang8d97e712020-10-01 06:57:46 -07007227 return 0;
7228
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007229 if (pgd_leaf(pgd))
7230 return pgd_leaf_size(pgd);
7231
7232 p4dp = p4d_offset_lockless(pgdp, pgd, addr);
7233 p4d = READ_ONCE(*p4dp);
7234 if (!p4d_present(p4d))
Kan Liang8d97e712020-10-01 06:57:46 -07007235 return 0;
7236
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007237 if (p4d_leaf(p4d))
7238 return p4d_leaf_size(p4d);
Kan Liang8d97e712020-10-01 06:57:46 -07007239
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007240 pudp = pud_offset_lockless(p4dp, p4d, addr);
7241 pud = READ_ONCE(*pudp);
7242 if (!pud_present(pud))
Kan Liang8d97e712020-10-01 06:57:46 -07007243 return 0;
7244
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007245 if (pud_leaf(pud))
7246 return pud_leaf_size(pud);
Kan Liang8d97e712020-10-01 06:57:46 -07007247
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007248 pmdp = pmd_offset_lockless(pudp, pud, addr);
7249 pmd = READ_ONCE(*pmdp);
7250 if (!pmd_present(pmd))
Kan Liang8d97e712020-10-01 06:57:46 -07007251 return 0;
7252
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007253 if (pmd_leaf(pmd))
7254 return pmd_leaf_size(pmd);
Kan Liang8d97e712020-10-01 06:57:46 -07007255
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007256 ptep = pte_offset_map(&pmd, addr);
7257 pte = ptep_get_lockless(ptep);
7258 if (pte_present(pte))
7259 size = pte_leaf_size(pte);
7260 pte_unmap(ptep);
7261#endif /* CONFIG_HAVE_FAST_GUP */
Kan Liang8d97e712020-10-01 06:57:46 -07007262
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007263 return size;
Kan Liang8d97e712020-10-01 06:57:46 -07007264}
7265
Kan Liang8d97e712020-10-01 06:57:46 -07007266static u64 perf_get_page_size(unsigned long addr)
7267{
7268 struct mm_struct *mm;
7269 unsigned long flags;
7270 u64 size;
7271
7272 if (!addr)
7273 return 0;
7274
7275 /*
7276 * Software page-table walkers must disable IRQs,
7277 * which prevents any tear down of the page tables.
7278 */
7279 local_irq_save(flags);
7280
7281 mm = current->mm;
7282 if (!mm) {
7283 /*
7284 * For kernel threads and the like, use init_mm so that
7285 * we can find kernel memory.
7286 */
7287 mm = &init_mm;
7288 }
7289
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007290 size = perf_get_pgtable_size(mm, addr);
Kan Liang8d97e712020-10-01 06:57:46 -07007291
7292 local_irq_restore(flags);
7293
7294 return size;
7295}
7296
Jiri Olsa99e818c2018-01-07 17:03:50 +01007297static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
7298
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007299struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007300perf_callchain(struct perf_event *event, struct pt_regs *regs)
7301{
7302 bool kernel = !event->attr.exclude_callchain_kernel;
7303 bool user = !event->attr.exclude_callchain_user;
7304 /* Disallow cross-task user callchains. */
7305 bool crosstask = event->ctx->task && event->ctx->task != current;
7306 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01007307 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007308
7309 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01007310 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007311
Jiri Olsa99e818c2018-01-07 17:03:50 +01007312 callchain = get_perf_callchain(regs, 0, kernel, user,
7313 max_stack, crosstask, true);
7314 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007315}
7316
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007317void perf_prepare_sample(struct perf_event_header *header,
7318 struct perf_sample_data *data,
7319 struct perf_event *event,
7320 struct pt_regs *regs)
7321{
7322 u64 sample_type = event->attr.sample_type;
7323
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007324 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007325 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007326
7327 header->misc = 0;
7328 header->misc |= perf_misc_flags(regs);
7329
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007330 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007331
Stephane Eranian995f0882020-10-01 06:57:49 -07007332 if (sample_type & (PERF_SAMPLE_IP | PERF_SAMPLE_CODE_PAGE_SIZE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007333 data->ip = perf_instruction_pointer(regs);
7334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007335 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
7336 int size = 1;
7337
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007338 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
7339 data->callchain = perf_callchain(event, regs);
7340
Jiri Olsa99e818c2018-01-07 17:03:50 +01007341 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007342
7343 header->size += size * sizeof(u64);
7344 }
7345
7346 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007347 struct perf_raw_record *raw = data->raw;
7348 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007349
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007350 if (raw) {
7351 struct perf_raw_frag *frag = &raw->frag;
7352 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007353
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007354 do {
7355 sum += frag->size;
7356 if (perf_raw_frag_last(frag))
7357 break;
7358 frag = frag->next;
7359 } while (1);
7360
7361 size = round_up(sum + sizeof(u32), sizeof(u64));
7362 raw->size = size - sizeof(u32);
7363 frag->pad = raw->size - sum;
7364 } else {
7365 size = sizeof(u64);
7366 }
7367
7368 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007369 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007370
7371 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7372 int size = sizeof(u64); /* nr */
7373 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08007374 if (perf_sample_save_hw_index(event))
7375 size += sizeof(u64);
7376
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007377 size += data->br_stack->nr
7378 * sizeof(struct perf_branch_entry);
7379 }
7380 header->size += size;
7381 }
Jiri Olsa40189942012-08-07 15:20:37 +02007382
Peter Zijlstra25657112014-09-24 13:48:42 +02007383 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01007384 perf_sample_regs_user(&data->regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02007385
Jiri Olsa40189942012-08-07 15:20:37 +02007386 if (sample_type & PERF_SAMPLE_REGS_USER) {
7387 /* regs dump ABI info */
7388 int size = sizeof(u64);
7389
Jiri Olsa40189942012-08-07 15:20:37 +02007390 if (data->regs_user.regs) {
7391 u64 mask = event->attr.sample_regs_user;
7392 size += hweight64(mask) * sizeof(u64);
7393 }
7394
7395 header->size += size;
7396 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007397
7398 if (sample_type & PERF_SAMPLE_STACK_USER) {
7399 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03007400 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02007401 * processed as the last one or have additional check added
7402 * in case new sample type is added, because we could eat
7403 * up the rest of the sample size.
7404 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02007405 u16 stack_size = event->attr.sample_stack_user;
7406 u16 size = sizeof(u64);
7407
Jiri Olsac5ebced2012-08-07 15:20:40 +02007408 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02007409 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007410
7411 /*
7412 * If there is something to dump, add space for the dump
7413 * itself and for the field that tells the dynamic size,
7414 * which is how many have been actually dumped.
7415 */
7416 if (stack_size)
7417 size += sizeof(u64) + stack_size;
7418
7419 data->stack_user_size = stack_size;
7420 header->size += size;
7421 }
Stephane Eranian60e23642014-09-24 13:48:37 +02007422
7423 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7424 /* regs dump ABI info */
7425 int size = sizeof(u64);
7426
7427 perf_sample_regs_intr(&data->regs_intr, regs);
7428
7429 if (data->regs_intr.regs) {
7430 u64 mask = event->attr.sample_regs_intr;
7431
7432 size += hweight64(mask) * sizeof(u64);
7433 }
7434
7435 header->size += size;
7436 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007437
7438 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7439 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03007440
Namhyung Kim6546b192020-03-25 21:45:29 +09007441#ifdef CONFIG_CGROUP_PERF
7442 if (sample_type & PERF_SAMPLE_CGROUP) {
7443 struct cgroup *cgrp;
7444
7445 /* protected by RCU */
7446 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7447 data->cgroup = cgroup_id(cgrp);
7448 }
7449#endif
7450
Kan Liang8d97e712020-10-01 06:57:46 -07007451 /*
7452 * PERF_DATA_PAGE_SIZE requires PERF_SAMPLE_ADDR. If the user doesn't
7453 * require PERF_SAMPLE_ADDR, kernel implicitly retrieve the data->addr,
7454 * but the value will not dump to the userspace.
7455 */
7456 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7457 data->data_page_size = perf_get_page_size(data->addr);
7458
Stephane Eranian995f0882020-10-01 06:57:49 -07007459 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7460 data->code_page_size = perf_get_page_size(data->ip);
7461
Alexander Shishkina4faf002019-10-25 17:08:33 +03007462 if (sample_type & PERF_SAMPLE_AUX) {
7463 u64 size;
7464
7465 header->size += sizeof(u64); /* size */
7466
7467 /*
7468 * Given the 16bit nature of header::size, an AUX sample can
7469 * easily overflow it, what with all the preceding sample bits.
7470 * Make sure this doesn't happen by using up to U16_MAX bytes
7471 * per sample in total (rounded down to 8 byte boundary).
7472 */
7473 size = min_t(size_t, U16_MAX - header->size,
7474 event->attr.aux_sample_size);
7475 size = rounddown(size, 8);
7476 size = perf_prepare_sample_aux(event, data, size);
7477
7478 WARN_ON_ONCE(size + header->size > U16_MAX);
7479 header->size += size;
7480 }
7481 /*
7482 * If you're adding more sample types here, you likely need to do
7483 * something about the overflowing header::size, like repurpose the
7484 * lowest 3 bits of size, which should be always zero at the moment.
7485 * This raises a more important question, do we really need 512k sized
7486 * samples and why, so good argumentation is in order for whatever you
7487 * do here next.
7488 */
7489 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007490}
7491
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007492static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00007493__perf_event_output(struct perf_event *event,
7494 struct perf_sample_data *data,
7495 struct pt_regs *regs,
7496 int (*output_begin)(struct perf_output_handle *,
Peter Zijlstra267fb272020-10-30 15:50:32 +01007497 struct perf_sample_data *,
Wang Nan9ecda412016-04-05 14:11:18 +00007498 struct perf_event *,
7499 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007500{
7501 struct perf_output_handle handle;
7502 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007503 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007504
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007505 /* protect the callchain buffers */
7506 rcu_read_lock();
7507
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007508 perf_prepare_sample(&header, data, event, regs);
7509
Peter Zijlstra267fb272020-10-30 15:50:32 +01007510 err = output_begin(&handle, data, event, header.size);
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007511 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007512 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007513
7514 perf_output_sample(&handle, &header, data, event);
7515
7516 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007517
7518exit:
7519 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007520 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007521}
7522
Wang Nan9ecda412016-04-05 14:11:18 +00007523void
7524perf_event_output_forward(struct perf_event *event,
7525 struct perf_sample_data *data,
7526 struct pt_regs *regs)
7527{
7528 __perf_event_output(event, data, regs, perf_output_begin_forward);
7529}
7530
7531void
7532perf_event_output_backward(struct perf_event *event,
7533 struct perf_sample_data *data,
7534 struct pt_regs *regs)
7535{
7536 __perf_event_output(event, data, regs, perf_output_begin_backward);
7537}
7538
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007539int
Wang Nan9ecda412016-04-05 14:11:18 +00007540perf_event_output(struct perf_event *event,
7541 struct perf_sample_data *data,
7542 struct pt_regs *regs)
7543{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007544 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007545}
7546
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007547/*
7548 * read event_id
7549 */
7550
7551struct perf_read_event {
7552 struct perf_event_header header;
7553
7554 u32 pid;
7555 u32 tid;
7556};
7557
7558static void
7559perf_event_read_event(struct perf_event *event,
7560 struct task_struct *task)
7561{
7562 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007563 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007564 struct perf_read_event read_event = {
7565 .header = {
7566 .type = PERF_RECORD_READ,
7567 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007568 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007569 },
7570 .pid = perf_event_pid(event, task),
7571 .tid = perf_event_tid(event, task),
7572 };
7573 int ret;
7574
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007575 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007576 ret = perf_output_begin(&handle, &sample, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007577 if (ret)
7578 return;
7579
7580 perf_output_put(&handle, read_event);
7581 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007582 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007583
7584 perf_output_end(&handle);
7585}
7586
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007587typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007588
7589static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007590perf_iterate_ctx(struct perf_event_context *ctx,
7591 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007592 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007593{
7594 struct perf_event *event;
7595
7596 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007597 if (!all) {
7598 if (event->state < PERF_EVENT_STATE_INACTIVE)
7599 continue;
7600 if (!event_filter_match(event))
7601 continue;
7602 }
7603
Jiri Olsa67516842013-07-09 18:56:31 +02007604 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007605 }
7606}
7607
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007608static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007609{
7610 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7611 struct perf_event *event;
7612
7613 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007614 /*
7615 * Skip events that are not fully formed yet; ensure that
7616 * if we observe event->ctx, both event and ctx will be
7617 * complete enough. See perf_install_in_context().
7618 */
7619 if (!smp_load_acquire(&event->ctx))
7620 continue;
7621
Kan Liangf2fb6be2016-03-23 11:24:37 -07007622 if (event->state < PERF_EVENT_STATE_INACTIVE)
7623 continue;
7624 if (!event_filter_match(event))
7625 continue;
7626 output(event, data);
7627 }
7628}
7629
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007630/*
7631 * Iterate all events that need to receive side-band events.
7632 *
7633 * For new callers; ensure that account_pmu_sb_event() includes
7634 * your event, otherwise it might not get delivered.
7635 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007636static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007637perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007638 struct perf_event_context *task_ctx)
7639{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007640 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007641 int ctxn;
7642
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007643 rcu_read_lock();
7644 preempt_disable();
7645
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007646 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007647 * If we have task_ctx != NULL we only notify the task context itself.
7648 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007649 * context.
7650 */
7651 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007652 perf_iterate_ctx(task_ctx, output, data, false);
7653 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007654 }
7655
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007656 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007657
7658 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007659 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7660 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007661 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007662 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007663done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007664 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007665 rcu_read_unlock();
7666}
7667
Alexander Shishkin375637b2016-04-27 18:44:46 +03007668/*
7669 * Clear all file-based filters at exec, they'll have to be
7670 * re-instated when/if these objects are mmapped again.
7671 */
7672static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7673{
7674 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7675 struct perf_addr_filter *filter;
7676 unsigned int restart = 0, count = 0;
7677 unsigned long flags;
7678
7679 if (!has_addr_filter(event))
7680 return;
7681
7682 raw_spin_lock_irqsave(&ifh->lock, flags);
7683 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007684 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007685 event->addr_filter_ranges[count].start = 0;
7686 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007687 restart++;
7688 }
7689
7690 count++;
7691 }
7692
7693 if (restart)
7694 event->addr_filters_gen++;
7695 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7696
7697 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007698 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007699}
7700
7701void perf_event_exec(void)
7702{
7703 struct perf_event_context *ctx;
7704 int ctxn;
7705
Alexander Shishkin375637b2016-04-27 18:44:46 +03007706 for_each_task_context_nr(ctxn) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03007707 perf_event_enable_on_exec(ctxn);
Marco Elver2e498d02021-04-08 12:35:59 +02007708 perf_event_remove_on_exec(ctxn);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007709
Marco Elver2e498d02021-04-08 12:35:59 +02007710 rcu_read_lock();
7711 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7712 if (ctx) {
7713 perf_iterate_ctx(ctx, perf_event_addr_filters_exec,
7714 NULL, true);
7715 }
7716 rcu_read_unlock();
Alexander Shishkin375637b2016-04-27 18:44:46 +03007717 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03007718}
7719
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007720struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007721 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007722 int err;
7723};
7724
7725static void __perf_event_output_stop(struct perf_event *event, void *data)
7726{
7727 struct perf_event *parent = event->parent;
7728 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007729 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007730 struct stop_event_data sd = {
7731 .event = event,
7732 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007733
7734 if (!has_aux(event))
7735 return;
7736
7737 if (!parent)
7738 parent = event;
7739
7740 /*
7741 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007742 * ring-buffer, but it will be the child that's actually using it.
7743 *
7744 * We are using event::rb to determine if the event should be stopped,
7745 * however this may race with ring_buffer_attach() (through set_output),
7746 * which will make us skip the event that actually needs to be stopped.
7747 * So ring_buffer_attach() has to stop an aux event before re-assigning
7748 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007749 */
7750 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007751 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007752}
7753
7754static int __perf_pmu_output_stop(void *info)
7755{
7756 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007757 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007758 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007759 struct remote_output ro = {
7760 .rb = event->rb,
7761 };
7762
7763 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007764 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007765 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007766 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007767 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007768 rcu_read_unlock();
7769
7770 return ro.err;
7771}
7772
7773static void perf_pmu_output_stop(struct perf_event *event)
7774{
7775 struct perf_event *iter;
7776 int err, cpu;
7777
7778restart:
7779 rcu_read_lock();
7780 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7781 /*
7782 * For per-CPU events, we need to make sure that neither they
7783 * nor their children are running; for cpu==-1 events it's
7784 * sufficient to stop the event itself if it's active, since
7785 * it can't have children.
7786 */
7787 cpu = iter->cpu;
7788 if (cpu == -1)
7789 cpu = READ_ONCE(iter->oncpu);
7790
7791 if (cpu == -1)
7792 continue;
7793
7794 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7795 if (err == -EAGAIN) {
7796 rcu_read_unlock();
7797 goto restart;
7798 }
7799 }
7800 rcu_read_unlock();
7801}
7802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007803/*
7804 * task tracking -- fork/exit
7805 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007806 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007807 */
7808
7809struct perf_task_event {
7810 struct task_struct *task;
7811 struct perf_event_context *task_ctx;
7812
7813 struct {
7814 struct perf_event_header header;
7815
7816 u32 pid;
7817 u32 ppid;
7818 u32 tid;
7819 u32 ptid;
7820 u64 time;
7821 } event_id;
7822};
7823
Jiri Olsa67516842013-07-09 18:56:31 +02007824static int perf_event_task_match(struct perf_event *event)
7825{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007826 return event->attr.comm || event->attr.mmap ||
7827 event->attr.mmap2 || event->attr.mmap_data ||
7828 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007829}
7830
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007831static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007832 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007833{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007834 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007835 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007836 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007837 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007838 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007839
Jiri Olsa67516842013-07-09 18:56:31 +02007840 if (!perf_event_task_match(event))
7841 return;
7842
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007843 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007844
Peter Zijlstra267fb272020-10-30 15:50:32 +01007845 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007846 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007847 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007848 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007849
7850 task_event->event_id.pid = perf_event_pid(event, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007851 task_event->event_id.tid = perf_event_tid(event, task);
Ian Rogersf3bed552020-04-17 11:28:42 -07007852
7853 if (task_event->event_id.header.type == PERF_RECORD_EXIT) {
7854 task_event->event_id.ppid = perf_event_pid(event,
7855 task->real_parent);
7856 task_event->event_id.ptid = perf_event_pid(event,
7857 task->real_parent);
7858 } else { /* PERF_RECORD_FORK */
7859 task_event->event_id.ppid = perf_event_pid(event, current);
7860 task_event->event_id.ptid = perf_event_tid(event, current);
7861 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007862
Peter Zijlstra34f43922015-02-20 14:05:38 +01007863 task_event->event_id.time = perf_event_clock(event);
7864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007865 perf_output_put(&handle, task_event->event_id);
7866
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007867 perf_event__output_id_sample(event, &handle, &sample);
7868
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007869 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007870out:
7871 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007872}
7873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007874static void perf_event_task(struct task_struct *task,
7875 struct perf_event_context *task_ctx,
7876 int new)
7877{
7878 struct perf_task_event task_event;
7879
7880 if (!atomic_read(&nr_comm_events) &&
7881 !atomic_read(&nr_mmap_events) &&
7882 !atomic_read(&nr_task_events))
7883 return;
7884
7885 task_event = (struct perf_task_event){
7886 .task = task,
7887 .task_ctx = task_ctx,
7888 .event_id = {
7889 .header = {
7890 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7891 .misc = 0,
7892 .size = sizeof(task_event.event_id),
7893 },
7894 /* .pid */
7895 /* .ppid */
7896 /* .tid */
7897 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007898 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007899 },
7900 };
7901
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007902 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007903 &task_event,
7904 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007905}
7906
7907void perf_event_fork(struct task_struct *task)
7908{
7909 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307910 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007911}
7912
7913/*
7914 * comm tracking
7915 */
7916
7917struct perf_comm_event {
7918 struct task_struct *task;
7919 char *comm;
7920 int comm_size;
7921
7922 struct {
7923 struct perf_event_header header;
7924
7925 u32 pid;
7926 u32 tid;
7927 } event_id;
7928};
7929
Jiri Olsa67516842013-07-09 18:56:31 +02007930static int perf_event_comm_match(struct perf_event *event)
7931{
7932 return event->attr.comm;
7933}
7934
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007935static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007936 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007937{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007938 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007939 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007940 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007941 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007942 int ret;
7943
Jiri Olsa67516842013-07-09 18:56:31 +02007944 if (!perf_event_comm_match(event))
7945 return;
7946
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007947 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007948 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007949 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007950
7951 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007952 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007953
7954 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7955 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
7956
7957 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02007958 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007959 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007960
7961 perf_event__output_id_sample(event, &handle, &sample);
7962
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007963 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007964out:
7965 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007966}
7967
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007968static void perf_event_comm_event(struct perf_comm_event *comm_event)
7969{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007970 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007971 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007972
7973 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01007974 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007975 size = ALIGN(strlen(comm)+1, sizeof(u64));
7976
7977 comm_event->comm = comm;
7978 comm_event->comm_size = size;
7979
7980 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007981
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007982 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007983 comm_event,
7984 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007985}
7986
Adrian Hunter82b89772014-05-28 11:45:04 +03007987void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007988{
7989 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007990
7991 if (!atomic_read(&nr_comm_events))
7992 return;
7993
7994 comm_event = (struct perf_comm_event){
7995 .task = task,
7996 /* .comm */
7997 /* .comm_size */
7998 .event_id = {
7999 .header = {
8000 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03008001 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008002 /* .size */
8003 },
8004 /* .pid */
8005 /* .tid */
8006 },
8007 };
8008
8009 perf_event_comm_event(&comm_event);
8010}
8011
8012/*
Hari Bathinie4222672017-03-08 02:11:36 +05308013 * namespaces tracking
8014 */
8015
8016struct perf_namespaces_event {
8017 struct task_struct *task;
8018
8019 struct {
8020 struct perf_event_header header;
8021
8022 u32 pid;
8023 u32 tid;
8024 u64 nr_namespaces;
8025 struct perf_ns_link_info link_info[NR_NAMESPACES];
8026 } event_id;
8027};
8028
8029static int perf_event_namespaces_match(struct perf_event *event)
8030{
8031 return event->attr.namespaces;
8032}
8033
8034static void perf_event_namespaces_output(struct perf_event *event,
8035 void *data)
8036{
8037 struct perf_namespaces_event *namespaces_event = data;
8038 struct perf_output_handle handle;
8039 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02008040 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05308041 int ret;
8042
8043 if (!perf_event_namespaces_match(event))
8044 return;
8045
8046 perf_event_header__init_id(&namespaces_event->event_id.header,
8047 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008048 ret = perf_output_begin(&handle, &sample, event,
Hari Bathinie4222672017-03-08 02:11:36 +05308049 namespaces_event->event_id.header.size);
8050 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02008051 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05308052
8053 namespaces_event->event_id.pid = perf_event_pid(event,
8054 namespaces_event->task);
8055 namespaces_event->event_id.tid = perf_event_tid(event,
8056 namespaces_event->task);
8057
8058 perf_output_put(&handle, namespaces_event->event_id);
8059
8060 perf_event__output_id_sample(event, &handle, &sample);
8061
8062 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02008063out:
8064 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05308065}
8066
8067static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
8068 struct task_struct *task,
8069 const struct proc_ns_operations *ns_ops)
8070{
8071 struct path ns_path;
8072 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11008073 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05308074
8075 error = ns_get_path(&ns_path, task, ns_ops);
8076 if (!error) {
8077 ns_inode = ns_path.dentry->d_inode;
8078 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
8079 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03008080 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05308081 }
8082}
8083
8084void perf_event_namespaces(struct task_struct *task)
8085{
8086 struct perf_namespaces_event namespaces_event;
8087 struct perf_ns_link_info *ns_link_info;
8088
8089 if (!atomic_read(&nr_namespaces_events))
8090 return;
8091
8092 namespaces_event = (struct perf_namespaces_event){
8093 .task = task,
8094 .event_id = {
8095 .header = {
8096 .type = PERF_RECORD_NAMESPACES,
8097 .misc = 0,
8098 .size = sizeof(namespaces_event.event_id),
8099 },
8100 /* .pid */
8101 /* .tid */
8102 .nr_namespaces = NR_NAMESPACES,
8103 /* .link_info[NR_NAMESPACES] */
8104 },
8105 };
8106
8107 ns_link_info = namespaces_event.event_id.link_info;
8108
8109 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
8110 task, &mntns_operations);
8111
8112#ifdef CONFIG_USER_NS
8113 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
8114 task, &userns_operations);
8115#endif
8116#ifdef CONFIG_NET_NS
8117 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
8118 task, &netns_operations);
8119#endif
8120#ifdef CONFIG_UTS_NS
8121 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
8122 task, &utsns_operations);
8123#endif
8124#ifdef CONFIG_IPC_NS
8125 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
8126 task, &ipcns_operations);
8127#endif
8128#ifdef CONFIG_PID_NS
8129 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
8130 task, &pidns_operations);
8131#endif
8132#ifdef CONFIG_CGROUPS
8133 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
8134 task, &cgroupns_operations);
8135#endif
8136
8137 perf_iterate_sb(perf_event_namespaces_output,
8138 &namespaces_event,
8139 NULL);
8140}
8141
8142/*
Namhyung Kim96aaab62020-03-25 21:45:28 +09008143 * cgroup tracking
8144 */
8145#ifdef CONFIG_CGROUP_PERF
8146
8147struct perf_cgroup_event {
8148 char *path;
8149 int path_size;
8150 struct {
8151 struct perf_event_header header;
8152 u64 id;
8153 char path[];
8154 } event_id;
8155};
8156
8157static int perf_event_cgroup_match(struct perf_event *event)
8158{
8159 return event->attr.cgroup;
8160}
8161
8162static void perf_event_cgroup_output(struct perf_event *event, void *data)
8163{
8164 struct perf_cgroup_event *cgroup_event = data;
8165 struct perf_output_handle handle;
8166 struct perf_sample_data sample;
8167 u16 header_size = cgroup_event->event_id.header.size;
8168 int ret;
8169
8170 if (!perf_event_cgroup_match(event))
8171 return;
8172
8173 perf_event_header__init_id(&cgroup_event->event_id.header,
8174 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008175 ret = perf_output_begin(&handle, &sample, event,
Namhyung Kim96aaab62020-03-25 21:45:28 +09008176 cgroup_event->event_id.header.size);
8177 if (ret)
8178 goto out;
8179
8180 perf_output_put(&handle, cgroup_event->event_id);
8181 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
8182
8183 perf_event__output_id_sample(event, &handle, &sample);
8184
8185 perf_output_end(&handle);
8186out:
8187 cgroup_event->event_id.header.size = header_size;
8188}
8189
8190static void perf_event_cgroup(struct cgroup *cgrp)
8191{
8192 struct perf_cgroup_event cgroup_event;
8193 char path_enomem[16] = "//enomem";
8194 char *pathname;
8195 size_t size;
8196
8197 if (!atomic_read(&nr_cgroup_events))
8198 return;
8199
8200 cgroup_event = (struct perf_cgroup_event){
8201 .event_id = {
8202 .header = {
8203 .type = PERF_RECORD_CGROUP,
8204 .misc = 0,
8205 .size = sizeof(cgroup_event.event_id),
8206 },
8207 .id = cgroup_id(cgrp),
8208 },
8209 };
8210
8211 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
8212 if (pathname == NULL) {
8213 cgroup_event.path = path_enomem;
8214 } else {
8215 /* just to be sure to have enough space for alignment */
8216 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
8217 cgroup_event.path = pathname;
8218 }
8219
8220 /*
8221 * Since our buffer works in 8 byte units we need to align our string
8222 * size to a multiple of 8. However, we must guarantee the tail end is
8223 * zero'd out to avoid leaking random bits to userspace.
8224 */
8225 size = strlen(cgroup_event.path) + 1;
8226 while (!IS_ALIGNED(size, sizeof(u64)))
8227 cgroup_event.path[size++] = '\0';
8228
8229 cgroup_event.event_id.header.size += size;
8230 cgroup_event.path_size = size;
8231
8232 perf_iterate_sb(perf_event_cgroup_output,
8233 &cgroup_event,
8234 NULL);
8235
8236 kfree(pathname);
8237}
8238
8239#endif
8240
8241/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008242 * mmap tracking
8243 */
8244
8245struct perf_mmap_event {
8246 struct vm_area_struct *vma;
8247
8248 const char *file_name;
8249 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008250 int maj, min;
8251 u64 ino;
8252 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008253 u32 prot, flags;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008254 u8 build_id[BUILD_ID_SIZE_MAX];
8255 u32 build_id_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008256
8257 struct {
8258 struct perf_event_header header;
8259
8260 u32 pid;
8261 u32 tid;
8262 u64 start;
8263 u64 len;
8264 u64 pgoff;
8265 } event_id;
8266};
8267
Jiri Olsa67516842013-07-09 18:56:31 +02008268static int perf_event_mmap_match(struct perf_event *event,
8269 void *data)
8270{
8271 struct perf_mmap_event *mmap_event = data;
8272 struct vm_area_struct *vma = mmap_event->vma;
8273 int executable = vma->vm_flags & VM_EXEC;
8274
8275 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02008276 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02008277}
8278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008279static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008280 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008281{
Jiri Olsa52d857a2013-05-06 18:27:18 +02008282 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008283 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008284 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008285 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008286 u32 type = mmap_event->event_id.header.type;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008287 bool use_build_id;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008288 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008289
Jiri Olsa67516842013-07-09 18:56:31 +02008290 if (!perf_event_mmap_match(event, data))
8291 return;
8292
Stephane Eranian13d7a242013-08-21 12:10:24 +02008293 if (event->attr.mmap2) {
8294 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
8295 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
8296 mmap_event->event_id.header.size += sizeof(mmap_event->min);
8297 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03008298 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008299 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
8300 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008301 }
8302
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008303 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008304 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008305 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008306 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008307 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008308
8309 mmap_event->event_id.pid = perf_event_pid(event, current);
8310 mmap_event->event_id.tid = perf_event_tid(event, current);
8311
Jiri Olsa88a16a12021-01-14 14:40:44 +01008312 use_build_id = event->attr.build_id && mmap_event->build_id_size;
8313
8314 if (event->attr.mmap2 && use_build_id)
8315 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_BUILD_ID;
8316
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008317 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008318
8319 if (event->attr.mmap2) {
Jiri Olsa88a16a12021-01-14 14:40:44 +01008320 if (use_build_id) {
8321 u8 size[4] = { (u8) mmap_event->build_id_size, 0, 0, 0 };
8322
8323 __output_copy(&handle, size, 4);
8324 __output_copy(&handle, mmap_event->build_id, BUILD_ID_SIZE_MAX);
8325 } else {
8326 perf_output_put(&handle, mmap_event->maj);
8327 perf_output_put(&handle, mmap_event->min);
8328 perf_output_put(&handle, mmap_event->ino);
8329 perf_output_put(&handle, mmap_event->ino_generation);
8330 }
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008331 perf_output_put(&handle, mmap_event->prot);
8332 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008333 }
8334
Frederic Weisbecker76369132011-05-19 19:55:04 +02008335 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008336 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008337
8338 perf_event__output_id_sample(event, &handle, &sample);
8339
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008340 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008341out:
8342 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008343 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008344}
8345
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008346static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
8347{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008348 struct vm_area_struct *vma = mmap_event->vma;
8349 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008350 int maj = 0, min = 0;
8351 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008352 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008353 unsigned int size;
8354 char tmp[16];
8355 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008356 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008357
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008358 if (vma->vm_flags & VM_READ)
8359 prot |= PROT_READ;
8360 if (vma->vm_flags & VM_WRITE)
8361 prot |= PROT_WRITE;
8362 if (vma->vm_flags & VM_EXEC)
8363 prot |= PROT_EXEC;
8364
8365 if (vma->vm_flags & VM_MAYSHARE)
8366 flags = MAP_SHARED;
8367 else
8368 flags = MAP_PRIVATE;
8369
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008370 if (vma->vm_flags & VM_LOCKED)
8371 flags |= MAP_LOCKED;
Anshuman Khandual03911132020-04-06 20:03:51 -07008372 if (is_vm_hugetlb_page(vma))
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008373 flags |= MAP_HUGETLB;
8374
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008375 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02008376 struct inode *inode;
8377 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008378
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008379 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008380 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008381 name = "//enomem";
8382 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008383 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008384 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008385 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008386 * need to add enough zero bytes after the string to handle
8387 * the 64bit alignment we do later.
8388 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02008389 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008390 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008391 name = "//toolong";
8392 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008393 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02008394 inode = file_inode(vma->vm_file);
8395 dev = inode->i_sb->s_dev;
8396 ino = inode->i_ino;
8397 gen = inode->i_generation;
8398 maj = MAJOR(dev);
8399 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008401 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008402 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02008403 if (vma->vm_ops && vma->vm_ops->name) {
8404 name = (char *) vma->vm_ops->name(vma);
8405 if (name)
8406 goto cpy_name;
8407 }
8408
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008409 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008410 if (name)
8411 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008412
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008413 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008414 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008415 name = "[heap]";
8416 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008417 }
8418 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008419 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008420 name = "[stack]";
8421 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008422 }
8423
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008424 name = "//anon";
8425 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008426 }
8427
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008428cpy_name:
8429 strlcpy(tmp, name, sizeof(tmp));
8430 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008431got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008432 /*
8433 * Since our buffer works in 8 byte units we need to align our string
8434 * size to a multiple of 8. However, we must guarantee the tail end is
8435 * zero'd out to avoid leaking random bits to userspace.
8436 */
8437 size = strlen(name)+1;
8438 while (!IS_ALIGNED(size, sizeof(u64)))
8439 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008440
8441 mmap_event->file_name = name;
8442 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008443 mmap_event->maj = maj;
8444 mmap_event->min = min;
8445 mmap_event->ino = ino;
8446 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008447 mmap_event->prot = prot;
8448 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008449
Stephane Eranian2fe85422013-01-24 16:10:39 +01008450 if (!(vma->vm_flags & VM_EXEC))
8451 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8452
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008453 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
8454
Jiri Olsa88a16a12021-01-14 14:40:44 +01008455 if (atomic_read(&nr_build_id_events))
8456 build_id_parse(vma, mmap_event->build_id, &mmap_event->build_id_size);
8457
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008458 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008459 mmap_event,
8460 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008461
8462 kfree(buf);
8463}
8464
Alexander Shishkin375637b2016-04-27 18:44:46 +03008465/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03008466 * Check whether inode and address range match filter criteria.
8467 */
8468static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8469 struct file *file, unsigned long offset,
8470 unsigned long size)
8471{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06008472 /* d_inode(NULL) won't be equal to any mapped user-space file */
8473 if (!filter->path.dentry)
8474 return false;
8475
Song Liu9511bce2018-04-17 23:29:07 -07008476 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008477 return false;
8478
8479 if (filter->offset > offset + size)
8480 return false;
8481
8482 if (filter->offset + filter->size < offset)
8483 return false;
8484
8485 return true;
8486}
8487
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008488static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8489 struct vm_area_struct *vma,
8490 struct perf_addr_filter_range *fr)
8491{
8492 unsigned long vma_size = vma->vm_end - vma->vm_start;
8493 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8494 struct file *file = vma->vm_file;
8495
8496 if (!perf_addr_filter_match(filter, file, off, vma_size))
8497 return false;
8498
8499 if (filter->offset < off) {
8500 fr->start = vma->vm_start;
8501 fr->size = min(vma_size, filter->size - (off - filter->offset));
8502 } else {
8503 fr->start = vma->vm_start + filter->offset - off;
8504 fr->size = min(vma->vm_end - fr->start, filter->size);
8505 }
8506
8507 return true;
8508}
8509
Alexander Shishkin375637b2016-04-27 18:44:46 +03008510static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8511{
8512 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8513 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008514 struct perf_addr_filter *filter;
8515 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008516 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008517
8518 if (!has_addr_filter(event))
8519 return;
8520
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008521 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008522 return;
8523
8524 raw_spin_lock_irqsave(&ifh->lock, flags);
8525 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008526 if (perf_addr_filter_vma_adjust(filter, vma,
8527 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008528 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008529
8530 count++;
8531 }
8532
8533 if (restart)
8534 event->addr_filters_gen++;
8535 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8536
8537 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03008538 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008539}
8540
8541/*
8542 * Adjust all task's events' filters to the new vma
8543 */
8544static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8545{
8546 struct perf_event_context *ctx;
8547 int ctxn;
8548
Mathieu Poirier12b40a22016-07-18 10:43:06 -06008549 /*
8550 * Data tracing isn't supported yet and as such there is no need
8551 * to keep track of anything that isn't related to executable code:
8552 */
8553 if (!(vma->vm_flags & VM_EXEC))
8554 return;
8555
Alexander Shishkin375637b2016-04-27 18:44:46 +03008556 rcu_read_lock();
8557 for_each_task_context_nr(ctxn) {
8558 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8559 if (!ctx)
8560 continue;
8561
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008562 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008563 }
8564 rcu_read_unlock();
8565}
8566
Eric B Munson3af9e852010-05-18 15:30:49 +01008567void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008568{
8569 struct perf_mmap_event mmap_event;
8570
8571 if (!atomic_read(&nr_mmap_events))
8572 return;
8573
8574 mmap_event = (struct perf_mmap_event){
8575 .vma = vma,
8576 /* .file_name */
8577 /* .file_size */
8578 .event_id = {
8579 .header = {
8580 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08008581 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008582 /* .size */
8583 },
8584 /* .pid */
8585 /* .tid */
8586 .start = vma->vm_start,
8587 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01008588 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008589 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02008590 /* .maj (attr_mmap2 only) */
8591 /* .min (attr_mmap2 only) */
8592 /* .ino (attr_mmap2 only) */
8593 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008594 /* .prot (attr_mmap2 only) */
8595 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008596 };
8597
Alexander Shishkin375637b2016-04-27 18:44:46 +03008598 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008599 perf_event_mmap_event(&mmap_event);
8600}
8601
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008602void perf_event_aux_event(struct perf_event *event, unsigned long head,
8603 unsigned long size, u64 flags)
8604{
8605 struct perf_output_handle handle;
8606 struct perf_sample_data sample;
8607 struct perf_aux_event {
8608 struct perf_event_header header;
8609 u64 offset;
8610 u64 size;
8611 u64 flags;
8612 } rec = {
8613 .header = {
8614 .type = PERF_RECORD_AUX,
8615 .misc = 0,
8616 .size = sizeof(rec),
8617 },
8618 .offset = head,
8619 .size = size,
8620 .flags = flags,
8621 };
8622 int ret;
8623
8624 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008625 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008626
8627 if (ret)
8628 return;
8629
8630 perf_output_put(&handle, rec);
8631 perf_event__output_id_sample(event, &handle, &sample);
8632
8633 perf_output_end(&handle);
8634}
8635
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008636/*
Kan Liangf38b0db2015-05-10 15:13:14 -04008637 * Lost/dropped samples logging
8638 */
8639void perf_log_lost_samples(struct perf_event *event, u64 lost)
8640{
8641 struct perf_output_handle handle;
8642 struct perf_sample_data sample;
8643 int ret;
8644
8645 struct {
8646 struct perf_event_header header;
8647 u64 lost;
8648 } lost_samples_event = {
8649 .header = {
8650 .type = PERF_RECORD_LOST_SAMPLES,
8651 .misc = 0,
8652 .size = sizeof(lost_samples_event),
8653 },
8654 .lost = lost,
8655 };
8656
8657 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8658
Peter Zijlstra267fb272020-10-30 15:50:32 +01008659 ret = perf_output_begin(&handle, &sample, event,
Kan Liangf38b0db2015-05-10 15:13:14 -04008660 lost_samples_event.header.size);
8661 if (ret)
8662 return;
8663
8664 perf_output_put(&handle, lost_samples_event);
8665 perf_event__output_id_sample(event, &handle, &sample);
8666 perf_output_end(&handle);
8667}
8668
8669/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008670 * context_switch tracking
8671 */
8672
8673struct perf_switch_event {
8674 struct task_struct *task;
8675 struct task_struct *next_prev;
8676
8677 struct {
8678 struct perf_event_header header;
8679 u32 next_prev_pid;
8680 u32 next_prev_tid;
8681 } event_id;
8682};
8683
8684static int perf_event_switch_match(struct perf_event *event)
8685{
8686 return event->attr.context_switch;
8687}
8688
8689static void perf_event_switch_output(struct perf_event *event, void *data)
8690{
8691 struct perf_switch_event *se = data;
8692 struct perf_output_handle handle;
8693 struct perf_sample_data sample;
8694 int ret;
8695
8696 if (!perf_event_switch_match(event))
8697 return;
8698
8699 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8700 if (event->ctx->task) {
8701 se->event_id.header.type = PERF_RECORD_SWITCH;
8702 se->event_id.header.size = sizeof(se->event_id.header);
8703 } else {
8704 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8705 se->event_id.header.size = sizeof(se->event_id);
8706 se->event_id.next_prev_pid =
8707 perf_event_pid(event, se->next_prev);
8708 se->event_id.next_prev_tid =
8709 perf_event_tid(event, se->next_prev);
8710 }
8711
8712 perf_event_header__init_id(&se->event_id.header, &sample, event);
8713
Peter Zijlstra267fb272020-10-30 15:50:32 +01008714 ret = perf_output_begin(&handle, &sample, event, se->event_id.header.size);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008715 if (ret)
8716 return;
8717
8718 if (event->ctx->task)
8719 perf_output_put(&handle, se->event_id.header);
8720 else
8721 perf_output_put(&handle, se->event_id);
8722
8723 perf_event__output_id_sample(event, &handle, &sample);
8724
8725 perf_output_end(&handle);
8726}
8727
8728static void perf_event_switch(struct task_struct *task,
8729 struct task_struct *next_prev, bool sched_in)
8730{
8731 struct perf_switch_event switch_event;
8732
8733 /* N.B. caller checks nr_switch_events != 0 */
8734
8735 switch_event = (struct perf_switch_event){
8736 .task = task,
8737 .next_prev = next_prev,
8738 .event_id = {
8739 .header = {
8740 /* .type */
8741 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8742 /* .size */
8743 },
8744 /* .next_prev_pid */
8745 /* .next_prev_tid */
8746 },
8747 };
8748
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008749 if (!sched_in && task->on_rq) {
Alexey Budankov101592b2018-04-09 10:25:32 +03008750 switch_event.event_id.header.misc |=
8751 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008752 }
Alexey Budankov101592b2018-04-09 10:25:32 +03008753
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008754 perf_iterate_sb(perf_event_switch_output, &switch_event, NULL);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008755}
8756
8757/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008758 * IRQ throttle logging
8759 */
8760
8761static void perf_log_throttle(struct perf_event *event, int enable)
8762{
8763 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008764 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008765 int ret;
8766
8767 struct {
8768 struct perf_event_header header;
8769 u64 time;
8770 u64 id;
8771 u64 stream_id;
8772 } throttle_event = {
8773 .header = {
8774 .type = PERF_RECORD_THROTTLE,
8775 .misc = 0,
8776 .size = sizeof(throttle_event),
8777 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008778 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008779 .id = primary_event_id(event),
8780 .stream_id = event->id,
8781 };
8782
8783 if (enable)
8784 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8785
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008786 perf_event_header__init_id(&throttle_event.header, &sample, event);
8787
Peter Zijlstra267fb272020-10-30 15:50:32 +01008788 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008789 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008790 if (ret)
8791 return;
8792
8793 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008794 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008795 perf_output_end(&handle);
8796}
8797
Song Liu76193a92019-01-17 08:15:13 -08008798/*
8799 * ksymbol register/unregister tracking
8800 */
8801
8802struct perf_ksymbol_event {
8803 const char *name;
8804 int name_len;
8805 struct {
8806 struct perf_event_header header;
8807 u64 addr;
8808 u32 len;
8809 u16 ksym_type;
8810 u16 flags;
8811 } event_id;
8812};
8813
8814static int perf_event_ksymbol_match(struct perf_event *event)
8815{
8816 return event->attr.ksymbol;
8817}
8818
8819static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8820{
8821 struct perf_ksymbol_event *ksymbol_event = data;
8822 struct perf_output_handle handle;
8823 struct perf_sample_data sample;
8824 int ret;
8825
8826 if (!perf_event_ksymbol_match(event))
8827 return;
8828
8829 perf_event_header__init_id(&ksymbol_event->event_id.header,
8830 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008831 ret = perf_output_begin(&handle, &sample, event,
Song Liu76193a92019-01-17 08:15:13 -08008832 ksymbol_event->event_id.header.size);
8833 if (ret)
8834 return;
8835
8836 perf_output_put(&handle, ksymbol_event->event_id);
8837 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8838 perf_event__output_id_sample(event, &handle, &sample);
8839
8840 perf_output_end(&handle);
8841}
8842
8843void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8844 const char *sym)
8845{
8846 struct perf_ksymbol_event ksymbol_event;
8847 char name[KSYM_NAME_LEN];
8848 u16 flags = 0;
8849 int name_len;
8850
8851 if (!atomic_read(&nr_ksymbol_events))
8852 return;
8853
8854 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8855 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8856 goto err;
8857
8858 strlcpy(name, sym, KSYM_NAME_LEN);
8859 name_len = strlen(name) + 1;
8860 while (!IS_ALIGNED(name_len, sizeof(u64)))
8861 name[name_len++] = '\0';
8862 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8863
8864 if (unregister)
8865 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8866
8867 ksymbol_event = (struct perf_ksymbol_event){
8868 .name = name,
8869 .name_len = name_len,
8870 .event_id = {
8871 .header = {
8872 .type = PERF_RECORD_KSYMBOL,
8873 .size = sizeof(ksymbol_event.event_id) +
8874 name_len,
8875 },
8876 .addr = addr,
8877 .len = len,
8878 .ksym_type = ksym_type,
8879 .flags = flags,
8880 },
8881 };
8882
8883 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8884 return;
8885err:
8886 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8887}
8888
Song Liu6ee52e22019-01-17 08:15:15 -08008889/*
8890 * bpf program load/unload tracking
8891 */
8892
8893struct perf_bpf_event {
8894 struct bpf_prog *prog;
8895 struct {
8896 struct perf_event_header header;
8897 u16 type;
8898 u16 flags;
8899 u32 id;
8900 u8 tag[BPF_TAG_SIZE];
8901 } event_id;
8902};
8903
8904static int perf_event_bpf_match(struct perf_event *event)
8905{
8906 return event->attr.bpf_event;
8907}
8908
8909static void perf_event_bpf_output(struct perf_event *event, void *data)
8910{
8911 struct perf_bpf_event *bpf_event = data;
8912 struct perf_output_handle handle;
8913 struct perf_sample_data sample;
8914 int ret;
8915
8916 if (!perf_event_bpf_match(event))
8917 return;
8918
8919 perf_event_header__init_id(&bpf_event->event_id.header,
8920 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008921 ret = perf_output_begin(&handle, data, event,
Song Liu6ee52e22019-01-17 08:15:15 -08008922 bpf_event->event_id.header.size);
8923 if (ret)
8924 return;
8925
8926 perf_output_put(&handle, bpf_event->event_id);
8927 perf_event__output_id_sample(event, &handle, &sample);
8928
8929 perf_output_end(&handle);
8930}
8931
8932static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8933 enum perf_bpf_event_type type)
8934{
8935 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
Song Liu6ee52e22019-01-17 08:15:15 -08008936 int i;
8937
8938 if (prog->aux->func_cnt == 0) {
Song Liu6ee52e22019-01-17 08:15:15 -08008939 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8940 (u64)(unsigned long)prog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01008941 prog->jited_len, unregister,
8942 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08008943 } else {
8944 for (i = 0; i < prog->aux->func_cnt; i++) {
8945 struct bpf_prog *subprog = prog->aux->func[i];
8946
Song Liu6ee52e22019-01-17 08:15:15 -08008947 perf_event_ksymbol(
8948 PERF_RECORD_KSYMBOL_TYPE_BPF,
8949 (u64)(unsigned long)subprog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01008950 subprog->jited_len, unregister,
8951 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08008952 }
8953 }
8954}
8955
8956void perf_event_bpf_event(struct bpf_prog *prog,
8957 enum perf_bpf_event_type type,
8958 u16 flags)
8959{
8960 struct perf_bpf_event bpf_event;
8961
8962 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8963 type >= PERF_BPF_EVENT_MAX)
8964 return;
8965
8966 switch (type) {
8967 case PERF_BPF_EVENT_PROG_LOAD:
8968 case PERF_BPF_EVENT_PROG_UNLOAD:
8969 if (atomic_read(&nr_ksymbol_events))
8970 perf_event_bpf_emit_ksymbols(prog, type);
8971 break;
8972 default:
8973 break;
8974 }
8975
8976 if (!atomic_read(&nr_bpf_events))
8977 return;
8978
8979 bpf_event = (struct perf_bpf_event){
8980 .prog = prog,
8981 .event_id = {
8982 .header = {
8983 .type = PERF_RECORD_BPF_EVENT,
8984 .size = sizeof(bpf_event.event_id),
8985 },
8986 .type = type,
8987 .flags = flags,
8988 .id = prog->aux->id,
8989 },
8990 };
8991
8992 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8993
8994 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8995 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8996}
8997
Adrian Huntere17d43b2020-05-12 15:19:08 +03008998struct perf_text_poke_event {
8999 const void *old_bytes;
9000 const void *new_bytes;
9001 size_t pad;
9002 u16 old_len;
9003 u16 new_len;
9004
9005 struct {
9006 struct perf_event_header header;
9007
9008 u64 addr;
9009 } event_id;
9010};
9011
9012static int perf_event_text_poke_match(struct perf_event *event)
9013{
9014 return event->attr.text_poke;
9015}
9016
9017static void perf_event_text_poke_output(struct perf_event *event, void *data)
9018{
9019 struct perf_text_poke_event *text_poke_event = data;
9020 struct perf_output_handle handle;
9021 struct perf_sample_data sample;
9022 u64 padding = 0;
9023 int ret;
9024
9025 if (!perf_event_text_poke_match(event))
9026 return;
9027
9028 perf_event_header__init_id(&text_poke_event->event_id.header, &sample, event);
9029
Peter Zijlstra267fb272020-10-30 15:50:32 +01009030 ret = perf_output_begin(&handle, &sample, event,
9031 text_poke_event->event_id.header.size);
Adrian Huntere17d43b2020-05-12 15:19:08 +03009032 if (ret)
9033 return;
9034
9035 perf_output_put(&handle, text_poke_event->event_id);
9036 perf_output_put(&handle, text_poke_event->old_len);
9037 perf_output_put(&handle, text_poke_event->new_len);
9038
9039 __output_copy(&handle, text_poke_event->old_bytes, text_poke_event->old_len);
9040 __output_copy(&handle, text_poke_event->new_bytes, text_poke_event->new_len);
9041
9042 if (text_poke_event->pad)
9043 __output_copy(&handle, &padding, text_poke_event->pad);
9044
9045 perf_event__output_id_sample(event, &handle, &sample);
9046
9047 perf_output_end(&handle);
9048}
9049
9050void perf_event_text_poke(const void *addr, const void *old_bytes,
9051 size_t old_len, const void *new_bytes, size_t new_len)
9052{
9053 struct perf_text_poke_event text_poke_event;
9054 size_t tot, pad;
9055
9056 if (!atomic_read(&nr_text_poke_events))
9057 return;
9058
9059 tot = sizeof(text_poke_event.old_len) + old_len;
9060 tot += sizeof(text_poke_event.new_len) + new_len;
9061 pad = ALIGN(tot, sizeof(u64)) - tot;
9062
9063 text_poke_event = (struct perf_text_poke_event){
9064 .old_bytes = old_bytes,
9065 .new_bytes = new_bytes,
9066 .pad = pad,
9067 .old_len = old_len,
9068 .new_len = new_len,
9069 .event_id = {
9070 .header = {
9071 .type = PERF_RECORD_TEXT_POKE,
9072 .misc = PERF_RECORD_MISC_KERNEL,
9073 .size = sizeof(text_poke_event.event_id) + tot + pad,
9074 },
9075 .addr = (unsigned long)addr,
9076 },
9077 };
9078
9079 perf_iterate_sb(perf_event_text_poke_output, &text_poke_event, NULL);
9080}
9081
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009082void perf_event_itrace_started(struct perf_event *event)
9083{
9084 event->attach_state |= PERF_ATTACH_ITRACE;
9085}
9086
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009087static void perf_log_itrace_start(struct perf_event *event)
9088{
9089 struct perf_output_handle handle;
9090 struct perf_sample_data sample;
9091 struct perf_aux_event {
9092 struct perf_event_header header;
9093 u32 pid;
9094 u32 tid;
9095 } rec;
9096 int ret;
9097
9098 if (event->parent)
9099 event = event->parent;
9100
9101 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009102 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009103 return;
9104
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009105 rec.header.type = PERF_RECORD_ITRACE_START;
9106 rec.header.misc = 0;
9107 rec.header.size = sizeof(rec);
9108 rec.pid = perf_event_pid(event, current);
9109 rec.tid = perf_event_tid(event, current);
9110
9111 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01009112 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009113
9114 if (ret)
9115 return;
9116
9117 perf_output_put(&handle, rec);
9118 perf_event__output_id_sample(event, &handle, &sample);
9119
9120 perf_output_end(&handle);
9121}
9122
Adrian Hunter8b8ff8c2021-09-07 19:39:01 +03009123void perf_report_aux_output_id(struct perf_event *event, u64 hw_id)
9124{
9125 struct perf_output_handle handle;
9126 struct perf_sample_data sample;
9127 struct perf_aux_event {
9128 struct perf_event_header header;
9129 u64 hw_id;
9130 } rec;
9131 int ret;
9132
9133 if (event->parent)
9134 event = event->parent;
9135
9136 rec.header.type = PERF_RECORD_AUX_OUTPUT_HW_ID;
9137 rec.header.misc = 0;
9138 rec.header.size = sizeof(rec);
9139 rec.hw_id = hw_id;
9140
9141 perf_event_header__init_id(&rec.header, &sample, event);
9142 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
9143
9144 if (ret)
9145 return;
9146
9147 perf_output_put(&handle, rec);
9148 perf_event__output_id_sample(event, &handle, &sample);
9149
9150 perf_output_end(&handle);
9151}
9152
Jiri Olsa475113d2016-12-28 14:31:03 +01009153static int
9154__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009155{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009156 struct hw_perf_event *hwc = &event->hw;
9157 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01009158 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01009159
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009160 seq = __this_cpu_read(perf_throttled_seq);
9161 if (seq != hwc->interrupts_seq) {
9162 hwc->interrupts_seq = seq;
9163 hwc->interrupts = 1;
9164 } else {
9165 hwc->interrupts++;
9166 if (unlikely(throttle
9167 && hwc->interrupts >= max_samples_per_tick)) {
9168 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009169 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01009170 hwc->interrupts = MAX_INTERRUPTS;
9171 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009172 ret = 1;
9173 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009174 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009175
9176 if (event->attr.freq) {
9177 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01009178 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009179
Peter Zijlstraabd50712010-01-26 18:50:16 +01009180 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009181
Peter Zijlstraabd50712010-01-26 18:50:16 +01009182 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01009183 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009184 }
9185
Jiri Olsa475113d2016-12-28 14:31:03 +01009186 return ret;
9187}
9188
9189int perf_event_account_interrupt(struct perf_event *event)
9190{
9191 return __perf_event_account_interrupt(event, 1);
9192}
9193
9194/*
9195 * Generic event overflow handling, sampling.
9196 */
9197
9198static int __perf_event_overflow(struct perf_event *event,
9199 int throttle, struct perf_sample_data *data,
9200 struct pt_regs *regs)
9201{
9202 int events = atomic_read(&event->event_limit);
9203 int ret = 0;
9204
9205 /*
9206 * Non-sampling counters might still use the PMI to fold short
9207 * hardware counters, ignore those.
9208 */
9209 if (unlikely(!is_sampling_event(event)))
9210 return 0;
9211
9212 ret = __perf_event_account_interrupt(event, throttle);
9213
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009214 /*
9215 * XXX event_limit might not quite work as expected on inherited
9216 * events
9217 */
9218
9219 event->pending_kill = POLL_IN;
9220 if (events && atomic_dec_and_test(&event->event_limit)) {
9221 ret = 1;
9222 event->pending_kill = POLL_HUP;
Marco Elver97ba62b2021-04-08 12:36:01 +02009223 event->pending_addr = data->addr;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02009224
9225 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009226 }
9227
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009228 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01009229
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02009230 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009231 event->pending_wakeup = 1;
9232 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02009233 }
9234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009235 return ret;
9236}
9237
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009238int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009239 struct perf_sample_data *data,
9240 struct pt_regs *regs)
9241{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009242 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009243}
9244
9245/*
9246 * Generic software event infrastructure
9247 */
9248
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009249struct swevent_htable {
9250 struct swevent_hlist *swevent_hlist;
9251 struct mutex hlist_mutex;
9252 int hlist_refcount;
9253
9254 /* Recursion avoidance in each contexts */
9255 int recursion[PERF_NR_CONTEXTS];
9256};
9257
9258static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
9259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009260/*
9261 * We directly increment event->count and keep a second value in
9262 * event->hw.period_left to count intervals. This period event
9263 * is kept in the range [-sample_period, 0] so that we can use the
9264 * sign as trigger.
9265 */
9266
Jiri Olsaab573842013-05-01 17:25:44 +02009267u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009268{
9269 struct hw_perf_event *hwc = &event->hw;
9270 u64 period = hwc->last_period;
9271 u64 nr, offset;
9272 s64 old, val;
9273
9274 hwc->last_period = hwc->sample_period;
9275
9276again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02009277 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009278 if (val < 0)
9279 return 0;
9280
9281 nr = div64_u64(period + val, period);
9282 offset = nr * period;
9283 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02009284 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009285 goto again;
9286
9287 return nr;
9288}
9289
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009290static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009291 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009292 struct pt_regs *regs)
9293{
9294 struct hw_perf_event *hwc = &event->hw;
9295 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009296
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009297 if (!overflow)
9298 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009299
9300 if (hwc->interrupts == MAX_INTERRUPTS)
9301 return;
9302
9303 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009304 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009305 data, regs)) {
9306 /*
9307 * We inhibit the overflow from happening when
9308 * hwc->interrupts == MAX_INTERRUPTS.
9309 */
9310 break;
9311 }
9312 throttle = 1;
9313 }
9314}
9315
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009316static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009317 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009318 struct pt_regs *regs)
9319{
9320 struct hw_perf_event *hwc = &event->hw;
9321
Peter Zijlstrae7850592010-05-21 14:43:08 +02009322 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009323
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009324 if (!regs)
9325 return;
9326
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009327 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009328 return;
9329
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03009330 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
9331 data->period = nr;
9332 return perf_swevent_overflow(event, 1, data, regs);
9333 } else
9334 data->period = event->hw.last_period;
9335
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009336 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009337 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009338
Peter Zijlstrae7850592010-05-21 14:43:08 +02009339 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009340 return;
9341
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009342 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009343}
9344
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009345static int perf_exclude_event(struct perf_event *event,
9346 struct pt_regs *regs)
9347{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009348 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01009349 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009350
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009351 if (regs) {
9352 if (event->attr.exclude_user && user_mode(regs))
9353 return 1;
9354
9355 if (event->attr.exclude_kernel && !user_mode(regs))
9356 return 1;
9357 }
9358
9359 return 0;
9360}
9361
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009362static int perf_swevent_match(struct perf_event *event,
9363 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08009364 u32 event_id,
9365 struct perf_sample_data *data,
9366 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009367{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009368 if (event->attr.type != type)
9369 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009370
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009371 if (event->attr.config != event_id)
9372 return 0;
9373
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009374 if (perf_exclude_event(event, regs))
9375 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009376
9377 return 1;
9378}
9379
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009380static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009381{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009382 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009383
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009384 return hash_64(val, SWEVENT_HLIST_BITS);
9385}
9386
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009387static inline struct hlist_head *
9388__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009389{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009390 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009391
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009392 return &hlist->heads[hash];
9393}
9394
9395/* For the read side: events when they trigger */
9396static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009397find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009398{
9399 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009400
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009401 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009402 if (!hlist)
9403 return NULL;
9404
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009405 return __find_swevent_head(hlist, type, event_id);
9406}
9407
9408/* For the event head insertion and removal in the hlist */
9409static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009410find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009411{
9412 struct swevent_hlist *hlist;
9413 u32 event_id = event->attr.config;
9414 u64 type = event->attr.type;
9415
9416 /*
9417 * Event scheduling is always serialized against hlist allocation
9418 * and release. Which makes the protected version suitable here.
9419 * The context lock guarantees that.
9420 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009421 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009422 lockdep_is_held(&event->ctx->lock));
9423 if (!hlist)
9424 return NULL;
9425
9426 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009427}
9428
9429static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009430 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009431 struct perf_sample_data *data,
9432 struct pt_regs *regs)
9433{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009434 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009435 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009436 struct hlist_head *head;
9437
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009438 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009439 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009440 if (!head)
9441 goto end;
9442
Sasha Levinb67bfe02013-02-27 17:06:00 -08009443 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08009444 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009445 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009446 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009447end:
9448 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009449}
9450
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009451DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
9452
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009453int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009454{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009455 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009456
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009457 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009458}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01009459EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009460
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009461void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009462{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009463 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009464
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009465 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009466}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009467
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009468void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009469{
Ingo Molnara4234bf2009-11-23 10:57:59 +01009470 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009471
9472 if (WARN_ON_ONCE(!regs))
9473 return;
9474
9475 perf_sample_data_init(&data, addr, 0);
9476 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
9477}
9478
9479void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
9480{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009481 int rctx;
9482
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009483 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009484 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009485 if (unlikely(rctx < 0))
9486 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009487
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009488 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009489
9490 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009491fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009492 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009493}
9494
9495static void perf_swevent_read(struct perf_event *event)
9496{
9497}
9498
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009499static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009500{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009501 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009502 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009503 struct hlist_head *head;
9504
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009505 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009506 hwc->last_period = hwc->sample_period;
9507 perf_swevent_set_period(event);
9508 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009509
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009510 hwc->state = !(flags & PERF_EF_START);
9511
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009512 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01009513 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009514 return -EINVAL;
9515
9516 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08009517 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009518
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009519 return 0;
9520}
9521
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009522static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009523{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009524 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009525}
9526
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009527static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009528{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009529 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009530}
9531
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009532static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009533{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009534 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009535}
9536
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009537/* Deref the hlist from the update side */
9538static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009539swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009540{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009541 return rcu_dereference_protected(swhash->swevent_hlist,
9542 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009543}
9544
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009545static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009546{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009547 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009548
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009549 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009550 return;
9551
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03009552 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08009553 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009554}
9555
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009556static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009557{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009558 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009559
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009560 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009561
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009562 if (!--swhash->hlist_refcount)
9563 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009564
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009565 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009566}
9567
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009568static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009569{
9570 int cpu;
9571
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009572 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009573 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009574}
9575
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009576static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009577{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009578 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009579 int err = 0;
9580
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009581 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009582 if (!swevent_hlist_deref(swhash) &&
9583 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009584 struct swevent_hlist *hlist;
9585
9586 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9587 if (!hlist) {
9588 err = -ENOMEM;
9589 goto exit;
9590 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009591 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009592 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009593 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009594exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009595 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009596
9597 return err;
9598}
9599
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009600static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009601{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009602 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009603
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009604 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009605 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009606 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009607 if (err) {
9608 failed_cpu = cpu;
9609 goto fail;
9610 }
9611 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009612 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009613 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009614fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009615 for_each_possible_cpu(cpu) {
9616 if (cpu == failed_cpu)
9617 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009618 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009619 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009620 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009621 return err;
9622}
9623
Ingo Molnarc5905af2012-02-24 08:31:31 +01009624struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009625
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009626static void sw_perf_event_destroy(struct perf_event *event)
9627{
9628 u64 event_id = event->attr.config;
9629
9630 WARN_ON(event->parent);
9631
Ingo Molnarc5905af2012-02-24 08:31:31 +01009632 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009633 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009634}
9635
9636static int perf_swevent_init(struct perf_event *event)
9637{
Tommi Rantala8176cce2013-04-13 22:49:14 +03009638 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009639
9640 if (event->attr.type != PERF_TYPE_SOFTWARE)
9641 return -ENOENT;
9642
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009643 /*
9644 * no branch sampling for software events
9645 */
9646 if (has_branch_stack(event))
9647 return -EOPNOTSUPP;
9648
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009649 switch (event_id) {
9650 case PERF_COUNT_SW_CPU_CLOCK:
9651 case PERF_COUNT_SW_TASK_CLOCK:
9652 return -ENOENT;
9653
9654 default:
9655 break;
9656 }
9657
Dan Carpenterce677832010-10-24 21:50:42 +02009658 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009659 return -ENOENT;
9660
9661 if (!event->parent) {
9662 int err;
9663
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009664 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009665 if (err)
9666 return err;
9667
Ingo Molnarc5905af2012-02-24 08:31:31 +01009668 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009669 event->destroy = sw_perf_event_destroy;
9670 }
9671
9672 return 0;
9673}
9674
9675static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009676 .task_ctx_nr = perf_sw_context,
9677
Peter Zijlstra34f43922015-02-20 14:05:38 +01009678 .capabilities = PERF_PMU_CAP_NO_NMI,
9679
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009680 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009681 .add = perf_swevent_add,
9682 .del = perf_swevent_del,
9683 .start = perf_swevent_start,
9684 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009685 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009686};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009687
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009688#ifdef CONFIG_EVENT_TRACING
9689
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009690static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009691 struct perf_sample_data *data)
9692{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009693 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009694
Peter Zijlstrab71b4372015-11-02 10:50:51 +01009695 /* only top level events have filters set */
9696 if (event->parent)
9697 event = event->parent;
9698
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009699 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9700 return 1;
9701 return 0;
9702}
9703
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009704static int perf_tp_event_match(struct perf_event *event,
9705 struct perf_sample_data *data,
9706 struct pt_regs *regs)
9707{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01009708 if (event->hw.state & PERF_HES_STOPPED)
9709 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02009710 /*
Song Liu9fd2e482019-05-07 09:15:45 -07009711 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02009712 */
Song Liu9fd2e482019-05-07 09:15:45 -07009713 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009714 return 0;
9715
9716 if (!perf_tp_filter_match(event, data))
9717 return 0;
9718
9719 return 1;
9720}
9721
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009722void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9723 struct trace_event_call *call, u64 count,
9724 struct pt_regs *regs, struct hlist_head *head,
9725 struct task_struct *task)
9726{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009727 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009728 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009729 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009730 perf_swevent_put_recursion_context(rctx);
9731 return;
9732 }
9733 }
9734 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009735 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009736}
9737EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9738
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009739void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009740 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009741 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009742{
9743 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009744 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009745
9746 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009747 .frag = {
9748 .size = entry_size,
9749 .data = record,
9750 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009751 };
9752
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009753 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009754 data.raw = &raw;
9755
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009756 perf_trace_buf_update(record, event_type);
9757
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009758 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009759 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009760 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009761 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009762
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009763 /*
9764 * If we got specified a target task, also iterate its context and
9765 * deliver this event there too.
9766 */
9767 if (task && task != current) {
9768 struct perf_event_context *ctx;
9769 struct trace_entry *entry = record;
9770
9771 rcu_read_lock();
9772 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9773 if (!ctx)
9774 goto unlock;
9775
9776 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009777 if (event->cpu != smp_processor_id())
9778 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009779 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9780 continue;
9781 if (event->attr.config != entry->type)
9782 continue;
Marco Elver73743c32021-11-09 13:22:32 +01009783 /* Cannot deliver synchronous signal to other task. */
9784 if (event->attr.sigtrap)
9785 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009786 if (perf_tp_event_match(event, &data, regs))
9787 perf_swevent_event(event, count, &data, regs);
9788 }
9789unlock:
9790 rcu_read_unlock();
9791 }
9792
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009793 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009794}
9795EXPORT_SYMBOL_GPL(perf_tp_event);
9796
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009797static void tp_perf_event_destroy(struct perf_event *event)
9798{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009799 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009800}
9801
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009802static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009803{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009804 int err;
9805
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009806 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9807 return -ENOENT;
9808
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009809 /*
9810 * no branch sampling for tracepoint events
9811 */
9812 if (has_branch_stack(event))
9813 return -EOPNOTSUPP;
9814
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009815 err = perf_trace_init(event);
9816 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009817 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009818
9819 event->destroy = tp_perf_event_destroy;
9820
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009821 return 0;
9822}
9823
9824static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009825 .task_ctx_nr = perf_sw_context,
9826
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009827 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009828 .add = perf_trace_add,
9829 .del = perf_trace_del,
9830 .start = perf_swevent_start,
9831 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009832 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009833};
9834
Song Liu33ea4b22017-12-06 14:45:16 -08009835#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009836/*
9837 * Flags in config, used by dynamic PMU kprobe and uprobe
9838 * The flags should match following PMU_FORMAT_ATTR().
9839 *
9840 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9841 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009842 *
9843 * The following values specify a reference counter (or semaphore in the
9844 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9845 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9846 *
9847 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9848 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009849 */
9850enum perf_probe_config {
9851 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009852 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9853 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009854};
9855
9856PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009857#endif
Song Liue12f03d2017-12-06 14:45:15 -08009858
Song Liua6ca88b2018-10-01 22:36:36 -07009859#ifdef CONFIG_KPROBE_EVENTS
9860static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009861 &format_attr_retprobe.attr,
9862 NULL,
9863};
9864
Song Liua6ca88b2018-10-01 22:36:36 -07009865static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009866 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009867 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009868};
9869
Song Liua6ca88b2018-10-01 22:36:36 -07009870static const struct attribute_group *kprobe_attr_groups[] = {
9871 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009872 NULL,
9873};
9874
9875static int perf_kprobe_event_init(struct perf_event *event);
9876static struct pmu perf_kprobe = {
9877 .task_ctx_nr = perf_sw_context,
9878 .event_init = perf_kprobe_event_init,
9879 .add = perf_trace_add,
9880 .del = perf_trace_del,
9881 .start = perf_swevent_start,
9882 .stop = perf_swevent_stop,
9883 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009884 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009885};
9886
9887static int perf_kprobe_event_init(struct perf_event *event)
9888{
9889 int err;
9890 bool is_retprobe;
9891
9892 if (event->attr.type != perf_kprobe.type)
9893 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009894
Alexey Budankovc9e09242020-04-02 11:47:01 +03009895 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009896 return -EACCES;
9897
Song Liue12f03d2017-12-06 14:45:15 -08009898 /*
9899 * no branch sampling for probe events
9900 */
9901 if (has_branch_stack(event))
9902 return -EOPNOTSUPP;
9903
9904 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9905 err = perf_kprobe_init(event, is_retprobe);
9906 if (err)
9907 return err;
9908
9909 event->destroy = perf_kprobe_destroy;
9910
9911 return 0;
9912}
9913#endif /* CONFIG_KPROBE_EVENTS */
9914
Song Liu33ea4b22017-12-06 14:45:16 -08009915#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009916PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9917
9918static struct attribute *uprobe_attrs[] = {
9919 &format_attr_retprobe.attr,
9920 &format_attr_ref_ctr_offset.attr,
9921 NULL,
9922};
9923
9924static struct attribute_group uprobe_format_group = {
9925 .name = "format",
9926 .attrs = uprobe_attrs,
9927};
9928
9929static const struct attribute_group *uprobe_attr_groups[] = {
9930 &uprobe_format_group,
9931 NULL,
9932};
9933
Song Liu33ea4b22017-12-06 14:45:16 -08009934static int perf_uprobe_event_init(struct perf_event *event);
9935static struct pmu perf_uprobe = {
9936 .task_ctx_nr = perf_sw_context,
9937 .event_init = perf_uprobe_event_init,
9938 .add = perf_trace_add,
9939 .del = perf_trace_del,
9940 .start = perf_swevent_start,
9941 .stop = perf_swevent_stop,
9942 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009943 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08009944};
9945
9946static int perf_uprobe_event_init(struct perf_event *event)
9947{
9948 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07009949 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08009950 bool is_retprobe;
9951
9952 if (event->attr.type != perf_uprobe.type)
9953 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009954
Alexey Budankovc9e09242020-04-02 11:47:01 +03009955 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009956 return -EACCES;
9957
Song Liu33ea4b22017-12-06 14:45:16 -08009958 /*
9959 * no branch sampling for probe events
9960 */
9961 if (has_branch_stack(event))
9962 return -EOPNOTSUPP;
9963
9964 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07009965 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9966 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08009967 if (err)
9968 return err;
9969
9970 event->destroy = perf_uprobe_destroy;
9971
9972 return 0;
9973}
9974#endif /* CONFIG_UPROBE_EVENTS */
9975
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009976static inline void perf_tp_register(void)
9977{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009978 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08009979#ifdef CONFIG_KPROBE_EVENTS
9980 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9981#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009982#ifdef CONFIG_UPROBE_EVENTS
9983 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9984#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009985}
Li Zefan6fb29152009-10-15 11:21:42 +08009986
Li Zefan6fb29152009-10-15 11:21:42 +08009987static void perf_event_free_filter(struct perf_event *event)
9988{
9989 ftrace_profile_free_filter(event);
9990}
9991
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009992#ifdef CONFIG_BPF_SYSCALL
9993static void bpf_overflow_handler(struct perf_event *event,
9994 struct perf_sample_data *data,
9995 struct pt_regs *regs)
9996{
9997 struct bpf_perf_event_data_kern ctx = {
9998 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07009999 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010000 };
Yonghong Song594286b2021-08-19 08:52:09 -070010001 struct bpf_prog *prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010002 int ret = 0;
10003
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +010010004 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010005 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
10006 goto out;
10007 rcu_read_lock();
Yonghong Song594286b2021-08-19 08:52:09 -070010008 prog = READ_ONCE(event->prog);
10009 if (prog)
10010 ret = bpf_prog_run(prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010011 rcu_read_unlock();
10012out:
10013 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010014 if (!ret)
10015 return;
10016
10017 event->orig_overflow_handler(event, data, regs);
10018}
10019
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010020static int perf_event_set_bpf_handler(struct perf_event *event,
10021 struct bpf_prog *prog,
10022 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010023{
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010024 if (event->overflow_handler_context)
10025 /* hw breakpoint or kernel counter */
10026 return -EINVAL;
10027
10028 if (event->prog)
10029 return -EEXIST;
10030
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010031 if (prog->type != BPF_PROG_TYPE_PERF_EVENT)
10032 return -EINVAL;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010033
Song Liu5d99cb2c2020-07-23 11:06:45 -070010034 if (event->attr.precise_ip &&
10035 prog->call_get_stack &&
10036 (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY) ||
10037 event->attr.exclude_callchain_kernel ||
10038 event->attr.exclude_callchain_user)) {
10039 /*
10040 * On perf_event with precise_ip, calling bpf_get_stack()
10041 * may trigger unwinder warnings and occasional crashes.
10042 * bpf_get_[stack|stackid] works around this issue by using
10043 * callchain attached to perf_sample_data. If the
10044 * perf_event does not full (kernel and user) callchain
10045 * attached to perf_sample_data, do not allow attaching BPF
10046 * program that calls bpf_get_[stack|stackid].
10047 */
Song Liu5d99cb2c2020-07-23 11:06:45 -070010048 return -EPROTO;
10049 }
10050
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010051 event->prog = prog;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010052 event->bpf_cookie = bpf_cookie;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010053 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
10054 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
10055 return 0;
10056}
10057
10058static void perf_event_free_bpf_handler(struct perf_event *event)
10059{
10060 struct bpf_prog *prog = event->prog;
10061
10062 if (!prog)
10063 return;
10064
10065 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
10066 event->prog = NULL;
10067 bpf_prog_put(prog);
10068}
10069#else
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010070static int perf_event_set_bpf_handler(struct perf_event *event,
10071 struct bpf_prog *prog,
10072 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010073{
10074 return -EOPNOTSUPP;
10075}
10076static void perf_event_free_bpf_handler(struct perf_event *event)
10077{
10078}
10079#endif
10080
Song Liue12f03d2017-12-06 14:45:15 -080010081/*
10082 * returns true if the event is a tracepoint, or a kprobe/upprobe created
10083 * with perf_event_open()
10084 */
10085static inline bool perf_event_is_tracing(struct perf_event *event)
10086{
10087 if (event->pmu == &perf_tracepoint)
10088 return true;
10089#ifdef CONFIG_KPROBE_EVENTS
10090 if (event->pmu == &perf_kprobe)
10091 return true;
10092#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010093#ifdef CONFIG_UPROBE_EVENTS
10094 if (event->pmu == &perf_uprobe)
10095 return true;
10096#endif
Song Liue12f03d2017-12-06 14:45:15 -080010097 return false;
10098}
10099
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010100int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10101 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010102{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010103 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010104
Song Liue12f03d2017-12-06 14:45:15 -080010105 if (!perf_event_is_tracing(event))
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010106 return perf_event_set_bpf_handler(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010107
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010108 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
10109 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010110 is_syscall_tp = is_syscall_trace_event(event->tp_event);
10111 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010112 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -070010113 return -EINVAL;
10114
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010115 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010116 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010117 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT))
Alexei Starovoitov25415172015-03-25 12:49:20 -070010118 return -EINVAL;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010119
Josef Bacik9802d862017-12-11 11:36:48 -050010120 /* Kprobe override only works for kprobes, not uprobes. */
10121 if (prog->kprobe_override &&
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010122 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE))
Josef Bacik9802d862017-12-11 11:36:48 -050010123 return -EINVAL;
Josef Bacik9802d862017-12-11 11:36:48 -050010124
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010125 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010126 int off = trace_event_get_offsets(event->tp_event);
10127
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010128 if (prog->aux->max_ctx_offset > off)
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010129 return -EACCES;
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010130 }
Alexei Starovoitov25415172015-03-25 12:49:20 -070010131
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010132 return perf_event_attach_bpf_prog(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010133}
10134
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010135void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010136{
Song Liue12f03d2017-12-06 14:45:15 -080010137 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -070010138 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010139 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010140 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -070010141 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010142}
10143
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010144#else
Li Zefan6fb29152009-10-15 11:21:42 +080010145
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010146static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010147{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010148}
Li Zefan6fb29152009-10-15 11:21:42 +080010149
Li Zefan6fb29152009-10-15 11:21:42 +080010150static void perf_event_free_filter(struct perf_event *event)
10151{
10152}
10153
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010154int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10155 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010156{
10157 return -ENOENT;
10158}
10159
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010160void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010161{
10162}
Li Zefan07b139c2009-12-21 14:27:35 +080010163#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010164
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010165#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010166void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010167{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010168 struct perf_sample_data sample;
10169 struct pt_regs *regs = data;
10170
Robert Richterfd0d0002012-04-02 20:19:08 +020010171 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010172
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010173 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020010174 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010175}
10176#endif
10177
Alexander Shishkin375637b2016-04-27 18:44:46 +030010178/*
10179 * Allocate a new address filter
10180 */
10181static struct perf_addr_filter *
10182perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
10183{
10184 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
10185 struct perf_addr_filter *filter;
10186
10187 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
10188 if (!filter)
10189 return NULL;
10190
10191 INIT_LIST_HEAD(&filter->entry);
10192 list_add_tail(&filter->entry, filters);
10193
10194 return filter;
10195}
10196
10197static void free_filters_list(struct list_head *filters)
10198{
10199 struct perf_addr_filter *filter, *iter;
10200
10201 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -070010202 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010203 list_del(&filter->entry);
10204 kfree(filter);
10205 }
10206}
10207
10208/*
10209 * Free existing address filters and optionally install new ones
10210 */
10211static void perf_addr_filters_splice(struct perf_event *event,
10212 struct list_head *head)
10213{
10214 unsigned long flags;
10215 LIST_HEAD(list);
10216
10217 if (!has_addr_filter(event))
10218 return;
10219
10220 /* don't bother with children, they don't have their own filters */
10221 if (event->parent)
10222 return;
10223
10224 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
10225
10226 list_splice_init(&event->addr_filters.list, &list);
10227 if (head)
10228 list_splice(head, &event->addr_filters.list);
10229
10230 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
10231
10232 free_filters_list(&list);
10233}
10234
10235/*
10236 * Scan through mm's vmas and see if one of them matches the
10237 * @filter; if so, adjust filter's address range.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070010238 * Called with mm::mmap_lock down for reading.
Alexander Shishkin375637b2016-04-27 18:44:46 +030010239 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010240static void perf_addr_filter_apply(struct perf_addr_filter *filter,
10241 struct mm_struct *mm,
10242 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010243{
10244 struct vm_area_struct *vma;
10245
10246 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010247 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010248 continue;
10249
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010250 if (perf_addr_filter_vma_adjust(filter, vma, fr))
10251 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010252 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010253}
10254
10255/*
10256 * Update event's address range filters based on the
10257 * task's existing mappings, if any.
10258 */
10259static void perf_event_addr_filters_apply(struct perf_event *event)
10260{
10261 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10262 struct task_struct *task = READ_ONCE(event->ctx->task);
10263 struct perf_addr_filter *filter;
10264 struct mm_struct *mm = NULL;
10265 unsigned int count = 0;
10266 unsigned long flags;
10267
10268 /*
10269 * We may observe TASK_TOMBSTONE, which means that the event tear-down
10270 * will stop on the parent's child_mutex that our caller is also holding
10271 */
10272 if (task == TASK_TOMBSTONE)
10273 return;
10274
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010275 if (ifh->nr_file_filters) {
Baptiste Lepersb89a05b2021-09-06 11:53:10 +100010276 mm = get_task_mm(task);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010277 if (!mm)
10278 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010279
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010280 mmap_read_lock(mm);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010281 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010282
10283 raw_spin_lock_irqsave(&ifh->lock, flags);
10284 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010285 if (filter->path.dentry) {
10286 /*
10287 * Adjust base offset if the filter is associated to a
10288 * binary that needs to be mapped:
10289 */
10290 event->addr_filter_ranges[count].start = 0;
10291 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010292
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010293 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010294 } else {
10295 event->addr_filter_ranges[count].start = filter->offset;
10296 event->addr_filter_ranges[count].size = filter->size;
10297 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010298
10299 count++;
10300 }
10301
10302 event->addr_filters_gen++;
10303 raw_spin_unlock_irqrestore(&ifh->lock, flags);
10304
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010305 if (ifh->nr_file_filters) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010306 mmap_read_unlock(mm);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010307
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010308 mmput(mm);
10309 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010310
10311restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +030010312 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010313}
10314
10315/*
10316 * Address range filtering: limiting the data to certain
10317 * instruction address ranges. Filters are ioctl()ed to us from
10318 * userspace as ascii strings.
10319 *
10320 * Filter string format:
10321 *
10322 * ACTION RANGE_SPEC
10323 * where ACTION is one of the
10324 * * "filter": limit the trace to this region
10325 * * "start": start tracing from this address
10326 * * "stop": stop tracing at this address/region;
10327 * RANGE_SPEC is
10328 * * for kernel addresses: <start address>[/<size>]
10329 * * for object files: <start address>[/<size>]@</path/to/object/file>
10330 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010331 * if <size> is not specified or is zero, the range is treated as a single
10332 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +030010333 */
10334enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +020010335 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +030010336 IF_ACT_FILTER,
10337 IF_ACT_START,
10338 IF_ACT_STOP,
10339 IF_SRC_FILE,
10340 IF_SRC_KERNEL,
10341 IF_SRC_FILEADDR,
10342 IF_SRC_KERNELADDR,
10343};
10344
10345enum {
10346 IF_STATE_ACTION = 0,
10347 IF_STATE_SOURCE,
10348 IF_STATE_END,
10349};
10350
10351static const match_table_t if_tokens = {
10352 { IF_ACT_FILTER, "filter" },
10353 { IF_ACT_START, "start" },
10354 { IF_ACT_STOP, "stop" },
10355 { IF_SRC_FILE, "%u/%u@%s" },
10356 { IF_SRC_KERNEL, "%u/%u" },
10357 { IF_SRC_FILEADDR, "%u@%s" },
10358 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +020010359 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +030010360};
10361
10362/*
10363 * Address filter string parser
10364 */
10365static int
10366perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
10367 struct list_head *filters)
10368{
10369 struct perf_addr_filter *filter = NULL;
10370 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010371 substring_t args[MAX_OPT_ARGS];
10372 int state = IF_STATE_ACTION, token;
10373 unsigned int kernel = 0;
10374 int ret = -EINVAL;
10375
10376 orig = fstr = kstrdup(fstr, GFP_KERNEL);
10377 if (!fstr)
10378 return -ENOMEM;
10379
10380 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010381 static const enum perf_addr_filter_action_t actions[] = {
10382 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
10383 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
10384 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
10385 };
Alexander Shishkin375637b2016-04-27 18:44:46 +030010386 ret = -EINVAL;
10387
10388 if (!*start)
10389 continue;
10390
10391 /* filter definition begins */
10392 if (state == IF_STATE_ACTION) {
10393 filter = perf_addr_filter_new(event, filters);
10394 if (!filter)
10395 goto fail;
10396 }
10397
10398 token = match_token(start, if_tokens, args);
10399 switch (token) {
10400 case IF_ACT_FILTER:
10401 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +030010402 case IF_ACT_STOP:
10403 if (state != IF_STATE_ACTION)
10404 goto fail;
10405
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010406 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +030010407 state = IF_STATE_SOURCE;
10408 break;
10409
10410 case IF_SRC_KERNELADDR:
10411 case IF_SRC_KERNEL:
10412 kernel = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010413 fallthrough;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010414
10415 case IF_SRC_FILEADDR:
10416 case IF_SRC_FILE:
10417 if (state != IF_STATE_SOURCE)
10418 goto fail;
10419
Alexander Shishkin375637b2016-04-27 18:44:46 +030010420 *args[0].to = 0;
10421 ret = kstrtoul(args[0].from, 0, &filter->offset);
10422 if (ret)
10423 goto fail;
10424
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010425 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +030010426 *args[1].to = 0;
10427 ret = kstrtoul(args[1].from, 0, &filter->size);
10428 if (ret)
10429 goto fail;
10430 }
10431
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010432 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010433 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010434
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010435 kfree(filename);
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010436 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010437 if (!filename) {
10438 ret = -ENOMEM;
10439 goto fail;
10440 }
10441 }
10442
10443 state = IF_STATE_END;
10444 break;
10445
10446 default:
10447 goto fail;
10448 }
10449
10450 /*
10451 * Filter definition is fully parsed, validate and install it.
10452 * Make sure that it doesn't contradict itself or the event's
10453 * attribute.
10454 */
10455 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +020010456 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010457 if (kernel && event->attr.exclude_kernel)
10458 goto fail;
10459
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010460 /*
10461 * ACTION "filter" must have a non-zero length region
10462 * specified.
10463 */
10464 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
10465 !filter->size)
10466 goto fail;
10467
Alexander Shishkin375637b2016-04-27 18:44:46 +030010468 if (!kernel) {
10469 if (!filename)
10470 goto fail;
10471
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010472 /*
10473 * For now, we only support file-based filters
10474 * in per-task events; doing so for CPU-wide
10475 * events requires additional context switching
10476 * trickery, since same object code will be
10477 * mapped at different virtual addresses in
10478 * different processes.
10479 */
10480 ret = -EOPNOTSUPP;
10481 if (!event->ctx->task)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010482 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010483
Alexander Shishkin375637b2016-04-27 18:44:46 +030010484 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -070010485 ret = kern_path(filename, LOOKUP_FOLLOW,
10486 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010487 if (ret)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010488 goto fail;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010489
10490 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -070010491 if (!filter->path.dentry ||
10492 !S_ISREG(d_inode(filter->path.dentry)
10493 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010494 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010495
10496 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010497 }
10498
10499 /* ready to consume more filters */
10500 state = IF_STATE_ACTION;
10501 filter = NULL;
10502 }
10503 }
10504
10505 if (state != IF_STATE_ACTION)
10506 goto fail;
10507
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010508 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010509 kfree(orig);
10510
10511 return 0;
10512
Alexander Shishkin375637b2016-04-27 18:44:46 +030010513fail:
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010514 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010515 free_filters_list(filters);
10516 kfree(orig);
10517
10518 return ret;
10519}
10520
10521static int
10522perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10523{
10524 LIST_HEAD(filters);
10525 int ret;
10526
10527 /*
10528 * Since this is called in perf_ioctl() path, we're already holding
10529 * ctx::mutex.
10530 */
10531 lockdep_assert_held(&event->ctx->mutex);
10532
10533 if (WARN_ON_ONCE(event->parent))
10534 return -EINVAL;
10535
Alexander Shishkin375637b2016-04-27 18:44:46 +030010536 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10537 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010538 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010539
10540 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010541 if (ret)
10542 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010543
10544 /* remove existing filters, if any */
10545 perf_addr_filters_splice(event, &filters);
10546
10547 /* install new filters */
10548 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10549
10550 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010551
10552fail_free_filters:
10553 free_filters_list(&filters);
10554
10555fail_clear_files:
10556 event->addr_filters.nr_file_filters = 0;
10557
10558 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010559}
10560
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010561static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10562{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010563 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -080010564 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010565
10566 filter_str = strndup_user(arg, PAGE_SIZE);
10567 if (IS_ERR(filter_str))
10568 return PTR_ERR(filter_str);
10569
Song Liue12f03d2017-12-06 14:45:15 -080010570#ifdef CONFIG_EVENT_TRACING
10571 if (perf_event_is_tracing(event)) {
10572 struct perf_event_context *ctx = event->ctx;
10573
10574 /*
10575 * Beware, here be dragons!!
10576 *
10577 * the tracepoint muck will deadlock against ctx->mutex, but
10578 * the tracepoint stuff does not actually need it. So
10579 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10580 * already have a reference on ctx.
10581 *
10582 * This can result in event getting moved to a different ctx,
10583 * but that does not affect the tracepoint state.
10584 */
10585 mutex_unlock(&ctx->mutex);
10586 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10587 mutex_lock(&ctx->mutex);
10588 } else
10589#endif
10590 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010591 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010592
10593 kfree(filter_str);
10594 return ret;
10595}
10596
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010597/*
10598 * hrtimer based swevent callback
10599 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010600
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010601static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010602{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010603 enum hrtimer_restart ret = HRTIMER_RESTART;
10604 struct perf_sample_data data;
10605 struct pt_regs *regs;
10606 struct perf_event *event;
10607 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010608
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010609 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010610
10611 if (event->state != PERF_EVENT_STATE_ACTIVE)
10612 return HRTIMER_NORESTART;
10613
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010614 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010615
Robert Richterfd0d0002012-04-02 20:19:08 +020010616 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010617 regs = get_irq_regs();
10618
10619 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -080010620 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +020010621 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010622 ret = HRTIMER_NORESTART;
10623 }
10624
10625 period = max_t(u64, 10000, event->hw.sample_period);
10626 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
10627
10628 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010629}
10630
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010631static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010632{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010633 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010634 s64 period;
10635
10636 if (!is_sampling_event(event))
10637 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010638
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010639 period = local64_read(&hwc->period_left);
10640 if (period) {
10641 if (period < 0)
10642 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010643
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010644 local64_set(&hwc->period_left, 0);
10645 } else {
10646 period = max_t(u64, 10000, hwc->sample_period);
10647 }
Thomas Gleixner3497d202015-04-14 21:09:03 +000010648 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010649 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010650}
10651
10652static void perf_swevent_cancel_hrtimer(struct perf_event *event)
10653{
10654 struct hw_perf_event *hwc = &event->hw;
10655
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +010010656 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010657 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010658 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010659
10660 hrtimer_cancel(&hwc->hrtimer);
10661 }
10662}
10663
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010664static void perf_swevent_init_hrtimer(struct perf_event *event)
10665{
10666 struct hw_perf_event *hwc = &event->hw;
10667
10668 if (!is_sampling_event(event))
10669 return;
10670
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010671 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010672 hwc->hrtimer.function = perf_swevent_hrtimer;
10673
10674 /*
10675 * Since hrtimers have a fixed rate, we can do a static freq->period
10676 * mapping and avoid the whole period adjust feedback stuff.
10677 */
10678 if (event->attr.freq) {
10679 long freq = event->attr.sample_freq;
10680
10681 event->attr.sample_period = NSEC_PER_SEC / freq;
10682 hwc->sample_period = event->attr.sample_period;
10683 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +090010684 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010685 event->attr.freq = 0;
10686 }
10687}
10688
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010689/*
10690 * Software event: cpu wall time clock
10691 */
10692
10693static void cpu_clock_event_update(struct perf_event *event)
10694{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010695 s64 prev;
10696 u64 now;
10697
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010698 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010699 prev = local64_xchg(&event->hw.prev_count, now);
10700 local64_add(now - prev, &event->count);
10701}
10702
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010703static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010704{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010705 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010706 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010707}
10708
10709static void cpu_clock_event_stop(struct perf_event *event, int flags)
10710{
10711 perf_swevent_cancel_hrtimer(event);
10712 cpu_clock_event_update(event);
10713}
10714
10715static int cpu_clock_event_add(struct perf_event *event, int flags)
10716{
10717 if (flags & PERF_EF_START)
10718 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010719 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010720
10721 return 0;
10722}
10723
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010724static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010725{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010726 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010727}
10728
10729static void cpu_clock_event_read(struct perf_event *event)
10730{
10731 cpu_clock_event_update(event);
10732}
10733
10734static int cpu_clock_event_init(struct perf_event *event)
10735{
10736 if (event->attr.type != PERF_TYPE_SOFTWARE)
10737 return -ENOENT;
10738
10739 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10740 return -ENOENT;
10741
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010742 /*
10743 * no branch sampling for software events
10744 */
10745 if (has_branch_stack(event))
10746 return -EOPNOTSUPP;
10747
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010748 perf_swevent_init_hrtimer(event);
10749
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010750 return 0;
10751}
10752
10753static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010754 .task_ctx_nr = perf_sw_context,
10755
Peter Zijlstra34f43922015-02-20 14:05:38 +010010756 .capabilities = PERF_PMU_CAP_NO_NMI,
10757
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010758 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010759 .add = cpu_clock_event_add,
10760 .del = cpu_clock_event_del,
10761 .start = cpu_clock_event_start,
10762 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010763 .read = cpu_clock_event_read,
10764};
10765
10766/*
10767 * Software event: task time clock
10768 */
10769
10770static void task_clock_event_update(struct perf_event *event, u64 now)
10771{
10772 u64 prev;
10773 s64 delta;
10774
10775 prev = local64_xchg(&event->hw.prev_count, now);
10776 delta = now - prev;
10777 local64_add(delta, &event->count);
10778}
10779
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010780static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010781{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010782 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010783 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010784}
10785
10786static void task_clock_event_stop(struct perf_event *event, int flags)
10787{
10788 perf_swevent_cancel_hrtimer(event);
10789 task_clock_event_update(event, event->ctx->time);
10790}
10791
10792static int task_clock_event_add(struct perf_event *event, int flags)
10793{
10794 if (flags & PERF_EF_START)
10795 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010796 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010797
10798 return 0;
10799}
10800
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010801static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010802{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010803 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010804}
10805
10806static void task_clock_event_read(struct perf_event *event)
10807{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010808 u64 now = perf_clock();
10809 u64 delta = now - event->ctx->timestamp;
10810 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010811
10812 task_clock_event_update(event, time);
10813}
10814
10815static int task_clock_event_init(struct perf_event *event)
10816{
10817 if (event->attr.type != PERF_TYPE_SOFTWARE)
10818 return -ENOENT;
10819
10820 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10821 return -ENOENT;
10822
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010823 /*
10824 * no branch sampling for software events
10825 */
10826 if (has_branch_stack(event))
10827 return -EOPNOTSUPP;
10828
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010829 perf_swevent_init_hrtimer(event);
10830
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010831 return 0;
10832}
10833
10834static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010835 .task_ctx_nr = perf_sw_context,
10836
Peter Zijlstra34f43922015-02-20 14:05:38 +010010837 .capabilities = PERF_PMU_CAP_NO_NMI,
10838
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010839 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010840 .add = task_clock_event_add,
10841 .del = task_clock_event_del,
10842 .start = task_clock_event_start,
10843 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010844 .read = task_clock_event_read,
10845};
10846
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010847static void perf_pmu_nop_void(struct pmu *pmu)
10848{
10849}
10850
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010851static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10852{
10853}
10854
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010855static int perf_pmu_nop_int(struct pmu *pmu)
10856{
10857 return 0;
10858}
10859
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010860static int perf_event_nop_int(struct perf_event *event, u64 value)
10861{
10862 return 0;
10863}
10864
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010865static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010866
10867static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010868{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010869 __this_cpu_write(nop_txn_flags, flags);
10870
10871 if (flags & ~PERF_PMU_TXN_ADD)
10872 return;
10873
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010874 perf_pmu_disable(pmu);
10875}
10876
10877static int perf_pmu_commit_txn(struct pmu *pmu)
10878{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010879 unsigned int flags = __this_cpu_read(nop_txn_flags);
10880
10881 __this_cpu_write(nop_txn_flags, 0);
10882
10883 if (flags & ~PERF_PMU_TXN_ADD)
10884 return 0;
10885
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010886 perf_pmu_enable(pmu);
10887 return 0;
10888}
10889
10890static void perf_pmu_cancel_txn(struct pmu *pmu)
10891{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010892 unsigned int flags = __this_cpu_read(nop_txn_flags);
10893
10894 __this_cpu_write(nop_txn_flags, 0);
10895
10896 if (flags & ~PERF_PMU_TXN_ADD)
10897 return;
10898
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010899 perf_pmu_enable(pmu);
10900}
10901
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010902static int perf_event_idx_default(struct perf_event *event)
10903{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010904 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010905}
10906
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010907/*
10908 * Ensures all contexts with the same task_ctx_nr have the same
10909 * pmu_cpu_context too.
10910 */
Mark Rutland9e317042014-02-10 17:44:18 +000010911static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010912{
10913 struct pmu *pmu;
10914
10915 if (ctxn < 0)
10916 return NULL;
10917
10918 list_for_each_entry(pmu, &pmus, entry) {
10919 if (pmu->task_ctx_nr == ctxn)
10920 return pmu->pmu_cpu_context;
10921 }
10922
10923 return NULL;
10924}
10925
Peter Zijlstra51676952010-12-07 14:18:20 +010010926static void free_pmu_context(struct pmu *pmu)
10927{
Will Deacondf0062b2017-10-03 15:20:50 +010010928 /*
10929 * Static contexts such as perf_sw_context have a global lifetime
10930 * and may be shared between different PMUs. Avoid freeing them
10931 * when a single PMU is going away.
10932 */
10933 if (pmu->task_ctx_nr > perf_invalid_context)
10934 return;
10935
Peter Zijlstra51676952010-12-07 14:18:20 +010010936 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010937}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010938
10939/*
10940 * Let userspace know that this PMU supports address range filtering:
10941 */
10942static ssize_t nr_addr_filters_show(struct device *dev,
10943 struct device_attribute *attr,
10944 char *page)
10945{
10946 struct pmu *pmu = dev_get_drvdata(dev);
10947
10948 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10949}
10950DEVICE_ATTR_RO(nr_addr_filters);
10951
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010952static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010953
Peter Zijlstraabe43402010-11-17 23:17:37 +010010954static ssize_t
10955type_show(struct device *dev, struct device_attribute *attr, char *page)
10956{
10957 struct pmu *pmu = dev_get_drvdata(dev);
10958
10959 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10960}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010961static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010962
Stephane Eranian62b85632013-04-03 14:21:34 +020010963static ssize_t
10964perf_event_mux_interval_ms_show(struct device *dev,
10965 struct device_attribute *attr,
10966 char *page)
10967{
10968 struct pmu *pmu = dev_get_drvdata(dev);
10969
10970 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10971}
10972
Peter Zijlstra272325c2015-04-15 11:41:58 +020010973static DEFINE_MUTEX(mux_interval_mutex);
10974
Stephane Eranian62b85632013-04-03 14:21:34 +020010975static ssize_t
10976perf_event_mux_interval_ms_store(struct device *dev,
10977 struct device_attribute *attr,
10978 const char *buf, size_t count)
10979{
10980 struct pmu *pmu = dev_get_drvdata(dev);
10981 int timer, cpu, ret;
10982
10983 ret = kstrtoint(buf, 0, &timer);
10984 if (ret)
10985 return ret;
10986
10987 if (timer < 1)
10988 return -EINVAL;
10989
10990 /* same value, noting to do */
10991 if (timer == pmu->hrtimer_interval_ms)
10992 return count;
10993
Peter Zijlstra272325c2015-04-15 11:41:58 +020010994 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010995 pmu->hrtimer_interval_ms = timer;
10996
10997 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010998 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010999 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020011000 struct perf_cpu_context *cpuctx;
11001 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11002 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
11003
Peter Zijlstra272325c2015-04-15 11:41:58 +020011004 cpu_function_call(cpu,
11005 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020011006 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011007 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020011008 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020011009
11010 return count;
11011}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011012static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020011013
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011014static struct attribute *pmu_dev_attrs[] = {
11015 &dev_attr_type.attr,
11016 &dev_attr_perf_event_mux_interval_ms.attr,
11017 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011018};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011019ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010011020
11021static int pmu_bus_running;
11022static struct bus_type pmu_bus = {
11023 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011024 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011025};
11026
11027static void pmu_dev_release(struct device *dev)
11028{
11029 kfree(dev);
11030}
11031
11032static int pmu_dev_alloc(struct pmu *pmu)
11033{
11034 int ret = -ENOMEM;
11035
11036 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
11037 if (!pmu->dev)
11038 goto out;
11039
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010011040 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010011041 device_initialize(pmu->dev);
11042 ret = dev_set_name(pmu->dev, "%s", pmu->name);
11043 if (ret)
11044 goto free_dev;
11045
11046 dev_set_drvdata(pmu->dev, pmu);
11047 pmu->dev->bus = &pmu_bus;
11048 pmu->dev->release = pmu_dev_release;
11049 ret = device_add(pmu->dev);
11050 if (ret)
11051 goto free_dev;
11052
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011053 /* For PMUs with address filters, throw in an extra attribute: */
11054 if (pmu->nr_addr_filters)
11055 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
11056
11057 if (ret)
11058 goto del_dev;
11059
Jiri Olsaf3a3a822019-05-12 17:55:11 +020011060 if (pmu->attr_update)
11061 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
11062
11063 if (ret)
11064 goto del_dev;
11065
Peter Zijlstraabe43402010-11-17 23:17:37 +010011066out:
11067 return ret;
11068
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011069del_dev:
11070 device_del(pmu->dev);
11071
Peter Zijlstraabe43402010-11-17 23:17:37 +010011072free_dev:
11073 put_device(pmu->dev);
11074 goto out;
11075}
11076
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011077static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011078static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011079
Mischa Jonker03d8e802013-06-04 11:45:48 +020011080int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011081{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011082 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011083
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011084 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011085 ret = -ENOMEM;
11086 pmu->pmu_disable_count = alloc_percpu(int);
11087 if (!pmu->pmu_disable_count)
11088 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011089
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011090 pmu->type = -1;
11091 if (!name)
11092 goto skip_type;
11093 pmu->name = name;
11094
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011095 if (type != PERF_TYPE_SOFTWARE) {
11096 if (type >= 0)
11097 max = type;
11098
11099 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
11100 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011101 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011102
11103 WARN_ON(type >= 0 && ret != type);
11104
11105 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011106 }
11107 pmu->type = type;
11108
Peter Zijlstraabe43402010-11-17 23:17:37 +010011109 if (pmu_bus_running) {
11110 ret = pmu_dev_alloc(pmu);
11111 if (ret)
11112 goto free_idr;
11113 }
11114
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011115skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010011116 if (pmu->task_ctx_nr == perf_hw_context) {
11117 static int hw_context_taken = 0;
11118
Mark Rutland5101ef22016-04-26 11:33:46 +010011119 /*
11120 * Other than systems with heterogeneous CPUs, it never makes
11121 * sense for two PMUs to share perf_hw_context. PMUs which are
11122 * uncore must use perf_invalid_context.
11123 */
11124 if (WARN_ON_ONCE(hw_context_taken &&
11125 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010011126 pmu->task_ctx_nr = perf_invalid_context;
11127
11128 hw_context_taken = 1;
11129 }
11130
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011131 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
11132 if (pmu->pmu_cpu_context)
11133 goto got_cpu_context;
11134
Wei Yongjunc4814202013-04-12 11:05:54 +080011135 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011136 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
11137 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010011138 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011139
11140 for_each_possible_cpu(cpu) {
11141 struct perf_cpu_context *cpuctx;
11142
11143 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020011144 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011145 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011146 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011147 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011148 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020011149
Peter Zijlstra272325c2015-04-15 11:41:58 +020011150 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080011151
11152 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
11153 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011154 }
11155
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011156got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011157 if (!pmu->start_txn) {
11158 if (pmu->pmu_enable) {
11159 /*
11160 * If we have pmu_enable/pmu_disable calls, install
11161 * transaction stubs that use that to try and batch
11162 * hardware accesses.
11163 */
11164 pmu->start_txn = perf_pmu_start_txn;
11165 pmu->commit_txn = perf_pmu_commit_txn;
11166 pmu->cancel_txn = perf_pmu_cancel_txn;
11167 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070011168 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011169 pmu->commit_txn = perf_pmu_nop_int;
11170 pmu->cancel_txn = perf_pmu_nop_void;
11171 }
11172 }
11173
11174 if (!pmu->pmu_enable) {
11175 pmu->pmu_enable = perf_pmu_nop_void;
11176 pmu->pmu_disable = perf_pmu_nop_void;
11177 }
11178
Jiri Olsa81ec3f32019-02-04 13:35:32 +010011179 if (!pmu->check_period)
11180 pmu->check_period = perf_event_nop_int;
11181
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010011182 if (!pmu->event_idx)
11183 pmu->event_idx = perf_event_idx_default;
11184
Liang, Kand44f8212019-10-22 11:13:09 +020011185 /*
11186 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
11187 * since these cannot be in the IDR. This way the linear search
11188 * is fast, provided a valid software event is provided.
11189 */
11190 if (type == PERF_TYPE_SOFTWARE || !name)
11191 list_add_rcu(&pmu->entry, &pmus);
11192 else
11193 list_add_tail_rcu(&pmu->entry, &pmus);
11194
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011195 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011196 ret = 0;
11197unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011198 mutex_unlock(&pmus_lock);
11199
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011200 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011201
Peter Zijlstraabe43402010-11-17 23:17:37 +010011202free_dev:
11203 device_del(pmu->dev);
11204 put_device(pmu->dev);
11205
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011206free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011207 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011208 idr_remove(&pmu_idr, pmu->type);
11209
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011210free_pdc:
11211 free_percpu(pmu->pmu_disable_count);
11212 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011213}
Yan, Zhengc464c762014-03-18 16:56:41 +080011214EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011215
11216void perf_pmu_unregister(struct pmu *pmu)
11217{
11218 mutex_lock(&pmus_lock);
11219 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011220
11221 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020011222 * We dereference the pmu list under both SRCU and regular RCU, so
11223 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011224 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011225 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020011226 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011227
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011228 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011229 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011230 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011231 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020011232 if (pmu->nr_addr_filters)
11233 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
11234 device_del(pmu->dev);
11235 put_device(pmu->dev);
11236 }
Peter Zijlstra51676952010-12-07 14:18:20 +010011237 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011238 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011239}
Yan, Zhengc464c762014-03-18 16:56:41 +080011240EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011241
Kan Liange321d022019-05-28 15:08:30 -070011242static inline bool has_extended_regs(struct perf_event *event)
11243{
11244 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
11245 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
11246}
11247
Mark Rutlandcc34b982015-01-07 14:56:51 +000011248static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
11249{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011250 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000011251 int ret;
11252
11253 if (!try_module_get(pmu->module))
11254 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011255
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010011256 /*
11257 * A number of pmu->event_init() methods iterate the sibling_list to,
11258 * for example, validate if the group fits on the PMU. Therefore,
11259 * if this is a sibling event, acquire the ctx->mutex to protect
11260 * the sibling_list.
11261 */
11262 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020011263 /*
11264 * This ctx->mutex can nest when we're called through
11265 * inheritance. See the perf_event_ctx_lock_nested() comment.
11266 */
11267 ctx = perf_event_ctx_lock_nested(event->group_leader,
11268 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011269 BUG_ON(!ctx);
11270 }
11271
Mark Rutlandcc34b982015-01-07 14:56:51 +000011272 event->pmu = pmu;
11273 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011274
11275 if (ctx)
11276 perf_event_ctx_unlock(event->group_leader, ctx);
11277
Andrew Murraycc6795a2019-01-10 13:53:25 +000011278 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070011279 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
11280 has_extended_regs(event))
11281 ret = -EOPNOTSUPP;
11282
Andrew Murraycc6795a2019-01-10 13:53:25 +000011283 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070011284 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000011285 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070011286
11287 if (ret && event->destroy)
11288 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000011289 }
11290
Mark Rutlandcc34b982015-01-07 14:56:51 +000011291 if (ret)
11292 module_put(pmu->module);
11293
11294 return ret;
11295}
11296
Geliang Tang18ab2cd2015-09-27 23:25:50 +080011297static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011298{
Kan Liang55bcf6e2021-04-12 07:31:01 -070011299 bool extended_type = false;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011300 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030011301 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011302
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011303 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011304
Kan Liang40999312017-01-18 08:21:01 -050011305 /* Try parent's PMU first: */
11306 if (event->parent && event->parent->pmu) {
11307 pmu = event->parent->pmu;
11308 ret = perf_try_init_event(pmu, event);
11309 if (!ret)
11310 goto unlock;
11311 }
11312
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011313 /*
11314 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
11315 * are often aliases for PERF_TYPE_RAW.
11316 */
11317 type = event->attr.type;
Kan Liang55bcf6e2021-04-12 07:31:01 -070011318 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE) {
11319 type = event->attr.config >> PERF_PMU_TYPE_SHIFT;
11320 if (!type) {
11321 type = PERF_TYPE_RAW;
11322 } else {
11323 extended_type = true;
11324 event->attr.config &= PERF_HW_EVENT_MASK;
11325 }
11326 }
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011327
11328again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011329 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011330 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011331 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080011332 if (pmu) {
Kan Liang55bcf6e2021-04-12 07:31:01 -070011333 if (event->attr.type != type && type != PERF_TYPE_RAW &&
11334 !(pmu->capabilities & PERF_PMU_CAP_EXTENDED_HW_TYPE))
11335 goto fail;
11336
Mark Rutlandcc34b982015-01-07 14:56:51 +000011337 ret = perf_try_init_event(pmu, event);
Kan Liang55bcf6e2021-04-12 07:31:01 -070011338 if (ret == -ENOENT && event->attr.type != type && !extended_type) {
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011339 type = event->attr.type;
11340 goto again;
11341 }
11342
Lin Ming940c5b22011-02-27 21:13:31 +080011343 if (ret)
11344 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011345
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011346 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080011347 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011348
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010011349 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000011350 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011351 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011352 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011353
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011354 if (ret != -ENOENT) {
11355 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011356 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011357 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011358 }
Kan Liang55bcf6e2021-04-12 07:31:01 -070011359fail:
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011360 pmu = ERR_PTR(-ENOENT);
11361unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011362 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011363
11364 return pmu;
11365}
11366
Kan Liangf2fb6be2016-03-23 11:24:37 -070011367static void attach_sb_event(struct perf_event *event)
11368{
11369 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
11370
11371 raw_spin_lock(&pel->lock);
11372 list_add_rcu(&event->sb_list, &pel->list);
11373 raw_spin_unlock(&pel->lock);
11374}
11375
Peter Zijlstraaab5b712016-05-12 17:26:46 +020011376/*
11377 * We keep a list of all !task (and therefore per-cpu) events
11378 * that need to receive side-band records.
11379 *
11380 * This avoids having to scan all the various PMU per-cpu contexts
11381 * looking for them.
11382 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070011383static void account_pmu_sb_event(struct perf_event *event)
11384{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070011385 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070011386 attach_sb_event(event);
11387}
11388
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011389static void account_event_cpu(struct perf_event *event, int cpu)
11390{
11391 if (event->parent)
11392 return;
11393
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011394 if (is_cgroup_event(event))
11395 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
11396}
11397
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011398/* Freq events need the tick to stay alive (see perf_event_task_tick). */
11399static void account_freq_event_nohz(void)
11400{
11401#ifdef CONFIG_NO_HZ_FULL
11402 /* Lock so we don't race with concurrent unaccount */
11403 spin_lock(&nr_freq_lock);
11404 if (atomic_inc_return(&nr_freq_events) == 1)
11405 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
11406 spin_unlock(&nr_freq_lock);
11407#endif
11408}
11409
11410static void account_freq_event(void)
11411{
11412 if (tick_nohz_full_enabled())
11413 account_freq_event_nohz();
11414 else
11415 atomic_inc(&nr_freq_events);
11416}
11417
11418
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011419static void account_event(struct perf_event *event)
11420{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011421 bool inc = false;
11422
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011423 if (event->parent)
11424 return;
11425
Kan Lianga5398bf2020-11-30 11:38:40 -080011426 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011427 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011428 if (event->attr.mmap || event->attr.mmap_data)
11429 atomic_inc(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +010011430 if (event->attr.build_id)
11431 atomic_inc(&nr_build_id_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011432 if (event->attr.comm)
11433 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053011434 if (event->attr.namespaces)
11435 atomic_inc(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +090011436 if (event->attr.cgroup)
11437 atomic_inc(&nr_cgroup_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011438 if (event->attr.task)
11439 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011440 if (event->attr.freq)
11441 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030011442 if (event->attr.context_switch) {
11443 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011444 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030011445 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011446 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011447 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011448 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011449 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080011450 if (event->attr.ksymbol)
11451 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080011452 if (event->attr.bpf_event)
11453 atomic_inc(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +030011454 if (event->attr.text_poke)
11455 atomic_inc(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011456
Peter Zijlstra9107c892016-02-24 18:45:45 +010011457 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030011458 /*
11459 * We need the mutex here because static_branch_enable()
11460 * must complete *before* the perf_sched_count increment
11461 * becomes visible.
11462 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010011463 if (atomic_inc_not_zero(&perf_sched_count))
11464 goto enabled;
11465
11466 mutex_lock(&perf_sched_mutex);
11467 if (!atomic_read(&perf_sched_count)) {
11468 static_branch_enable(&perf_sched_events);
11469 /*
11470 * Guarantee that all CPUs observe they key change and
11471 * call the perf scheduling hooks before proceeding to
11472 * install events that need them.
11473 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080011474 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010011475 }
11476 /*
11477 * Now that we have waited for the sync_sched(), allow further
11478 * increments to by-pass the mutex.
11479 */
11480 atomic_inc(&perf_sched_count);
11481 mutex_unlock(&perf_sched_mutex);
11482 }
11483enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011484
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011485 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070011486
11487 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011488}
11489
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011490/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011491 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011492 */
11493static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011494perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011495 struct task_struct *task,
11496 struct perf_event *group_leader,
11497 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011498 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000011499 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011500{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020011501 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011502 struct perf_event *event;
11503 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011504 long err = -EINVAL;
Namhyung Kimff653382021-03-11 20:54:13 +090011505 int node;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011506
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011507 if ((unsigned)cpu >= nr_cpu_ids) {
11508 if (!task || cpu != -1)
11509 return ERR_PTR(-EINVAL);
11510 }
Marco Elver97ba62b2021-04-08 12:36:01 +020011511 if (attr->sigtrap && !task) {
11512 /* Requires a task: avoid signalling random tasks. */
11513 return ERR_PTR(-EINVAL);
11514 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011515
Namhyung Kimff653382021-03-11 20:54:13 +090011516 node = (cpu >= 0) ? cpu_to_node(cpu) : -1;
11517 event = kmem_cache_alloc_node(perf_event_cache, GFP_KERNEL | __GFP_ZERO,
11518 node);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011519 if (!event)
11520 return ERR_PTR(-ENOMEM);
11521
11522 /*
11523 * Single events are their own group leaders, with an
11524 * empty sibling list:
11525 */
11526 if (!group_leader)
11527 group_leader = event;
11528
11529 mutex_init(&event->child_mutex);
11530 INIT_LIST_HEAD(&event->child_list);
11531
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011532 INIT_LIST_HEAD(&event->event_entry);
11533 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010011534 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030011535 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011536 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010011537 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011538 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010011539 INIT_HLIST_NODE(&event->hlist_entry);
11540
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011541
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011542 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020011543 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080011544 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011545
11546 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011547 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011548
Al Viroa6fa9412012-08-20 14:59:25 +010011549 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011550 event->cpu = cpu;
11551 event->attr = *attr;
11552 event->group_leader = group_leader;
11553 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011554 event->oncpu = -1;
11555
11556 event->parent = parent_event;
11557
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080011558 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011559 event->id = atomic64_inc_return(&perf_event_id);
11560
11561 event->state = PERF_EVENT_STATE_INACTIVE;
11562
Marco Elver97ba62b2021-04-08 12:36:01 +020011563 if (event->attr.sigtrap)
11564 atomic_set(&event->event_limit, 1);
11565
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011566 if (task) {
11567 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011568 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010011569 * XXX pmu::event_init needs to know what task to account to
11570 * and we cannot use the ctx information because we need the
11571 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011572 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070011573 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011574 }
11575
Peter Zijlstra34f43922015-02-20 14:05:38 +010011576 event->clock = &local_clock;
11577 if (parent_event)
11578 event->clock = parent_event->clock;
11579
Avi Kivity4dc0da82011-06-29 18:42:35 +030011580 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010011581 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011582 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020011583#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011584 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011585 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011586
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011587 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011588 event->prog = prog;
11589 event->orig_overflow_handler =
11590 parent_event->orig_overflow_handler;
11591 }
11592#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030011593 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011594
Wang Nan18794452016-03-28 06:41:30 +000011595 if (overflow_handler) {
11596 event->overflow_handler = overflow_handler;
11597 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000011598 } else if (is_write_backward(event)){
11599 event->overflow_handler = perf_event_output_backward;
11600 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000011601 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000011602 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000011603 event->overflow_handler_context = NULL;
11604 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020011605
Jiri Olsa0231bb52013-02-01 11:23:45 +010011606 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011607
11608 pmu = NULL;
11609
11610 hwc = &event->hw;
11611 hwc->sample_period = attr->sample_period;
11612 if (attr->freq && attr->sample_freq)
11613 hwc->sample_period = 1;
11614 hwc->last_period = hwc->sample_period;
11615
Peter Zijlstrae7850592010-05-21 14:43:08 +020011616 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011617
11618 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011619 * We currently do not support PERF_SAMPLE_READ on inherited events.
11620 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011621 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011622 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011623 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011624
Yan, Zhenga46a2302014-11-04 21:56:06 -050011625 if (!has_branch_stack(event))
11626 event->attr.branch_sample_type = 0;
11627
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011628 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030011629 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011630 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011631 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011632 }
11633
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010011634 /*
11635 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11636 * be different on other CPUs in the uncore mask.
11637 */
11638 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11639 err = -EINVAL;
11640 goto err_pmu;
11641 }
11642
Alexander Shishkinab437622019-08-06 11:46:00 +030011643 if (event->attr.aux_output &&
11644 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11645 err = -EOPNOTSUPP;
11646 goto err_pmu;
11647 }
11648
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011649 if (cgroup_fd != -1) {
11650 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11651 if (err)
11652 goto err_pmu;
11653 }
11654
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011655 err = exclusive_event_init(event);
11656 if (err)
11657 goto err_pmu;
11658
Alexander Shishkin375637b2016-04-27 18:44:46 +030011659 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011660 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11661 sizeof(struct perf_addr_filter_range),
11662 GFP_KERNEL);
11663 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011664 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030011665 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011666 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011667
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011668 /*
11669 * Clone the parent's vma offsets: they are valid until exec()
11670 * even if the mm is not shared with the parent.
11671 */
11672 if (event->parent) {
11673 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11674
11675 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011676 memcpy(event->addr_filter_ranges,
11677 event->parent->addr_filter_ranges,
11678 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011679 raw_spin_unlock_irq(&ifh->lock);
11680 }
11681
Alexander Shishkin375637b2016-04-27 18:44:46 +030011682 /* force hw sync on the address filters */
11683 event->addr_filters_gen = 1;
11684 }
11685
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011686 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020011687 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030011688 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011689 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030011690 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010011691 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011692 }
11693
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011694 err = security_perf_event_alloc(event);
11695 if (err)
11696 goto err_callchain_buffer;
11697
Alexander Shishkin927a5572016-03-02 13:24:14 +020011698 /* symmetric to unaccount_event() in _free_event() */
11699 account_event(event);
11700
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011701 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011702
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011703err_callchain_buffer:
11704 if (!event->parent) {
11705 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11706 put_callchain_buffers();
11707 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011708err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011709 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011710
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011711err_per_task:
11712 exclusive_event_destroy(event);
11713
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011714err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011715 if (is_cgroup_event(event))
11716 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011717 if (event->destroy)
11718 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080011719 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011720err_ns:
11721 if (event->ns)
11722 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090011723 if (event->hw.target)
11724 put_task_struct(event->hw.target);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090011725 kmem_cache_free(perf_event_cache, event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011726
11727 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011728}
11729
11730static int perf_copy_attr(struct perf_event_attr __user *uattr,
11731 struct perf_event_attr *attr)
11732{
11733 u32 size;
11734 int ret;
11735
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011736 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011737 memset(attr, 0, sizeof(*attr));
11738
11739 ret = get_user(size, &uattr->size);
11740 if (ret)
11741 return ret;
11742
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011743 /* ABI compatibility quirk: */
11744 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011745 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011746 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011747 goto err_size;
11748
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011749 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11750 if (ret) {
11751 if (ret == -E2BIG)
11752 goto err_size;
11753 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011754 }
11755
Meng Xuf12f42a2017-08-23 17:07:50 -040011756 attr->size = size;
11757
Alexander Shishkina4faf002019-10-25 17:08:33 +030011758 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011759 return -EINVAL;
11760
11761 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11762 return -EINVAL;
11763
11764 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11765 return -EINVAL;
11766
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011767 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11768 u64 mask = attr->branch_sample_type;
11769
11770 /* only using defined bits */
11771 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11772 return -EINVAL;
11773
11774 /* at least one branch bit must be set */
11775 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11776 return -EINVAL;
11777
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011778 /* propagate priv level, when not set for branch */
11779 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11780
11781 /* exclude_kernel checked on syscall entry */
11782 if (!attr->exclude_kernel)
11783 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11784
11785 if (!attr->exclude_user)
11786 mask |= PERF_SAMPLE_BRANCH_USER;
11787
11788 if (!attr->exclude_hv)
11789 mask |= PERF_SAMPLE_BRANCH_HV;
11790 /*
11791 * adjust user setting (for HW filter setup)
11792 */
11793 attr->branch_sample_type = mask;
11794 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011795 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011796 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11797 ret = perf_allow_kernel(attr);
11798 if (ret)
11799 return ret;
11800 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011801 }
Jiri Olsa40189942012-08-07 15:20:37 +020011802
Jiri Olsac5ebced2012-08-07 15:20:40 +020011803 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011804 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011805 if (ret)
11806 return ret;
11807 }
11808
11809 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11810 if (!arch_perf_have_user_stack_dump())
11811 return -ENOSYS;
11812
11813 /*
11814 * We have __u32 type for the size, but so far
11815 * we can only use __u16 as maximum due to the
11816 * __u16 sample size limit.
11817 */
11818 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011819 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011820 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011821 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011822 }
Jiri Olsa40189942012-08-07 15:20:37 +020011823
Jiri Olsa5f970522018-03-12 14:45:46 +010011824 if (!attr->sample_max_stack)
11825 attr->sample_max_stack = sysctl_perf_event_max_stack;
11826
Stephane Eranian60e23642014-09-24 13:48:37 +020011827 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11828 ret = perf_reg_validate(attr->sample_regs_intr);
Namhyung Kim6546b192020-03-25 21:45:29 +090011829
11830#ifndef CONFIG_CGROUP_PERF
11831 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11832 return -EINVAL;
11833#endif
Kan Liang2a6c6b72021-01-28 14:40:07 -080011834 if ((attr->sample_type & PERF_SAMPLE_WEIGHT) &&
11835 (attr->sample_type & PERF_SAMPLE_WEIGHT_STRUCT))
11836 return -EINVAL;
Namhyung Kim6546b192020-03-25 21:45:29 +090011837
Marco Elver2b26f0a2021-04-08 12:35:58 +020011838 if (!attr->inherit && attr->inherit_thread)
11839 return -EINVAL;
11840
Marco Elver2e498d02021-04-08 12:35:59 +020011841 if (attr->remove_on_exec && attr->enable_on_exec)
11842 return -EINVAL;
11843
Marco Elver97ba62b2021-04-08 12:36:01 +020011844 if (attr->sigtrap && !attr->remove_on_exec)
11845 return -EINVAL;
11846
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011847out:
11848 return ret;
11849
11850err_size:
11851 put_user(sizeof(*attr), &uattr->size);
11852 ret = -E2BIG;
11853 goto out;
11854}
11855
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011856static int
11857perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011858{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011859 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011860 int ret = -EINVAL;
11861
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011862 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011863 goto set;
11864
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011865 /* don't allow circular references */
11866 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011867 goto out;
11868
Peter Zijlstra0f139302010-05-20 14:35:15 +020011869 /*
11870 * Don't allow cross-cpu buffers
11871 */
11872 if (output_event->cpu != event->cpu)
11873 goto out;
11874
11875 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011876 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011877 */
11878 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11879 goto out;
11880
Peter Zijlstra34f43922015-02-20 14:05:38 +010011881 /*
11882 * Mixing clocks in the same buffer is trouble you don't need.
11883 */
11884 if (output_event->clock != event->clock)
11885 goto out;
11886
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011887 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011888 * Either writing ring buffer from beginning or from end.
11889 * Mixing is not allowed.
11890 */
11891 if (is_write_backward(output_event) != is_write_backward(event))
11892 goto out;
11893
11894 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011895 * If both events generate aux data, they must be on the same PMU
11896 */
11897 if (has_aux(event) && has_aux(output_event) &&
11898 event->pmu != output_event->pmu)
11899 goto out;
11900
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011901set:
11902 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011903 /* Can't redirect output if we've got an active mmap() */
11904 if (atomic_read(&event->mmap_count))
11905 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011906
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011907 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011908 /* get the rb we want to redirect to */
11909 rb = ring_buffer_get(output_event);
11910 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011911 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011912 }
11913
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011914 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011915
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011916 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011917unlock:
11918 mutex_unlock(&event->mmap_mutex);
11919
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011920out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011921 return ret;
11922}
11923
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011924static void mutex_lock_double(struct mutex *a, struct mutex *b)
11925{
11926 if (b < a)
11927 swap(a, b);
11928
11929 mutex_lock(a);
11930 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11931}
11932
Peter Zijlstra34f43922015-02-20 14:05:38 +010011933static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11934{
11935 bool nmi_safe = false;
11936
11937 switch (clk_id) {
11938 case CLOCK_MONOTONIC:
11939 event->clock = &ktime_get_mono_fast_ns;
11940 nmi_safe = true;
11941 break;
11942
11943 case CLOCK_MONOTONIC_RAW:
11944 event->clock = &ktime_get_raw_fast_ns;
11945 nmi_safe = true;
11946 break;
11947
11948 case CLOCK_REALTIME:
11949 event->clock = &ktime_get_real_ns;
11950 break;
11951
11952 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011953 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011954 break;
11955
11956 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011957 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011958 break;
11959
11960 default:
11961 return -EINVAL;
11962 }
11963
11964 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11965 return -EINVAL;
11966
11967 return 0;
11968}
11969
Peter Zijlstra321027c2017-01-11 21:09:50 +010011970/*
11971 * Variation on perf_event_ctx_lock_nested(), except we take two context
11972 * mutexes.
11973 */
11974static struct perf_event_context *
11975__perf_event_ctx_lock_double(struct perf_event *group_leader,
11976 struct perf_event_context *ctx)
11977{
11978 struct perf_event_context *gctx;
11979
11980again:
11981 rcu_read_lock();
11982 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020011983 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011984 rcu_read_unlock();
11985 goto again;
11986 }
11987 rcu_read_unlock();
11988
11989 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11990
11991 if (group_leader->ctx != gctx) {
11992 mutex_unlock(&ctx->mutex);
11993 mutex_unlock(&gctx->mutex);
11994 put_ctx(gctx);
11995 goto again;
11996 }
11997
11998 return gctx;
11999}
12000
Marco Elverb068fc02021-07-05 10:44:53 +020012001static bool
12002perf_check_permission(struct perf_event_attr *attr, struct task_struct *task)
12003{
12004 unsigned int ptrace_mode = PTRACE_MODE_READ_REALCREDS;
12005 bool is_capable = perfmon_capable();
12006
12007 if (attr->sigtrap) {
12008 /*
12009 * perf_event_attr::sigtrap sends signals to the other task.
12010 * Require the current task to also have CAP_KILL.
12011 */
12012 rcu_read_lock();
12013 is_capable &= ns_capable(__task_cred(task)->user_ns, CAP_KILL);
12014 rcu_read_unlock();
12015
12016 /*
12017 * If the required capabilities aren't available, checks for
12018 * ptrace permissions: upgrade to ATTACH, since sending signals
12019 * can effectively change the target task.
12020 */
12021 ptrace_mode = PTRACE_MODE_ATTACH_REALCREDS;
12022 }
12023
12024 /*
12025 * Preserve ptrace permission check for backwards compatibility. The
12026 * ptrace check also includes checks that the current task and other
12027 * task have matching uids, and is therefore not done here explicitly.
12028 */
12029 return is_capable || ptrace_may_access(task, ptrace_mode);
12030}
12031
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012032/**
12033 * sys_perf_event_open - open a performance event, associate it to a task/cpu
12034 *
12035 * @attr_uptr: event_id type attributes for monitoring/sampling
12036 * @pid: target pid
12037 * @cpu: target cpu
12038 * @group_fd: group leader event fd
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012039 * @flags: perf event open flags
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012040 */
12041SYSCALL_DEFINE5(perf_event_open,
12042 struct perf_event_attr __user *, attr_uptr,
12043 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
12044{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012045 struct perf_event *group_leader = NULL, *output_event = NULL;
12046 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012047 struct perf_event_attr attr;
Kees Cook3f649ab2020-06-03 13:09:38 -070012048 struct perf_event_context *ctx, *gctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012049 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040012050 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070012051 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012052 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040012053 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012054 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012055 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010012056 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000012057 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012058
12059 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020012060 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012061 return -EINVAL;
12062
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012063 /* Do we allow access to perf_event_open(2) ? */
12064 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
12065 if (err)
12066 return err;
12067
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012068 err = perf_copy_attr(attr_uptr, &attr);
12069 if (err)
12070 return err;
12071
12072 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012073 err = perf_allow_kernel(&attr);
12074 if (err)
12075 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012076 }
12077
Hari Bathinie4222672017-03-08 02:11:36 +053012078 if (attr.namespaces) {
Alexey Budankov18aa1852020-04-02 11:46:24 +030012079 if (!perfmon_capable())
Hari Bathinie4222672017-03-08 02:11:36 +053012080 return -EACCES;
12081 }
12082
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012083 if (attr.freq) {
12084 if (attr.sample_freq > sysctl_perf_event_sample_rate)
12085 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020012086 } else {
12087 if (attr.sample_period & (1ULL << 63))
12088 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012089 }
12090
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012091 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012092 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
12093 err = perf_allow_kernel(&attr);
12094 if (err)
12095 return err;
12096 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012097
Ondrej Mosnacek08ef1af2021-02-24 22:56:28 +010012098 /* REGS_INTR can leak data, lockdown must prevent this */
12099 if (attr.sample_type & PERF_SAMPLE_REGS_INTR) {
12100 err = security_locked_down(LOCKDOWN_PERF);
12101 if (err)
12102 return err;
12103 }
David Howellsb0c8fdc2019-08-19 17:18:00 -070012104
Stephane Eraniane5d13672011-02-14 11:20:01 +020012105 /*
12106 * In cgroup mode, the pid argument is used to pass the fd
12107 * opened to the cgroup directory in cgroupfs. The cpu argument
12108 * designates the cpu on which to monitor threads from that
12109 * cgroup.
12110 */
12111 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
12112 return -EINVAL;
12113
Yann Droneauda21b0b32014-01-05 21:36:33 +010012114 if (flags & PERF_FLAG_FD_CLOEXEC)
12115 f_flags |= O_CLOEXEC;
12116
12117 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012118 if (event_fd < 0)
12119 return event_fd;
12120
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012121 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040012122 err = perf_fget_light(group_fd, &group);
12123 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012124 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040012125 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012126 if (flags & PERF_FLAG_FD_OUTPUT)
12127 output_event = group_leader;
12128 if (flags & PERF_FLAG_FD_NO_GROUP)
12129 group_leader = NULL;
12130 }
12131
Stephane Eraniane5d13672011-02-14 11:20:01 +020012132 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012133 task = find_lively_task_by_vpid(pid);
12134 if (IS_ERR(task)) {
12135 err = PTR_ERR(task);
12136 goto err_group_fd;
12137 }
12138 }
12139
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012140 if (task && group_leader &&
12141 group_leader->attr.inherit != attr.inherit) {
12142 err = -EINVAL;
12143 goto err_task;
12144 }
12145
Matt Fleming79dff512015-01-23 18:45:42 +000012146 if (flags & PERF_FLAG_PID_CGROUP)
12147 cgroup_fd = pid;
12148
Avi Kivity4dc0da82011-06-29 18:42:35 +030012149 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012150 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012151 if (IS_ERR(event)) {
12152 err = PTR_ERR(event);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012153 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012154 }
12155
Vince Weaver53b25332014-05-16 17:12:12 -040012156 if (is_sampling_event(event)) {
12157 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053012158 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040012159 goto err_alloc;
12160 }
12161 }
12162
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012163 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012164 * Special case software events and allow them to be part of
12165 * any hardware group.
12166 */
12167 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012168
Peter Zijlstra34f43922015-02-20 14:05:38 +010012169 if (attr.use_clockid) {
12170 err = perf_event_set_clock(event, attr.clockid);
12171 if (err)
12172 goto err_alloc;
12173 }
12174
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012175 if (pmu->task_ctx_nr == perf_sw_context)
12176 event->event_caps |= PERF_EV_CAP_SOFTWARE;
12177
Song Liua1150c22018-05-03 12:47:16 -070012178 if (group_leader) {
12179 if (is_software_event(event) &&
12180 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012181 /*
Song Liua1150c22018-05-03 12:47:16 -070012182 * If the event is a sw event, but the group_leader
12183 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012184 *
Song Liua1150c22018-05-03 12:47:16 -070012185 * Allow the addition of software events to hw
12186 * groups, this is safe because software events
12187 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012188 */
Song Liua1150c22018-05-03 12:47:16 -070012189 pmu = group_leader->ctx->pmu;
12190 } else if (!is_software_event(event) &&
12191 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012192 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012193 /*
12194 * In case the group is a pure software group, and we
12195 * try to add a hardware event, move the whole group to
12196 * the hardware context.
12197 */
12198 move_group = 1;
12199 }
12200 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012201
12202 /*
12203 * Get the target context (task or percpu):
12204 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012205 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012206 if (IS_ERR(ctx)) {
12207 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012208 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012209 }
12210
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012211 /*
12212 * Look up the group leader (we will attach this event to it):
12213 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012214 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012215 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012216
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012217 /*
12218 * Do not allow a recursive hierarchy (this new sibling
12219 * becoming part of another group-sibling):
12220 */
12221 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012222 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012223
12224 /* All events in a group should have the same clock */
12225 if (group_leader->clock != event->clock)
12226 goto err_context;
12227
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012228 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010012229 * Make sure we're both events for the same CPU;
12230 * grouping events for different CPUs is broken; since
12231 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012232 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010012233 if (group_leader->cpu != event->cpu)
12234 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010012235
Mark Rutland64aee2a2017-06-22 15:41:38 +010012236 /*
12237 * Make sure we're both on the same task, or both
12238 * per-CPU events.
12239 */
12240 if (group_leader->ctx->task != ctx->task)
12241 goto err_context;
12242
12243 /*
12244 * Do not allow to attach to a group in a different task
12245 * or CPU context. If we're moving SW events, we'll fix
12246 * this up later, so allow that.
12247 */
12248 if (!move_group && group_leader->ctx != ctx)
12249 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012250
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012251 /*
12252 * Only a group leader can be exclusive or pinned
12253 */
12254 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012255 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012256 }
12257
12258 if (output_event) {
12259 err = perf_event_set_output(event, output_event);
12260 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012261 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012262 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012263
Yann Droneauda21b0b32014-01-05 21:36:33 +010012264 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
12265 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012266 if (IS_ERR(event_file)) {
12267 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020012268 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012269 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040012270 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012271
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012272 if (task) {
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012273 err = down_read_interruptible(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012274 if (err)
12275 goto err_file;
12276
12277 /*
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012278 * We must hold exec_update_lock across this and any potential
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012279 * perf_install_in_context() call for this new event to
12280 * serialize against exec() altering our credentials (and the
12281 * perf_event_exit_task() that could imply).
12282 */
12283 err = -EACCES;
Marco Elverb068fc02021-07-05 10:44:53 +020012284 if (!perf_check_permission(&attr, task))
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012285 goto err_cred;
12286 }
12287
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012288 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012289 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
12290
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012291 if (gctx->task == TASK_TOMBSTONE) {
12292 err = -ESRCH;
12293 goto err_locked;
12294 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010012295
12296 /*
12297 * Check if we raced against another sys_perf_event_open() call
12298 * moving the software group underneath us.
12299 */
12300 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
12301 /*
12302 * If someone moved the group out from under us, check
12303 * if this new event wound up on the same ctx, if so
12304 * its the regular !move_group case, otherwise fail.
12305 */
12306 if (gctx != ctx) {
12307 err = -EINVAL;
12308 goto err_locked;
12309 } else {
12310 perf_event_ctx_unlock(group_leader, gctx);
12311 move_group = 0;
12312 }
12313 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030012314
12315 /*
12316 * Failure to create exclusive events returns -EBUSY.
12317 */
12318 err = -EBUSY;
12319 if (!exclusive_event_installable(group_leader, ctx))
12320 goto err_locked;
12321
12322 for_each_sibling_event(sibling, group_leader) {
12323 if (!exclusive_event_installable(sibling, ctx))
12324 goto err_locked;
12325 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012326 } else {
12327 mutex_lock(&ctx->mutex);
12328 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012329
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012330 if (ctx->task == TASK_TOMBSTONE) {
12331 err = -ESRCH;
12332 goto err_locked;
12333 }
12334
Peter Zijlstraa7239682015-09-09 19:06:33 +020012335 if (!perf_event_validate_size(event)) {
12336 err = -E2BIG;
12337 goto err_locked;
12338 }
12339
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012340 if (!task) {
12341 /*
12342 * Check if the @cpu we're creating an event for is online.
12343 *
12344 * We use the perf_cpu_context::ctx::mutex to serialize against
12345 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12346 */
12347 struct perf_cpu_context *cpuctx =
12348 container_of(ctx, struct perf_cpu_context, ctx);
12349
12350 if (!cpuctx->online) {
12351 err = -ENODEV;
12352 goto err_locked;
12353 }
12354 }
12355
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012356 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
12357 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030012358 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012359 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012360
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012361 /*
12362 * Must be under the same ctx::mutex as perf_install_in_context(),
12363 * because we need to serialize with concurrent event creation.
12364 */
12365 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012366 err = -EBUSY;
12367 goto err_locked;
12368 }
12369
12370 WARN_ON_ONCE(ctx->parent_ctx);
12371
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012372 /*
12373 * This is the point on no return; we cannot fail hereafter. This is
12374 * where we start modifying current state.
12375 */
12376
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012377 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012378 /*
12379 * See perf_event_ctx_lock() for comments on the details
12380 * of swizzling perf_event::ctx.
12381 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012382 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010012383 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010012384
Peter Zijlstraedb39592018-03-15 17:36:56 +010012385 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012386 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012387 put_ctx(gctx);
12388 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012389
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012390 /*
12391 * Wait for everybody to stop referencing the events through
12392 * the old lists, before installing it on new lists.
12393 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012394 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012395
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012396 /*
12397 * Install the group siblings before the group leader.
12398 *
12399 * Because a group leader will try and install the entire group
12400 * (through the sibling list, which is still in-tact), we can
12401 * end up with siblings installed in the wrong context.
12402 *
12403 * By installing siblings first we NO-OP because they're not
12404 * reachable through the group lists.
12405 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012406 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012407 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010012408 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012409 get_ctx(ctx);
12410 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012411
12412 /*
12413 * Removing from the context ends up with disabled
12414 * event. What we want here is event in the initial
12415 * startup state, ready to be add into new context.
12416 */
12417 perf_event__state_init(group_leader);
12418 perf_install_in_context(ctx, group_leader, group_leader->cpu);
12419 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012420 }
12421
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020012422 /*
12423 * Precalculate sample_data sizes; do while holding ctx::mutex such
12424 * that we're serialized against further additions and before
12425 * perf_install_in_context() which is the point the event is active and
12426 * can use these values.
12427 */
12428 perf_event__header_size(event);
12429 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012430
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010012431 event->owner = current;
12432
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080012433 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012434 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012435
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012436 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012437 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012438 mutex_unlock(&ctx->mutex);
12439
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012440 if (task) {
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012441 up_read(&task->signal->exec_update_lock);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012442 put_task_struct(task);
12443 }
12444
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012445 mutex_lock(&current->perf_event_mutex);
12446 list_add_tail(&event->owner_entry, &current->perf_event_list);
12447 mutex_unlock(&current->perf_event_mutex);
12448
Peter Zijlstra8a495422010-05-27 15:47:49 +020012449 /*
12450 * Drop the reference on the group_event after placing the
12451 * new event on the sibling_list. This ensures destruction
12452 * of the group leader will find the pointer to itself in
12453 * perf_group_detach().
12454 */
Al Viro2903ff02012-08-28 12:52:22 -040012455 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012456 fd_install(event_fd, event_file);
12457 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012458
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012459err_locked:
12460 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012461 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012462 mutex_unlock(&ctx->mutex);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012463err_cred:
12464 if (task)
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012465 up_read(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012466err_file:
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012467 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012468err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012469 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040012470 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012471err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010012472 /*
12473 * If event_file is set, the fput() above will have called ->release()
12474 * and that will take care of freeing the event.
12475 */
12476 if (!event_file)
12477 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012478err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020012479 if (task)
12480 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012481err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040012482 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012483err_fd:
12484 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012485 return err;
12486}
12487
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012488/**
12489 * perf_event_create_kernel_counter
12490 *
12491 * @attr: attributes of the counter to create
12492 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070012493 * @task: task to profile (NULL for percpu)
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012494 * @overflow_handler: callback to trigger when we hit the event
12495 * @context: context data could be used in overflow_handler callback
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012496 */
12497struct perf_event *
12498perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070012499 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030012500 perf_overflow_handler_t overflow_handler,
12501 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012502{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012503 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012504 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012505 int err;
12506
Alexander Shishkindce5aff2019-10-30 15:47:31 +020012507 /*
12508 * Grouping is not supported for kernel events, neither is 'AUX',
12509 * make sure the caller's intentions are adjusted.
12510 */
12511 if (attr->aux_output)
12512 return ERR_PTR(-EINVAL);
12513
Avi Kivity4dc0da82011-06-29 18:42:35 +030012514 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012515 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012516 if (IS_ERR(event)) {
12517 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012518 goto err;
12519 }
12520
Jiri Olsaf8697762014-08-01 14:33:01 +020012521 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012522 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020012523
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020012524 /*
12525 * Get the target context (task or percpu):
12526 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012527 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012528 if (IS_ERR(ctx)) {
12529 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012530 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012531 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012532
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012533 WARN_ON_ONCE(ctx->parent_ctx);
12534 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012535 if (ctx->task == TASK_TOMBSTONE) {
12536 err = -ESRCH;
12537 goto err_unlock;
12538 }
12539
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012540 if (!task) {
12541 /*
12542 * Check if the @cpu we're creating an event for is online.
12543 *
12544 * We use the perf_cpu_context::ctx::mutex to serialize against
12545 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12546 */
12547 struct perf_cpu_context *cpuctx =
12548 container_of(ctx, struct perf_cpu_context, ctx);
12549 if (!cpuctx->online) {
12550 err = -ENODEV;
12551 goto err_unlock;
12552 }
12553 }
12554
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012555 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012556 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012557 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012558 }
12559
Leonard Crestez4ce54af2019-07-24 15:53:24 +030012560 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012561 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012562 mutex_unlock(&ctx->mutex);
12563
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012564 return event;
12565
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012566err_unlock:
12567 mutex_unlock(&ctx->mutex);
12568 perf_unpin_context(ctx);
12569 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012570err_free:
12571 free_event(event);
12572err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012573 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012574}
12575EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
12576
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012577void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12578{
12579 struct perf_event_context *src_ctx;
12580 struct perf_event_context *dst_ctx;
12581 struct perf_event *event, *tmp;
12582 LIST_HEAD(events);
12583
12584 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12585 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12586
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012587 /*
12588 * See perf_event_ctx_lock() for comments on the details
12589 * of swizzling perf_event::ctx.
12590 */
12591 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012592 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12593 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012594 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012595 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012596 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020012597 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012598 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012599
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012600 /*
12601 * Wait for the events to quiesce before re-instating them.
12602 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012603 synchronize_rcu();
12604
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012605 /*
12606 * Re-instate events in 2 passes.
12607 *
12608 * Skip over group leaders and only install siblings on this first
12609 * pass, siblings will not get enabled without a leader, however a
12610 * leader will enable its siblings, even if those are still on the old
12611 * context.
12612 */
12613 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12614 if (event->group_leader == event)
12615 continue;
12616
12617 list_del(&event->migrate_entry);
12618 if (event->state >= PERF_EVENT_STATE_OFF)
12619 event->state = PERF_EVENT_STATE_INACTIVE;
12620 account_event_cpu(event, dst_cpu);
12621 perf_install_in_context(dst_ctx, event, dst_cpu);
12622 get_ctx(dst_ctx);
12623 }
12624
12625 /*
12626 * Once all the siblings are setup properly, install the group leaders
12627 * to make it go.
12628 */
Peter Zijlstra98861672013-10-03 16:02:23 +020012629 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12630 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012631 if (event->state >= PERF_EVENT_STATE_OFF)
12632 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012633 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012634 perf_install_in_context(dst_ctx, event, dst_cpu);
12635 get_ctx(dst_ctx);
12636 }
12637 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012638 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012639}
12640EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12641
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012642static void sync_child_event(struct perf_event *child_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012643{
12644 struct perf_event *parent_event = child_event->parent;
12645 u64 child_val;
12646
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012647 if (child_event->attr.inherit_stat) {
12648 struct task_struct *task = child_event->ctx->task;
12649
12650 if (task && task != TASK_TOMBSTONE)
12651 perf_event_read_event(child_event, task);
12652 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012653
Peter Zijlstrab5e58792010-05-21 14:43:12 +020012654 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012655
12656 /*
12657 * Add back the child's count to the parent's count:
12658 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020012659 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012660 atomic64_add(child_event->total_time_enabled,
12661 &parent_event->child_total_time_enabled);
12662 atomic64_add(child_event->total_time_running,
12663 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012664}
12665
12666static void
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012667perf_event_exit_event(struct perf_event *event, struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012668{
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012669 struct perf_event *parent_event = event->parent;
12670 unsigned long detach_flags = 0;
12671
12672 if (parent_event) {
12673 /*
12674 * Do not destroy the 'original' grouping; because of the
12675 * context switch optimization the original events could've
12676 * ended up in a random child task.
12677 *
12678 * If we were to destroy the original group, all group related
12679 * operations would cease to function properly after this
12680 * random child dies.
12681 *
12682 * Do destroy all inherited groups, we don't care about those
12683 * and being thorough is better.
12684 */
12685 detach_flags = DETACH_GROUP | DETACH_CHILD;
12686 mutex_lock(&parent_event->child_mutex);
12687 }
12688
12689 perf_remove_from_context(event, detach_flags);
12690
12691 raw_spin_lock_irq(&ctx->lock);
12692 if (event->state > PERF_EVENT_STATE_EXIT)
12693 perf_event_set_state(event, PERF_EVENT_STATE_EXIT);
12694 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012695
Peter Zijlstra1903d502014-07-15 17:27:27 +020012696 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012697 * Child events can be freed.
Peter Zijlstra1903d502014-07-15 17:27:27 +020012698 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012699 if (parent_event) {
12700 mutex_unlock(&parent_event->child_mutex);
12701 /*
12702 * Kick perf_poll() for is_event_hup();
12703 */
12704 perf_event_wakeup(parent_event);
12705 free_event(event);
12706 put_event(parent_event);
12707 return;
12708 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012709
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012710 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012711 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012712 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012713 perf_event_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012714}
12715
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012716static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012717{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012718 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012719 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012720
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012721 WARN_ON_ONCE(child != current);
12722
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012723 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012724 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012725 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012726
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012727 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012728 * In order to reduce the amount of tricky in ctx tear-down, we hold
12729 * ctx::mutex over the entire thing. This serializes against almost
12730 * everything that wants to access the ctx.
12731 *
12732 * The exception is sys_perf_event_open() /
12733 * perf_event_create_kernel_count() which does find_get_context()
12734 * without ctx::mutex (it cannot because of the move_group double mutex
12735 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012736 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012737 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012738
12739 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012740 * In a single ctx::lock section, de-schedule the events and detach the
12741 * context from the task such that we cannot ever get it scheduled back
12742 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012743 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012744 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020012745 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012746
12747 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012748 * Now that the context is inactive, destroy the task <-> ctx relation
12749 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012750 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012751 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12752 put_ctx(child_ctx); /* cannot be last */
12753 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12754 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012755
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012756 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012757 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012758
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012759 if (clone_ctx)
12760 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012761
12762 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012763 * Report the task dead after unscheduling the events so that we
12764 * won't get any samples after PERF_RECORD_EXIT. We can however still
12765 * get a few PERF_RECORD_READ events.
12766 */
12767 perf_event_task(child, child_ctx, 0);
12768
Peter Zijlstraebf905f2014-05-29 19:00:24 +020012769 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012770 perf_event_exit_event(child_event, child_ctx);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012771
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012772 mutex_unlock(&child_ctx->mutex);
12773
12774 put_ctx(child_ctx);
12775}
12776
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012777/*
12778 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012779 *
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012780 * Can be called with exec_update_lock held when called from
Eric W. Biederman96ecee22020-05-03 06:48:17 -050012781 * setup_new_exec().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012782 */
12783void perf_event_exit_task(struct task_struct *child)
12784{
Peter Zijlstra88821352010-11-09 19:01:43 +010012785 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012786 int ctxn;
12787
Peter Zijlstra88821352010-11-09 19:01:43 +010012788 mutex_lock(&child->perf_event_mutex);
12789 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12790 owner_entry) {
12791 list_del_init(&event->owner_entry);
12792
12793 /*
12794 * Ensure the list deletion is visible before we clear
12795 * the owner, closes a race against perf_release() where
12796 * we need to serialize on the owner->perf_event_mutex.
12797 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010012798 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010012799 }
12800 mutex_unlock(&child->perf_event_mutex);
12801
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012802 for_each_task_context_nr(ctxn)
12803 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010012804
12805 /*
12806 * The perf_event_exit_task_context calls perf_event_task
12807 * with child's task_ctx, which generates EXIT events for
12808 * child contexts and sets child->perf_event_ctxp[] to NULL.
12809 * At this point we need to send EXIT events to cpu contexts.
12810 */
12811 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012812}
12813
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012814static void perf_free_event(struct perf_event *event,
12815 struct perf_event_context *ctx)
12816{
12817 struct perf_event *parent = event->parent;
12818
12819 if (WARN_ON_ONCE(!parent))
12820 return;
12821
12822 mutex_lock(&parent->child_mutex);
12823 list_del_init(&event->child_list);
12824 mutex_unlock(&parent->child_mutex);
12825
Al Viroa6fa9412012-08-20 14:59:25 +010012826 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012827
Peter Zijlstra652884f2015-01-23 11:20:10 +010012828 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020012829 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012830 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010012831 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012832 free_event(event);
12833}
12834
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012835/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012836 * Free a context as created by inheritance by perf_event_init_task() below,
12837 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010012838 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012839 * Even though the task has never lived, the context and events have been
12840 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012841 */
12842void perf_event_free_task(struct task_struct *task)
12843{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012844 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012845 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012846 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012847
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012848 for_each_task_context_nr(ctxn) {
12849 ctx = task->perf_event_ctxp[ctxn];
12850 if (!ctx)
12851 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012852
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012853 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012854 raw_spin_lock_irq(&ctx->lock);
12855 /*
12856 * Destroy the task <-> ctx relation and mark the context dead.
12857 *
12858 * This is important because even though the task hasn't been
12859 * exposed yet the context has been (through child_list).
12860 */
12861 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12862 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12863 put_task_struct(task); /* cannot be last */
12864 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012865
Peter Zijlstra15121c72017-03-16 13:47:50 +010012866 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012867 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012868
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012869 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012870
12871 /*
12872 * perf_event_release_kernel() could've stolen some of our
12873 * child events and still have them on its free_list. In that
12874 * case we must wait for these events to have been freed (in
12875 * particular all their references to this task must've been
12876 * dropped).
12877 *
12878 * Without this copy_process() will unconditionally free this
12879 * task (irrespective of its reference count) and
12880 * _free_event()'s put_task_struct(event->hw.target) will be a
12881 * use-after-free.
12882 *
12883 * Wait for all events to drop their context reference.
12884 */
12885 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12886 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012887 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012888}
12889
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012890void perf_event_delayed_put(struct task_struct *task)
12891{
12892 int ctxn;
12893
12894 for_each_task_context_nr(ctxn)
12895 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12896}
12897
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012898struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012899{
Al Viro02e5ad92019-06-26 20:43:53 -040012900 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012901 if (!file)
12902 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012903
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012904 if (file->f_op != &perf_fops) {
12905 fput(file);
12906 return ERR_PTR(-EBADF);
12907 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012908
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012909 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012910}
12911
Yonghong Songf8d959a2018-05-24 11:21:08 -070012912const struct perf_event *perf_get_event(struct file *file)
12913{
12914 if (file->f_op != &perf_fops)
12915 return ERR_PTR(-EINVAL);
12916
12917 return file->private_data;
12918}
12919
Kaixu Xiaffe86902015-08-06 07:02:32 +000012920const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12921{
12922 if (!event)
12923 return ERR_PTR(-EINVAL);
12924
12925 return &event->attr;
12926}
12927
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012928/*
Tobias Tefke788faab2018-07-09 12:57:15 +020012929 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012930 *
12931 * Returns:
12932 * - valid pointer on success
12933 * - NULL for orphaned events
12934 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012935 */
12936static struct perf_event *
12937inherit_event(struct perf_event *parent_event,
12938 struct task_struct *parent,
12939 struct perf_event_context *parent_ctx,
12940 struct task_struct *child,
12941 struct perf_event *group_leader,
12942 struct perf_event_context *child_ctx)
12943{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020012944 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012945 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020012946 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012947
12948 /*
12949 * Instead of creating recursive hierarchies of events,
12950 * we link inherited events back to the original parent,
12951 * which has a filp for sure, which we use as the reference
12952 * count:
12953 */
12954 if (parent_event->parent)
12955 parent_event = parent_event->parent;
12956
12957 child_event = perf_event_alloc(&parent_event->attr,
12958 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020012959 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012960 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000012961 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012962 if (IS_ERR(child_event))
12963 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010012964
Jiri Olsa313ccb92018-01-07 17:03:47 +010012965
12966 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12967 !child_ctx->task_ctx_data) {
12968 struct pmu *pmu = child_event->pmu;
12969
Kan Liangff9ff922020-07-03 05:49:21 -070012970 child_ctx->task_ctx_data = alloc_task_ctx_data(pmu);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012971 if (!child_ctx->task_ctx_data) {
12972 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020012973 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012974 }
12975 }
12976
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012977 /*
12978 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12979 * must be under the same lock in order to serialize against
12980 * perf_event_release_kernel(), such that either we must observe
12981 * is_orphaned_event() or they will observe us on the child_list.
12982 */
12983 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020012984 if (is_orphaned_event(parent_event) ||
12985 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012986 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012987 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010012988 free_event(child_event);
12989 return NULL;
12990 }
12991
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012992 get_ctx(child_ctx);
12993
12994 /*
12995 * Make the child state follow the state of the parent event,
12996 * not its attr.disabled bit. We hold the parent's mutex,
12997 * so we won't race with perf_event_{en, dis}able_family.
12998 */
Jiri Olsa1929def2014-09-12 13:18:27 +020012999 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013000 child_event->state = PERF_EVENT_STATE_INACTIVE;
13001 else
13002 child_event->state = PERF_EVENT_STATE_OFF;
13003
13004 if (parent_event->attr.freq) {
13005 u64 sample_period = parent_event->hw.sample_period;
13006 struct hw_perf_event *hwc = &child_event->hw;
13007
13008 hwc->sample_period = sample_period;
13009 hwc->last_period = sample_period;
13010
13011 local64_set(&hwc->period_left, sample_period);
13012 }
13013
13014 child_event->ctx = child_ctx;
13015 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030013016 child_event->overflow_handler_context
13017 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013018
13019 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020013020 * Precalculate sample_data sizes
13021 */
13022 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020013023 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020013024
13025 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013026 * Link it up in the child's context:
13027 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020013028 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013029 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020013030 child_event->attach_state |= PERF_ATTACH_CHILD;
Peter Zijlstracee010e2010-09-10 12:51:54 +020013031 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013032
13033 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013034 * Link this into the parent event's child list
13035 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013036 list_add_tail(&child_event->child_list, &parent_event->child_list);
13037 mutex_unlock(&parent_event->child_mutex);
13038
13039 return child_event;
13040}
13041
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013042/*
13043 * Inherits an event group.
13044 *
13045 * This will quietly suppress orphaned events; !inherit_event() is not an error.
13046 * This matches with perf_event_release_kernel() removing all child events.
13047 *
13048 * Returns:
13049 * - 0 on success
13050 * - <0 on error
13051 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013052static int inherit_group(struct perf_event *parent_event,
13053 struct task_struct *parent,
13054 struct perf_event_context *parent_ctx,
13055 struct task_struct *child,
13056 struct perf_event_context *child_ctx)
13057{
13058 struct perf_event *leader;
13059 struct perf_event *sub;
13060 struct perf_event *child_ctr;
13061
13062 leader = inherit_event(parent_event, parent, parent_ctx,
13063 child, NULL, child_ctx);
13064 if (IS_ERR(leader))
13065 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013066 /*
13067 * @leader can be NULL here because of is_orphaned_event(). In this
13068 * case inherit_event() will create individual events, similar to what
13069 * perf_group_detach() would do anyway.
13070 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010013071 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013072 child_ctr = inherit_event(sub, parent, parent_ctx,
13073 child, leader, child_ctx);
13074 if (IS_ERR(child_ctr))
13075 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013076
Alexander Shishkin00496fe2019-11-01 17:12:48 +020013077 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013078 !perf_get_aux_event(child_ctr, leader))
13079 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013080 }
13081 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013082}
13083
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013084/*
13085 * Creates the child task context and tries to inherit the event-group.
13086 *
13087 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
13088 * inherited_all set when we 'fail' to inherit an orphaned event; this is
13089 * consistent with perf_event_release_kernel() removing all child events.
13090 *
13091 * Returns:
13092 * - 0 on success
13093 * - <0 on error
13094 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013095static int
13096inherit_task_group(struct perf_event *event, struct task_struct *parent,
13097 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013098 struct task_struct *child, int ctxn,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013099 u64 clone_flags, int *inherited_all)
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013100{
13101 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013102 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013103
Marco Elver2b26f0a2021-04-08 12:35:58 +020013104 if (!event->attr.inherit ||
Marco Elver97ba62b2021-04-08 12:36:01 +020013105 (event->attr.inherit_thread && !(clone_flags & CLONE_THREAD)) ||
13106 /* Do not inherit if sigtrap and signal handlers were cleared. */
13107 (event->attr.sigtrap && (clone_flags & CLONE_CLEAR_SIGHAND))) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013108 *inherited_all = 0;
13109 return 0;
13110 }
13111
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013112 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013113 if (!child_ctx) {
13114 /*
13115 * This is executed from the parent task context, so
13116 * inherit events that have been marked for cloning.
13117 * First allocate and initialize a context for the
13118 * child.
13119 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020013120 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013121 if (!child_ctx)
13122 return -ENOMEM;
13123
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013124 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013125 }
13126
13127 ret = inherit_group(event, parent, parent_ctx,
13128 child, child_ctx);
13129
13130 if (ret)
13131 *inherited_all = 0;
13132
13133 return ret;
13134}
13135
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013136/*
13137 * Initialize the perf_event context in task_struct
13138 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013139static int perf_event_init_context(struct task_struct *child, int ctxn,
13140 u64 clone_flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013141{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013142 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013143 struct perf_event_context *cloned_ctx;
13144 struct perf_event *event;
13145 struct task_struct *parent = current;
13146 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013147 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013148 int ret = 0;
13149
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013150 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013151 return 0;
13152
13153 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013154 * If the parent's context is a clone, pin it so it won't get
13155 * swapped under us.
13156 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013157 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020013158 if (!parent_ctx)
13159 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013160
13161 /*
13162 * No need to check if parent_ctx != NULL here; since we saw
13163 * it non-NULL earlier, the only reason for it to become NULL
13164 * is if we exit, and since we're currently in the middle of
13165 * a fork we can't be exiting at the same time.
13166 */
13167
13168 /*
13169 * Lock the parent list. No need to lock the child - not PID
13170 * hashed yet and not running, so nobody can access it.
13171 */
13172 mutex_lock(&parent_ctx->mutex);
13173
13174 /*
13175 * We dont have to disable NMIs - we are only looking at
13176 * the list, not manipulating it:
13177 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013178 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013179 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013180 child, ctxn, clone_flags,
13181 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013182 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013183 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013184 }
13185
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013186 /*
13187 * We can't hold ctx->lock when iterating the ->flexible_group list due
13188 * to allocations, but we need to prevent rotation because
13189 * rotate_ctx() will change the list from interrupt context.
13190 */
13191 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13192 parent_ctx->rotate_disable = 1;
13193 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
13194
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013195 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013196 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013197 child, ctxn, clone_flags,
13198 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013199 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013200 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013201 }
13202
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013203 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13204 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013205
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013206 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013207
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010013208 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013209 /*
13210 * Mark the child context as a clone of the parent
13211 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013212 *
13213 * Note that if the parent is a clone, the holding of
13214 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013215 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013216 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013217 if (cloned_ctx) {
13218 child_ctx->parent_ctx = cloned_ctx;
13219 child_ctx->parent_gen = parent_ctx->parent_gen;
13220 } else {
13221 child_ctx->parent_ctx = parent_ctx;
13222 child_ctx->parent_gen = parent_ctx->generation;
13223 }
13224 get_ctx(child_ctx->parent_ctx);
13225 }
13226
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013227 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013228out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013229 mutex_unlock(&parent_ctx->mutex);
13230
13231 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013232 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013233
13234 return ret;
13235}
13236
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013237/*
13238 * Initialize the perf_event context in task_struct
13239 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013240int perf_event_init_task(struct task_struct *child, u64 clone_flags)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013241{
13242 int ctxn, ret;
13243
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010013244 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
13245 mutex_init(&child->perf_event_mutex);
13246 INIT_LIST_HEAD(&child->perf_event_list);
13247
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013248 for_each_task_context_nr(ctxn) {
Marco Elver2b26f0a2021-04-08 12:35:58 +020013249 ret = perf_event_init_context(child, ctxn, clone_flags);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013250 if (ret) {
13251 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013252 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013253 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013254 }
13255
13256 return 0;
13257}
13258
Paul Mackerras220b1402010-03-10 20:45:52 +110013259static void __init perf_event_init_all_cpus(void)
13260{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013261 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110013262 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110013263
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013264 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
13265
Paul Mackerras220b1402010-03-10 20:45:52 +110013266 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013267 swhash = &per_cpu(swevent_htable, cpu);
13268 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000013269 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070013270
13271 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
13272 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020013273
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080013274#ifdef CONFIG_CGROUP_PERF
13275 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
13276#endif
Kan Lianga5398bf2020-11-30 11:38:40 -080013277 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110013278 }
13279}
13280
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040013281static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013282{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013283 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013284
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013285 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000013286 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013287 struct swevent_hlist *hlist;
13288
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013289 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
13290 WARN_ON(!hlist);
13291 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013292 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013293 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013294}
13295
Dave Young2965faa2015-09-09 15:38:55 -070013296#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013297static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013298{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013299 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013300 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
13301 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013302
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013303 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020013304 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013305 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010013306 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013307 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013308}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013309
13310static void perf_event_exit_cpu_context(int cpu)
13311{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013312 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013313 struct perf_event_context *ctx;
13314 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013315
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013316 mutex_lock(&pmus_lock);
13317 list_for_each_entry(pmu, &pmus, entry) {
13318 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13319 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013320
13321 mutex_lock(&ctx->mutex);
13322 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013323 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013324 mutex_unlock(&ctx->mutex);
13325 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013326 cpumask_clear_cpu(cpu, perf_online_mask);
13327 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013328}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013329#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013330
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013331static void perf_event_exit_cpu_context(int cpu) { }
13332
13333#endif
13334
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013335int perf_event_init_cpu(unsigned int cpu)
13336{
13337 struct perf_cpu_context *cpuctx;
13338 struct perf_event_context *ctx;
13339 struct pmu *pmu;
13340
13341 perf_swevent_init_cpu(cpu);
13342
13343 mutex_lock(&pmus_lock);
13344 cpumask_set_cpu(cpu, perf_online_mask);
13345 list_for_each_entry(pmu, &pmus, entry) {
13346 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13347 ctx = &cpuctx->ctx;
13348
13349 mutex_lock(&ctx->mutex);
13350 cpuctx->online = 1;
13351 mutex_unlock(&ctx->mutex);
13352 }
13353 mutex_unlock(&pmus_lock);
13354
13355 return 0;
13356}
13357
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013358int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013359{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010013360 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013361 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013362}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013363
Peter Zijlstrac2774432010-12-08 15:29:02 +010013364static int
13365perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
13366{
13367 int cpu;
13368
13369 for_each_online_cpu(cpu)
13370 perf_event_exit_cpu(cpu);
13371
13372 return NOTIFY_OK;
13373}
13374
13375/*
13376 * Run the perf reboot notifier at the very last possible moment so that
13377 * the generic watchdog code runs as long as possible.
13378 */
13379static struct notifier_block perf_reboot_notifier = {
13380 .notifier_call = perf_reboot,
13381 .priority = INT_MIN,
13382};
13383
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013384void __init perf_event_init(void)
13385{
Jason Wessel3c502e72010-11-04 17:33:01 -050013386 int ret;
13387
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013388 idr_init(&pmu_idr);
13389
Paul Mackerras220b1402010-03-10 20:45:52 +110013390 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013391 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013392 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
13393 perf_pmu_register(&perf_cpu_clock, NULL, -1);
13394 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013395 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013396 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010013397 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050013398
13399 ret = init_hw_breakpoint();
13400 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020013401
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090013402 perf_event_cache = KMEM_CACHE(perf_event, SLAB_PANIC);
13403
Jiri Olsab01c3a02012-03-23 15:41:20 +010013404 /*
13405 * Build time assertion that we keep the data_head at the intended
13406 * location. IOW, validation we got the __reserved[] size right.
13407 */
13408 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
13409 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013410}
Peter Zijlstraabe43402010-11-17 23:17:37 +010013411
Cody P Schaferfd979c02015-01-30 13:45:57 -080013412ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
13413 char *page)
13414{
13415 struct perf_pmu_events_attr *pmu_attr =
13416 container_of(attr, struct perf_pmu_events_attr, attr);
13417
13418 if (pmu_attr->event_str)
13419 return sprintf(page, "%s\n", pmu_attr->event_str);
13420
13421 return 0;
13422}
Thomas Gleixner675965b2016-02-22 22:19:27 +000013423EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080013424
Peter Zijlstraabe43402010-11-17 23:17:37 +010013425static int __init perf_event_sysfs_init(void)
13426{
13427 struct pmu *pmu;
13428 int ret;
13429
13430 mutex_lock(&pmus_lock);
13431
13432 ret = bus_register(&pmu_bus);
13433 if (ret)
13434 goto unlock;
13435
13436 list_for_each_entry(pmu, &pmus, entry) {
13437 if (!pmu->name || pmu->type < 0)
13438 continue;
13439
13440 ret = pmu_dev_alloc(pmu);
13441 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
13442 }
13443 pmu_bus_running = 1;
13444 ret = 0;
13445
13446unlock:
13447 mutex_unlock(&pmus_lock);
13448
13449 return ret;
13450}
13451device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013452
13453#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040013454static struct cgroup_subsys_state *
13455perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013456{
13457 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020013458
Li Zefan1b15d052011-03-03 14:26:06 +080013459 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013460 if (!jc)
13461 return ERR_PTR(-ENOMEM);
13462
Stephane Eraniane5d13672011-02-14 11:20:01 +020013463 jc->info = alloc_percpu(struct perf_cgroup_info);
13464 if (!jc->info) {
13465 kfree(jc);
13466 return ERR_PTR(-ENOMEM);
13467 }
13468
Stephane Eraniane5d13672011-02-14 11:20:01 +020013469 return &jc->css;
13470}
13471
Tejun Heoeb954192013-08-08 20:11:23 -040013472static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013473{
Tejun Heoeb954192013-08-08 20:11:23 -040013474 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
13475
Stephane Eraniane5d13672011-02-14 11:20:01 +020013476 free_percpu(jc->info);
13477 kfree(jc);
13478}
13479
Namhyung Kim96aaab62020-03-25 21:45:28 +090013480static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
13481{
13482 perf_event_cgroup(css->cgroup);
13483 return 0;
13484}
13485
Stephane Eraniane5d13672011-02-14 11:20:01 +020013486static int __perf_cgroup_move(void *info)
13487{
13488 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013489 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013490 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013491 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013492 return 0;
13493}
13494
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013495static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013496{
Tejun Heobb9d97b2011-12-12 18:12:21 -080013497 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013498 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080013499
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013500 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080013501 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013502}
13503
Tejun Heo073219e2014-02-08 10:36:58 -050013504struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080013505 .css_alloc = perf_cgroup_css_alloc,
13506 .css_free = perf_cgroup_css_free,
Namhyung Kim96aaab62020-03-25 21:45:28 +090013507 .css_online = perf_cgroup_css_online,
Tejun Heobb9d97b2011-12-12 18:12:21 -080013508 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050013509 /*
13510 * Implicitly enable on dfl hierarchy so that perf events can
13511 * always be filtered by cgroup2 path as long as perf_event
13512 * controller is not mounted on a legacy hierarchy.
13513 */
13514 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040013515 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020013516};
13517#endif /* CONFIG_CGROUP_PERF */
Song Liuc22ac2a2021-09-10 11:33:50 -070013518
13519DEFINE_STATIC_CALL_RET0(perf_snapshot_branch_stack, perf_snapshot_branch_stack_t);