blob: 9fd65667bcb2df458fc1e5d2f0f6fb131b3e9aba [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++;
1811 if (event->attr.inherit_stat)
1812 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001813
Peter Zijlstra33238c52020-03-18 20:33:37 +01001814 if (event->state > PERF_EVENT_STATE_OFF)
1815 perf_cgroup_event_enable(event, ctx);
1816
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001817 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001818}
1819
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001820/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001821 * Initialize event state based on the perf_event_attr::disabled.
1822 */
1823static inline void perf_event__state_init(struct perf_event *event)
1824{
1825 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1826 PERF_EVENT_STATE_INACTIVE;
1827}
1828
Peter Zijlstraa7239682015-09-09 19:06:33 +02001829static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001830{
1831 int entry = sizeof(u64); /* value */
1832 int size = 0;
1833 int nr = 1;
1834
1835 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1836 size += sizeof(u64);
1837
1838 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1839 size += sizeof(u64);
1840
1841 if (event->attr.read_format & PERF_FORMAT_ID)
1842 entry += sizeof(u64);
1843
1844 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001845 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001846 size += sizeof(u64);
1847 }
1848
1849 size += entry * nr;
1850 event->read_size = size;
1851}
1852
Peter Zijlstraa7239682015-09-09 19:06:33 +02001853static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001854{
1855 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001856 u16 size = 0;
1857
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001858 if (sample_type & PERF_SAMPLE_IP)
1859 size += sizeof(data->ip);
1860
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001861 if (sample_type & PERF_SAMPLE_ADDR)
1862 size += sizeof(data->addr);
1863
1864 if (sample_type & PERF_SAMPLE_PERIOD)
1865 size += sizeof(data->period);
1866
Kan Liang2a6c6b72021-01-28 14:40:07 -08001867 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
1868 size += sizeof(data->weight.full);
Andi Kleenc3feedf2013-01-24 16:10:28 +01001869
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001870 if (sample_type & PERF_SAMPLE_READ)
1871 size += event->read_size;
1872
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001873 if (sample_type & PERF_SAMPLE_DATA_SRC)
1874 size += sizeof(data->data_src.val);
1875
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001876 if (sample_type & PERF_SAMPLE_TRANSACTION)
1877 size += sizeof(data->txn);
1878
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001879 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1880 size += sizeof(data->phys_addr);
1881
Namhyung Kim6546b192020-03-25 21:45:29 +09001882 if (sample_type & PERF_SAMPLE_CGROUP)
1883 size += sizeof(data->cgroup);
1884
Kan Liang8d97e712020-10-01 06:57:46 -07001885 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1886 size += sizeof(data->data_page_size);
1887
Stephane Eranian995f0882020-10-01 06:57:49 -07001888 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1889 size += sizeof(data->code_page_size);
1890
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001891 event->header_size = size;
1892}
1893
Peter Zijlstraa7239682015-09-09 19:06:33 +02001894/*
1895 * Called at perf_event creation and when events are attached/detached from a
1896 * group.
1897 */
1898static void perf_event__header_size(struct perf_event *event)
1899{
1900 __perf_event_read_size(event,
1901 event->group_leader->nr_siblings);
1902 __perf_event_header_size(event, event->attr.sample_type);
1903}
1904
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001905static void perf_event__id_header_size(struct perf_event *event)
1906{
1907 struct perf_sample_data *data;
1908 u64 sample_type = event->attr.sample_type;
1909 u16 size = 0;
1910
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001911 if (sample_type & PERF_SAMPLE_TID)
1912 size += sizeof(data->tid_entry);
1913
1914 if (sample_type & PERF_SAMPLE_TIME)
1915 size += sizeof(data->time);
1916
Adrian Hunterff3d5272013-08-27 11:23:07 +03001917 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1918 size += sizeof(data->id);
1919
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001920 if (sample_type & PERF_SAMPLE_ID)
1921 size += sizeof(data->id);
1922
1923 if (sample_type & PERF_SAMPLE_STREAM_ID)
1924 size += sizeof(data->stream_id);
1925
1926 if (sample_type & PERF_SAMPLE_CPU)
1927 size += sizeof(data->cpu_entry);
1928
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001929 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001930}
1931
Peter Zijlstraa7239682015-09-09 19:06:33 +02001932static bool perf_event_validate_size(struct perf_event *event)
1933{
1934 /*
1935 * The values computed here will be over-written when we actually
1936 * attach the event.
1937 */
1938 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1939 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1940 perf_event__id_header_size(event);
1941
1942 /*
1943 * Sum the lot; should not exceed the 64k limit we have on records.
1944 * Conservative limit to allow for callchains and other variable fields.
1945 */
1946 if (event->read_size + event->header_size +
1947 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1948 return false;
1949
1950 return true;
1951}
1952
Peter Zijlstra8a495422010-05-27 15:47:49 +02001953static void perf_group_attach(struct perf_event *event)
1954{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001955 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001956
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001957 lockdep_assert_held(&event->ctx->lock);
1958
Peter Zijlstra74c33372010-10-15 11:40:29 +02001959 /*
1960 * We can have double attach due to group movement in perf_event_open.
1961 */
1962 if (event->attach_state & PERF_ATTACH_GROUP)
1963 return;
1964
Peter Zijlstra8a495422010-05-27 15:47:49 +02001965 event->attach_state |= PERF_ATTACH_GROUP;
1966
1967 if (group_leader == event)
1968 return;
1969
Peter Zijlstra652884f2015-01-23 11:20:10 +01001970 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1971
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001972 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001973
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001974 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001975 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001976
1977 perf_event__header_size(group_leader);
1978
Peter Zijlstraedb39592018-03-15 17:36:56 +01001979 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001980 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001981}
1982
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001983/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001984 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985 * Must be called with ctx->mutex and ctx->lock held.
1986 */
1987static void
1988list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1989{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001990 WARN_ON_ONCE(event->ctx != ctx);
1991 lockdep_assert_held(&ctx->lock);
1992
Peter Zijlstra8a495422010-05-27 15:47:49 +02001993 /*
1994 * We can have double detach due to exit/hot-unplug + close.
1995 */
1996 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001998
1999 event->attach_state &= ~PERF_ATTACH_CONTEXT;
2000
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002001 ctx->nr_events--;
2002 if (event->attr.inherit_stat)
2003 ctx->nr_stat--;
2004
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002005 list_del_rcu(&event->event_entry);
2006
Peter Zijlstra8a495422010-05-27 15:47:49 +02002007 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002008 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002009
Stephane Eranianb2e74a22009-11-26 09:24:30 -08002010 /*
2011 * If event was in error state, then keep it
2012 * that way, otherwise bogus counts will be
2013 * returned on read(). The only way to get out
2014 * of error state is by explicit re-enabling
2015 * of the event
2016 */
Peter Zijlstra33238c52020-03-18 20:33:37 +01002017 if (event->state > PERF_EVENT_STATE_OFF) {
2018 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002019 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002020 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002021
2022 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002023}
2024
Alexander Shishkinab437622019-08-06 11:46:00 +03002025static int
2026perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
2027{
2028 if (!has_aux(aux_event))
2029 return 0;
2030
2031 if (!event->pmu->aux_output_match)
2032 return 0;
2033
2034 return event->pmu->aux_output_match(aux_event);
2035}
2036
2037static void put_event(struct perf_event *event);
2038static void event_sched_out(struct perf_event *event,
2039 struct perf_cpu_context *cpuctx,
2040 struct perf_event_context *ctx);
2041
2042static void perf_put_aux_event(struct perf_event *event)
2043{
2044 struct perf_event_context *ctx = event->ctx;
2045 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2046 struct perf_event *iter;
2047
2048 /*
2049 * If event uses aux_event tear down the link
2050 */
2051 if (event->aux_event) {
2052 iter = event->aux_event;
2053 event->aux_event = NULL;
2054 put_event(iter);
2055 return;
2056 }
2057
2058 /*
2059 * If the event is an aux_event, tear down all links to
2060 * it from other events.
2061 */
2062 for_each_sibling_event(iter, event->group_leader) {
2063 if (iter->aux_event != event)
2064 continue;
2065
2066 iter->aux_event = NULL;
2067 put_event(event);
2068
2069 /*
2070 * If it's ACTIVE, schedule it out and put it into ERROR
2071 * state so that we don't try to schedule it again. Note
2072 * that perf_event_enable() will clear the ERROR status.
2073 */
2074 event_sched_out(iter, cpuctx, ctx);
2075 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2076 }
2077}
2078
Alexander Shishkina4faf002019-10-25 17:08:33 +03002079static bool perf_need_aux_event(struct perf_event *event)
2080{
2081 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
2082}
2083
Alexander Shishkinab437622019-08-06 11:46:00 +03002084static int perf_get_aux_event(struct perf_event *event,
2085 struct perf_event *group_leader)
2086{
2087 /*
2088 * Our group leader must be an aux event if we want to be
2089 * an aux_output. This way, the aux event will precede its
2090 * aux_output events in the group, and therefore will always
2091 * schedule first.
2092 */
2093 if (!group_leader)
2094 return 0;
2095
Alexander Shishkina4faf002019-10-25 17:08:33 +03002096 /*
2097 * aux_output and aux_sample_size are mutually exclusive.
2098 */
2099 if (event->attr.aux_output && event->attr.aux_sample_size)
2100 return 0;
2101
2102 if (event->attr.aux_output &&
2103 !perf_aux_output_match(event, group_leader))
2104 return 0;
2105
2106 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
Alexander Shishkinab437622019-08-06 11:46:00 +03002107 return 0;
2108
2109 if (!atomic_long_inc_not_zero(&group_leader->refcount))
2110 return 0;
2111
2112 /*
2113 * Link aux_outputs to their aux event; this is undone in
2114 * perf_group_detach() by perf_put_aux_event(). When the
2115 * group in torn down, the aux_output events loose their
2116 * link to the aux_event and can't schedule any more.
2117 */
2118 event->aux_event = group_leader;
2119
2120 return 1;
2121}
2122
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002123static inline struct list_head *get_event_list(struct perf_event *event)
2124{
2125 struct perf_event_context *ctx = event->ctx;
2126 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
2127}
2128
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002129/*
2130 * Events that have PERF_EV_CAP_SIBLING require being part of a group and
2131 * cannot exist on their own, schedule them out and move them into the ERROR
2132 * state. Also see _perf_event_enable(), it will not be able to recover
2133 * this ERROR state.
2134 */
2135static inline void perf_remove_sibling_event(struct perf_event *event)
2136{
2137 struct perf_event_context *ctx = event->ctx;
2138 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2139
2140 event_sched_out(event, cpuctx, ctx);
2141 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2142}
2143
Peter Zijlstra8a495422010-05-27 15:47:49 +02002144static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02002145{
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002146 struct perf_event *leader = event->group_leader;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002147 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01002148 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002149
Peter Zijlstra66681282017-11-13 14:28:38 +01002150 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002151
Peter Zijlstra8a495422010-05-27 15:47:49 +02002152 /*
2153 * We can have double detach due to exit/hot-unplug + close.
2154 */
2155 if (!(event->attach_state & PERF_ATTACH_GROUP))
2156 return;
2157
2158 event->attach_state &= ~PERF_ATTACH_GROUP;
2159
Alexander Shishkinab437622019-08-06 11:46:00 +03002160 perf_put_aux_event(event);
2161
Peter Zijlstra8a495422010-05-27 15:47:49 +02002162 /*
2163 * If this is a sibling, remove it from its group.
2164 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002165 if (leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002166 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002167 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002168 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002169 }
2170
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002171 /*
2172 * If this was a group event with sibling events then
2173 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002174 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002176 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002177
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002178 if (sibling->event_caps & PERF_EV_CAP_SIBLING)
2179 perf_remove_sibling_event(sibling);
2180
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002181 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002182 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002183
2184 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002185 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002186
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002187 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002188 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002189
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002190 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2191 list_add_tail(&sibling->active_list, get_event_list(sibling));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002192 }
2193
Peter Zijlstra652884f2015-01-23 11:20:10 +01002194 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002195 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002196
2197out:
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002198 for_each_sibling_event(tmp, leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002199 perf_event__header_size(tmp);
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002200
2201 perf_event__header_size(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002202}
2203
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002204static void sync_child_event(struct perf_event *child_event);
2205
2206static void perf_child_detach(struct perf_event *event)
2207{
2208 struct perf_event *parent_event = event->parent;
2209
2210 if (!(event->attach_state & PERF_ATTACH_CHILD))
2211 return;
2212
2213 event->attach_state &= ~PERF_ATTACH_CHILD;
2214
2215 if (WARN_ON_ONCE(!parent_event))
2216 return;
2217
2218 lockdep_assert_held(&parent_event->child_mutex);
2219
2220 sync_child_event(event);
2221 list_del_init(&event->child_list);
2222}
2223
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002224static bool is_orphaned_event(struct perf_event *event)
2225{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002226 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002227}
2228
Mark Rutland2c81a642016-06-14 16:10:41 +01002229static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002230{
2231 struct pmu *pmu = event->pmu;
2232 return pmu->filter_match ? pmu->filter_match(event) : 1;
2233}
2234
Mark Rutland2c81a642016-06-14 16:10:41 +01002235/*
2236 * Check whether we should attempt to schedule an event group based on
2237 * PMU-specific filtering. An event group can consist of HW and SW events,
2238 * potentially with a SW leader, so we must check all the filters, to
2239 * determine whether a group is schedulable:
2240 */
2241static inline int pmu_filter_match(struct perf_event *event)
2242{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002243 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002244
2245 if (!__pmu_filter_match(event))
2246 return 0;
2247
Peter Zijlstraedb39592018-03-15 17:36:56 +01002248 for_each_sibling_event(sibling, event) {
2249 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002250 return 0;
2251 }
2252
2253 return 1;
2254}
2255
Stephane Eranianfa66f072010-08-26 16:40:01 +02002256static inline int
2257event_filter_match(struct perf_event *event)
2258{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002259 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2260 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002261}
2262
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002263static void
2264event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002265 struct perf_cpu_context *cpuctx,
2266 struct perf_event_context *ctx)
2267{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002268 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002269
2270 WARN_ON_ONCE(event->ctx != ctx);
2271 lockdep_assert_held(&ctx->lock);
2272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002273 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002274 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002275
Peter Zijlstra66681282017-11-13 14:28:38 +01002276 /*
2277 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2278 * we can schedule events _OUT_ individually through things like
2279 * __perf_remove_from_context().
2280 */
2281 list_del_init(&event->active_list);
2282
Alexander Shishkin44377272013-12-16 14:17:36 +02002283 perf_pmu_disable(event->pmu);
2284
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002285 event->pmu->del(event, 0);
2286 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002287
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002288 if (READ_ONCE(event->pending_disable) >= 0) {
2289 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002290 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002291 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002292 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002293 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002294
2295 if (!is_software_event(event))
2296 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002297 if (!--ctx->nr_active)
2298 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002299 if (event->attr.freq && event->attr.sample_freq)
2300 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002301 if (event->attr.exclusive || !cpuctx->active_oncpu)
2302 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002303
2304 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002305}
2306
2307static void
2308group_sched_out(struct perf_event *group_event,
2309 struct perf_cpu_context *cpuctx,
2310 struct perf_event_context *ctx)
2311{
2312 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002313
2314 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2315 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002316
Mark Rutland3f005e72016-07-26 18:12:21 +01002317 perf_pmu_disable(ctx->pmu);
2318
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002319 event_sched_out(group_event, cpuctx, ctx);
2320
2321 /*
2322 * Schedule out siblings (if any):
2323 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002324 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002325 event_sched_out(event, cpuctx, ctx);
2326
Mark Rutland3f005e72016-07-26 18:12:21 +01002327 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002328}
2329
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002330#define DETACH_GROUP 0x01UL
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002331#define DETACH_CHILD 0x02UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002332
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002333/*
2334 * Cross CPU call to remove a performance event
2335 *
2336 * We disable the event on the hardware level first. After that we
2337 * remove it from the context list.
2338 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002339static void
2340__perf_remove_from_context(struct perf_event *event,
2341 struct perf_cpu_context *cpuctx,
2342 struct perf_event_context *ctx,
2343 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002344{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002345 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002346
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002347 if (ctx->is_active & EVENT_TIME) {
2348 update_context_time(ctx);
2349 update_cgrp_time_from_cpuctx(cpuctx);
2350 }
2351
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002352 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002353 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002354 perf_group_detach(event);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002355 if (flags & DETACH_CHILD)
2356 perf_child_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002358
Peter Zijlstra39a43642016-01-11 12:46:35 +01002359 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002360 ctx->is_active = 0;
Peter Zijlstra90c91df2020-03-05 13:38:51 +01002361 ctx->rotate_necessary = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002362 if (ctx->task) {
2363 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2364 cpuctx->task_ctx = NULL;
2365 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002366 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002367}
2368
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002369/*
2370 * Remove the event from a task's (or a CPU's) list of events.
2371 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372 * If event->ctx is a cloned context, callers must make sure that
2373 * every task struct that event->ctx->task could possibly point to
2374 * remains valid. This is OK when called from perf_release since
2375 * that only calls us on the top-level context, which can't be a clone.
2376 * When called from perf_event_exit_task, it's OK because the
2377 * context has been detached from its task.
2378 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002379static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002380{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002381 struct perf_event_context *ctx = event->ctx;
2382
2383 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002384
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002385 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002386 * Because of perf_event_exit_task(), perf_remove_from_context() ought
2387 * to work in the face of TASK_TOMBSTONE, unlike every other
2388 * event_function_call() user.
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002389 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002390 raw_spin_lock_irq(&ctx->lock);
2391 if (!ctx->is_active) {
2392 __perf_remove_from_context(event, __get_cpu_context(ctx),
2393 ctx, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002394 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002395 return;
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002396 }
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002397 raw_spin_unlock_irq(&ctx->lock);
2398
2399 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002400}
2401
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002402/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002403 * Cross CPU call to disable a performance event
2404 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002405static void __perf_event_disable(struct perf_event *event,
2406 struct perf_cpu_context *cpuctx,
2407 struct perf_event_context *ctx,
2408 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002409{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002410 if (event->state < PERF_EVENT_STATE_INACTIVE)
2411 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002412
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002413 if (ctx->is_active & EVENT_TIME) {
2414 update_context_time(ctx);
2415 update_cgrp_time_from_event(event);
2416 }
2417
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002418 if (event == event->group_leader)
2419 group_sched_out(event, cpuctx, ctx);
2420 else
2421 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002422
2423 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002424 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002425}
2426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002427/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002428 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429 *
2430 * If event->ctx is a cloned context, callers must make sure that
2431 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002432 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002433 * perf_event_for_each_child or perf_event_for_each because they
2434 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002435 * goes to exit will block in perf_event_exit_event().
2436 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002437 * When called from perf_pending_event it's OK because event->ctx
2438 * is the current context on this CPU and preemption is disabled,
2439 * hence we can't get into perf_event_task_sched_out for this context.
2440 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002441static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002442{
2443 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002445 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002446 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002447 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002448 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002449 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002450 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002451
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002452 event_function_call(event, __perf_event_disable, NULL);
2453}
2454
2455void perf_event_disable_local(struct perf_event *event)
2456{
2457 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002458}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002459
2460/*
2461 * Strictly speaking kernel users cannot create groups and therefore this
2462 * interface does not need the perf_event_ctx_lock() magic.
2463 */
2464void perf_event_disable(struct perf_event *event)
2465{
2466 struct perf_event_context *ctx;
2467
2468 ctx = perf_event_ctx_lock(event);
2469 _perf_event_disable(event);
2470 perf_event_ctx_unlock(event, ctx);
2471}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002472EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002473
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002474void perf_event_disable_inatomic(struct perf_event *event)
2475{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002476 WRITE_ONCE(event->pending_disable, smp_processor_id());
2477 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002478 irq_work_queue(&event->pending);
2479}
2480
Stephane Eraniane5d13672011-02-14 11:20:01 +02002481static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002482 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002483{
2484 /*
2485 * use the correct time source for the time snapshot
2486 *
2487 * We could get by without this by leveraging the
2488 * fact that to get to this function, the caller
2489 * has most likely already called update_context_time()
2490 * and update_cgrp_time_xx() and thus both timestamp
2491 * are identical (or very close). Given that tstamp is,
2492 * already adjusted for cgroup, we could say that:
2493 * tstamp - ctx->timestamp
2494 * is equivalent to
2495 * tstamp - cgrp->timestamp.
2496 *
2497 * Then, in perf_output_read(), the calculation would
2498 * work with no changes because:
2499 * - event is guaranteed scheduled in
2500 * - no scheduled out in between
2501 * - thus the timestamp would be the same
2502 *
2503 * But this is a bit hairy.
2504 *
2505 * So instead, we have an explicit cgroup call to remain
Randy Dunlapc034f482021-02-25 17:21:10 -08002506 * within the time source all along. We believe it
Stephane Eraniane5d13672011-02-14 11:20:01 +02002507 * is cleaner and simpler to understand.
2508 */
2509 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002510 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002511 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002512 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002513}
2514
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002515#define MAX_INTERRUPTS (~0ULL)
2516
2517static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002518static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002519
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002520static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002521event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002522 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002523 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002524{
Alexander Shishkin44377272013-12-16 14:17:36 +02002525 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002526
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002527 WARN_ON_ONCE(event->ctx != ctx);
2528
Peter Zijlstra63342412014-05-05 11:49:16 +02002529 lockdep_assert_held(&ctx->lock);
2530
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002531 if (event->state <= PERF_EVENT_STATE_OFF)
2532 return 0;
2533
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002534 WRITE_ONCE(event->oncpu, smp_processor_id());
2535 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002536 * Order event::oncpu write to happen before the ACTIVE state is
2537 * visible. This allows perf_event_{stop,read}() to observe the correct
2538 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002539 */
2540 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002541 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002542
2543 /*
2544 * Unthrottle events, since we scheduled we might have missed several
2545 * ticks already, also for a heavily scheduling task there is little
2546 * guarantee it'll get a tick in a timely manner.
2547 */
2548 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2549 perf_log_throttle(event, 1);
2550 event->hw.interrupts = 0;
2551 }
2552
Alexander Shishkin44377272013-12-16 14:17:36 +02002553 perf_pmu_disable(event->pmu);
2554
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002555 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002556
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002557 perf_log_itrace_start(event);
2558
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002559 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002560 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002561 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002562 ret = -EAGAIN;
2563 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002564 }
2565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002566 if (!is_software_event(event))
2567 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002568 if (!ctx->nr_active++)
2569 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002570 if (event->attr.freq && event->attr.sample_freq)
2571 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002572
2573 if (event->attr.exclusive)
2574 cpuctx->exclusive = 1;
2575
Alexander Shishkin44377272013-12-16 14:17:36 +02002576out:
2577 perf_pmu_enable(event->pmu);
2578
2579 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002580}
2581
2582static int
2583group_sched_in(struct perf_event *group_event,
2584 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002585 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002586{
Lin Ming6bde9b62010-04-23 13:56:00 +08002587 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002588 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002589
2590 if (group_event->state == PERF_EVENT_STATE_OFF)
2591 return 0;
2592
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002593 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002594
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002595 if (event_sched_in(group_event, cpuctx, ctx))
2596 goto error;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002597
2598 /*
2599 * Schedule in siblings as one group (if any):
2600 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002601 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002602 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002603 partial_group = event;
2604 goto group_error;
2605 }
2606 }
2607
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002608 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002609 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002610
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002611group_error:
2612 /*
2613 * Groups can be scheduled in as one unit only, so undo any
2614 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002615 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002616 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002617 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002618 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002619 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002620
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002621 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002623 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002624
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002625error:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002626 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002627 return -EAGAIN;
2628}
2629
2630/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002631 * Work out whether we can put this event group on the CPU now.
2632 */
2633static int group_can_go_on(struct perf_event *event,
2634 struct perf_cpu_context *cpuctx,
2635 int can_add_hw)
2636{
2637 /*
2638 * Groups consisting entirely of software events can always go on.
2639 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002640 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002641 return 1;
2642 /*
2643 * If an exclusive group is already on, no other hardware
2644 * events can go on.
2645 */
2646 if (cpuctx->exclusive)
2647 return 0;
2648 /*
2649 * If this group is exclusive and there are already
2650 * events on the CPU, it can't go on.
2651 */
Peter Zijlstra1908dc92020-10-29 16:32:22 +01002652 if (event->attr.exclusive && !list_empty(get_event_list(event)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002653 return 0;
2654 /*
2655 * Otherwise, try to add it if all previous groups were able
2656 * to go on.
2657 */
2658 return can_add_hw;
2659}
2660
2661static void add_event_to_ctx(struct perf_event *event,
2662 struct perf_event_context *ctx)
2663{
2664 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002665 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002666}
2667
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002668static void ctx_sched_out(struct perf_event_context *ctx,
2669 struct perf_cpu_context *cpuctx,
2670 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002671static void
2672ctx_sched_in(struct perf_event_context *ctx,
2673 struct perf_cpu_context *cpuctx,
2674 enum event_type_t event_type,
2675 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002676
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002677static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002678 struct perf_event_context *ctx,
2679 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002680{
2681 if (!cpuctx->task_ctx)
2682 return;
2683
2684 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2685 return;
2686
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002687 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002688}
2689
Peter Zijlstradce58552011-04-09 21:17:46 +02002690static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2691 struct perf_event_context *ctx,
2692 struct task_struct *task)
2693{
2694 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2695 if (ctx)
2696 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2697 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2698 if (ctx)
2699 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2700}
2701
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002702/*
2703 * We want to maintain the following priority of scheduling:
2704 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2705 * - task pinned (EVENT_PINNED)
2706 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2707 * - task flexible (EVENT_FLEXIBLE).
2708 *
2709 * In order to avoid unscheduling and scheduling back in everything every
2710 * time an event is added, only do it for the groups of equal priority and
2711 * below.
2712 *
2713 * This can be called after a batch operation on task events, in which case
2714 * event_type is a bit mask of the types of events involved. For CPU events,
2715 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2716 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002717static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002718 struct perf_event_context *task_ctx,
2719 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002720{
Song Liubd903af2018-03-05 21:55:04 -08002721 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002722 bool cpu_event = !!(event_type & EVENT_CPU);
2723
2724 /*
2725 * If pinned groups are involved, flexible groups also need to be
2726 * scheduled out.
2727 */
2728 if (event_type & EVENT_PINNED)
2729 event_type |= EVENT_FLEXIBLE;
2730
Song Liubd903af2018-03-05 21:55:04 -08002731 ctx_event_type = event_type & EVENT_ALL;
2732
Peter Zijlstra3e349502016-01-08 10:01:18 +01002733 perf_pmu_disable(cpuctx->ctx.pmu);
2734 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002735 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2736
2737 /*
2738 * Decide which cpu ctx groups to schedule out based on the types
2739 * of events that caused rescheduling:
2740 * - EVENT_CPU: schedule out corresponding groups;
2741 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2742 * - otherwise, do nothing more.
2743 */
2744 if (cpu_event)
2745 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2746 else if (ctx_event_type & EVENT_PINNED)
2747 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2748
Peter Zijlstra3e349502016-01-08 10:01:18 +01002749 perf_event_sched_in(cpuctx, task_ctx, current);
2750 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002751}
2752
Stephane Eranianc68d2242019-04-08 10:32:51 -07002753void perf_pmu_resched(struct pmu *pmu)
2754{
2755 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2756 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2757
2758 perf_ctx_lock(cpuctx, task_ctx);
2759 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2760 perf_ctx_unlock(cpuctx, task_ctx);
2761}
2762
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002763/*
2764 * Cross CPU call to install and enable a performance event
2765 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002766 * Very similar to remote_function() + event_function() but cannot assume that
2767 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002768 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002769static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002770{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002771 struct perf_event *event = info;
2772 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002773 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002774 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002775 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002776 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002777
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002778 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002779 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002780 raw_spin_lock(&ctx->lock);
2781 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002782
Peter Zijlstra63cae122016-12-09 14:59:00 +01002783 reprogram = (ctx->task == current);
2784
2785 /*
2786 * If the task is running, it must be running on this CPU,
2787 * otherwise we cannot reprogram things.
2788 *
2789 * If its not running, we don't care, ctx->lock will
2790 * serialize against it becoming runnable.
2791 */
2792 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002793 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002794 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002795 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002796
Peter Zijlstra63cae122016-12-09 14:59:00 +01002797 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002798 } else if (task_ctx) {
2799 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002800 }
2801
leilei.lin33801b92018-03-06 17:36:37 +08002802#ifdef CONFIG_CGROUP_PERF
Peter Zijlstra33238c52020-03-18 20:33:37 +01002803 if (event->state > PERF_EVENT_STATE_OFF && is_cgroup_event(event)) {
leilei.lin33801b92018-03-06 17:36:37 +08002804 /*
2805 * If the current cgroup doesn't match the event's
2806 * cgroup, we should not try to schedule it.
2807 */
2808 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2809 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2810 event->cgrp->css.cgroup);
2811 }
2812#endif
2813
Peter Zijlstra63cae122016-12-09 14:59:00 +01002814 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002815 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2816 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002817 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002818 } else {
2819 add_event_to_ctx(event, ctx);
2820 }
2821
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002822unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002823 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002824
Peter Zijlstraa0963092016-02-24 18:45:50 +01002825 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002826}
2827
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002828static bool exclusive_event_installable(struct perf_event *event,
2829 struct perf_event_context *ctx);
2830
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002831/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002832 * Attach a performance event to a context.
2833 *
2834 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002835 */
2836static void
2837perf_install_in_context(struct perf_event_context *ctx,
2838 struct perf_event *event,
2839 int cpu)
2840{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002841 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002842
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002843 lockdep_assert_held(&ctx->mutex);
2844
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002845 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2846
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002847 if (event->cpu != -1)
2848 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002849
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002850 /*
2851 * Ensures that if we can observe event->ctx, both the event and ctx
2852 * will be 'complete'. See perf_iterate_sb_cpu().
2853 */
2854 smp_store_release(&event->ctx, ctx);
2855
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002856 /*
2857 * perf_event_attr::disabled events will not run and can be initialized
2858 * without IPI. Except when this is the first event for the context, in
2859 * that case we need the magic of the IPI to set ctx->is_active.
2860 *
2861 * The IOC_ENABLE that is sure to follow the creation of a disabled
2862 * event will issue the IPI and reprogram the hardware.
2863 */
2864 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && ctx->nr_events) {
2865 raw_spin_lock_irq(&ctx->lock);
2866 if (ctx->task == TASK_TOMBSTONE) {
2867 raw_spin_unlock_irq(&ctx->lock);
2868 return;
2869 }
2870 add_event_to_ctx(event, ctx);
2871 raw_spin_unlock_irq(&ctx->lock);
2872 return;
2873 }
2874
Peter Zijlstraa0963092016-02-24 18:45:50 +01002875 if (!task) {
2876 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002877 return;
2878 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002879
Peter Zijlstraa0963092016-02-24 18:45:50 +01002880 /*
2881 * Should not happen, we validate the ctx is still alive before calling.
2882 */
2883 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2884 return;
2885
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002886 /*
2887 * Installing events is tricky because we cannot rely on ctx->is_active
2888 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002889 *
2890 * Instead we use task_curr(), which tells us if the task is running.
2891 * However, since we use task_curr() outside of rq::lock, we can race
2892 * against the actual state. This means the result can be wrong.
2893 *
2894 * If we get a false positive, we retry, this is harmless.
2895 *
2896 * If we get a false negative, things are complicated. If we are after
2897 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2898 * value must be correct. If we're before, it doesn't matter since
2899 * perf_event_context_sched_in() will program the counter.
2900 *
2901 * However, this hinges on the remote context switch having observed
2902 * our task->perf_event_ctxp[] store, such that it will in fact take
2903 * ctx::lock in perf_event_context_sched_in().
2904 *
2905 * We do this by task_function_call(), if the IPI fails to hit the task
2906 * we know any future context switch of task must see the
2907 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002908 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002909
Peter Zijlstraa0963092016-02-24 18:45:50 +01002910 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002911 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2912 * task_cpu() load, such that if the IPI then does not find the task
2913 * running, a future context switch of that task must observe the
2914 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002915 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002916 smp_mb();
2917again:
2918 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002919 return;
2920
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002921 raw_spin_lock_irq(&ctx->lock);
2922 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002923 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2924 /*
2925 * Cannot happen because we already checked above (which also
2926 * cannot happen), and we hold ctx->mutex, which serializes us
2927 * against perf_event_exit_task_context().
2928 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002929 raw_spin_unlock_irq(&ctx->lock);
2930 return;
2931 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002932 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002933 * If the task is not running, ctx->lock will avoid it becoming so,
2934 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002935 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002936 if (task_curr(task)) {
2937 raw_spin_unlock_irq(&ctx->lock);
2938 goto again;
2939 }
2940 add_event_to_ctx(event, ctx);
2941 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002942}
2943
2944/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002945 * Cross CPU call to enable a performance event
2946 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002947static void __perf_event_enable(struct perf_event *event,
2948 struct perf_cpu_context *cpuctx,
2949 struct perf_event_context *ctx,
2950 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002951{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002952 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002953 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002954
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002955 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2956 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002957 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002958
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002959 if (ctx->is_active)
2960 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2961
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002962 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002963 perf_cgroup_event_enable(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002964
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002965 if (!ctx->is_active)
2966 return;
2967
Stephane Eraniane5d13672011-02-14 11:20:01 +02002968 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002969 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002970 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002971 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002972
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002973 /*
2974 * If the event is in a group and isn't the group leader,
2975 * then don't put it on unless the group is on.
2976 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002977 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2978 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002979 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002980 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002981
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002982 task_ctx = cpuctx->task_ctx;
2983 if (ctx->task)
2984 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002986 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002987}
2988
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002989/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002990 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002991 *
2992 * If event->ctx is a cloned context, callers must make sure that
2993 * every task struct that event->ctx->task could possibly point to
2994 * remains valid. This condition is satisfied when called through
2995 * perf_event_for_each_child or perf_event_for_each as described
2996 * for perf_event_disable.
2997 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002998static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002999{
3000 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003001
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003002 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01003003 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
3004 event->state < PERF_EVENT_STATE_ERROR) {
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003005out:
Peter Zijlstra7b648012015-12-03 18:35:21 +01003006 raw_spin_unlock_irq(&ctx->lock);
3007 return;
3008 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003009
3010 /*
3011 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01003012 *
3013 * That way, if we see the event in error state below, we know that it
3014 * has gone back into error state, as distinct from the task having
3015 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003017 if (event->state == PERF_EVENT_STATE_ERROR) {
3018 /*
3019 * Detached SIBLING events cannot leave ERROR state.
3020 */
3021 if (event->event_caps & PERF_EV_CAP_SIBLING &&
3022 event->group_leader == event)
3023 goto out;
3024
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025 event->state = PERF_EVENT_STATE_OFF;
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003026 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003027 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003028
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003029 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003031
3032/*
3033 * See perf_event_disable();
3034 */
3035void perf_event_enable(struct perf_event *event)
3036{
3037 struct perf_event_context *ctx;
3038
3039 ctx = perf_event_ctx_lock(event);
3040 _perf_event_enable(event);
3041 perf_event_ctx_unlock(event, ctx);
3042}
Robert Richterdcfce4a2011-10-11 17:11:08 +02003043EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044
Alexander Shishkin375637b2016-04-27 18:44:46 +03003045struct stop_event_data {
3046 struct perf_event *event;
3047 unsigned int restart;
3048};
3049
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003050static int __perf_event_stop(void *info)
3051{
Alexander Shishkin375637b2016-04-27 18:44:46 +03003052 struct stop_event_data *sd = info;
3053 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003054
Alexander Shishkin375637b2016-04-27 18:44:46 +03003055 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003056 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3057 return 0;
3058
3059 /* matches smp_wmb() in event_sched_in() */
3060 smp_rmb();
3061
3062 /*
3063 * There is a window with interrupts enabled before we get here,
3064 * so we need to check again lest we try to stop another CPU's event.
3065 */
3066 if (READ_ONCE(event->oncpu) != smp_processor_id())
3067 return -EAGAIN;
3068
3069 event->pmu->stop(event, PERF_EF_UPDATE);
3070
Alexander Shishkin375637b2016-04-27 18:44:46 +03003071 /*
3072 * May race with the actual stop (through perf_pmu_output_stop()),
3073 * but it is only used for events with AUX ring buffer, and such
3074 * events will refuse to restart because of rb::aux_mmap_count==0,
3075 * see comments in perf_aux_output_begin().
3076 *
Tobias Tefke788faab2018-07-09 12:57:15 +02003077 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03003078 * while restarting.
3079 */
3080 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01003081 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03003082
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003083 return 0;
3084}
3085
Alexander Shishkin767ae082016-09-06 16:23:49 +03003086static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03003087{
3088 struct stop_event_data sd = {
3089 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03003090 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03003091 };
3092 int ret = 0;
3093
3094 do {
3095 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3096 return 0;
3097
3098 /* matches smp_wmb() in event_sched_in() */
3099 smp_rmb();
3100
3101 /*
3102 * We only want to restart ACTIVE events, so if the event goes
3103 * inactive here (event->oncpu==-1), there's nothing more to do;
3104 * fall through with ret==-ENXIO.
3105 */
3106 ret = cpu_function_call(READ_ONCE(event->oncpu),
3107 __perf_event_stop, &sd);
3108 } while (ret == -EAGAIN);
3109
3110 return ret;
3111}
3112
3113/*
3114 * In order to contain the amount of racy and tricky in the address filter
3115 * configuration management, it is a two part process:
3116 *
3117 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
3118 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02003119 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03003120 * (p2) when an event is scheduled in (pmu::add), it calls
3121 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
3122 * if the generation has changed since the previous call.
3123 *
3124 * If (p1) happens while the event is active, we restart it to force (p2).
3125 *
3126 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
3127 * pre-existing mappings, called once when new filters arrive via SET_FILTER
3128 * ioctl;
3129 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003130 * registered mapping, called for every new mmap(), with mm::mmap_lock down
Alexander Shishkin375637b2016-04-27 18:44:46 +03003131 * for reading;
3132 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
3133 * of exec.
3134 */
3135void perf_event_addr_filters_sync(struct perf_event *event)
3136{
3137 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
3138
3139 if (!has_addr_filter(event))
3140 return;
3141
3142 raw_spin_lock(&ifh->lock);
3143 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
3144 event->pmu->addr_filters_sync(event);
3145 event->hw.addr_filters_gen = event->addr_filters_gen;
3146 }
3147 raw_spin_unlock(&ifh->lock);
3148}
3149EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
3150
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003151static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003152{
3153 /*
3154 * not supported on inherited events
3155 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01003156 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003157 return -EINVAL;
3158
3159 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003160 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003161
3162 return 0;
3163}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003164
3165/*
3166 * See perf_event_disable()
3167 */
3168int perf_event_refresh(struct perf_event *event, int refresh)
3169{
3170 struct perf_event_context *ctx;
3171 int ret;
3172
3173 ctx = perf_event_ctx_lock(event);
3174 ret = _perf_event_refresh(event, refresh);
3175 perf_event_ctx_unlock(event, ctx);
3176
3177 return ret;
3178}
Avi Kivity26ca5c12011-06-29 18:42:37 +03003179EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003180
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003181static int perf_event_modify_breakpoint(struct perf_event *bp,
3182 struct perf_event_attr *attr)
3183{
3184 int err;
3185
3186 _perf_event_disable(bp);
3187
3188 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003189
Jiri Olsabf062782018-08-27 11:12:28 +02003190 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003191 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02003192
3193 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003194}
3195
3196static int perf_event_modify_attr(struct perf_event *event,
3197 struct perf_event_attr *attr)
3198{
Marco Elver47f661e2021-04-08 12:35:57 +02003199 int (*func)(struct perf_event *, struct perf_event_attr *);
3200 struct perf_event *child;
3201 int err;
3202
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003203 if (event->attr.type != attr->type)
3204 return -EINVAL;
3205
3206 switch (event->attr.type) {
3207 case PERF_TYPE_BREAKPOINT:
Marco Elver47f661e2021-04-08 12:35:57 +02003208 func = perf_event_modify_breakpoint;
3209 break;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003210 default:
3211 /* Place holder for future additions. */
3212 return -EOPNOTSUPP;
3213 }
Marco Elver47f661e2021-04-08 12:35:57 +02003214
3215 WARN_ON_ONCE(event->ctx->parent_ctx);
3216
3217 mutex_lock(&event->child_mutex);
3218 err = func(event, attr);
3219 if (err)
3220 goto out;
3221 list_for_each_entry(child, &event->child_list, child_list) {
3222 err = func(child, attr);
3223 if (err)
3224 goto out;
3225 }
3226out:
3227 mutex_unlock(&event->child_mutex);
3228 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003229}
3230
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003231static void ctx_sched_out(struct perf_event_context *ctx,
3232 struct perf_cpu_context *cpuctx,
3233 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003234{
Peter Zijlstra66681282017-11-13 14:28:38 +01003235 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003236 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003237
3238 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003239
Peter Zijlstra39a43642016-01-11 12:46:35 +01003240 if (likely(!ctx->nr_events)) {
3241 /*
3242 * See __perf_remove_from_context().
3243 */
3244 WARN_ON_ONCE(ctx->is_active);
3245 if (ctx->task)
3246 WARN_ON_ONCE(cpuctx->task_ctx);
3247 return;
3248 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003249
Peter Zijlstradb24d332011-04-09 21:17:45 +02003250 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003251 if (!(ctx->is_active & EVENT_ALL))
3252 ctx->is_active = 0;
3253
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003254 if (ctx->task) {
3255 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3256 if (!ctx->is_active)
3257 cpuctx->task_ctx = NULL;
3258 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003259
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003260 /*
3261 * Always update time if it was set; not only when it changes.
3262 * Otherwise we can 'forget' to update time for any but the last
3263 * context we sched out. For example:
3264 *
3265 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3266 * ctx_sched_out(.event_type = EVENT_PINNED)
3267 *
3268 * would only update time for the pinned events.
3269 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003270 if (is_active & EVENT_TIME) {
3271 /* update (and stop) ctx time */
3272 update_context_time(ctx);
3273 update_cgrp_time_from_cpuctx(cpuctx);
3274 }
3275
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003276 is_active ^= ctx->is_active; /* changed bits */
3277
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003278 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003279 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003280
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003281 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003282 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003283 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003284 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003285 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003286
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003287 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003288 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003289 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra90c91df2020-03-05 13:38:51 +01003290
3291 /*
3292 * Since we cleared EVENT_FLEXIBLE, also clear
3293 * rotate_necessary, is will be reset by
3294 * ctx_flexible_sched_in() when needed.
3295 */
3296 ctx->rotate_necessary = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003297 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003298 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003299}
3300
3301/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003302 * Test whether two contexts are equivalent, i.e. whether they have both been
3303 * cloned from the same version of the same context.
3304 *
3305 * Equivalence is measured using a generation number in the context that is
3306 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3307 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003308 */
3309static int context_equiv(struct perf_event_context *ctx1,
3310 struct perf_event_context *ctx2)
3311{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003312 lockdep_assert_held(&ctx1->lock);
3313 lockdep_assert_held(&ctx2->lock);
3314
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003315 /* Pinning disables the swap optimization */
3316 if (ctx1->pin_count || ctx2->pin_count)
3317 return 0;
3318
3319 /* If ctx1 is the parent of ctx2 */
3320 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3321 return 1;
3322
3323 /* If ctx2 is the parent of ctx1 */
3324 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3325 return 1;
3326
3327 /*
3328 * If ctx1 and ctx2 have the same parent; we flatten the parent
3329 * hierarchy, see perf_event_init_context().
3330 */
3331 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3332 ctx1->parent_gen == ctx2->parent_gen)
3333 return 1;
3334
3335 /* Unmatched */
3336 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337}
3338
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003339static void __perf_event_sync_stat(struct perf_event *event,
3340 struct perf_event *next_event)
3341{
3342 u64 value;
3343
3344 if (!event->attr.inherit_stat)
3345 return;
3346
3347 /*
3348 * Update the event value, we cannot use perf_event_read()
3349 * because we're in the middle of a context switch and have IRQs
3350 * disabled, which upsets smp_call_function_single(), however
3351 * we know the event must be on the current CPU, therefore we
3352 * don't need to use it.
3353 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003354 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003355 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003356
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003357 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003358
3359 /*
3360 * In order to keep per-task stats reliable we need to flip the event
3361 * values when we flip the contexts.
3362 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003363 value = local64_read(&next_event->count);
3364 value = local64_xchg(&event->count, value);
3365 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366
3367 swap(event->total_time_enabled, next_event->total_time_enabled);
3368 swap(event->total_time_running, next_event->total_time_running);
3369
3370 /*
3371 * Since we swizzled the values, update the user visible data too.
3372 */
3373 perf_event_update_userpage(event);
3374 perf_event_update_userpage(next_event);
3375}
3376
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003377static void perf_event_sync_stat(struct perf_event_context *ctx,
3378 struct perf_event_context *next_ctx)
3379{
3380 struct perf_event *event, *next_event;
3381
3382 if (!ctx->nr_stat)
3383 return;
3384
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003385 update_context_time(ctx);
3386
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387 event = list_first_entry(&ctx->event_list,
3388 struct perf_event, event_entry);
3389
3390 next_event = list_first_entry(&next_ctx->event_list,
3391 struct perf_event, event_entry);
3392
3393 while (&event->event_entry != &ctx->event_list &&
3394 &next_event->event_entry != &next_ctx->event_list) {
3395
3396 __perf_event_sync_stat(event, next_event);
3397
3398 event = list_next_entry(event, event_entry);
3399 next_event = list_next_entry(next_event, event_entry);
3400 }
3401}
3402
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003403static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3404 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003406 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003408 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003409 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003410 int do_switch = 1;
Kan Liang44fae1792020-08-21 12:57:53 -07003411 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003412
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003413 if (likely(!ctx))
3414 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003415
Kan Liang44fae1792020-08-21 12:57:53 -07003416 pmu = ctx->pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003417 cpuctx = __get_cpu_context(ctx);
3418 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003419 return;
3420
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003421 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003422 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003423 if (!next_ctx)
3424 goto unlock;
3425
3426 parent = rcu_dereference(ctx->parent_ctx);
3427 next_parent = rcu_dereference(next_ctx->parent_ctx);
3428
3429 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003430 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003431 goto unlock;
3432
3433 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003434 /*
3435 * Looks like the two contexts are clones, so we might be
3436 * able to optimize the context switch. We lock both
3437 * contexts and check that they are clones under the
3438 * lock (including re-checking that neither has been
3439 * uncloned in the meantime). It doesn't matter which
3440 * order we take the locks because no other cpu could
3441 * be trying to lock both of these tasks.
3442 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003443 raw_spin_lock(&ctx->lock);
3444 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003445 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003446
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003447 WRITE_ONCE(ctx->task, next);
3448 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003449
Kan Liang44fae1792020-08-21 12:57:53 -07003450 perf_pmu_disable(pmu);
3451
3452 if (cpuctx->sched_cb_usage && pmu->sched_task)
3453 pmu->sched_task(ctx, false);
3454
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003455 /*
3456 * PMU specific parts of task perf context can require
3457 * additional synchronization. As an example of such
3458 * synchronization see implementation details of Intel
3459 * LBR call stack data profiling;
3460 */
3461 if (pmu->swap_task_ctx)
3462 pmu->swap_task_ctx(ctx, next_ctx);
3463 else
3464 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003465
Kan Liang44fae1792020-08-21 12:57:53 -07003466 perf_pmu_enable(pmu);
3467
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003468 /*
3469 * RCU_INIT_POINTER here is safe because we've not
3470 * modified the ctx and the above modification of
3471 * ctx->task and ctx->task_ctx_data are immaterial
3472 * since those values are always verified under
3473 * ctx->lock which we're now holding.
3474 */
3475 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3476 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3477
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478 do_switch = 0;
3479
3480 perf_event_sync_stat(ctx, next_ctx);
3481 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003482 raw_spin_unlock(&next_ctx->lock);
3483 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003484 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003485unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003486 rcu_read_unlock();
3487
3488 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003489 raw_spin_lock(&ctx->lock);
Kan Liang44fae1792020-08-21 12:57:53 -07003490 perf_pmu_disable(pmu);
3491
3492 if (cpuctx->sched_cb_usage && pmu->sched_task)
3493 pmu->sched_task(ctx, false);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003494 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Kan Liang44fae1792020-08-21 12:57:53 -07003495
3496 perf_pmu_enable(pmu);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003497 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003498 }
3499}
3500
Kan Lianga5398bf2020-11-30 11:38:40 -08003501static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3502
Yan, Zhengba532502014-11-04 21:55:58 -05003503void perf_sched_cb_dec(struct pmu *pmu)
3504{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003505 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3506
Kan Lianga5398bf2020-11-30 11:38:40 -08003507 this_cpu_dec(perf_sched_cb_usages);
3508
3509 if (!--cpuctx->sched_cb_usage)
3510 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003511}
3512
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003513
Yan, Zhengba532502014-11-04 21:55:58 -05003514void perf_sched_cb_inc(struct pmu *pmu)
3515{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003516 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3517
Kan Lianga5398bf2020-11-30 11:38:40 -08003518 if (!cpuctx->sched_cb_usage++)
3519 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3520
3521 this_cpu_inc(perf_sched_cb_usages);
Yan, Zhengba532502014-11-04 21:55:58 -05003522}
3523
3524/*
3525 * This function provides the context switch callback to the lower code
3526 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003527 *
3528 * This callback is relevant even to per-cpu events; for example multi event
3529 * PEBS requires this to provide PID/TID information. This requires we flush
3530 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003531 */
Kan Liang556ccca2020-08-21 12:57:52 -07003532static void __perf_pmu_sched_task(struct perf_cpu_context *cpuctx, bool sched_in)
3533{
3534 struct pmu *pmu;
3535
3536 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
3537
3538 if (WARN_ON_ONCE(!pmu->sched_task))
3539 return;
3540
3541 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3542 perf_pmu_disable(pmu);
3543
3544 pmu->sched_task(cpuctx->task_ctx, sched_in);
3545
3546 perf_pmu_enable(pmu);
3547 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
3548}
3549
Kan Lianga5398bf2020-11-30 11:38:40 -08003550static void perf_pmu_sched_task(struct task_struct *prev,
3551 struct task_struct *next,
3552 bool sched_in)
3553{
3554 struct perf_cpu_context *cpuctx;
3555
3556 if (prev == next)
3557 return;
3558
3559 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3560 /* will be handled in perf_event_context_sched_in/out */
3561 if (cpuctx->task_ctx)
3562 continue;
3563
3564 __perf_pmu_sched_task(cpuctx, sched_in);
3565 }
3566}
3567
Adrian Hunter45ac1402015-07-21 12:44:02 +03003568static void perf_event_switch(struct task_struct *task,
3569 struct task_struct *next_prev, bool sched_in);
3570
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003571#define for_each_task_context_nr(ctxn) \
3572 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3573
3574/*
3575 * Called from scheduler to remove the events of the current task,
3576 * with interrupts disabled.
3577 *
3578 * We stop each event and update the event value in event->count.
3579 *
3580 * This does not protect us against NMI, but disable()
3581 * sets the disabled bit in the control field of event _before_
3582 * accessing the event control register. If a NMI hits, then it will
3583 * not restart the event.
3584 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003585void __perf_event_task_sched_out(struct task_struct *task,
3586 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003587{
3588 int ctxn;
3589
Kan Lianga5398bf2020-11-30 11:38:40 -08003590 if (__this_cpu_read(perf_sched_cb_usages))
3591 perf_pmu_sched_task(task, next, false);
3592
Adrian Hunter45ac1402015-07-21 12:44:02 +03003593 if (atomic_read(&nr_switch_events))
3594 perf_event_switch(task, next, false);
3595
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003596 for_each_task_context_nr(ctxn)
3597 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003598
3599 /*
3600 * if cgroup events exist on this CPU, then we need
3601 * to check if we have to switch out PMU state.
3602 * cgroup event are system-wide mode only
3603 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003604 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003605 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003606}
3607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003608/*
3609 * Called with IRQs disabled
3610 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003611static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3612 enum event_type_t event_type)
3613{
3614 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003615}
3616
Ian Rogers6eef8a712020-02-13 23:51:30 -08003617static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003618{
Ian Rogers24fb6b82020-03-21 09:43:31 -07003619 const struct perf_event *le = *(const struct perf_event **)l;
3620 const struct perf_event *re = *(const struct perf_event **)r;
Ian Rogers6eef8a712020-02-13 23:51:30 -08003621
3622 return le->group_index < re->group_index;
3623}
3624
3625static void swap_ptr(void *l, void *r)
3626{
3627 void **lp = l, **rp = r;
3628
3629 swap(*lp, *rp);
3630}
3631
3632static const struct min_heap_callbacks perf_min_heap = {
3633 .elem_size = sizeof(struct perf_event *),
3634 .less = perf_less_group_idx,
3635 .swp = swap_ptr,
3636};
3637
3638static void __heap_add(struct min_heap *heap, struct perf_event *event)
3639{
3640 struct perf_event **itrs = heap->data;
3641
3642 if (event) {
3643 itrs[heap->nr] = event;
3644 heap->nr++;
3645 }
3646}
3647
Ian Rogers836196be2020-02-13 23:51:31 -08003648static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3649 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003650 int (*func)(struct perf_event *, void *),
3651 void *data)
3652{
Ian Rogers95ed6c72020-02-13 23:51:33 -08003653#ifdef CONFIG_CGROUP_PERF
3654 struct cgroup_subsys_state *css = NULL;
3655#endif
Ian Rogers6eef8a712020-02-13 23:51:30 -08003656 /* Space for per CPU and/or any CPU event iterators. */
3657 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003658 struct min_heap event_heap;
3659 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003660 int ret;
3661
Ian Rogers836196be2020-02-13 23:51:31 -08003662 if (cpuctx) {
3663 event_heap = (struct min_heap){
3664 .data = cpuctx->heap,
3665 .nr = 0,
3666 .size = cpuctx->heap_size,
3667 };
Ian Rogersc2283c92020-02-13 23:51:32 -08003668
3669 lockdep_assert_held(&cpuctx->ctx.lock);
Ian Rogers95ed6c72020-02-13 23:51:33 -08003670
3671#ifdef CONFIG_CGROUP_PERF
3672 if (cpuctx->cgrp)
3673 css = &cpuctx->cgrp->css;
3674#endif
Ian Rogers836196be2020-02-13 23:51:31 -08003675 } else {
3676 event_heap = (struct min_heap){
3677 .data = itrs,
3678 .nr = 0,
3679 .size = ARRAY_SIZE(itrs),
3680 };
3681 /* Events not within a CPU context may be on any CPU. */
Ian Rogers95ed6c72020-02-13 23:51:33 -08003682 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
Ian Rogers836196be2020-02-13 23:51:31 -08003683 }
3684 evt = event_heap.data;
3685
Ian Rogers95ed6c72020-02-13 23:51:33 -08003686 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3687
3688#ifdef CONFIG_CGROUP_PERF
3689 for (; css; css = css->parent)
3690 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3691#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003692
Ian Rogers6eef8a712020-02-13 23:51:30 -08003693 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003694
Ian Rogers6eef8a712020-02-13 23:51:30 -08003695 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003696 ret = func(*evt, data);
3697 if (ret)
3698 return ret;
3699
3700 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003701 if (*evt)
3702 min_heapify(&event_heap, 0, &perf_min_heap);
3703 else
3704 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003705 }
3706
3707 return 0;
3708}
3709
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003710static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003711{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003712 struct perf_event_context *ctx = event->ctx;
3713 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3714 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003715
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003716 if (event->state <= PERF_EVENT_STATE_OFF)
3717 return 0;
3718
3719 if (!event_filter_match(event))
3720 return 0;
3721
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003722 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3723 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003724 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003725 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003726
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003727 if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra33238c52020-03-18 20:33:37 +01003728 if (event->attr.pinned) {
3729 perf_cgroup_event_disable(event, ctx);
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003730 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Peter Zijlstra33238c52020-03-18 20:33:37 +01003731 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003732
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003733 *can_add_hw = 0;
3734 ctx->rotate_necessary = 1;
Peter Zijlstra2714c392020-10-29 16:29:53 +01003735 perf_mux_hrtimer_restart(cpuctx);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003736 }
3737
3738 return 0;
3739}
3740
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003741static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003742ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003743 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003744{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003745 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746
Ian Rogers836196be2020-02-13 23:51:31 -08003747 if (ctx != &cpuctx->ctx)
3748 cpuctx = NULL;
3749
3750 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003751 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003752 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003753}
3754
3755static void
3756ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003757 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003758{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003759 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003760
Ian Rogers836196be2020-02-13 23:51:31 -08003761 if (ctx != &cpuctx->ctx)
3762 cpuctx = NULL;
3763
3764 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003765 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003766 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003767}
3768
3769static void
3770ctx_sched_in(struct perf_event_context *ctx,
3771 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003772 enum event_type_t event_type,
3773 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003774{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003775 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003776 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003777
Peter Zijlstrac994d612016-01-08 09:20:23 +01003778 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003779
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003780 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003781 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003782
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003783 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003784 if (ctx->task) {
3785 if (!is_active)
3786 cpuctx->task_ctx = ctx;
3787 else
3788 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3789 }
3790
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003791 is_active ^= ctx->is_active; /* changed bits */
3792
3793 if (is_active & EVENT_TIME) {
3794 /* start ctx time */
3795 now = perf_clock();
3796 ctx->timestamp = now;
3797 perf_cgroup_set_timestamp(task, ctx);
3798 }
3799
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003800 /*
3801 * First go through the list and put on any pinned groups
3802 * in order to give them the best chance of going on.
3803 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003804 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003805 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003806
3807 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003808 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003809 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003810}
3811
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003812static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003813 enum event_type_t event_type,
3814 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003815{
3816 struct perf_event_context *ctx = &cpuctx->ctx;
3817
Stephane Eraniane5d13672011-02-14 11:20:01 +02003818 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003819}
3820
Stephane Eraniane5d13672011-02-14 11:20:01 +02003821static void perf_event_context_sched_in(struct perf_event_context *ctx,
3822 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003823{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003824 struct perf_cpu_context *cpuctx;
Peter Zijlstra012669c2021-06-22 16:21:01 +02003825 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003826
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003827 cpuctx = __get_cpu_context(ctx);
Peter Zijlstra012669c2021-06-22 16:21:01 +02003828
3829 /*
3830 * HACK: for HETEROGENEOUS the task context might have switched to a
3831 * different PMU, force (re)set the context,
3832 */
3833 pmu = ctx->pmu = cpuctx->ctx.pmu;
3834
Kan Liang556ccca2020-08-21 12:57:52 -07003835 if (cpuctx->task_ctx == ctx) {
3836 if (cpuctx->sched_cb_usage)
3837 __perf_pmu_sched_task(cpuctx, true);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003838 return;
Kan Liang556ccca2020-08-21 12:57:52 -07003839 }
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003840
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003841 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003842 /*
3843 * We must check ctx->nr_events while holding ctx->lock, such
3844 * that we serialize against perf_install_in_context().
3845 */
3846 if (!ctx->nr_events)
3847 goto unlock;
3848
Kan Liang556ccca2020-08-21 12:57:52 -07003849 perf_pmu_disable(pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003850 /*
3851 * We want to keep the following priority order:
3852 * cpu pinned (that don't need to move), task pinned,
3853 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003854 *
3855 * However, if task's ctx is not carrying any pinned
3856 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003857 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003858 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003859 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003860 perf_event_sched_in(cpuctx, ctx, task);
Kan Liang556ccca2020-08-21 12:57:52 -07003861
3862 if (cpuctx->sched_cb_usage && pmu->sched_task)
3863 pmu->sched_task(cpuctx->task_ctx, true);
3864
3865 perf_pmu_enable(pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003866
3867unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003868 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003869}
3870
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003871/*
3872 * Called from scheduler to add the events of the current task
3873 * with interrupts disabled.
3874 *
3875 * We restore the event value and then enable it.
3876 *
3877 * This does not protect us against NMI, but enable()
3878 * sets the enabled bit in the control field of event _before_
3879 * accessing the event control register. If a NMI hits, then it will
3880 * keep the event running.
3881 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003882void __perf_event_task_sched_in(struct task_struct *prev,
3883 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003884{
3885 struct perf_event_context *ctx;
3886 int ctxn;
3887
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003888 /*
3889 * If cgroup events exist on this CPU, then we need to check if we have
3890 * to switch in PMU state; cgroup event are system-wide mode only.
3891 *
3892 * Since cgroup events are CPU events, we must schedule these in before
3893 * we schedule in the task events.
3894 */
3895 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3896 perf_cgroup_sched_in(prev, task);
3897
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003898 for_each_task_context_nr(ctxn) {
3899 ctx = task->perf_event_ctxp[ctxn];
3900 if (likely(!ctx))
3901 continue;
3902
Stephane Eraniane5d13672011-02-14 11:20:01 +02003903 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003904 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003905
Adrian Hunter45ac1402015-07-21 12:44:02 +03003906 if (atomic_read(&nr_switch_events))
3907 perf_event_switch(task, prev, true);
Kan Lianga5398bf2020-11-30 11:38:40 -08003908
3909 if (__this_cpu_read(perf_sched_cb_usages))
3910 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003911}
3912
Peter Zijlstraabd50712010-01-26 18:50:16 +01003913static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3914{
3915 u64 frequency = event->attr.sample_freq;
3916 u64 sec = NSEC_PER_SEC;
3917 u64 divisor, dividend;
3918
3919 int count_fls, nsec_fls, frequency_fls, sec_fls;
3920
3921 count_fls = fls64(count);
3922 nsec_fls = fls64(nsec);
3923 frequency_fls = fls64(frequency);
3924 sec_fls = 30;
3925
3926 /*
3927 * We got @count in @nsec, with a target of sample_freq HZ
3928 * the target period becomes:
3929 *
3930 * @count * 10^9
3931 * period = -------------------
3932 * @nsec * sample_freq
3933 *
3934 */
3935
3936 /*
3937 * Reduce accuracy by one bit such that @a and @b converge
3938 * to a similar magnitude.
3939 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003940#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003941do { \
3942 if (a##_fls > b##_fls) { \
3943 a >>= 1; \
3944 a##_fls--; \
3945 } else { \
3946 b >>= 1; \
3947 b##_fls--; \
3948 } \
3949} while (0)
3950
3951 /*
3952 * Reduce accuracy until either term fits in a u64, then proceed with
3953 * the other, so that finally we can do a u64/u64 division.
3954 */
3955 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3956 REDUCE_FLS(nsec, frequency);
3957 REDUCE_FLS(sec, count);
3958 }
3959
3960 if (count_fls + sec_fls > 64) {
3961 divisor = nsec * frequency;
3962
3963 while (count_fls + sec_fls > 64) {
3964 REDUCE_FLS(count, sec);
3965 divisor >>= 1;
3966 }
3967
3968 dividend = count * sec;
3969 } else {
3970 dividend = count * sec;
3971
3972 while (nsec_fls + frequency_fls > 64) {
3973 REDUCE_FLS(nsec, frequency);
3974 dividend >>= 1;
3975 }
3976
3977 divisor = nsec * frequency;
3978 }
3979
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003980 if (!divisor)
3981 return dividend;
3982
Peter Zijlstraabd50712010-01-26 18:50:16 +01003983 return div64_u64(dividend, divisor);
3984}
3985
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003986static DEFINE_PER_CPU(int, perf_throttled_count);
3987static DEFINE_PER_CPU(u64, perf_throttled_seq);
3988
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003989static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003990{
3991 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003992 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003993 s64 delta;
3994
Peter Zijlstraabd50712010-01-26 18:50:16 +01003995 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003996
3997 delta = (s64)(period - hwc->sample_period);
3998 delta = (delta + 7) / 8; /* low pass filter */
3999
4000 sample_period = hwc->sample_period + delta;
4001
4002 if (!sample_period)
4003 sample_period = 1;
4004
4005 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004006
Peter Zijlstrae7850592010-05-21 14:43:08 +02004007 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004008 if (disable)
4009 event->pmu->stop(event, PERF_EF_UPDATE);
4010
Peter Zijlstrae7850592010-05-21 14:43:08 +02004011 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004012
4013 if (disable)
4014 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004015 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004016}
4017
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004018/*
4019 * combine freq adjustment with unthrottling to avoid two passes over the
4020 * events. At the same time, make sure, having freq events does not change
4021 * the rate of unthrottling as that would introduce bias.
4022 */
4023static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
4024 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004025{
4026 struct perf_event *event;
4027 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004028 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004029 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004030
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004031 /*
4032 * only need to iterate over all events iff:
4033 * - context have events in frequency mode (needs freq adjust)
4034 * - there are events to unthrottle on this cpu
4035 */
4036 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004037 return;
4038
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004039 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004040 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004041
Paul Mackerras03541f82009-10-14 16:58:03 +11004042 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004043 if (event->state != PERF_EVENT_STATE_ACTIVE)
4044 continue;
4045
Stephane Eranian5632ab12011-01-03 18:20:01 +02004046 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004047 continue;
4048
Alexander Shishkin44377272013-12-16 14:17:36 +02004049 perf_pmu_disable(event->pmu);
4050
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004051 hwc = &event->hw;
4052
Jiri Olsaae23bff2013-08-24 16:45:54 +02004053 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004054 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004056 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004057 }
4058
4059 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02004060 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004061
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004062 /*
4063 * stop the event and update event->count
4064 */
4065 event->pmu->stop(event, PERF_EF_UPDATE);
4066
Peter Zijlstrae7850592010-05-21 14:43:08 +02004067 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004068 delta = now - hwc->freq_count_stamp;
4069 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004070
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004071 /*
4072 * restart the event
4073 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004074 * we have stopped the event so tell that
4075 * to perf_adjust_period() to avoid stopping it
4076 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004077 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01004078 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004079 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004080
4081 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02004082 next:
4083 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004084 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004085
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004086 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004087 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004088}
4089
4090/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004091 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004092 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004093static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004094{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01004095 /*
4096 * Rotate the first entry last of non-pinned groups. Rotation might be
4097 * disabled by the inheritance code.
4098 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004099 if (ctx->rotate_disable)
4100 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004101
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004102 perf_event_groups_delete(&ctx->flexible_groups, event);
4103 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004104}
4105
Song Liu7fa343b72019-10-08 09:59:49 -07004106/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004107static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07004108ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004109{
Song Liu7fa343b72019-10-08 09:59:49 -07004110 struct perf_event *event;
4111
4112 /* pick the first active flexible event */
4113 event = list_first_entry_or_null(&ctx->flexible_active,
4114 struct perf_event, active_list);
4115
4116 /* if no active flexible event, pick the first event */
4117 if (!event) {
4118 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
4119 typeof(*event), group_node);
4120 }
4121
Peter Zijlstra90c91df2020-03-05 13:38:51 +01004122 /*
4123 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in()
4124 * finds there are unschedulable events, it will set it again.
4125 */
4126 ctx->rotate_necessary = 0;
4127
Song Liu7fa343b72019-10-08 09:59:49 -07004128 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004129}
4130
4131static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
4132{
4133 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07004134 struct perf_event_context *task_ctx = NULL;
4135 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004136
4137 /*
4138 * Since we run this from IRQ context, nobody can install new
4139 * events, thus the event count values are stable.
4140 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004141
Ian Rogersfd7d5512019-06-01 01:27:22 -07004142 cpu_rotate = cpuctx->ctx.rotate_necessary;
4143 task_ctx = cpuctx->task_ctx;
4144 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004145
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004146 if (!(cpu_rotate || task_rotate))
4147 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004148
Peter Zijlstrafacc4302011-04-09 21:17:42 +02004149 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02004150 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004151
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004152 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004153 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004154 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004155 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004156
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004157 /*
4158 * As per the order given at ctx_resched() first 'pop' task flexible
4159 * and then, if needed CPU flexible.
4160 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07004161 if (task_event || (task_ctx && cpu_event))
4162 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004163 if (cpu_event)
4164 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01004165
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004166 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07004167 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004168 if (cpu_event)
4169 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004170
Ian Rogersfd7d5512019-06-01 01:27:22 -07004171 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004172
4173 perf_pmu_enable(cpuctx->ctx.pmu);
4174 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02004175
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004176 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004177}
4178
4179void perf_event_task_tick(void)
4180{
Mark Rutland2fde4f92015-01-07 15:01:54 +00004181 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4182 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004183 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004184
Frederic Weisbecker16444642017-11-06 16:01:24 +01004185 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004186
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004187 __this_cpu_inc(perf_throttled_seq);
4188 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004189 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004190
Mark Rutland2fde4f92015-01-07 15:01:54 +00004191 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004192 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004193}
4194
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004195static int event_enable_on_exec(struct perf_event *event,
4196 struct perf_event_context *ctx)
4197{
4198 if (!event->attr.enable_on_exec)
4199 return 0;
4200
4201 event->attr.enable_on_exec = 0;
4202 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4203 return 0;
4204
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004205 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004206
4207 return 1;
4208}
4209
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004210/*
4211 * Enable all of a task's events that have been marked enable-on-exec.
4212 * This expects task == current.
4213 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01004214static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004215{
Peter Zijlstrac1274492015-12-10 20:57:40 +01004216 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004217 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01004218 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004219 struct perf_event *event;
4220 unsigned long flags;
4221 int enabled = 0;
4222
4223 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01004224 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004225 if (!ctx || !ctx->nr_events)
4226 goto out;
4227
Peter Zijlstra3e349502016-01-08 10:01:18 +01004228 cpuctx = __get_cpu_context(ctx);
4229 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01004230 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004231 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01004232 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004233 event_type |= get_event_type(event);
4234 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004235
4236 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01004237 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004238 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01004239 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004240 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004241 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01004242 } else {
4243 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01004244 }
4245 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004246
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004247out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004248 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004249
4250 if (clone_ctx)
4251 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004252}
4253
Marco Elver2e498d02021-04-08 12:35:59 +02004254static void perf_remove_from_owner(struct perf_event *event);
4255static void perf_event_exit_event(struct perf_event *event,
4256 struct perf_event_context *ctx);
4257
4258/*
4259 * Removes all events from the current task that have been marked
4260 * remove-on-exec, and feeds their values back to parent events.
4261 */
4262static void perf_event_remove_on_exec(int ctxn)
4263{
4264 struct perf_event_context *ctx, *clone_ctx = NULL;
4265 struct perf_event *event, *next;
4266 LIST_HEAD(free_list);
4267 unsigned long flags;
4268 bool modified = false;
4269
4270 ctx = perf_pin_task_context(current, ctxn);
4271 if (!ctx)
4272 return;
4273
4274 mutex_lock(&ctx->mutex);
4275
4276 if (WARN_ON_ONCE(ctx->task != current))
4277 goto unlock;
4278
4279 list_for_each_entry_safe(event, next, &ctx->event_list, event_entry) {
4280 if (!event->attr.remove_on_exec)
4281 continue;
4282
4283 if (!is_kernel_event(event))
4284 perf_remove_from_owner(event);
4285
4286 modified = true;
4287
4288 perf_event_exit_event(event, ctx);
4289 }
4290
4291 raw_spin_lock_irqsave(&ctx->lock, flags);
4292 if (modified)
4293 clone_ctx = unclone_ctx(ctx);
4294 --ctx->pin_count;
4295 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4296
4297unlock:
4298 mutex_unlock(&ctx->mutex);
4299
4300 put_ctx(ctx);
4301 if (clone_ctx)
4302 put_ctx(clone_ctx);
4303}
4304
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004305struct perf_read_data {
4306 struct perf_event *event;
4307 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004308 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004309};
4310
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004311static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004312{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004313 u16 local_pkg, event_pkg;
4314
4315 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004316 int local_cpu = smp_processor_id();
4317
4318 event_pkg = topology_physical_package_id(event_cpu);
4319 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004320
4321 if (event_pkg == local_pkg)
4322 return local_cpu;
4323 }
4324
4325 return event_cpu;
4326}
4327
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004328/*
4329 * Cross CPU call to read the hardware event
4330 */
4331static void __perf_event_read(void *info)
4332{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004333 struct perf_read_data *data = info;
4334 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004335 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004336 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004337 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004338
4339 /*
4340 * If this is a task context, we need to check whether it is
4341 * the current task context of this cpu. If not it has been
4342 * scheduled out before the smp call arrived. In that case
4343 * event->count would have been updated to a recent sample
4344 * when the event was scheduled out.
4345 */
4346 if (ctx->task && cpuctx->task_ctx != ctx)
4347 return;
4348
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004349 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004350 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004351 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004352 update_cgrp_time_from_event(event);
4353 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004354
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004355 perf_event_update_time(event);
4356 if (data->group)
4357 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004358
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004359 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004360 goto unlock;
4361
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004362 if (!data->group) {
4363 pmu->read(event);
4364 data->ret = 0;
4365 goto unlock;
4366 }
4367
4368 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4369
4370 pmu->read(event);
4371
Peter Zijlstraedb39592018-03-15 17:36:56 +01004372 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004373 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4374 /*
4375 * Use sibling's PMU rather than @event's since
4376 * sibling could be on different (eg: software) PMU.
4377 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004378 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004379 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004380 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004381
4382 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004383
4384unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004385 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004386}
4387
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004388static inline u64 perf_event_count(struct perf_event *event)
4389{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004390 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004391}
4392
Kaixu Xiaffe86902015-08-06 07:02:32 +00004393/*
4394 * NMI-safe method to read a local event, that is an event that
4395 * is:
4396 * - either for the current task, or for this CPU
4397 * - does not have inherit set, for inherited task events
4398 * will not be local and we cannot read them atomically
4399 * - must not have a pmu::count method
4400 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004401int perf_event_read_local(struct perf_event *event, u64 *value,
4402 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004403{
4404 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004405 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004406
4407 /*
4408 * Disabling interrupts avoids all counter scheduling (context
4409 * switches, timer based rotation and IPIs).
4410 */
4411 local_irq_save(flags);
4412
Kaixu Xiaffe86902015-08-06 07:02:32 +00004413 /*
4414 * It must not be an event with inherit set, we cannot read
4415 * all child counters from atomic context.
4416 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004417 if (event->attr.inherit) {
4418 ret = -EOPNOTSUPP;
4419 goto out;
4420 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004421
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004422 /* If this is a per-task event, it must be for current */
4423 if ((event->attach_state & PERF_ATTACH_TASK) &&
4424 event->hw.target != current) {
4425 ret = -EINVAL;
4426 goto out;
4427 }
4428
4429 /* If this is a per-CPU event, it must be for this CPU */
4430 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4431 event->cpu != smp_processor_id()) {
4432 ret = -EINVAL;
4433 goto out;
4434 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004435
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004436 /* If this is a pinned event it must be running on this CPU */
4437 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4438 ret = -EBUSY;
4439 goto out;
4440 }
4441
Kaixu Xiaffe86902015-08-06 07:02:32 +00004442 /*
4443 * If the event is currently on this CPU, its either a per-task event,
4444 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4445 * oncpu == -1).
4446 */
4447 if (event->oncpu == smp_processor_id())
4448 event->pmu->read(event);
4449
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004450 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004451 if (enabled || running) {
4452 u64 now = event->shadow_ctx_time + perf_clock();
4453 u64 __enabled, __running;
4454
4455 __perf_update_times(event, now, &__enabled, &__running);
4456 if (enabled)
4457 *enabled = __enabled;
4458 if (running)
4459 *running = __running;
4460 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004461out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004462 local_irq_restore(flags);
4463
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004464 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004465}
4466
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004467static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004468{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004469 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004470 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472 /*
4473 * If event is enabled and currently active on a CPU, update the
4474 * value in the event structure:
4475 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004476again:
4477 if (state == PERF_EVENT_STATE_ACTIVE) {
4478 struct perf_read_data data;
4479
4480 /*
4481 * Orders the ->state and ->oncpu loads such that if we see
4482 * ACTIVE we must also see the right ->oncpu.
4483 *
4484 * Matches the smp_wmb() from event_sched_in().
4485 */
4486 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004487
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004488 event_cpu = READ_ONCE(event->oncpu);
4489 if ((unsigned)event_cpu >= nr_cpu_ids)
4490 return 0;
4491
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004492 data = (struct perf_read_data){
4493 .event = event,
4494 .group = group,
4495 .ret = 0,
4496 };
4497
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004498 preempt_disable();
4499 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004500
Peter Zijlstra58763142016-08-30 10:15:03 +02004501 /*
4502 * Purposely ignore the smp_call_function_single() return
4503 * value.
4504 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004505 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004506 * scheduled out and that will have updated the event count.
4507 *
4508 * Therefore, either way, we'll have an up-to-date event count
4509 * after this.
4510 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004511 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4512 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004513 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004514
4515 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004516 struct perf_event_context *ctx = event->ctx;
4517 unsigned long flags;
4518
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004519 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004520 state = event->state;
4521 if (state != PERF_EVENT_STATE_INACTIVE) {
4522 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4523 goto again;
4524 }
4525
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004526 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004527 * May read while context is not active (e.g., thread is
4528 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004529 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004530 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004531 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004532 update_cgrp_time_from_event(event);
4533 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004534
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004535 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004536 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004537 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004538 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004539 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004540
4541 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004542}
4543
4544/*
4545 * Initialize the perf_event context in a task_struct:
4546 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004547static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004548{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004549 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004550 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004551 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004552 perf_event_groups_init(&ctx->pinned_groups);
4553 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004554 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004555 INIT_LIST_HEAD(&ctx->pinned_active);
4556 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004557 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004558}
4559
Peter Zijlstraeb184472010-09-07 15:55:13 +02004560static struct perf_event_context *
4561alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004562{
4563 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004564
4565 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4566 if (!ctx)
4567 return NULL;
4568
4569 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004570 if (task)
4571 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004572 ctx->pmu = pmu;
4573
4574 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004575}
4576
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004577static struct task_struct *
4578find_lively_task_by_vpid(pid_t vpid)
4579{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004580 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004581
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004582 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004583 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004584 task = current;
4585 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004586 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004587 if (task)
4588 get_task_struct(task);
4589 rcu_read_unlock();
4590
4591 if (!task)
4592 return ERR_PTR(-ESRCH);
4593
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004594 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004595}
4596
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004597/*
4598 * Returns a matching context with refcount and pincount.
4599 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004600static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004601find_get_context(struct pmu *pmu, struct task_struct *task,
4602 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004603{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004604 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004605 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004606 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004607 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004608 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004609 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004610
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004611 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004612 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004613 err = perf_allow_cpu(&event->attr);
4614 if (err)
4615 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004616
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004617 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004618 ctx = &cpuctx->ctx;
4619 get_ctx(ctx);
Marco Elver6c605f82021-05-27 12:47:11 +02004620 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004621 ++ctx->pin_count;
Marco Elver6c605f82021-05-27 12:47:11 +02004622 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004623
4624 return ctx;
4625 }
4626
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004627 err = -EINVAL;
4628 ctxn = pmu->task_ctx_nr;
4629 if (ctxn < 0)
4630 goto errout;
4631
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004632 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
Kan Liangff9ff922020-07-03 05:49:21 -07004633 task_ctx_data = alloc_task_ctx_data(pmu);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004634 if (!task_ctx_data) {
4635 err = -ENOMEM;
4636 goto errout;
4637 }
4638 }
4639
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004640retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004641 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004642 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004643 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004644 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004645
4646 if (task_ctx_data && !ctx->task_ctx_data) {
4647 ctx->task_ctx_data = task_ctx_data;
4648 task_ctx_data = NULL;
4649 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004650 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004651
4652 if (clone_ctx)
4653 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004654 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004655 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656 err = -ENOMEM;
4657 if (!ctx)
4658 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004659
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004660 if (task_ctx_data) {
4661 ctx->task_ctx_data = task_ctx_data;
4662 task_ctx_data = NULL;
4663 }
4664
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004665 err = 0;
4666 mutex_lock(&task->perf_event_mutex);
4667 /*
4668 * If it has already passed perf_event_exit_task().
4669 * we must see PF_EXITING, it takes this mutex too.
4670 */
4671 if (task->flags & PF_EXITING)
4672 err = -ESRCH;
4673 else if (task->perf_event_ctxp[ctxn])
4674 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004675 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004676 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004677 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004678 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004679 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004680 mutex_unlock(&task->perf_event_mutex);
4681
4682 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004683 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004684
4685 if (err == -EAGAIN)
4686 goto retry;
4687 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004688 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004689 }
4690
Kan Liangff9ff922020-07-03 05:49:21 -07004691 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004692 return ctx;
4693
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004694errout:
Kan Liangff9ff922020-07-03 05:49:21 -07004695 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004696 return ERR_PTR(err);
4697}
4698
Li Zefan6fb29152009-10-15 11:21:42 +08004699static void perf_event_free_filter(struct perf_event *event);
4700
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004701static void free_event_rcu(struct rcu_head *head)
4702{
4703 struct perf_event *event;
4704
4705 event = container_of(head, struct perf_event, rcu_head);
4706 if (event->ns)
4707 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004708 perf_event_free_filter(event);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +09004709 kmem_cache_free(perf_event_cache, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004710}
4711
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004712static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004713 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004714
Kan Liangf2fb6be2016-03-23 11:24:37 -07004715static void detach_sb_event(struct perf_event *event)
4716{
4717 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4718
4719 raw_spin_lock(&pel->lock);
4720 list_del_rcu(&event->sb_list);
4721 raw_spin_unlock(&pel->lock);
4722}
4723
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004724static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004725{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004726 struct perf_event_attr *attr = &event->attr;
4727
Kan Liangf2fb6be2016-03-23 11:24:37 -07004728 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004729 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004730
4731 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004732 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004733
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004734 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4735 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004736 attr->task || attr->ksymbol ||
Adrian Huntere17d43b2020-05-12 15:19:08 +03004737 attr->context_switch || attr->text_poke ||
Song Liu21038f22019-02-25 16:20:05 -08004738 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004739 return true;
4740 return false;
4741}
4742
4743static void unaccount_pmu_sb_event(struct perf_event *event)
4744{
4745 if (is_sb_event(event))
4746 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004747}
4748
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004749static void unaccount_event_cpu(struct perf_event *event, int cpu)
4750{
4751 if (event->parent)
4752 return;
4753
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004754 if (is_cgroup_event(event))
4755 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4756}
4757
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004758#ifdef CONFIG_NO_HZ_FULL
4759static DEFINE_SPINLOCK(nr_freq_lock);
4760#endif
4761
4762static void unaccount_freq_event_nohz(void)
4763{
4764#ifdef CONFIG_NO_HZ_FULL
4765 spin_lock(&nr_freq_lock);
4766 if (atomic_dec_and_test(&nr_freq_events))
4767 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4768 spin_unlock(&nr_freq_lock);
4769#endif
4770}
4771
4772static void unaccount_freq_event(void)
4773{
4774 if (tick_nohz_full_enabled())
4775 unaccount_freq_event_nohz();
4776 else
4777 atomic_dec(&nr_freq_events);
4778}
4779
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004780static void unaccount_event(struct perf_event *event)
4781{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004782 bool dec = false;
4783
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004784 if (event->parent)
4785 return;
4786
Kan Lianga5398bf2020-11-30 11:38:40 -08004787 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004788 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004789 if (event->attr.mmap || event->attr.mmap_data)
4790 atomic_dec(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +01004791 if (event->attr.build_id)
4792 atomic_dec(&nr_build_id_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004793 if (event->attr.comm)
4794 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304795 if (event->attr.namespaces)
4796 atomic_dec(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +09004797 if (event->attr.cgroup)
4798 atomic_dec(&nr_cgroup_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004799 if (event->attr.task)
4800 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004801 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004802 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004803 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004804 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004805 atomic_dec(&nr_switch_events);
4806 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004807 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004808 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004809 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004810 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004811 if (event->attr.ksymbol)
4812 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004813 if (event->attr.bpf_event)
4814 atomic_dec(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +03004815 if (event->attr.text_poke)
4816 atomic_dec(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004817
Peter Zijlstra9107c892016-02-24 18:45:45 +01004818 if (dec) {
4819 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4820 schedule_delayed_work(&perf_sched_work, HZ);
4821 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004822
4823 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004824
4825 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004826}
4827
Peter Zijlstra9107c892016-02-24 18:45:45 +01004828static void perf_sched_delayed(struct work_struct *work)
4829{
4830 mutex_lock(&perf_sched_mutex);
4831 if (atomic_dec_and_test(&perf_sched_count))
4832 static_branch_disable(&perf_sched_events);
4833 mutex_unlock(&perf_sched_mutex);
4834}
4835
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004836/*
4837 * The following implement mutual exclusion of events on "exclusive" pmus
4838 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4839 * at a time, so we disallow creating events that might conflict, namely:
4840 *
4841 * 1) cpu-wide events in the presence of per-task events,
4842 * 2) per-task events in the presence of cpu-wide events,
4843 * 3) two matching events on the same context.
4844 *
4845 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004846 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004847 */
4848static int exclusive_event_init(struct perf_event *event)
4849{
4850 struct pmu *pmu = event->pmu;
4851
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004852 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004853 return 0;
4854
4855 /*
4856 * Prevent co-existence of per-task and cpu-wide events on the
4857 * same exclusive pmu.
4858 *
4859 * Negative pmu::exclusive_cnt means there are cpu-wide
4860 * events on this "exclusive" pmu, positive means there are
4861 * per-task events.
4862 *
4863 * Since this is called in perf_event_alloc() path, event::ctx
4864 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4865 * to mean "per-task event", because unlike other attach states it
4866 * never gets cleared.
4867 */
4868 if (event->attach_state & PERF_ATTACH_TASK) {
4869 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4870 return -EBUSY;
4871 } else {
4872 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4873 return -EBUSY;
4874 }
4875
4876 return 0;
4877}
4878
4879static void exclusive_event_destroy(struct perf_event *event)
4880{
4881 struct pmu *pmu = event->pmu;
4882
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004883 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004884 return;
4885
4886 /* see comment in exclusive_event_init() */
4887 if (event->attach_state & PERF_ATTACH_TASK)
4888 atomic_dec(&pmu->exclusive_cnt);
4889 else
4890 atomic_inc(&pmu->exclusive_cnt);
4891}
4892
4893static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4894{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004895 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004896 (e1->cpu == e2->cpu ||
4897 e1->cpu == -1 ||
4898 e2->cpu == -1))
4899 return true;
4900 return false;
4901}
4902
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004903static bool exclusive_event_installable(struct perf_event *event,
4904 struct perf_event_context *ctx)
4905{
4906 struct perf_event *iter_event;
4907 struct pmu *pmu = event->pmu;
4908
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004909 lockdep_assert_held(&ctx->mutex);
4910
4911 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004912 return true;
4913
4914 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4915 if (exclusive_event_match(iter_event, event))
4916 return false;
4917 }
4918
4919 return true;
4920}
4921
Alexander Shishkin375637b2016-04-27 18:44:46 +03004922static void perf_addr_filters_splice(struct perf_event *event,
4923 struct list_head *head);
4924
Peter Zijlstra683ede42014-05-05 12:11:24 +02004925static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004927 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004928
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004929 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004930
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004931 security_perf_event_free(event);
4932
Frederic Weisbecker76369132011-05-19 19:55:04 +02004933 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004934 /*
4935 * Can happen when we close an event with re-directed output.
4936 *
4937 * Since we have a 0 refcount, perf_mmap_close() will skip
4938 * over us; possibly making our ring_buffer_put() the last.
4939 */
4940 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004941 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004942 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004943 }
4944
Stephane Eraniane5d13672011-02-14 11:20:01 +02004945 if (is_cgroup_event(event))
4946 perf_detach_cgroup(event);
4947
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004948 if (!event->parent) {
4949 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4950 put_callchain_buffers();
4951 }
4952
4953 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004954 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02004955 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004956
4957 if (event->destroy)
4958 event->destroy(event);
4959
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004960 /*
4961 * Must be after ->destroy(), due to uprobe_perf_close() using
4962 * hw.target.
4963 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09004964 if (event->hw.target)
4965 put_task_struct(event->hw.target);
4966
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004967 /*
4968 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4969 * all task references must be cleaned up.
4970 */
4971 if (event->ctx)
4972 put_ctx(event->ctx);
4973
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004974 exclusive_event_destroy(event);
4975 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004976
4977 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004978}
4979
Peter Zijlstra683ede42014-05-05 12:11:24 +02004980/*
4981 * Used to free events which have a known refcount of 1, such as in error paths
4982 * where the event isn't exposed yet and inherited events.
4983 */
4984static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004985{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004986 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4987 "unexpected event refcount: %ld; ptr=%p\n",
4988 atomic_long_read(&event->refcount), event)) {
4989 /* leak to avoid use-after-free */
4990 return;
4991 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004992
Peter Zijlstra683ede42014-05-05 12:11:24 +02004993 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004994}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004995
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004996/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004997 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004998 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004999static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005000{
Peter Zijlstra88821352010-11-09 19:01:43 +01005001 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005002
Peter Zijlstra88821352010-11-09 19:01:43 +01005003 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01005004 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005005 * Matches the smp_store_release() in perf_event_exit_task(). If we
5006 * observe !owner it means the list deletion is complete and we can
5007 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01005008 * owner->perf_event_mutex.
5009 */
Will Deacon506458e2017-10-24 11:22:48 +01005010 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01005011 if (owner) {
5012 /*
5013 * Since delayed_put_task_struct() also drops the last
5014 * task reference we can safely take a new reference
5015 * while holding the rcu_read_lock().
5016 */
5017 get_task_struct(owner);
5018 }
5019 rcu_read_unlock();
5020
5021 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005022 /*
5023 * If we're here through perf_event_exit_task() we're already
5024 * holding ctx->mutex which would be an inversion wrt. the
5025 * normal lock order.
5026 *
5027 * However we can safely take this lock because its the child
5028 * ctx->mutex.
5029 */
5030 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
5031
Peter Zijlstra88821352010-11-09 19:01:43 +01005032 /*
5033 * We have to re-check the event->owner field, if it is cleared
5034 * we raced with perf_event_exit_task(), acquiring the mutex
5035 * ensured they're done, and we can proceed with freeing the
5036 * event.
5037 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005038 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01005039 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005040 smp_store_release(&event->owner, NULL);
5041 }
Peter Zijlstra88821352010-11-09 19:01:43 +01005042 mutex_unlock(&owner->perf_event_mutex);
5043 put_task_struct(owner);
5044 }
Jiri Olsaf8697762014-08-01 14:33:01 +02005045}
5046
Jiri Olsaf8697762014-08-01 14:33:01 +02005047static void put_event(struct perf_event *event)
5048{
Jiri Olsaf8697762014-08-01 14:33:01 +02005049 if (!atomic_long_dec_and_test(&event->refcount))
5050 return;
5051
Peter Zijlstra683ede42014-05-05 12:11:24 +02005052 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01005053}
5054
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005055/*
5056 * Kill an event dead; while event:refcount will preserve the event
5057 * object, it will not preserve its functionality. Once the last 'user'
5058 * gives up the object, we'll destroy the thing.
5059 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005060int perf_event_release_kernel(struct perf_event *event)
5061{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005062 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005063 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01005064 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005065
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005066 /*
5067 * If we got here through err_file: fput(event_file); we will not have
5068 * attached to a context yet.
5069 */
5070 if (!ctx) {
5071 WARN_ON_ONCE(event->attach_state &
5072 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
5073 goto no_ctx;
5074 }
5075
Peter Zijlstra88821352010-11-09 19:01:43 +01005076 if (!is_kernel_event(event))
5077 perf_remove_from_owner(event);
5078
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01005079 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02005080 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005081 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01005082
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005083 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005084 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01005085 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005086 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005087 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005088 * Anybody acquiring event->child_mutex after the below loop _must_
5089 * also see this, most importantly inherit_event() which will avoid
5090 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005091 *
5092 * Thus this guarantees that we will in fact observe and kill _ALL_
5093 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01005094 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005095 event->state = PERF_EVENT_STATE_DEAD;
5096 raw_spin_unlock_irq(&ctx->lock);
5097
5098 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005099
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005100again:
5101 mutex_lock(&event->child_mutex);
5102 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01005103
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005104 /*
5105 * Cannot change, child events are not migrated, see the
5106 * comment with perf_event_ctx_lock_nested().
5107 */
Will Deacon506458e2017-10-24 11:22:48 +01005108 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005109 /*
5110 * Since child_mutex nests inside ctx::mutex, we must jump
5111 * through hoops. We start by grabbing a reference on the ctx.
5112 *
5113 * Since the event cannot get freed while we hold the
5114 * child_mutex, the context must also exist and have a !0
5115 * reference count.
5116 */
5117 get_ctx(ctx);
5118
5119 /*
5120 * Now that we have a ctx ref, we can drop child_mutex, and
5121 * acquire ctx::mutex without fear of it going away. Then we
5122 * can re-acquire child_mutex.
5123 */
5124 mutex_unlock(&event->child_mutex);
5125 mutex_lock(&ctx->mutex);
5126 mutex_lock(&event->child_mutex);
5127
5128 /*
5129 * Now that we hold ctx::mutex and child_mutex, revalidate our
5130 * state, if child is still the first entry, it didn't get freed
5131 * and we can continue doing so.
5132 */
5133 tmp = list_first_entry_or_null(&event->child_list,
5134 struct perf_event, child_list);
5135 if (tmp == child) {
5136 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005137 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005138 /*
5139 * This matches the refcount bump in inherit_event();
5140 * this can't be the last reference.
5141 */
5142 put_event(event);
5143 }
5144
5145 mutex_unlock(&event->child_mutex);
5146 mutex_unlock(&ctx->mutex);
5147 put_ctx(ctx);
5148 goto again;
5149 }
5150 mutex_unlock(&event->child_mutex);
5151
Peter Zijlstra82d94852018-01-09 13:10:30 +01005152 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005153 void *var = &child->ctx->refcount;
5154
Peter Zijlstra82d94852018-01-09 13:10:30 +01005155 list_del(&child->child_list);
5156 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005157
5158 /*
5159 * Wake any perf_event_free_task() waiting for this event to be
5160 * freed.
5161 */
5162 smp_mb(); /* pairs with wait_var_event() */
5163 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005164 }
5165
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005166no_ctx:
5167 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005168 return 0;
5169}
5170EXPORT_SYMBOL_GPL(perf_event_release_kernel);
5171
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02005172/*
5173 * Called when the last reference to the file is gone.
5174 */
Al Viroa6fa9412012-08-20 14:59:25 +01005175static int perf_release(struct inode *inode, struct file *file)
5176{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005177 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01005178 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005179}
5180
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005181static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005182{
5183 struct perf_event *child;
5184 u64 total = 0;
5185
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005186 *enabled = 0;
5187 *running = 0;
5188
Peter Zijlstra6f105812009-11-20 22:19:56 +01005189 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005190
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005191 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005192 total += perf_event_count(event);
5193
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005194 *enabled += event->total_time_enabled +
5195 atomic64_read(&event->child_total_time_enabled);
5196 *running += event->total_time_running +
5197 atomic64_read(&event->child_total_time_running);
5198
5199 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005200 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005201 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005202 *enabled += child->total_time_enabled;
5203 *running += child->total_time_running;
5204 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01005205 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005206
5207 return total;
5208}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005209
5210u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5211{
5212 struct perf_event_context *ctx;
5213 u64 count;
5214
5215 ctx = perf_event_ctx_lock(event);
5216 count = __perf_event_read_value(event, enabled, running);
5217 perf_event_ctx_unlock(event, ctx);
5218
5219 return count;
5220}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005221EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005223static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005224 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005225{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005226 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005227 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005228 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005229 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005230 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01005231
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005232 ret = perf_event_read(leader, true);
5233 if (ret)
5234 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005235
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02005236 raw_spin_lock_irqsave(&ctx->lock, flags);
5237
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005238 /*
5239 * Since we co-schedule groups, {enabled,running} times of siblings
5240 * will be identical to those of the leader, so we only publish one
5241 * set.
5242 */
5243 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5244 values[n++] += leader->total_time_enabled +
5245 atomic64_read(&leader->child_total_time_enabled);
5246 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005247
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005248 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5249 values[n++] += leader->total_time_running +
5250 atomic64_read(&leader->child_total_time_running);
5251 }
5252
5253 /*
5254 * Write {count,id} tuples for every sibling.
5255 */
5256 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005257 if (read_format & PERF_FORMAT_ID)
5258 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005259
Peter Zijlstraedb39592018-03-15 17:36:56 +01005260 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005261 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005262 if (read_format & PERF_FORMAT_ID)
5263 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005264 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005265
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005266 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005267 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005268}
5269
5270static int perf_read_group(struct perf_event *event,
5271 u64 read_format, char __user *buf)
5272{
5273 struct perf_event *leader = event->group_leader, *child;
5274 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005275 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005276 u64 *values;
5277
5278 lockdep_assert_held(&ctx->mutex);
5279
5280 values = kzalloc(event->read_size, GFP_KERNEL);
5281 if (!values)
5282 return -ENOMEM;
5283
5284 values[0] = 1 + leader->nr_siblings;
5285
5286 /*
5287 * By locking the child_mutex of the leader we effectively
5288 * lock the child list of all siblings.. XXX explain how.
5289 */
5290 mutex_lock(&leader->child_mutex);
5291
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005292 ret = __perf_read_group_add(leader, read_format, values);
5293 if (ret)
5294 goto unlock;
5295
5296 list_for_each_entry(child, &leader->child_list, child_list) {
5297 ret = __perf_read_group_add(child, read_format, values);
5298 if (ret)
5299 goto unlock;
5300 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005301
5302 mutex_unlock(&leader->child_mutex);
5303
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005304 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005305 if (copy_to_user(buf, values, event->read_size))
5306 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005307 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005308
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005309unlock:
5310 mutex_unlock(&leader->child_mutex);
5311out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005312 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005313 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005314}
5315
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005316static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005317 u64 read_format, char __user *buf)
5318{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005319 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005320 u64 values[4];
5321 int n = 0;
5322
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005323 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005324 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5325 values[n++] = enabled;
5326 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5327 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005328 if (read_format & PERF_FORMAT_ID)
5329 values[n++] = primary_event_id(event);
5330
5331 if (copy_to_user(buf, values, n * sizeof(u64)))
5332 return -EFAULT;
5333
5334 return n * sizeof(u64);
5335}
5336
Jiri Olsadc633982014-09-12 13:18:26 +02005337static bool is_event_hup(struct perf_event *event)
5338{
5339 bool no_children;
5340
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005341 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005342 return false;
5343
5344 mutex_lock(&event->child_mutex);
5345 no_children = list_empty(&event->child_list);
5346 mutex_unlock(&event->child_mutex);
5347 return no_children;
5348}
5349
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005350/*
5351 * Read the performance event - simple non blocking version for now
5352 */
5353static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005354__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005355{
5356 u64 read_format = event->attr.read_format;
5357 int ret;
5358
5359 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005360 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005361 * error state (i.e. because it was pinned but it couldn't be
5362 * scheduled on to the CPU at some point).
5363 */
5364 if (event->state == PERF_EVENT_STATE_ERROR)
5365 return 0;
5366
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005367 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005368 return -ENOSPC;
5369
5370 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005371 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005372 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005373 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005374 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005375
5376 return ret;
5377}
5378
5379static ssize_t
5380perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5381{
5382 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005383 struct perf_event_context *ctx;
5384 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005385
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005386 ret = security_perf_event_read(event);
5387 if (ret)
5388 return ret;
5389
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005390 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005391 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005392 perf_event_ctx_unlock(event, ctx);
5393
5394 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005395}
5396
Al Viro9dd95742017-07-03 00:42:43 -04005397static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005398{
5399 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005400 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005401 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005402
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005403 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005404
Jiri Olsadc633982014-09-12 13:18:26 +02005405 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005406 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005407
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005408 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005409 * Pin the event->rb by taking event->mmap_mutex; otherwise
5410 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005411 */
5412 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005413 rb = event->rb;
5414 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005415 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005416 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005417 return events;
5418}
5419
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005420static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005421{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005422 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005423 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005424 perf_event_update_userpage(event);
5425}
5426
Like Xu52ba4b02019-10-27 18:52:39 +08005427/* Assume it's not an event with inherit set. */
5428u64 perf_event_pause(struct perf_event *event, bool reset)
5429{
5430 struct perf_event_context *ctx;
5431 u64 count;
5432
5433 ctx = perf_event_ctx_lock(event);
5434 WARN_ON_ONCE(event->attr.inherit);
5435 _perf_event_disable(event);
5436 count = local64_read(&event->count);
5437 if (reset)
5438 local64_set(&event->count, 0);
5439 perf_event_ctx_unlock(event, ctx);
5440
5441 return count;
5442}
5443EXPORT_SYMBOL_GPL(perf_event_pause);
5444
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005445/*
5446 * Holding the top-level event's child_mutex means that any
5447 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005448 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005449 * task existence requirements of perf_event_enable/disable.
5450 */
5451static void perf_event_for_each_child(struct perf_event *event,
5452 void (*func)(struct perf_event *))
5453{
5454 struct perf_event *child;
5455
5456 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005457
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005458 mutex_lock(&event->child_mutex);
5459 func(event);
5460 list_for_each_entry(child, &event->child_list, child_list)
5461 func(child);
5462 mutex_unlock(&event->child_mutex);
5463}
5464
5465static void perf_event_for_each(struct perf_event *event,
5466 void (*func)(struct perf_event *))
5467{
5468 struct perf_event_context *ctx = event->ctx;
5469 struct perf_event *sibling;
5470
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005471 lockdep_assert_held(&ctx->mutex);
5472
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005473 event = event->group_leader;
5474
5475 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005476 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005477 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005478}
5479
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005480static void __perf_event_period(struct perf_event *event,
5481 struct perf_cpu_context *cpuctx,
5482 struct perf_event_context *ctx,
5483 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005484{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005485 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005486 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005487
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005488 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005489 event->attr.sample_freq = value;
5490 } else {
5491 event->attr.sample_period = value;
5492 event->hw.sample_period = value;
5493 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005494
5495 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5496 if (active) {
5497 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005498 /*
5499 * We could be throttled; unthrottle now to avoid the tick
5500 * trying to unthrottle while we already re-started the event.
5501 */
5502 if (event->hw.interrupts == MAX_INTERRUPTS) {
5503 event->hw.interrupts = 0;
5504 perf_log_throttle(event, 1);
5505 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005506 event->pmu->stop(event, PERF_EF_UPDATE);
5507 }
5508
5509 local64_set(&event->hw.period_left, 0);
5510
5511 if (active) {
5512 event->pmu->start(event, PERF_EF_RELOAD);
5513 perf_pmu_enable(ctx->pmu);
5514 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005515}
5516
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005517static int perf_event_check_period(struct perf_event *event, u64 value)
5518{
5519 return event->pmu->check_period(event, value);
5520}
5521
Like Xu3ca270f2019-10-27 18:52:38 +08005522static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005523{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005524 if (!is_sampling_event(event))
5525 return -EINVAL;
5526
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005527 if (!value)
5528 return -EINVAL;
5529
5530 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5531 return -EINVAL;
5532
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005533 if (perf_event_check_period(event, value))
5534 return -EINVAL;
5535
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305536 if (!event->attr.freq && (value & (1ULL << 63)))
5537 return -EINVAL;
5538
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005539 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005540
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005541 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005542}
5543
Like Xu3ca270f2019-10-27 18:52:38 +08005544int perf_event_period(struct perf_event *event, u64 value)
5545{
5546 struct perf_event_context *ctx;
5547 int ret;
5548
5549 ctx = perf_event_ctx_lock(event);
5550 ret = _perf_event_period(event, value);
5551 perf_event_ctx_unlock(event, ctx);
5552
5553 return ret;
5554}
5555EXPORT_SYMBOL_GPL(perf_event_period);
5556
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005557static const struct file_operations perf_fops;
5558
Al Viro2903ff02012-08-28 12:52:22 -04005559static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005560{
Al Viro2903ff02012-08-28 12:52:22 -04005561 struct fd f = fdget(fd);
5562 if (!f.file)
5563 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005564
Al Viro2903ff02012-08-28 12:52:22 -04005565 if (f.file->f_op != &perf_fops) {
5566 fdput(f);
5567 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005568 }
Al Viro2903ff02012-08-28 12:52:22 -04005569 *p = f;
5570 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005571}
5572
5573static int perf_event_set_output(struct perf_event *event,
5574 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005575static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005576static int perf_copy_attr(struct perf_event_attr __user *uattr,
5577 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005578
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005579static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005580{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005581 void (*func)(struct perf_event *);
5582 u32 flags = arg;
5583
5584 switch (cmd) {
5585 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005586 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005587 break;
5588 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005589 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005590 break;
5591 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005592 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005593 break;
5594
5595 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005596 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597
5598 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005599 {
5600 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005601
Like Xu3ca270f2019-10-27 18:52:38 +08005602 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5603 return -EFAULT;
5604
5605 return _perf_event_period(event, value);
5606 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005607 case PERF_EVENT_IOC_ID:
5608 {
5609 u64 id = primary_event_id(event);
5610
5611 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5612 return -EFAULT;
5613 return 0;
5614 }
5615
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005616 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005617 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005618 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005619 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005620 struct perf_event *output_event;
5621 struct fd output;
5622 ret = perf_fget_light(arg, &output);
5623 if (ret)
5624 return ret;
5625 output_event = output.file->private_data;
5626 ret = perf_event_set_output(event, output_event);
5627 fdput(output);
5628 } else {
5629 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005630 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005631 return ret;
5632 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005633
Li Zefan6fb29152009-10-15 11:21:42 +08005634 case PERF_EVENT_IOC_SET_FILTER:
5635 return perf_event_set_filter(event, (void __user *)arg);
5636
Alexei Starovoitov25415172015-03-25 12:49:20 -07005637 case PERF_EVENT_IOC_SET_BPF:
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005638 {
5639 struct bpf_prog *prog;
5640 int err;
5641
5642 prog = bpf_prog_get(arg);
5643 if (IS_ERR(prog))
5644 return PTR_ERR(prog);
5645
5646 err = perf_event_set_bpf_prog(event, prog);
5647 if (err) {
5648 bpf_prog_put(prog);
5649 return err;
5650 }
5651
5652 return 0;
5653 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07005654
Wang Nan86e79722016-03-28 06:41:29 +00005655 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005656 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005657
5658 rcu_read_lock();
5659 rb = rcu_dereference(event->rb);
5660 if (!rb || !rb->nr_pages) {
5661 rcu_read_unlock();
5662 return -EINVAL;
5663 }
5664 rb_toggle_paused(rb, !!arg);
5665 rcu_read_unlock();
5666 return 0;
5667 }
Yonghong Songf371b302017-12-11 11:39:02 -08005668
5669 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005670 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005671
5672 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5673 struct perf_event_attr new_attr;
5674 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5675 &new_attr);
5676
5677 if (err)
5678 return err;
5679
5680 return perf_event_modify_attr(event, &new_attr);
5681 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005682 default:
5683 return -ENOTTY;
5684 }
5685
5686 if (flags & PERF_IOC_FLAG_GROUP)
5687 perf_event_for_each(event, func);
5688 else
5689 perf_event_for_each_child(event, func);
5690
5691 return 0;
5692}
5693
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005694static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5695{
5696 struct perf_event *event = file->private_data;
5697 struct perf_event_context *ctx;
5698 long ret;
5699
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005700 /* Treat ioctl like writes as it is likely a mutating operation. */
5701 ret = security_perf_event_write(event);
5702 if (ret)
5703 return ret;
5704
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005705 ctx = perf_event_ctx_lock(event);
5706 ret = _perf_ioctl(event, cmd, arg);
5707 perf_event_ctx_unlock(event, ctx);
5708
5709 return ret;
5710}
5711
Pawel Mollb3f20782014-06-13 16:03:32 +01005712#ifdef CONFIG_COMPAT
5713static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5714 unsigned long arg)
5715{
5716 switch (_IOC_NR(cmd)) {
5717 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5718 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005719 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5720 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005721 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5722 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5723 cmd &= ~IOCSIZE_MASK;
5724 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5725 }
5726 break;
5727 }
5728 return perf_ioctl(file, cmd, arg);
5729}
5730#else
5731# define perf_compat_ioctl NULL
5732#endif
5733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005734int perf_event_task_enable(void)
5735{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005736 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005737 struct perf_event *event;
5738
5739 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005740 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5741 ctx = perf_event_ctx_lock(event);
5742 perf_event_for_each_child(event, _perf_event_enable);
5743 perf_event_ctx_unlock(event, ctx);
5744 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005745 mutex_unlock(&current->perf_event_mutex);
5746
5747 return 0;
5748}
5749
5750int perf_event_task_disable(void)
5751{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005752 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005753 struct perf_event *event;
5754
5755 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005756 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5757 ctx = perf_event_ctx_lock(event);
5758 perf_event_for_each_child(event, _perf_event_disable);
5759 perf_event_ctx_unlock(event, ctx);
5760 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005761 mutex_unlock(&current->perf_event_mutex);
5762
5763 return 0;
5764}
5765
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005766static int perf_event_index(struct perf_event *event)
5767{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005768 if (event->hw.state & PERF_HES_STOPPED)
5769 return 0;
5770
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005771 if (event->state != PERF_EVENT_STATE_ACTIVE)
5772 return 0;
5773
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005774 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005775}
5776
Eric B Munsonc4794292011-06-23 16:34:38 -04005777static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005778 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005779 u64 *enabled,
5780 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005781{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005782 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005783
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005784 *now = perf_clock();
5785 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005786 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005787}
5788
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005789static void perf_event_init_userpage(struct perf_event *event)
5790{
5791 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005792 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005793
5794 rcu_read_lock();
5795 rb = rcu_dereference(event->rb);
5796 if (!rb)
5797 goto unlock;
5798
5799 userpg = rb->user_page;
5800
5801 /* Allow new userspace to detect that bit 0 is deprecated */
5802 userpg->cap_bit0_is_deprecated = 1;
5803 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005804 userpg->data_offset = PAGE_SIZE;
5805 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005806
5807unlock:
5808 rcu_read_unlock();
5809}
5810
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005811void __weak arch_perf_update_userpage(
5812 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005813{
5814}
5815
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005816/*
5817 * Callers need to ensure there can be no nesting of this function, otherwise
5818 * the seqlock logic goes bad. We can not serialize this because the arch
5819 * code calls this from NMI context.
5820 */
5821void perf_event_update_userpage(struct perf_event *event)
5822{
5823 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005824 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005825 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005826
5827 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005828 rb = rcu_dereference(event->rb);
5829 if (!rb)
5830 goto unlock;
5831
Eric B Munson0d641202011-06-24 12:26:26 -04005832 /*
5833 * compute total_time_enabled, total_time_running
5834 * based on snapshot values taken when the event
5835 * was last scheduled in.
5836 *
5837 * we cannot simply called update_context_time()
5838 * because of locking issue as we can be called in
5839 * NMI context
5840 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005841 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005842
Frederic Weisbecker76369132011-05-19 19:55:04 +02005843 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005844 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005845 * Disable preemption to guarantee consistent time stamps are stored to
5846 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005847 */
5848 preempt_disable();
5849 ++userpg->lock;
5850 barrier();
5851 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005852 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005853 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005854 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005855
Eric B Munson0d641202011-06-24 12:26:26 -04005856 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005857 atomic64_read(&event->child_total_time_enabled);
5858
Eric B Munson0d641202011-06-24 12:26:26 -04005859 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005860 atomic64_read(&event->child_total_time_running);
5861
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005862 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005864 barrier();
5865 ++userpg->lock;
5866 preempt_enable();
5867unlock:
5868 rcu_read_unlock();
5869}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005870EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005871
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305872static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005873{
Dave Jiang11bac802017-02-24 14:56:41 -08005874 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005875 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305876 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005877
5878 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5879 if (vmf->pgoff == 0)
5880 ret = 0;
5881 return ret;
5882 }
5883
5884 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005885 rb = rcu_dereference(event->rb);
5886 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005887 goto unlock;
5888
5889 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5890 goto unlock;
5891
Frederic Weisbecker76369132011-05-19 19:55:04 +02005892 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005893 if (!vmf->page)
5894 goto unlock;
5895
5896 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005897 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005898 vmf->page->index = vmf->pgoff;
5899
5900 ret = 0;
5901unlock:
5902 rcu_read_unlock();
5903
5904 return ret;
5905}
5906
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005907static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005908 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005909{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005910 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005911 unsigned long flags;
5912
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005913 if (event->rb) {
5914 /*
5915 * Should be impossible, we set this when removing
5916 * event->rb_entry and wait/clear when adding event->rb_entry.
5917 */
5918 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005919
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005920 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005921 spin_lock_irqsave(&old_rb->event_lock, flags);
5922 list_del_rcu(&event->rb_entry);
5923 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005924
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005925 event->rcu_batches = get_state_synchronize_rcu();
5926 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005927 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005928
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005929 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005930 if (event->rcu_pending) {
5931 cond_synchronize_rcu(event->rcu_batches);
5932 event->rcu_pending = 0;
5933 }
5934
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005935 spin_lock_irqsave(&rb->event_lock, flags);
5936 list_add_rcu(&event->rb_entry, &rb->event_list);
5937 spin_unlock_irqrestore(&rb->event_lock, flags);
5938 }
5939
Alexander Shishkin767ae082016-09-06 16:23:49 +03005940 /*
5941 * Avoid racing with perf_mmap_close(AUX): stop the event
5942 * before swizzling the event::rb pointer; if it's getting
5943 * unmapped, its aux_mmap_count will be 0 and it won't
5944 * restart. See the comment in __perf_pmu_output_stop().
5945 *
5946 * Data will inevitably be lost when set_output is done in
5947 * mid-air, but then again, whoever does it like this is
5948 * not in for the data anyway.
5949 */
5950 if (has_aux(event))
5951 perf_event_stop(event, 0);
5952
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005953 rcu_assign_pointer(event->rb, rb);
5954
5955 if (old_rb) {
5956 ring_buffer_put(old_rb);
5957 /*
5958 * Since we detached before setting the new rb, so that we
5959 * could attach the new rb, we could have missed a wakeup.
5960 * Provide it now.
5961 */
5962 wake_up_all(&event->waitq);
5963 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005964}
5965
5966static void ring_buffer_wakeup(struct perf_event *event)
5967{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005968 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005969
5970 rcu_read_lock();
5971 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005972 if (rb) {
5973 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5974 wake_up_all(&event->waitq);
5975 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005976 rcu_read_unlock();
5977}
5978
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005979struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005981 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005982
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005983 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005984 rb = rcu_dereference(event->rb);
5985 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005986 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02005987 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005988 }
5989 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005990
Frederic Weisbecker76369132011-05-19 19:55:04 +02005991 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005992}
5993
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005994void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005995{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005996 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005997 return;
5998
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005999 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006000
Frederic Weisbecker76369132011-05-19 19:55:04 +02006001 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006002}
6003
6004static void perf_mmap_open(struct vm_area_struct *vma)
6005{
6006 struct perf_event *event = vma->vm_file->private_data;
6007
6008 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006009 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006010
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006011 if (vma->vm_pgoff)
6012 atomic_inc(&event->rb->aux_mmap_count);
6013
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006014 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006015 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006016}
6017
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006018static void perf_pmu_output_stop(struct perf_event *event);
6019
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006020/*
6021 * A buffer can be mmap()ed multiple times; either directly through the same
6022 * event, or through other events by use of perf_event_set_output().
6023 *
6024 * In order to undo the VM accounting done by perf_mmap() we need to destroy
6025 * the buffer here, where we still have a VM context. This means we need
6026 * to detach all events redirecting to us.
6027 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006028static void perf_mmap_close(struct vm_area_struct *vma)
6029{
6030 struct perf_event *event = vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006031 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006032 struct user_struct *mmap_user = rb->mmap_user;
6033 int mmap_locked = rb->mmap_locked;
6034 unsigned long size = perf_data_size(rb);
Jiri Olsaf91072e2020-09-16 13:53:11 +02006035 bool detach_rest = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006036
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006037 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006038 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006039
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006040 /*
6041 * rb->aux_mmap_count will always drop before rb->mmap_count and
6042 * event->mmap_count, so it is ok to use event->mmap_mutex to
6043 * serialize with perf_mmap here.
6044 */
6045 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
6046 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006047 /*
6048 * Stop all AUX events that are writing to this buffer,
6049 * so that we can free its AUX pages and corresponding PMU
6050 * data. Note that after rb::aux_mmap_count dropped to zero,
6051 * they won't start any more (see perf_aux_output_begin()).
6052 */
6053 perf_pmu_output_stop(event);
6054
6055 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02006056 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
6057 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006058
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006059 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006060 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02006061 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006062
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006063 mutex_unlock(&event->mmap_mutex);
6064 }
6065
Jiri Olsaf91072e2020-09-16 13:53:11 +02006066 if (atomic_dec_and_test(&rb->mmap_count))
6067 detach_rest = true;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006068
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006069 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006070 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006071
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006072 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006073 mutex_unlock(&event->mmap_mutex);
6074
6075 /* If there's still other mmap()s of this buffer, we're done. */
Jiri Olsaf91072e2020-09-16 13:53:11 +02006076 if (!detach_rest)
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006077 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006078
6079 /*
6080 * No other mmap()s, detach from all other events that might redirect
6081 * into the now unreachable buffer. Somewhat complicated by the
6082 * fact that rb::event_lock otherwise nests inside mmap_mutex.
6083 */
6084again:
6085 rcu_read_lock();
6086 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
6087 if (!atomic_long_inc_not_zero(&event->refcount)) {
6088 /*
6089 * This event is en-route to free_event() which will
6090 * detach it and remove it from the list.
6091 */
6092 continue;
6093 }
6094 rcu_read_unlock();
6095
6096 mutex_lock(&event->mmap_mutex);
6097 /*
6098 * Check we didn't race with perf_event_set_output() which can
6099 * swizzle the rb from under us while we were waiting to
6100 * acquire mmap_mutex.
6101 *
6102 * If we find a different rb; ignore this event, a next
6103 * iteration will no longer find it on the list. We have to
6104 * still restart the iteration to make sure we're not now
6105 * iterating the wrong list.
6106 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006107 if (event->rb == rb)
6108 ring_buffer_attach(event, NULL);
6109
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006110 mutex_unlock(&event->mmap_mutex);
6111 put_event(event);
6112
6113 /*
6114 * Restart the iteration; either we're on the wrong list or
6115 * destroyed its integrity by doing a deletion.
6116 */
6117 goto again;
6118 }
6119 rcu_read_unlock();
6120
6121 /*
6122 * It could be there's still a few 0-ref events on the list; they'll
6123 * get cleaned up by free_event() -- they'll also still have their
6124 * ref on the rb and will free it whenever they are done with it.
6125 *
6126 * Aside from that, this buffer is 'fully' detached and unmapped,
6127 * undo the VM accounting.
6128 */
6129
Song Liud44248a2019-09-04 14:46:18 -07006130 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
6131 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006132 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006133 free_uid(mmap_user);
6134
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006135out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006136 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006137}
6138
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04006139static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006140 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01006141 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006142 .fault = perf_mmap_fault,
6143 .page_mkwrite = perf_mmap_fault,
6144};
6145
6146static int perf_mmap(struct file *file, struct vm_area_struct *vma)
6147{
6148 struct perf_event *event = file->private_data;
6149 unsigned long user_locked, user_lock_limit;
6150 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006151 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006152 unsigned long locked, lock_limit;
6153 unsigned long vma_size;
6154 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006155 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006156 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006157
Peter Zijlstrac7920612010-05-18 10:33:24 +02006158 /*
6159 * Don't allow mmap() of inherited per-task counters. This would
6160 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02006161 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02006162 */
6163 if (event->cpu == -1 && event->attr.inherit)
6164 return -EINVAL;
6165
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006166 if (!(vma->vm_flags & VM_SHARED))
6167 return -EINVAL;
6168
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006169 ret = security_perf_event_read(event);
6170 if (ret)
6171 return ret;
6172
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006173 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006174
6175 if (vma->vm_pgoff == 0) {
6176 nr_pages = (vma_size / PAGE_SIZE) - 1;
6177 } else {
6178 /*
6179 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
6180 * mapped, all subsequent mappings should have the same size
6181 * and offset. Must be above the normal perf buffer.
6182 */
6183 u64 aux_offset, aux_size;
6184
6185 if (!event->rb)
6186 return -EINVAL;
6187
6188 nr_pages = vma_size / PAGE_SIZE;
6189
6190 mutex_lock(&event->mmap_mutex);
6191 ret = -EINVAL;
6192
6193 rb = event->rb;
6194 if (!rb)
6195 goto aux_unlock;
6196
Mark Rutland6aa7de02017-10-23 14:07:29 -07006197 aux_offset = READ_ONCE(rb->user_page->aux_offset);
6198 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006199
6200 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
6201 goto aux_unlock;
6202
6203 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
6204 goto aux_unlock;
6205
6206 /* already mapped with a different offset */
6207 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
6208 goto aux_unlock;
6209
6210 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
6211 goto aux_unlock;
6212
6213 /* already mapped with a different size */
6214 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6215 goto aux_unlock;
6216
6217 if (!is_power_of_2(nr_pages))
6218 goto aux_unlock;
6219
6220 if (!atomic_inc_not_zero(&rb->mmap_count))
6221 goto aux_unlock;
6222
6223 if (rb_has_aux(rb)) {
6224 atomic_inc(&rb->aux_mmap_count);
6225 ret = 0;
6226 goto unlock;
6227 }
6228
6229 atomic_set(&rb->aux_mmap_count, 1);
6230 user_extra = nr_pages;
6231
6232 goto accounting;
6233 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006234
6235 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006236 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006237 * can do bitmasks instead of modulo.
6238 */
Kan Liang2ed11312015-03-02 02:14:26 -05006239 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006240 return -EINVAL;
6241
6242 if (vma_size != PAGE_SIZE * (1 + nr_pages))
6243 return -EINVAL;
6244
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006245 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006246again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006247 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006248 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006249 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006250 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006251 goto unlock;
6252 }
6253
6254 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6255 /*
6256 * Raced against perf_mmap_close() through
6257 * perf_event_set_output(). Try again, hope for better
6258 * luck.
6259 */
6260 mutex_unlock(&event->mmap_mutex);
6261 goto again;
6262 }
6263
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006264 goto unlock;
6265 }
6266
6267 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006268
6269accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006270 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
6271
6272 /*
6273 * Increase the limit linearly with more CPUs:
6274 */
6275 user_lock_limit *= num_online_cpus();
6276
Song Liu00346152020-01-23 10:11:46 -08006277 user_locked = atomic_long_read(&user->locked_vm);
6278
6279 /*
6280 * sysctl_perf_event_mlock may have changed, so that
6281 * user->locked_vm > user_lock_limit
6282 */
6283 if (user_locked > user_lock_limit)
6284 user_locked = user_lock_limit;
6285 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006286
Alexander Shishkinc4b75472019-11-20 19:06:40 +02006287 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07006288 /*
6289 * charge locked_vm until it hits user_lock_limit;
6290 * charge the rest from pinned_vm
6291 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006292 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07006293 user_extra -= extra;
6294 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006295
Jiri Slaby78d7d402010-03-05 13:42:54 -08006296 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006297 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006298 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006299
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006300 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006301 !capable(CAP_IPC_LOCK)) {
6302 ret = -EPERM;
6303 goto unlock;
6304 }
6305
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006306 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02006307
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006308 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02006309 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006310
Frederic Weisbecker76369132011-05-19 19:55:04 +02006311 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006312 rb = rb_alloc(nr_pages,
6313 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6314 event->cpu, flags);
6315
6316 if (!rb) {
6317 ret = -ENOMEM;
6318 goto unlock;
6319 }
6320
6321 atomic_set(&rb->mmap_count, 1);
6322 rb->mmap_user = get_current_user();
6323 rb->mmap_locked = extra;
6324
6325 ring_buffer_attach(event, rb);
6326
6327 perf_event_init_userpage(event);
6328 perf_event_update_userpage(event);
6329 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02006330 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6331 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006332 if (!ret)
6333 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006334 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006335
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006336unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006337 if (!ret) {
6338 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006339 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006340
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006341 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006342 } else if (rb) {
6343 atomic_dec(&rb->mmap_count);
6344 }
6345aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006346 mutex_unlock(&event->mmap_mutex);
6347
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006348 /*
6349 * Since pinned accounting is per vm we cannot allow fork() to copy our
6350 * vma.
6351 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006352 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006353 vma->vm_ops = &perf_mmap_vmops;
6354
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006355 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006356 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006357
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006358 return ret;
6359}
6360
6361static int perf_fasync(int fd, struct file *filp, int on)
6362{
Al Viro496ad9a2013-01-23 17:07:38 -05006363 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006364 struct perf_event *event = filp->private_data;
6365 int retval;
6366
Al Viro59551022016-01-22 15:40:57 -05006367 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006368 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006369 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006370
6371 if (retval < 0)
6372 return retval;
6373
6374 return 0;
6375}
6376
6377static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006378 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006379 .release = perf_release,
6380 .read = perf_read,
6381 .poll = perf_poll,
6382 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006383 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006384 .mmap = perf_mmap,
6385 .fasync = perf_fasync,
6386};
6387
6388/*
6389 * Perf event wakeup
6390 *
6391 * If there's data, ensure we set the poll() state and publish everything
6392 * to user-space before waking everybody up.
6393 */
6394
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006395static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6396{
6397 /* only the parent has fasync state */
6398 if (event->parent)
6399 event = event->parent;
6400 return &event->fasync;
6401}
6402
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006403void perf_event_wakeup(struct perf_event *event)
6404{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006405 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006406
6407 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006408 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006409 event->pending_kill = 0;
6410 }
6411}
6412
Marco Elver97ba62b2021-04-08 12:36:01 +02006413static void perf_sigtrap(struct perf_event *event)
6414{
Marco Elver97ba62b2021-04-08 12:36:01 +02006415 /*
6416 * We'd expect this to only occur if the irq_work is delayed and either
6417 * ctx->task or current has changed in the meantime. This can be the
6418 * case on architectures that do not implement arch_irq_work_raise().
6419 */
6420 if (WARN_ON_ONCE(event->ctx->task != current))
6421 return;
6422
6423 /*
6424 * perf_pending_event() can race with the task exiting.
6425 */
6426 if (current->flags & PF_EXITING)
6427 return;
6428
Eric W. Biedermanaf5eeab2021-05-02 14:27:24 -05006429 force_sig_perf((void __user *)event->pending_addr,
6430 event->attr.type, event->attr.sig_data);
Marco Elver97ba62b2021-04-08 12:36:01 +02006431}
6432
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006433static void perf_pending_event_disable(struct perf_event *event)
6434{
6435 int cpu = READ_ONCE(event->pending_disable);
6436
6437 if (cpu < 0)
6438 return;
6439
6440 if (cpu == smp_processor_id()) {
6441 WRITE_ONCE(event->pending_disable, -1);
Marco Elver97ba62b2021-04-08 12:36:01 +02006442
6443 if (event->attr.sigtrap) {
6444 perf_sigtrap(event);
6445 atomic_set_release(&event->event_limit, 1); /* rearm event */
6446 return;
6447 }
6448
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006449 perf_event_disable_local(event);
6450 return;
6451 }
6452
6453 /*
6454 * CPU-A CPU-B
6455 *
6456 * perf_event_disable_inatomic()
6457 * @pending_disable = CPU-A;
6458 * irq_work_queue();
6459 *
6460 * sched-out
6461 * @pending_disable = -1;
6462 *
6463 * sched-in
6464 * perf_event_disable_inatomic()
6465 * @pending_disable = CPU-B;
6466 * irq_work_queue(); // FAILS
6467 *
6468 * irq_work_run()
6469 * perf_pending_event()
6470 *
6471 * But the event runs on CPU-B and wants disabling there.
6472 */
6473 irq_work_queue_on(&event->pending, cpu);
6474}
6475
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006476static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006477{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006478 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006479 int rctx;
6480
6481 rctx = perf_swevent_get_recursion_context();
6482 /*
6483 * If we 'fail' here, that's OK, it means recursion is already disabled
6484 * and we won't recurse 'further'.
6485 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006486
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006487 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006488
6489 if (event->pending_wakeup) {
6490 event->pending_wakeup = 0;
6491 perf_event_wakeup(event);
6492 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006493
6494 if (rctx >= 0)
6495 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006496}
6497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006498/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006499 * We assume there is only KVM supporting the callbacks.
6500 * Later on, we might change it to a list if there is
6501 * another virtualization implementation supporting the callbacks.
6502 */
6503struct perf_guest_info_callbacks *perf_guest_cbs;
6504
6505int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6506{
6507 perf_guest_cbs = cbs;
6508 return 0;
6509}
6510EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6511
6512int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6513{
6514 perf_guest_cbs = NULL;
6515 return 0;
6516}
6517EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
6518
Jiri Olsa40189942012-08-07 15:20:37 +02006519static void
6520perf_output_sample_regs(struct perf_output_handle *handle,
6521 struct pt_regs *regs, u64 mask)
6522{
6523 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306524 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006525
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306526 bitmap_from_u64(_mask, mask);
6527 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006528 u64 val;
6529
6530 val = perf_reg_value(regs, bit);
6531 perf_output_put(handle, val);
6532 }
6533}
6534
Stephane Eranian60e23642014-09-24 13:48:37 +02006535static void perf_sample_regs_user(struct perf_regs *regs_user,
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006536 struct pt_regs *regs)
Jiri Olsa40189942012-08-07 15:20:37 +02006537{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006538 if (user_mode(regs)) {
6539 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006540 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006541 } else if (!(current->flags & PF_KTHREAD)) {
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006542 perf_get_regs_user(regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02006543 } else {
6544 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6545 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006546 }
6547}
6548
Stephane Eranian60e23642014-09-24 13:48:37 +02006549static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6550 struct pt_regs *regs)
6551{
6552 regs_intr->regs = regs;
6553 regs_intr->abi = perf_reg_abi(current);
6554}
6555
6556
Jiri Olsac5ebced2012-08-07 15:20:40 +02006557/*
6558 * Get remaining task size from user stack pointer.
6559 *
6560 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006561 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006562 * so using TASK_SIZE as limit.
6563 */
6564static u64 perf_ustack_task_size(struct pt_regs *regs)
6565{
6566 unsigned long addr = perf_user_stack_pointer(regs);
6567
6568 if (!addr || addr >= TASK_SIZE)
6569 return 0;
6570
6571 return TASK_SIZE - addr;
6572}
6573
6574static u16
6575perf_sample_ustack_size(u16 stack_size, u16 header_size,
6576 struct pt_regs *regs)
6577{
6578 u64 task_size;
6579
6580 /* No regs, no stack pointer, no dump. */
6581 if (!regs)
6582 return 0;
6583
6584 /*
6585 * Check if we fit in with the requested stack size into the:
6586 * - TASK_SIZE
6587 * If we don't, we limit the size to the TASK_SIZE.
6588 *
6589 * - remaining sample size
6590 * If we don't, we customize the stack size to
6591 * fit in to the remaining sample size.
6592 */
6593
6594 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6595 stack_size = min(stack_size, (u16) task_size);
6596
6597 /* Current header size plus static size and dynamic size. */
6598 header_size += 2 * sizeof(u64);
6599
6600 /* Do we fit in with the current stack dump size? */
6601 if ((u16) (header_size + stack_size) < header_size) {
6602 /*
6603 * If we overflow the maximum size for the sample,
6604 * we customize the stack dump size to fit in.
6605 */
6606 stack_size = USHRT_MAX - header_size - sizeof(u64);
6607 stack_size = round_up(stack_size, sizeof(u64));
6608 }
6609
6610 return stack_size;
6611}
6612
6613static void
6614perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6615 struct pt_regs *regs)
6616{
6617 /* Case of a kernel thread, nothing to dump */
6618 if (!regs) {
6619 u64 size = 0;
6620 perf_output_put(handle, size);
6621 } else {
6622 unsigned long sp;
6623 unsigned int rem;
6624 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006625 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006626
6627 /*
6628 * We dump:
6629 * static size
6630 * - the size requested by user or the best one we can fit
6631 * in to the sample max size
6632 * data
6633 * - user stack dump data
6634 * dynamic size
6635 * - the actual dumped size
6636 */
6637
6638 /* Static size. */
6639 perf_output_put(handle, dump_size);
6640
6641 /* Data. */
6642 sp = perf_user_stack_pointer(regs);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006643 fs = force_uaccess_begin();
Jiri Olsac5ebced2012-08-07 15:20:40 +02006644 rem = __output_copy_user(handle, (void *) sp, dump_size);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006645 force_uaccess_end(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006646 dyn_size = dump_size - rem;
6647
6648 perf_output_skip(handle, rem);
6649
6650 /* Dynamic size. */
6651 perf_output_put(handle, dyn_size);
6652 }
6653}
6654
Alexander Shishkina4faf002019-10-25 17:08:33 +03006655static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6656 struct perf_sample_data *data,
6657 size_t size)
6658{
6659 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006660 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006661
6662 data->aux_size = 0;
6663
6664 if (!sampler)
6665 goto out;
6666
6667 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6668 goto out;
6669
6670 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6671 goto out;
6672
6673 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6674 if (!rb)
6675 goto out;
6676
6677 /*
6678 * If this is an NMI hit inside sampling code, don't take
6679 * the sample. See also perf_aux_sample_output().
6680 */
6681 if (READ_ONCE(rb->aux_in_sampling)) {
6682 data->aux_size = 0;
6683 } else {
6684 size = min_t(size_t, size, perf_aux_size(rb));
6685 data->aux_size = ALIGN(size, sizeof(u64));
6686 }
6687 ring_buffer_put(rb);
6688
6689out:
6690 return data->aux_size;
6691}
6692
Haocheng Xie32961ae2021-05-27 11:19:45 +08006693static long perf_pmu_snapshot_aux(struct perf_buffer *rb,
6694 struct perf_event *event,
6695 struct perf_output_handle *handle,
6696 unsigned long size)
Alexander Shishkina4faf002019-10-25 17:08:33 +03006697{
6698 unsigned long flags;
6699 long ret;
6700
6701 /*
6702 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6703 * paths. If we start calling them in NMI context, they may race with
6704 * the IRQ ones, that is, for example, re-starting an event that's just
6705 * been stopped, which is why we're using a separate callback that
6706 * doesn't change the event state.
6707 *
6708 * IRQs need to be disabled to prevent IPIs from racing with us.
6709 */
6710 local_irq_save(flags);
6711 /*
6712 * Guard against NMI hits inside the critical section;
6713 * see also perf_prepare_sample_aux().
6714 */
6715 WRITE_ONCE(rb->aux_in_sampling, 1);
6716 barrier();
6717
6718 ret = event->pmu->snapshot_aux(event, handle, size);
6719
6720 barrier();
6721 WRITE_ONCE(rb->aux_in_sampling, 0);
6722 local_irq_restore(flags);
6723
6724 return ret;
6725}
6726
6727static void perf_aux_sample_output(struct perf_event *event,
6728 struct perf_output_handle *handle,
6729 struct perf_sample_data *data)
6730{
6731 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006732 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006733 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006734 long size;
6735
6736 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6737 return;
6738
6739 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6740 if (!rb)
6741 return;
6742
6743 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6744
6745 /*
6746 * An error here means that perf_output_copy() failed (returned a
6747 * non-zero surplus that it didn't copy), which in its current
6748 * enlightened implementation is not possible. If that changes, we'd
6749 * like to know.
6750 */
6751 if (WARN_ON_ONCE(size < 0))
6752 goto out_put;
6753
6754 /*
6755 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6756 * perf_prepare_sample_aux(), so should not be more than that.
6757 */
6758 pad = data->aux_size - size;
6759 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6760 pad = 8;
6761
6762 if (pad) {
6763 u64 zero = 0;
6764 perf_output_copy(handle, &zero, pad);
6765 }
6766
6767out_put:
6768 ring_buffer_put(rb);
6769}
6770
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006771static void __perf_event_header__init_id(struct perf_event_header *header,
6772 struct perf_sample_data *data,
6773 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006774{
6775 u64 sample_type = event->attr.sample_type;
6776
6777 data->type = sample_type;
6778 header->size += event->id_header_size;
6779
6780 if (sample_type & PERF_SAMPLE_TID) {
6781 /* namespace issues */
6782 data->tid_entry.pid = perf_event_pid(event, current);
6783 data->tid_entry.tid = perf_event_tid(event, current);
6784 }
6785
6786 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006787 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006788
Adrian Hunterff3d5272013-08-27 11:23:07 +03006789 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006790 data->id = primary_event_id(event);
6791
6792 if (sample_type & PERF_SAMPLE_STREAM_ID)
6793 data->stream_id = event->id;
6794
6795 if (sample_type & PERF_SAMPLE_CPU) {
6796 data->cpu_entry.cpu = raw_smp_processor_id();
6797 data->cpu_entry.reserved = 0;
6798 }
6799}
6800
Frederic Weisbecker76369132011-05-19 19:55:04 +02006801void perf_event_header__init_id(struct perf_event_header *header,
6802 struct perf_sample_data *data,
6803 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006804{
6805 if (event->attr.sample_id_all)
6806 __perf_event_header__init_id(header, data, event);
6807}
6808
6809static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6810 struct perf_sample_data *data)
6811{
6812 u64 sample_type = data->type;
6813
6814 if (sample_type & PERF_SAMPLE_TID)
6815 perf_output_put(handle, data->tid_entry);
6816
6817 if (sample_type & PERF_SAMPLE_TIME)
6818 perf_output_put(handle, data->time);
6819
6820 if (sample_type & PERF_SAMPLE_ID)
6821 perf_output_put(handle, data->id);
6822
6823 if (sample_type & PERF_SAMPLE_STREAM_ID)
6824 perf_output_put(handle, data->stream_id);
6825
6826 if (sample_type & PERF_SAMPLE_CPU)
6827 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006828
6829 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6830 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006831}
6832
Frederic Weisbecker76369132011-05-19 19:55:04 +02006833void perf_event__output_id_sample(struct perf_event *event,
6834 struct perf_output_handle *handle,
6835 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006836{
6837 if (event->attr.sample_id_all)
6838 __perf_event__output_id_sample(handle, sample);
6839}
6840
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006841static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006842 struct perf_event *event,
6843 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006844{
6845 u64 read_format = event->attr.read_format;
6846 u64 values[4];
6847 int n = 0;
6848
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006849 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006850 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006851 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006852 atomic64_read(&event->child_total_time_enabled);
6853 }
6854 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006855 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006856 atomic64_read(&event->child_total_time_running);
6857 }
6858 if (read_format & PERF_FORMAT_ID)
6859 values[n++] = primary_event_id(event);
6860
Frederic Weisbecker76369132011-05-19 19:55:04 +02006861 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006862}
6863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006864static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006865 struct perf_event *event,
6866 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006867{
6868 struct perf_event *leader = event->group_leader, *sub;
6869 u64 read_format = event->attr.read_format;
6870 u64 values[5];
6871 int n = 0;
6872
6873 values[n++] = 1 + leader->nr_siblings;
6874
6875 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006876 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006877
6878 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006879 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006880
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006881 if ((leader != event) &&
6882 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006883 leader->pmu->read(leader);
6884
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006885 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006886 if (read_format & PERF_FORMAT_ID)
6887 values[n++] = primary_event_id(leader);
6888
Frederic Weisbecker76369132011-05-19 19:55:04 +02006889 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006890
Peter Zijlstraedb39592018-03-15 17:36:56 +01006891 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006892 n = 0;
6893
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006894 if ((sub != event) &&
6895 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006896 sub->pmu->read(sub);
6897
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006898 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006899 if (read_format & PERF_FORMAT_ID)
6900 values[n++] = primary_event_id(sub);
6901
Frederic Weisbecker76369132011-05-19 19:55:04 +02006902 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903 }
6904}
6905
Stephane Eranianeed01522010-10-26 16:08:01 +02006906#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6907 PERF_FORMAT_TOTAL_TIME_RUNNING)
6908
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006909/*
6910 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6911 *
6912 * The problem is that its both hard and excessively expensive to iterate the
6913 * child list, not to mention that its impossible to IPI the children running
6914 * on another CPU, from interrupt/NMI context.
6915 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006916static void perf_output_read(struct perf_output_handle *handle,
6917 struct perf_event *event)
6918{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006919 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006920 u64 read_format = event->attr.read_format;
6921
6922 /*
6923 * compute total_time_enabled, total_time_running
6924 * based on snapshot values taken when the event
6925 * was last scheduled in.
6926 *
6927 * we cannot simply called update_context_time()
6928 * because of locking issue as we are called in
6929 * NMI context
6930 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006931 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006932 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006933
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006934 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006935 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006936 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006937 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006938}
6939
Kan Liangbbfd5e42020-01-27 08:53:54 -08006940static inline bool perf_sample_save_hw_index(struct perf_event *event)
6941{
6942 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
6943}
6944
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006945void perf_output_sample(struct perf_output_handle *handle,
6946 struct perf_event_header *header,
6947 struct perf_sample_data *data,
6948 struct perf_event *event)
6949{
6950 u64 sample_type = data->type;
6951
6952 perf_output_put(handle, *header);
6953
Adrian Hunterff3d5272013-08-27 11:23:07 +03006954 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6955 perf_output_put(handle, data->id);
6956
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006957 if (sample_type & PERF_SAMPLE_IP)
6958 perf_output_put(handle, data->ip);
6959
6960 if (sample_type & PERF_SAMPLE_TID)
6961 perf_output_put(handle, data->tid_entry);
6962
6963 if (sample_type & PERF_SAMPLE_TIME)
6964 perf_output_put(handle, data->time);
6965
6966 if (sample_type & PERF_SAMPLE_ADDR)
6967 perf_output_put(handle, data->addr);
6968
6969 if (sample_type & PERF_SAMPLE_ID)
6970 perf_output_put(handle, data->id);
6971
6972 if (sample_type & PERF_SAMPLE_STREAM_ID)
6973 perf_output_put(handle, data->stream_id);
6974
6975 if (sample_type & PERF_SAMPLE_CPU)
6976 perf_output_put(handle, data->cpu_entry);
6977
6978 if (sample_type & PERF_SAMPLE_PERIOD)
6979 perf_output_put(handle, data->period);
6980
6981 if (sample_type & PERF_SAMPLE_READ)
6982 perf_output_read(handle, event);
6983
6984 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01006985 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986
Jiri Olsa99e818c2018-01-07 17:03:50 +01006987 size += data->callchain->nr;
6988 size *= sizeof(u64);
6989 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006990 }
6991
6992 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006993 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07006994
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006995 if (raw) {
6996 struct perf_raw_frag *frag = &raw->frag;
6997
6998 perf_output_put(handle, raw->size);
6999 do {
7000 if (frag->copy) {
7001 __output_custom(handle, frag->copy,
7002 frag->data, frag->size);
7003 } else {
7004 __output_copy(handle, frag->data,
7005 frag->size);
7006 }
7007 if (perf_raw_frag_last(frag))
7008 break;
7009 frag = frag->next;
7010 } while (1);
7011 if (frag->pad)
7012 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007013 } else {
7014 struct {
7015 u32 size;
7016 u32 data;
7017 } raw = {
7018 .size = sizeof(u32),
7019 .data = 0,
7020 };
7021 perf_output_put(handle, raw);
7022 }
7023 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007024
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007025 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7026 if (data->br_stack) {
7027 size_t size;
7028
7029 size = data->br_stack->nr
7030 * sizeof(struct perf_branch_entry);
7031
7032 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08007033 if (perf_sample_save_hw_index(event))
7034 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007035 perf_output_copy(handle, data->br_stack->entries, size);
7036 } else {
7037 /*
7038 * we always store at least the value of nr
7039 */
7040 u64 nr = 0;
7041 perf_output_put(handle, nr);
7042 }
7043 }
Jiri Olsa40189942012-08-07 15:20:37 +02007044
7045 if (sample_type & PERF_SAMPLE_REGS_USER) {
7046 u64 abi = data->regs_user.abi;
7047
7048 /*
7049 * If there are no regs to dump, notice it through
7050 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7051 */
7052 perf_output_put(handle, abi);
7053
7054 if (abi) {
7055 u64 mask = event->attr.sample_regs_user;
7056 perf_output_sample_regs(handle,
7057 data->regs_user.regs,
7058 mask);
7059 }
7060 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007061
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007062 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02007063 perf_output_sample_ustack(handle,
7064 data->stack_user_size,
7065 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007066 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01007067
Kan Liang2a6c6b72021-01-28 14:40:07 -08007068 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
7069 perf_output_put(handle, data->weight.full);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01007070
7071 if (sample_type & PERF_SAMPLE_DATA_SRC)
7072 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007073
Andi Kleenfdfbbd02013-09-20 07:40:39 -07007074 if (sample_type & PERF_SAMPLE_TRANSACTION)
7075 perf_output_put(handle, data->txn);
7076
Stephane Eranian60e23642014-09-24 13:48:37 +02007077 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7078 u64 abi = data->regs_intr.abi;
7079 /*
7080 * If there are no regs to dump, notice it through
7081 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7082 */
7083 perf_output_put(handle, abi);
7084
7085 if (abi) {
7086 u64 mask = event->attr.sample_regs_intr;
7087
7088 perf_output_sample_regs(handle,
7089 data->regs_intr.regs,
7090 mask);
7091 }
7092 }
7093
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007094 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7095 perf_output_put(handle, data->phys_addr);
7096
Namhyung Kim6546b192020-03-25 21:45:29 +09007097 if (sample_type & PERF_SAMPLE_CGROUP)
7098 perf_output_put(handle, data->cgroup);
7099
Kan Liang8d97e712020-10-01 06:57:46 -07007100 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7101 perf_output_put(handle, data->data_page_size);
7102
Stephane Eranian995f0882020-10-01 06:57:49 -07007103 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7104 perf_output_put(handle, data->code_page_size);
7105
Alexander Shishkina4faf002019-10-25 17:08:33 +03007106 if (sample_type & PERF_SAMPLE_AUX) {
7107 perf_output_put(handle, data->aux_size);
7108
7109 if (data->aux_size)
7110 perf_aux_sample_output(event, handle, data);
7111 }
7112
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007113 if (!event->attr.watermark) {
7114 int wakeup_events = event->attr.wakeup_events;
7115
7116 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007117 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007118 int events = local_inc_return(&rb->events);
7119
7120 if (events >= wakeup_events) {
7121 local_sub(wakeup_events, &rb->events);
7122 local_inc(&rb->wakeup);
7123 }
7124 }
7125 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007126}
7127
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007128static u64 perf_virt_to_phys(u64 virt)
7129{
7130 u64 phys_addr = 0;
7131 struct page *p = NULL;
7132
7133 if (!virt)
7134 return 0;
7135
7136 if (virt >= TASK_SIZE) {
7137 /* If it's vmalloc()d memory, leave phys_addr as 0 */
7138 if (virt_addr_valid((void *)(uintptr_t)virt) &&
7139 !(virt >= VMALLOC_START && virt < VMALLOC_END))
7140 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
7141 } else {
7142 /*
7143 * Walking the pages tables for user address.
7144 * Interrupts are disabled, so it prevents any tear down
7145 * of the page tables.
Souptick Joarderdadbb612020-06-07 21:40:55 -07007146 * Try IRQ-safe get_user_page_fast_only first.
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007147 * If failed, leave phys_addr as 0.
7148 */
Jiri Olsad3296fb2020-04-07 16:14:27 +02007149 if (current->mm != NULL) {
7150 pagefault_disable();
Souptick Joarderdadbb612020-06-07 21:40:55 -07007151 if (get_user_page_fast_only(virt, 0, &p))
Jiri Olsad3296fb2020-04-07 16:14:27 +02007152 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
7153 pagefault_enable();
7154 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007155
7156 if (p)
7157 put_page(p);
7158 }
7159
7160 return phys_addr;
7161}
7162
Kan Liang8d97e712020-10-01 06:57:46 -07007163/*
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007164 * Return the pagetable size of a given virtual address.
Kan Liang8d97e712020-10-01 06:57:46 -07007165 */
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007166static u64 perf_get_pgtable_size(struct mm_struct *mm, unsigned long addr)
Kan Liang8d97e712020-10-01 06:57:46 -07007167{
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007168 u64 size = 0;
Kan Liang8d97e712020-10-01 06:57:46 -07007169
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007170#ifdef CONFIG_HAVE_FAST_GUP
7171 pgd_t *pgdp, pgd;
7172 p4d_t *p4dp, p4d;
7173 pud_t *pudp, pud;
7174 pmd_t *pmdp, pmd;
7175 pte_t *ptep, pte;
7176
7177 pgdp = pgd_offset(mm, addr);
7178 pgd = READ_ONCE(*pgdp);
7179 if (pgd_none(pgd))
Kan Liang8d97e712020-10-01 06:57:46 -07007180 return 0;
7181
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007182 if (pgd_leaf(pgd))
7183 return pgd_leaf_size(pgd);
7184
7185 p4dp = p4d_offset_lockless(pgdp, pgd, addr);
7186 p4d = READ_ONCE(*p4dp);
7187 if (!p4d_present(p4d))
Kan Liang8d97e712020-10-01 06:57:46 -07007188 return 0;
7189
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007190 if (p4d_leaf(p4d))
7191 return p4d_leaf_size(p4d);
Kan Liang8d97e712020-10-01 06:57:46 -07007192
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007193 pudp = pud_offset_lockless(p4dp, p4d, addr);
7194 pud = READ_ONCE(*pudp);
7195 if (!pud_present(pud))
Kan Liang8d97e712020-10-01 06:57:46 -07007196 return 0;
7197
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007198 if (pud_leaf(pud))
7199 return pud_leaf_size(pud);
Kan Liang8d97e712020-10-01 06:57:46 -07007200
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007201 pmdp = pmd_offset_lockless(pudp, pud, addr);
7202 pmd = READ_ONCE(*pmdp);
7203 if (!pmd_present(pmd))
Kan Liang8d97e712020-10-01 06:57:46 -07007204 return 0;
7205
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007206 if (pmd_leaf(pmd))
7207 return pmd_leaf_size(pmd);
Kan Liang8d97e712020-10-01 06:57:46 -07007208
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007209 ptep = pte_offset_map(&pmd, addr);
7210 pte = ptep_get_lockless(ptep);
7211 if (pte_present(pte))
7212 size = pte_leaf_size(pte);
7213 pte_unmap(ptep);
7214#endif /* CONFIG_HAVE_FAST_GUP */
Kan Liang8d97e712020-10-01 06:57:46 -07007215
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007216 return size;
Kan Liang8d97e712020-10-01 06:57:46 -07007217}
7218
Kan Liang8d97e712020-10-01 06:57:46 -07007219static u64 perf_get_page_size(unsigned long addr)
7220{
7221 struct mm_struct *mm;
7222 unsigned long flags;
7223 u64 size;
7224
7225 if (!addr)
7226 return 0;
7227
7228 /*
7229 * Software page-table walkers must disable IRQs,
7230 * which prevents any tear down of the page tables.
7231 */
7232 local_irq_save(flags);
7233
7234 mm = current->mm;
7235 if (!mm) {
7236 /*
7237 * For kernel threads and the like, use init_mm so that
7238 * we can find kernel memory.
7239 */
7240 mm = &init_mm;
7241 }
7242
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007243 size = perf_get_pgtable_size(mm, addr);
Kan Liang8d97e712020-10-01 06:57:46 -07007244
7245 local_irq_restore(flags);
7246
7247 return size;
7248}
7249
Jiri Olsa99e818c2018-01-07 17:03:50 +01007250static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
7251
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007252struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007253perf_callchain(struct perf_event *event, struct pt_regs *regs)
7254{
7255 bool kernel = !event->attr.exclude_callchain_kernel;
7256 bool user = !event->attr.exclude_callchain_user;
7257 /* Disallow cross-task user callchains. */
7258 bool crosstask = event->ctx->task && event->ctx->task != current;
7259 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01007260 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007261
7262 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01007263 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007264
Jiri Olsa99e818c2018-01-07 17:03:50 +01007265 callchain = get_perf_callchain(regs, 0, kernel, user,
7266 max_stack, crosstask, true);
7267 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007268}
7269
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007270void perf_prepare_sample(struct perf_event_header *header,
7271 struct perf_sample_data *data,
7272 struct perf_event *event,
7273 struct pt_regs *regs)
7274{
7275 u64 sample_type = event->attr.sample_type;
7276
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007277 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007278 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007279
7280 header->misc = 0;
7281 header->misc |= perf_misc_flags(regs);
7282
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007283 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007284
Stephane Eranian995f0882020-10-01 06:57:49 -07007285 if (sample_type & (PERF_SAMPLE_IP | PERF_SAMPLE_CODE_PAGE_SIZE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007286 data->ip = perf_instruction_pointer(regs);
7287
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007288 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
7289 int size = 1;
7290
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007291 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
7292 data->callchain = perf_callchain(event, regs);
7293
Jiri Olsa99e818c2018-01-07 17:03:50 +01007294 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007295
7296 header->size += size * sizeof(u64);
7297 }
7298
7299 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007300 struct perf_raw_record *raw = data->raw;
7301 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007303 if (raw) {
7304 struct perf_raw_frag *frag = &raw->frag;
7305 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007306
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007307 do {
7308 sum += frag->size;
7309 if (perf_raw_frag_last(frag))
7310 break;
7311 frag = frag->next;
7312 } while (1);
7313
7314 size = round_up(sum + sizeof(u32), sizeof(u64));
7315 raw->size = size - sizeof(u32);
7316 frag->pad = raw->size - sum;
7317 } else {
7318 size = sizeof(u64);
7319 }
7320
7321 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007322 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007323
7324 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7325 int size = sizeof(u64); /* nr */
7326 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08007327 if (perf_sample_save_hw_index(event))
7328 size += sizeof(u64);
7329
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007330 size += data->br_stack->nr
7331 * sizeof(struct perf_branch_entry);
7332 }
7333 header->size += size;
7334 }
Jiri Olsa40189942012-08-07 15:20:37 +02007335
Peter Zijlstra25657112014-09-24 13:48:42 +02007336 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01007337 perf_sample_regs_user(&data->regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02007338
Jiri Olsa40189942012-08-07 15:20:37 +02007339 if (sample_type & PERF_SAMPLE_REGS_USER) {
7340 /* regs dump ABI info */
7341 int size = sizeof(u64);
7342
Jiri Olsa40189942012-08-07 15:20:37 +02007343 if (data->regs_user.regs) {
7344 u64 mask = event->attr.sample_regs_user;
7345 size += hweight64(mask) * sizeof(u64);
7346 }
7347
7348 header->size += size;
7349 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007350
7351 if (sample_type & PERF_SAMPLE_STACK_USER) {
7352 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03007353 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02007354 * processed as the last one or have additional check added
7355 * in case new sample type is added, because we could eat
7356 * up the rest of the sample size.
7357 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02007358 u16 stack_size = event->attr.sample_stack_user;
7359 u16 size = sizeof(u64);
7360
Jiri Olsac5ebced2012-08-07 15:20:40 +02007361 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02007362 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007363
7364 /*
7365 * If there is something to dump, add space for the dump
7366 * itself and for the field that tells the dynamic size,
7367 * which is how many have been actually dumped.
7368 */
7369 if (stack_size)
7370 size += sizeof(u64) + stack_size;
7371
7372 data->stack_user_size = stack_size;
7373 header->size += size;
7374 }
Stephane Eranian60e23642014-09-24 13:48:37 +02007375
7376 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7377 /* regs dump ABI info */
7378 int size = sizeof(u64);
7379
7380 perf_sample_regs_intr(&data->regs_intr, regs);
7381
7382 if (data->regs_intr.regs) {
7383 u64 mask = event->attr.sample_regs_intr;
7384
7385 size += hweight64(mask) * sizeof(u64);
7386 }
7387
7388 header->size += size;
7389 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007390
7391 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7392 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03007393
Namhyung Kim6546b192020-03-25 21:45:29 +09007394#ifdef CONFIG_CGROUP_PERF
7395 if (sample_type & PERF_SAMPLE_CGROUP) {
7396 struct cgroup *cgrp;
7397
7398 /* protected by RCU */
7399 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7400 data->cgroup = cgroup_id(cgrp);
7401 }
7402#endif
7403
Kan Liang8d97e712020-10-01 06:57:46 -07007404 /*
7405 * PERF_DATA_PAGE_SIZE requires PERF_SAMPLE_ADDR. If the user doesn't
7406 * require PERF_SAMPLE_ADDR, kernel implicitly retrieve the data->addr,
7407 * but the value will not dump to the userspace.
7408 */
7409 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7410 data->data_page_size = perf_get_page_size(data->addr);
7411
Stephane Eranian995f0882020-10-01 06:57:49 -07007412 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7413 data->code_page_size = perf_get_page_size(data->ip);
7414
Alexander Shishkina4faf002019-10-25 17:08:33 +03007415 if (sample_type & PERF_SAMPLE_AUX) {
7416 u64 size;
7417
7418 header->size += sizeof(u64); /* size */
7419
7420 /*
7421 * Given the 16bit nature of header::size, an AUX sample can
7422 * easily overflow it, what with all the preceding sample bits.
7423 * Make sure this doesn't happen by using up to U16_MAX bytes
7424 * per sample in total (rounded down to 8 byte boundary).
7425 */
7426 size = min_t(size_t, U16_MAX - header->size,
7427 event->attr.aux_sample_size);
7428 size = rounddown(size, 8);
7429 size = perf_prepare_sample_aux(event, data, size);
7430
7431 WARN_ON_ONCE(size + header->size > U16_MAX);
7432 header->size += size;
7433 }
7434 /*
7435 * If you're adding more sample types here, you likely need to do
7436 * something about the overflowing header::size, like repurpose the
7437 * lowest 3 bits of size, which should be always zero at the moment.
7438 * This raises a more important question, do we really need 512k sized
7439 * samples and why, so good argumentation is in order for whatever you
7440 * do here next.
7441 */
7442 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007443}
7444
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007445static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00007446__perf_event_output(struct perf_event *event,
7447 struct perf_sample_data *data,
7448 struct pt_regs *regs,
7449 int (*output_begin)(struct perf_output_handle *,
Peter Zijlstra267fb272020-10-30 15:50:32 +01007450 struct perf_sample_data *,
Wang Nan9ecda412016-04-05 14:11:18 +00007451 struct perf_event *,
7452 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007453{
7454 struct perf_output_handle handle;
7455 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007456 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007457
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007458 /* protect the callchain buffers */
7459 rcu_read_lock();
7460
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007461 perf_prepare_sample(&header, data, event, regs);
7462
Peter Zijlstra267fb272020-10-30 15:50:32 +01007463 err = output_begin(&handle, data, event, header.size);
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007464 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007465 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007466
7467 perf_output_sample(&handle, &header, data, event);
7468
7469 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007470
7471exit:
7472 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007473 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007474}
7475
Wang Nan9ecda412016-04-05 14:11:18 +00007476void
7477perf_event_output_forward(struct perf_event *event,
7478 struct perf_sample_data *data,
7479 struct pt_regs *regs)
7480{
7481 __perf_event_output(event, data, regs, perf_output_begin_forward);
7482}
7483
7484void
7485perf_event_output_backward(struct perf_event *event,
7486 struct perf_sample_data *data,
7487 struct pt_regs *regs)
7488{
7489 __perf_event_output(event, data, regs, perf_output_begin_backward);
7490}
7491
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007492int
Wang Nan9ecda412016-04-05 14:11:18 +00007493perf_event_output(struct perf_event *event,
7494 struct perf_sample_data *data,
7495 struct pt_regs *regs)
7496{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007497 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007498}
7499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007500/*
7501 * read event_id
7502 */
7503
7504struct perf_read_event {
7505 struct perf_event_header header;
7506
7507 u32 pid;
7508 u32 tid;
7509};
7510
7511static void
7512perf_event_read_event(struct perf_event *event,
7513 struct task_struct *task)
7514{
7515 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007516 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007517 struct perf_read_event read_event = {
7518 .header = {
7519 .type = PERF_RECORD_READ,
7520 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007521 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007522 },
7523 .pid = perf_event_pid(event, task),
7524 .tid = perf_event_tid(event, task),
7525 };
7526 int ret;
7527
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007528 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007529 ret = perf_output_begin(&handle, &sample, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007530 if (ret)
7531 return;
7532
7533 perf_output_put(&handle, read_event);
7534 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007535 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007536
7537 perf_output_end(&handle);
7538}
7539
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007540typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007541
7542static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007543perf_iterate_ctx(struct perf_event_context *ctx,
7544 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007545 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007546{
7547 struct perf_event *event;
7548
7549 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007550 if (!all) {
7551 if (event->state < PERF_EVENT_STATE_INACTIVE)
7552 continue;
7553 if (!event_filter_match(event))
7554 continue;
7555 }
7556
Jiri Olsa67516842013-07-09 18:56:31 +02007557 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007558 }
7559}
7560
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007561static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007562{
7563 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7564 struct perf_event *event;
7565
7566 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007567 /*
7568 * Skip events that are not fully formed yet; ensure that
7569 * if we observe event->ctx, both event and ctx will be
7570 * complete enough. See perf_install_in_context().
7571 */
7572 if (!smp_load_acquire(&event->ctx))
7573 continue;
7574
Kan Liangf2fb6be2016-03-23 11:24:37 -07007575 if (event->state < PERF_EVENT_STATE_INACTIVE)
7576 continue;
7577 if (!event_filter_match(event))
7578 continue;
7579 output(event, data);
7580 }
7581}
7582
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007583/*
7584 * Iterate all events that need to receive side-band events.
7585 *
7586 * For new callers; ensure that account_pmu_sb_event() includes
7587 * your event, otherwise it might not get delivered.
7588 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007589static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007590perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007591 struct perf_event_context *task_ctx)
7592{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007593 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007594 int ctxn;
7595
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007596 rcu_read_lock();
7597 preempt_disable();
7598
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007599 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007600 * If we have task_ctx != NULL we only notify the task context itself.
7601 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007602 * context.
7603 */
7604 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007605 perf_iterate_ctx(task_ctx, output, data, false);
7606 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007607 }
7608
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007609 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007610
7611 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007612 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7613 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007614 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007615 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007616done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007617 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007618 rcu_read_unlock();
7619}
7620
Alexander Shishkin375637b2016-04-27 18:44:46 +03007621/*
7622 * Clear all file-based filters at exec, they'll have to be
7623 * re-instated when/if these objects are mmapped again.
7624 */
7625static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7626{
7627 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7628 struct perf_addr_filter *filter;
7629 unsigned int restart = 0, count = 0;
7630 unsigned long flags;
7631
7632 if (!has_addr_filter(event))
7633 return;
7634
7635 raw_spin_lock_irqsave(&ifh->lock, flags);
7636 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007637 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007638 event->addr_filter_ranges[count].start = 0;
7639 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007640 restart++;
7641 }
7642
7643 count++;
7644 }
7645
7646 if (restart)
7647 event->addr_filters_gen++;
7648 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7649
7650 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007651 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007652}
7653
7654void perf_event_exec(void)
7655{
7656 struct perf_event_context *ctx;
7657 int ctxn;
7658
Alexander Shishkin375637b2016-04-27 18:44:46 +03007659 for_each_task_context_nr(ctxn) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03007660 perf_event_enable_on_exec(ctxn);
Marco Elver2e498d02021-04-08 12:35:59 +02007661 perf_event_remove_on_exec(ctxn);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007662
Marco Elver2e498d02021-04-08 12:35:59 +02007663 rcu_read_lock();
7664 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7665 if (ctx) {
7666 perf_iterate_ctx(ctx, perf_event_addr_filters_exec,
7667 NULL, true);
7668 }
7669 rcu_read_unlock();
Alexander Shishkin375637b2016-04-27 18:44:46 +03007670 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03007671}
7672
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007673struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007674 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007675 int err;
7676};
7677
7678static void __perf_event_output_stop(struct perf_event *event, void *data)
7679{
7680 struct perf_event *parent = event->parent;
7681 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007682 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007683 struct stop_event_data sd = {
7684 .event = event,
7685 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007686
7687 if (!has_aux(event))
7688 return;
7689
7690 if (!parent)
7691 parent = event;
7692
7693 /*
7694 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007695 * ring-buffer, but it will be the child that's actually using it.
7696 *
7697 * We are using event::rb to determine if the event should be stopped,
7698 * however this may race with ring_buffer_attach() (through set_output),
7699 * which will make us skip the event that actually needs to be stopped.
7700 * So ring_buffer_attach() has to stop an aux event before re-assigning
7701 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007702 */
7703 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007704 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007705}
7706
7707static int __perf_pmu_output_stop(void *info)
7708{
7709 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007710 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007711 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007712 struct remote_output ro = {
7713 .rb = event->rb,
7714 };
7715
7716 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007717 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007718 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007719 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007720 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007721 rcu_read_unlock();
7722
7723 return ro.err;
7724}
7725
7726static void perf_pmu_output_stop(struct perf_event *event)
7727{
7728 struct perf_event *iter;
7729 int err, cpu;
7730
7731restart:
7732 rcu_read_lock();
7733 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7734 /*
7735 * For per-CPU events, we need to make sure that neither they
7736 * nor their children are running; for cpu==-1 events it's
7737 * sufficient to stop the event itself if it's active, since
7738 * it can't have children.
7739 */
7740 cpu = iter->cpu;
7741 if (cpu == -1)
7742 cpu = READ_ONCE(iter->oncpu);
7743
7744 if (cpu == -1)
7745 continue;
7746
7747 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7748 if (err == -EAGAIN) {
7749 rcu_read_unlock();
7750 goto restart;
7751 }
7752 }
7753 rcu_read_unlock();
7754}
7755
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007756/*
7757 * task tracking -- fork/exit
7758 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007759 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007760 */
7761
7762struct perf_task_event {
7763 struct task_struct *task;
7764 struct perf_event_context *task_ctx;
7765
7766 struct {
7767 struct perf_event_header header;
7768
7769 u32 pid;
7770 u32 ppid;
7771 u32 tid;
7772 u32 ptid;
7773 u64 time;
7774 } event_id;
7775};
7776
Jiri Olsa67516842013-07-09 18:56:31 +02007777static int perf_event_task_match(struct perf_event *event)
7778{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007779 return event->attr.comm || event->attr.mmap ||
7780 event->attr.mmap2 || event->attr.mmap_data ||
7781 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007782}
7783
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007784static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007785 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007786{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007787 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007788 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007789 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007790 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007791 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007792
Jiri Olsa67516842013-07-09 18:56:31 +02007793 if (!perf_event_task_match(event))
7794 return;
7795
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007796 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007797
Peter Zijlstra267fb272020-10-30 15:50:32 +01007798 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007799 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007800 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007801 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007802
7803 task_event->event_id.pid = perf_event_pid(event, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007804 task_event->event_id.tid = perf_event_tid(event, task);
Ian Rogersf3bed552020-04-17 11:28:42 -07007805
7806 if (task_event->event_id.header.type == PERF_RECORD_EXIT) {
7807 task_event->event_id.ppid = perf_event_pid(event,
7808 task->real_parent);
7809 task_event->event_id.ptid = perf_event_pid(event,
7810 task->real_parent);
7811 } else { /* PERF_RECORD_FORK */
7812 task_event->event_id.ppid = perf_event_pid(event, current);
7813 task_event->event_id.ptid = perf_event_tid(event, current);
7814 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007815
Peter Zijlstra34f43922015-02-20 14:05:38 +01007816 task_event->event_id.time = perf_event_clock(event);
7817
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007818 perf_output_put(&handle, task_event->event_id);
7819
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007820 perf_event__output_id_sample(event, &handle, &sample);
7821
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007822 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007823out:
7824 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007825}
7826
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007827static void perf_event_task(struct task_struct *task,
7828 struct perf_event_context *task_ctx,
7829 int new)
7830{
7831 struct perf_task_event task_event;
7832
7833 if (!atomic_read(&nr_comm_events) &&
7834 !atomic_read(&nr_mmap_events) &&
7835 !atomic_read(&nr_task_events))
7836 return;
7837
7838 task_event = (struct perf_task_event){
7839 .task = task,
7840 .task_ctx = task_ctx,
7841 .event_id = {
7842 .header = {
7843 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7844 .misc = 0,
7845 .size = sizeof(task_event.event_id),
7846 },
7847 /* .pid */
7848 /* .ppid */
7849 /* .tid */
7850 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007851 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007852 },
7853 };
7854
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007855 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007856 &task_event,
7857 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007858}
7859
7860void perf_event_fork(struct task_struct *task)
7861{
7862 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307863 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007864}
7865
7866/*
7867 * comm tracking
7868 */
7869
7870struct perf_comm_event {
7871 struct task_struct *task;
7872 char *comm;
7873 int comm_size;
7874
7875 struct {
7876 struct perf_event_header header;
7877
7878 u32 pid;
7879 u32 tid;
7880 } event_id;
7881};
7882
Jiri Olsa67516842013-07-09 18:56:31 +02007883static int perf_event_comm_match(struct perf_event *event)
7884{
7885 return event->attr.comm;
7886}
7887
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007888static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007889 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007890{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007891 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007892 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007893 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007894 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007895 int ret;
7896
Jiri Olsa67516842013-07-09 18:56:31 +02007897 if (!perf_event_comm_match(event))
7898 return;
7899
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007900 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007901 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007902 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007903
7904 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007905 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007906
7907 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7908 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
7909
7910 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02007911 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007912 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007913
7914 perf_event__output_id_sample(event, &handle, &sample);
7915
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007916 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007917out:
7918 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007919}
7920
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007921static void perf_event_comm_event(struct perf_comm_event *comm_event)
7922{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007923 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007924 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007925
7926 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01007927 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007928 size = ALIGN(strlen(comm)+1, sizeof(u64));
7929
7930 comm_event->comm = comm;
7931 comm_event->comm_size = size;
7932
7933 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007934
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007935 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007936 comm_event,
7937 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007938}
7939
Adrian Hunter82b89772014-05-28 11:45:04 +03007940void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007941{
7942 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007943
7944 if (!atomic_read(&nr_comm_events))
7945 return;
7946
7947 comm_event = (struct perf_comm_event){
7948 .task = task,
7949 /* .comm */
7950 /* .comm_size */
7951 .event_id = {
7952 .header = {
7953 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03007954 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007955 /* .size */
7956 },
7957 /* .pid */
7958 /* .tid */
7959 },
7960 };
7961
7962 perf_event_comm_event(&comm_event);
7963}
7964
7965/*
Hari Bathinie4222672017-03-08 02:11:36 +05307966 * namespaces tracking
7967 */
7968
7969struct perf_namespaces_event {
7970 struct task_struct *task;
7971
7972 struct {
7973 struct perf_event_header header;
7974
7975 u32 pid;
7976 u32 tid;
7977 u64 nr_namespaces;
7978 struct perf_ns_link_info link_info[NR_NAMESPACES];
7979 } event_id;
7980};
7981
7982static int perf_event_namespaces_match(struct perf_event *event)
7983{
7984 return event->attr.namespaces;
7985}
7986
7987static void perf_event_namespaces_output(struct perf_event *event,
7988 void *data)
7989{
7990 struct perf_namespaces_event *namespaces_event = data;
7991 struct perf_output_handle handle;
7992 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02007993 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05307994 int ret;
7995
7996 if (!perf_event_namespaces_match(event))
7997 return;
7998
7999 perf_event_header__init_id(&namespaces_event->event_id.header,
8000 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008001 ret = perf_output_begin(&handle, &sample, event,
Hari Bathinie4222672017-03-08 02:11:36 +05308002 namespaces_event->event_id.header.size);
8003 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02008004 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05308005
8006 namespaces_event->event_id.pid = perf_event_pid(event,
8007 namespaces_event->task);
8008 namespaces_event->event_id.tid = perf_event_tid(event,
8009 namespaces_event->task);
8010
8011 perf_output_put(&handle, namespaces_event->event_id);
8012
8013 perf_event__output_id_sample(event, &handle, &sample);
8014
8015 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02008016out:
8017 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05308018}
8019
8020static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
8021 struct task_struct *task,
8022 const struct proc_ns_operations *ns_ops)
8023{
8024 struct path ns_path;
8025 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11008026 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05308027
8028 error = ns_get_path(&ns_path, task, ns_ops);
8029 if (!error) {
8030 ns_inode = ns_path.dentry->d_inode;
8031 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
8032 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03008033 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05308034 }
8035}
8036
8037void perf_event_namespaces(struct task_struct *task)
8038{
8039 struct perf_namespaces_event namespaces_event;
8040 struct perf_ns_link_info *ns_link_info;
8041
8042 if (!atomic_read(&nr_namespaces_events))
8043 return;
8044
8045 namespaces_event = (struct perf_namespaces_event){
8046 .task = task,
8047 .event_id = {
8048 .header = {
8049 .type = PERF_RECORD_NAMESPACES,
8050 .misc = 0,
8051 .size = sizeof(namespaces_event.event_id),
8052 },
8053 /* .pid */
8054 /* .tid */
8055 .nr_namespaces = NR_NAMESPACES,
8056 /* .link_info[NR_NAMESPACES] */
8057 },
8058 };
8059
8060 ns_link_info = namespaces_event.event_id.link_info;
8061
8062 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
8063 task, &mntns_operations);
8064
8065#ifdef CONFIG_USER_NS
8066 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
8067 task, &userns_operations);
8068#endif
8069#ifdef CONFIG_NET_NS
8070 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
8071 task, &netns_operations);
8072#endif
8073#ifdef CONFIG_UTS_NS
8074 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
8075 task, &utsns_operations);
8076#endif
8077#ifdef CONFIG_IPC_NS
8078 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
8079 task, &ipcns_operations);
8080#endif
8081#ifdef CONFIG_PID_NS
8082 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
8083 task, &pidns_operations);
8084#endif
8085#ifdef CONFIG_CGROUPS
8086 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
8087 task, &cgroupns_operations);
8088#endif
8089
8090 perf_iterate_sb(perf_event_namespaces_output,
8091 &namespaces_event,
8092 NULL);
8093}
8094
8095/*
Namhyung Kim96aaab62020-03-25 21:45:28 +09008096 * cgroup tracking
8097 */
8098#ifdef CONFIG_CGROUP_PERF
8099
8100struct perf_cgroup_event {
8101 char *path;
8102 int path_size;
8103 struct {
8104 struct perf_event_header header;
8105 u64 id;
8106 char path[];
8107 } event_id;
8108};
8109
8110static int perf_event_cgroup_match(struct perf_event *event)
8111{
8112 return event->attr.cgroup;
8113}
8114
8115static void perf_event_cgroup_output(struct perf_event *event, void *data)
8116{
8117 struct perf_cgroup_event *cgroup_event = data;
8118 struct perf_output_handle handle;
8119 struct perf_sample_data sample;
8120 u16 header_size = cgroup_event->event_id.header.size;
8121 int ret;
8122
8123 if (!perf_event_cgroup_match(event))
8124 return;
8125
8126 perf_event_header__init_id(&cgroup_event->event_id.header,
8127 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008128 ret = perf_output_begin(&handle, &sample, event,
Namhyung Kim96aaab62020-03-25 21:45:28 +09008129 cgroup_event->event_id.header.size);
8130 if (ret)
8131 goto out;
8132
8133 perf_output_put(&handle, cgroup_event->event_id);
8134 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
8135
8136 perf_event__output_id_sample(event, &handle, &sample);
8137
8138 perf_output_end(&handle);
8139out:
8140 cgroup_event->event_id.header.size = header_size;
8141}
8142
8143static void perf_event_cgroup(struct cgroup *cgrp)
8144{
8145 struct perf_cgroup_event cgroup_event;
8146 char path_enomem[16] = "//enomem";
8147 char *pathname;
8148 size_t size;
8149
8150 if (!atomic_read(&nr_cgroup_events))
8151 return;
8152
8153 cgroup_event = (struct perf_cgroup_event){
8154 .event_id = {
8155 .header = {
8156 .type = PERF_RECORD_CGROUP,
8157 .misc = 0,
8158 .size = sizeof(cgroup_event.event_id),
8159 },
8160 .id = cgroup_id(cgrp),
8161 },
8162 };
8163
8164 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
8165 if (pathname == NULL) {
8166 cgroup_event.path = path_enomem;
8167 } else {
8168 /* just to be sure to have enough space for alignment */
8169 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
8170 cgroup_event.path = pathname;
8171 }
8172
8173 /*
8174 * Since our buffer works in 8 byte units we need to align our string
8175 * size to a multiple of 8. However, we must guarantee the tail end is
8176 * zero'd out to avoid leaking random bits to userspace.
8177 */
8178 size = strlen(cgroup_event.path) + 1;
8179 while (!IS_ALIGNED(size, sizeof(u64)))
8180 cgroup_event.path[size++] = '\0';
8181
8182 cgroup_event.event_id.header.size += size;
8183 cgroup_event.path_size = size;
8184
8185 perf_iterate_sb(perf_event_cgroup_output,
8186 &cgroup_event,
8187 NULL);
8188
8189 kfree(pathname);
8190}
8191
8192#endif
8193
8194/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008195 * mmap tracking
8196 */
8197
8198struct perf_mmap_event {
8199 struct vm_area_struct *vma;
8200
8201 const char *file_name;
8202 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008203 int maj, min;
8204 u64 ino;
8205 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008206 u32 prot, flags;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008207 u8 build_id[BUILD_ID_SIZE_MAX];
8208 u32 build_id_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008209
8210 struct {
8211 struct perf_event_header header;
8212
8213 u32 pid;
8214 u32 tid;
8215 u64 start;
8216 u64 len;
8217 u64 pgoff;
8218 } event_id;
8219};
8220
Jiri Olsa67516842013-07-09 18:56:31 +02008221static int perf_event_mmap_match(struct perf_event *event,
8222 void *data)
8223{
8224 struct perf_mmap_event *mmap_event = data;
8225 struct vm_area_struct *vma = mmap_event->vma;
8226 int executable = vma->vm_flags & VM_EXEC;
8227
8228 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02008229 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02008230}
8231
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008232static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008233 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008234{
Jiri Olsa52d857a2013-05-06 18:27:18 +02008235 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008236 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008237 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008238 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008239 u32 type = mmap_event->event_id.header.type;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008240 bool use_build_id;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008241 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008242
Jiri Olsa67516842013-07-09 18:56:31 +02008243 if (!perf_event_mmap_match(event, data))
8244 return;
8245
Stephane Eranian13d7a242013-08-21 12:10:24 +02008246 if (event->attr.mmap2) {
8247 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
8248 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
8249 mmap_event->event_id.header.size += sizeof(mmap_event->min);
8250 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03008251 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008252 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
8253 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008254 }
8255
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008256 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008257 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008258 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008259 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008260 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008261
8262 mmap_event->event_id.pid = perf_event_pid(event, current);
8263 mmap_event->event_id.tid = perf_event_tid(event, current);
8264
Jiri Olsa88a16a12021-01-14 14:40:44 +01008265 use_build_id = event->attr.build_id && mmap_event->build_id_size;
8266
8267 if (event->attr.mmap2 && use_build_id)
8268 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_BUILD_ID;
8269
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008270 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008271
8272 if (event->attr.mmap2) {
Jiri Olsa88a16a12021-01-14 14:40:44 +01008273 if (use_build_id) {
8274 u8 size[4] = { (u8) mmap_event->build_id_size, 0, 0, 0 };
8275
8276 __output_copy(&handle, size, 4);
8277 __output_copy(&handle, mmap_event->build_id, BUILD_ID_SIZE_MAX);
8278 } else {
8279 perf_output_put(&handle, mmap_event->maj);
8280 perf_output_put(&handle, mmap_event->min);
8281 perf_output_put(&handle, mmap_event->ino);
8282 perf_output_put(&handle, mmap_event->ino_generation);
8283 }
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008284 perf_output_put(&handle, mmap_event->prot);
8285 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008286 }
8287
Frederic Weisbecker76369132011-05-19 19:55:04 +02008288 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008289 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008290
8291 perf_event__output_id_sample(event, &handle, &sample);
8292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008293 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008294out:
8295 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008296 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008297}
8298
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008299static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
8300{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008301 struct vm_area_struct *vma = mmap_event->vma;
8302 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008303 int maj = 0, min = 0;
8304 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008305 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008306 unsigned int size;
8307 char tmp[16];
8308 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008309 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008310
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008311 if (vma->vm_flags & VM_READ)
8312 prot |= PROT_READ;
8313 if (vma->vm_flags & VM_WRITE)
8314 prot |= PROT_WRITE;
8315 if (vma->vm_flags & VM_EXEC)
8316 prot |= PROT_EXEC;
8317
8318 if (vma->vm_flags & VM_MAYSHARE)
8319 flags = MAP_SHARED;
8320 else
8321 flags = MAP_PRIVATE;
8322
8323 if (vma->vm_flags & VM_DENYWRITE)
8324 flags |= MAP_DENYWRITE;
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008325 if (vma->vm_flags & VM_LOCKED)
8326 flags |= MAP_LOCKED;
Anshuman Khandual03911132020-04-06 20:03:51 -07008327 if (is_vm_hugetlb_page(vma))
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008328 flags |= MAP_HUGETLB;
8329
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008330 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02008331 struct inode *inode;
8332 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008333
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008334 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008335 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008336 name = "//enomem";
8337 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008338 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008339 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008340 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008341 * need to add enough zero bytes after the string to handle
8342 * the 64bit alignment we do later.
8343 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02008344 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008345 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008346 name = "//toolong";
8347 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008348 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02008349 inode = file_inode(vma->vm_file);
8350 dev = inode->i_sb->s_dev;
8351 ino = inode->i_ino;
8352 gen = inode->i_generation;
8353 maj = MAJOR(dev);
8354 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008356 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008357 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02008358 if (vma->vm_ops && vma->vm_ops->name) {
8359 name = (char *) vma->vm_ops->name(vma);
8360 if (name)
8361 goto cpy_name;
8362 }
8363
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008364 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008365 if (name)
8366 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008367
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008368 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008369 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008370 name = "[heap]";
8371 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008372 }
8373 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008374 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008375 name = "[stack]";
8376 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008377 }
8378
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008379 name = "//anon";
8380 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008381 }
8382
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008383cpy_name:
8384 strlcpy(tmp, name, sizeof(tmp));
8385 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008386got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008387 /*
8388 * Since our buffer works in 8 byte units we need to align our string
8389 * size to a multiple of 8. However, we must guarantee the tail end is
8390 * zero'd out to avoid leaking random bits to userspace.
8391 */
8392 size = strlen(name)+1;
8393 while (!IS_ALIGNED(size, sizeof(u64)))
8394 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008395
8396 mmap_event->file_name = name;
8397 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008398 mmap_event->maj = maj;
8399 mmap_event->min = min;
8400 mmap_event->ino = ino;
8401 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008402 mmap_event->prot = prot;
8403 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008404
Stephane Eranian2fe85422013-01-24 16:10:39 +01008405 if (!(vma->vm_flags & VM_EXEC))
8406 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8407
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008408 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
8409
Jiri Olsa88a16a12021-01-14 14:40:44 +01008410 if (atomic_read(&nr_build_id_events))
8411 build_id_parse(vma, mmap_event->build_id, &mmap_event->build_id_size);
8412
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008413 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008414 mmap_event,
8415 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008416
8417 kfree(buf);
8418}
8419
Alexander Shishkin375637b2016-04-27 18:44:46 +03008420/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03008421 * Check whether inode and address range match filter criteria.
8422 */
8423static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8424 struct file *file, unsigned long offset,
8425 unsigned long size)
8426{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06008427 /* d_inode(NULL) won't be equal to any mapped user-space file */
8428 if (!filter->path.dentry)
8429 return false;
8430
Song Liu9511bce2018-04-17 23:29:07 -07008431 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008432 return false;
8433
8434 if (filter->offset > offset + size)
8435 return false;
8436
8437 if (filter->offset + filter->size < offset)
8438 return false;
8439
8440 return true;
8441}
8442
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008443static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8444 struct vm_area_struct *vma,
8445 struct perf_addr_filter_range *fr)
8446{
8447 unsigned long vma_size = vma->vm_end - vma->vm_start;
8448 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8449 struct file *file = vma->vm_file;
8450
8451 if (!perf_addr_filter_match(filter, file, off, vma_size))
8452 return false;
8453
8454 if (filter->offset < off) {
8455 fr->start = vma->vm_start;
8456 fr->size = min(vma_size, filter->size - (off - filter->offset));
8457 } else {
8458 fr->start = vma->vm_start + filter->offset - off;
8459 fr->size = min(vma->vm_end - fr->start, filter->size);
8460 }
8461
8462 return true;
8463}
8464
Alexander Shishkin375637b2016-04-27 18:44:46 +03008465static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8466{
8467 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8468 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008469 struct perf_addr_filter *filter;
8470 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008471 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008472
8473 if (!has_addr_filter(event))
8474 return;
8475
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008476 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008477 return;
8478
8479 raw_spin_lock_irqsave(&ifh->lock, flags);
8480 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008481 if (perf_addr_filter_vma_adjust(filter, vma,
8482 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008483 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008484
8485 count++;
8486 }
8487
8488 if (restart)
8489 event->addr_filters_gen++;
8490 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8491
8492 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03008493 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008494}
8495
8496/*
8497 * Adjust all task's events' filters to the new vma
8498 */
8499static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8500{
8501 struct perf_event_context *ctx;
8502 int ctxn;
8503
Mathieu Poirier12b40a22016-07-18 10:43:06 -06008504 /*
8505 * Data tracing isn't supported yet and as such there is no need
8506 * to keep track of anything that isn't related to executable code:
8507 */
8508 if (!(vma->vm_flags & VM_EXEC))
8509 return;
8510
Alexander Shishkin375637b2016-04-27 18:44:46 +03008511 rcu_read_lock();
8512 for_each_task_context_nr(ctxn) {
8513 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8514 if (!ctx)
8515 continue;
8516
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008517 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008518 }
8519 rcu_read_unlock();
8520}
8521
Eric B Munson3af9e852010-05-18 15:30:49 +01008522void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008523{
8524 struct perf_mmap_event mmap_event;
8525
8526 if (!atomic_read(&nr_mmap_events))
8527 return;
8528
8529 mmap_event = (struct perf_mmap_event){
8530 .vma = vma,
8531 /* .file_name */
8532 /* .file_size */
8533 .event_id = {
8534 .header = {
8535 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08008536 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008537 /* .size */
8538 },
8539 /* .pid */
8540 /* .tid */
8541 .start = vma->vm_start,
8542 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01008543 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008544 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02008545 /* .maj (attr_mmap2 only) */
8546 /* .min (attr_mmap2 only) */
8547 /* .ino (attr_mmap2 only) */
8548 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008549 /* .prot (attr_mmap2 only) */
8550 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008551 };
8552
Alexander Shishkin375637b2016-04-27 18:44:46 +03008553 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008554 perf_event_mmap_event(&mmap_event);
8555}
8556
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008557void perf_event_aux_event(struct perf_event *event, unsigned long head,
8558 unsigned long size, u64 flags)
8559{
8560 struct perf_output_handle handle;
8561 struct perf_sample_data sample;
8562 struct perf_aux_event {
8563 struct perf_event_header header;
8564 u64 offset;
8565 u64 size;
8566 u64 flags;
8567 } rec = {
8568 .header = {
8569 .type = PERF_RECORD_AUX,
8570 .misc = 0,
8571 .size = sizeof(rec),
8572 },
8573 .offset = head,
8574 .size = size,
8575 .flags = flags,
8576 };
8577 int ret;
8578
8579 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008580 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008581
8582 if (ret)
8583 return;
8584
8585 perf_output_put(&handle, rec);
8586 perf_event__output_id_sample(event, &handle, &sample);
8587
8588 perf_output_end(&handle);
8589}
8590
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008591/*
Kan Liangf38b0db2015-05-10 15:13:14 -04008592 * Lost/dropped samples logging
8593 */
8594void perf_log_lost_samples(struct perf_event *event, u64 lost)
8595{
8596 struct perf_output_handle handle;
8597 struct perf_sample_data sample;
8598 int ret;
8599
8600 struct {
8601 struct perf_event_header header;
8602 u64 lost;
8603 } lost_samples_event = {
8604 .header = {
8605 .type = PERF_RECORD_LOST_SAMPLES,
8606 .misc = 0,
8607 .size = sizeof(lost_samples_event),
8608 },
8609 .lost = lost,
8610 };
8611
8612 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8613
Peter Zijlstra267fb272020-10-30 15:50:32 +01008614 ret = perf_output_begin(&handle, &sample, event,
Kan Liangf38b0db2015-05-10 15:13:14 -04008615 lost_samples_event.header.size);
8616 if (ret)
8617 return;
8618
8619 perf_output_put(&handle, lost_samples_event);
8620 perf_event__output_id_sample(event, &handle, &sample);
8621 perf_output_end(&handle);
8622}
8623
8624/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008625 * context_switch tracking
8626 */
8627
8628struct perf_switch_event {
8629 struct task_struct *task;
8630 struct task_struct *next_prev;
8631
8632 struct {
8633 struct perf_event_header header;
8634 u32 next_prev_pid;
8635 u32 next_prev_tid;
8636 } event_id;
8637};
8638
8639static int perf_event_switch_match(struct perf_event *event)
8640{
8641 return event->attr.context_switch;
8642}
8643
8644static void perf_event_switch_output(struct perf_event *event, void *data)
8645{
8646 struct perf_switch_event *se = data;
8647 struct perf_output_handle handle;
8648 struct perf_sample_data sample;
8649 int ret;
8650
8651 if (!perf_event_switch_match(event))
8652 return;
8653
8654 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8655 if (event->ctx->task) {
8656 se->event_id.header.type = PERF_RECORD_SWITCH;
8657 se->event_id.header.size = sizeof(se->event_id.header);
8658 } else {
8659 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8660 se->event_id.header.size = sizeof(se->event_id);
8661 se->event_id.next_prev_pid =
8662 perf_event_pid(event, se->next_prev);
8663 se->event_id.next_prev_tid =
8664 perf_event_tid(event, se->next_prev);
8665 }
8666
8667 perf_event_header__init_id(&se->event_id.header, &sample, event);
8668
Peter Zijlstra267fb272020-10-30 15:50:32 +01008669 ret = perf_output_begin(&handle, &sample, event, se->event_id.header.size);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008670 if (ret)
8671 return;
8672
8673 if (event->ctx->task)
8674 perf_output_put(&handle, se->event_id.header);
8675 else
8676 perf_output_put(&handle, se->event_id);
8677
8678 perf_event__output_id_sample(event, &handle, &sample);
8679
8680 perf_output_end(&handle);
8681}
8682
8683static void perf_event_switch(struct task_struct *task,
8684 struct task_struct *next_prev, bool sched_in)
8685{
8686 struct perf_switch_event switch_event;
8687
8688 /* N.B. caller checks nr_switch_events != 0 */
8689
8690 switch_event = (struct perf_switch_event){
8691 .task = task,
8692 .next_prev = next_prev,
8693 .event_id = {
8694 .header = {
8695 /* .type */
8696 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8697 /* .size */
8698 },
8699 /* .next_prev_pid */
8700 /* .next_prev_tid */
8701 },
8702 };
8703
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008704 if (!sched_in && task->on_rq) {
Alexey Budankov101592b2018-04-09 10:25:32 +03008705 switch_event.event_id.header.misc |=
8706 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008707 }
Alexey Budankov101592b2018-04-09 10:25:32 +03008708
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008709 perf_iterate_sb(perf_event_switch_output, &switch_event, NULL);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008710}
8711
8712/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008713 * IRQ throttle logging
8714 */
8715
8716static void perf_log_throttle(struct perf_event *event, int enable)
8717{
8718 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008719 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008720 int ret;
8721
8722 struct {
8723 struct perf_event_header header;
8724 u64 time;
8725 u64 id;
8726 u64 stream_id;
8727 } throttle_event = {
8728 .header = {
8729 .type = PERF_RECORD_THROTTLE,
8730 .misc = 0,
8731 .size = sizeof(throttle_event),
8732 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008733 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008734 .id = primary_event_id(event),
8735 .stream_id = event->id,
8736 };
8737
8738 if (enable)
8739 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8740
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008741 perf_event_header__init_id(&throttle_event.header, &sample, event);
8742
Peter Zijlstra267fb272020-10-30 15:50:32 +01008743 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008744 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008745 if (ret)
8746 return;
8747
8748 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008749 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008750 perf_output_end(&handle);
8751}
8752
Song Liu76193a92019-01-17 08:15:13 -08008753/*
8754 * ksymbol register/unregister tracking
8755 */
8756
8757struct perf_ksymbol_event {
8758 const char *name;
8759 int name_len;
8760 struct {
8761 struct perf_event_header header;
8762 u64 addr;
8763 u32 len;
8764 u16 ksym_type;
8765 u16 flags;
8766 } event_id;
8767};
8768
8769static int perf_event_ksymbol_match(struct perf_event *event)
8770{
8771 return event->attr.ksymbol;
8772}
8773
8774static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8775{
8776 struct perf_ksymbol_event *ksymbol_event = data;
8777 struct perf_output_handle handle;
8778 struct perf_sample_data sample;
8779 int ret;
8780
8781 if (!perf_event_ksymbol_match(event))
8782 return;
8783
8784 perf_event_header__init_id(&ksymbol_event->event_id.header,
8785 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008786 ret = perf_output_begin(&handle, &sample, event,
Song Liu76193a92019-01-17 08:15:13 -08008787 ksymbol_event->event_id.header.size);
8788 if (ret)
8789 return;
8790
8791 perf_output_put(&handle, ksymbol_event->event_id);
8792 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8793 perf_event__output_id_sample(event, &handle, &sample);
8794
8795 perf_output_end(&handle);
8796}
8797
8798void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8799 const char *sym)
8800{
8801 struct perf_ksymbol_event ksymbol_event;
8802 char name[KSYM_NAME_LEN];
8803 u16 flags = 0;
8804 int name_len;
8805
8806 if (!atomic_read(&nr_ksymbol_events))
8807 return;
8808
8809 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8810 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8811 goto err;
8812
8813 strlcpy(name, sym, KSYM_NAME_LEN);
8814 name_len = strlen(name) + 1;
8815 while (!IS_ALIGNED(name_len, sizeof(u64)))
8816 name[name_len++] = '\0';
8817 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8818
8819 if (unregister)
8820 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8821
8822 ksymbol_event = (struct perf_ksymbol_event){
8823 .name = name,
8824 .name_len = name_len,
8825 .event_id = {
8826 .header = {
8827 .type = PERF_RECORD_KSYMBOL,
8828 .size = sizeof(ksymbol_event.event_id) +
8829 name_len,
8830 },
8831 .addr = addr,
8832 .len = len,
8833 .ksym_type = ksym_type,
8834 .flags = flags,
8835 },
8836 };
8837
8838 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8839 return;
8840err:
8841 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8842}
8843
Song Liu6ee52e22019-01-17 08:15:15 -08008844/*
8845 * bpf program load/unload tracking
8846 */
8847
8848struct perf_bpf_event {
8849 struct bpf_prog *prog;
8850 struct {
8851 struct perf_event_header header;
8852 u16 type;
8853 u16 flags;
8854 u32 id;
8855 u8 tag[BPF_TAG_SIZE];
8856 } event_id;
8857};
8858
8859static int perf_event_bpf_match(struct perf_event *event)
8860{
8861 return event->attr.bpf_event;
8862}
8863
8864static void perf_event_bpf_output(struct perf_event *event, void *data)
8865{
8866 struct perf_bpf_event *bpf_event = data;
8867 struct perf_output_handle handle;
8868 struct perf_sample_data sample;
8869 int ret;
8870
8871 if (!perf_event_bpf_match(event))
8872 return;
8873
8874 perf_event_header__init_id(&bpf_event->event_id.header,
8875 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008876 ret = perf_output_begin(&handle, data, event,
Song Liu6ee52e22019-01-17 08:15:15 -08008877 bpf_event->event_id.header.size);
8878 if (ret)
8879 return;
8880
8881 perf_output_put(&handle, bpf_event->event_id);
8882 perf_event__output_id_sample(event, &handle, &sample);
8883
8884 perf_output_end(&handle);
8885}
8886
8887static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8888 enum perf_bpf_event_type type)
8889{
8890 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
Song Liu6ee52e22019-01-17 08:15:15 -08008891 int i;
8892
8893 if (prog->aux->func_cnt == 0) {
Song Liu6ee52e22019-01-17 08:15:15 -08008894 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8895 (u64)(unsigned long)prog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01008896 prog->jited_len, unregister,
8897 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08008898 } else {
8899 for (i = 0; i < prog->aux->func_cnt; i++) {
8900 struct bpf_prog *subprog = prog->aux->func[i];
8901
Song Liu6ee52e22019-01-17 08:15:15 -08008902 perf_event_ksymbol(
8903 PERF_RECORD_KSYMBOL_TYPE_BPF,
8904 (u64)(unsigned long)subprog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01008905 subprog->jited_len, unregister,
8906 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08008907 }
8908 }
8909}
8910
8911void perf_event_bpf_event(struct bpf_prog *prog,
8912 enum perf_bpf_event_type type,
8913 u16 flags)
8914{
8915 struct perf_bpf_event bpf_event;
8916
8917 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8918 type >= PERF_BPF_EVENT_MAX)
8919 return;
8920
8921 switch (type) {
8922 case PERF_BPF_EVENT_PROG_LOAD:
8923 case PERF_BPF_EVENT_PROG_UNLOAD:
8924 if (atomic_read(&nr_ksymbol_events))
8925 perf_event_bpf_emit_ksymbols(prog, type);
8926 break;
8927 default:
8928 break;
8929 }
8930
8931 if (!atomic_read(&nr_bpf_events))
8932 return;
8933
8934 bpf_event = (struct perf_bpf_event){
8935 .prog = prog,
8936 .event_id = {
8937 .header = {
8938 .type = PERF_RECORD_BPF_EVENT,
8939 .size = sizeof(bpf_event.event_id),
8940 },
8941 .type = type,
8942 .flags = flags,
8943 .id = prog->aux->id,
8944 },
8945 };
8946
8947 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8948
8949 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8950 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8951}
8952
Adrian Huntere17d43b2020-05-12 15:19:08 +03008953struct perf_text_poke_event {
8954 const void *old_bytes;
8955 const void *new_bytes;
8956 size_t pad;
8957 u16 old_len;
8958 u16 new_len;
8959
8960 struct {
8961 struct perf_event_header header;
8962
8963 u64 addr;
8964 } event_id;
8965};
8966
8967static int perf_event_text_poke_match(struct perf_event *event)
8968{
8969 return event->attr.text_poke;
8970}
8971
8972static void perf_event_text_poke_output(struct perf_event *event, void *data)
8973{
8974 struct perf_text_poke_event *text_poke_event = data;
8975 struct perf_output_handle handle;
8976 struct perf_sample_data sample;
8977 u64 padding = 0;
8978 int ret;
8979
8980 if (!perf_event_text_poke_match(event))
8981 return;
8982
8983 perf_event_header__init_id(&text_poke_event->event_id.header, &sample, event);
8984
Peter Zijlstra267fb272020-10-30 15:50:32 +01008985 ret = perf_output_begin(&handle, &sample, event,
8986 text_poke_event->event_id.header.size);
Adrian Huntere17d43b2020-05-12 15:19:08 +03008987 if (ret)
8988 return;
8989
8990 perf_output_put(&handle, text_poke_event->event_id);
8991 perf_output_put(&handle, text_poke_event->old_len);
8992 perf_output_put(&handle, text_poke_event->new_len);
8993
8994 __output_copy(&handle, text_poke_event->old_bytes, text_poke_event->old_len);
8995 __output_copy(&handle, text_poke_event->new_bytes, text_poke_event->new_len);
8996
8997 if (text_poke_event->pad)
8998 __output_copy(&handle, &padding, text_poke_event->pad);
8999
9000 perf_event__output_id_sample(event, &handle, &sample);
9001
9002 perf_output_end(&handle);
9003}
9004
9005void perf_event_text_poke(const void *addr, const void *old_bytes,
9006 size_t old_len, const void *new_bytes, size_t new_len)
9007{
9008 struct perf_text_poke_event text_poke_event;
9009 size_t tot, pad;
9010
9011 if (!atomic_read(&nr_text_poke_events))
9012 return;
9013
9014 tot = sizeof(text_poke_event.old_len) + old_len;
9015 tot += sizeof(text_poke_event.new_len) + new_len;
9016 pad = ALIGN(tot, sizeof(u64)) - tot;
9017
9018 text_poke_event = (struct perf_text_poke_event){
9019 .old_bytes = old_bytes,
9020 .new_bytes = new_bytes,
9021 .pad = pad,
9022 .old_len = old_len,
9023 .new_len = new_len,
9024 .event_id = {
9025 .header = {
9026 .type = PERF_RECORD_TEXT_POKE,
9027 .misc = PERF_RECORD_MISC_KERNEL,
9028 .size = sizeof(text_poke_event.event_id) + tot + pad,
9029 },
9030 .addr = (unsigned long)addr,
9031 },
9032 };
9033
9034 perf_iterate_sb(perf_event_text_poke_output, &text_poke_event, NULL);
9035}
9036
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009037void perf_event_itrace_started(struct perf_event *event)
9038{
9039 event->attach_state |= PERF_ATTACH_ITRACE;
9040}
9041
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009042static void perf_log_itrace_start(struct perf_event *event)
9043{
9044 struct perf_output_handle handle;
9045 struct perf_sample_data sample;
9046 struct perf_aux_event {
9047 struct perf_event_header header;
9048 u32 pid;
9049 u32 tid;
9050 } rec;
9051 int ret;
9052
9053 if (event->parent)
9054 event = event->parent;
9055
9056 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009057 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009058 return;
9059
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009060 rec.header.type = PERF_RECORD_ITRACE_START;
9061 rec.header.misc = 0;
9062 rec.header.size = sizeof(rec);
9063 rec.pid = perf_event_pid(event, current);
9064 rec.tid = perf_event_tid(event, current);
9065
9066 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01009067 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009068
9069 if (ret)
9070 return;
9071
9072 perf_output_put(&handle, rec);
9073 perf_event__output_id_sample(event, &handle, &sample);
9074
9075 perf_output_end(&handle);
9076}
9077
Jiri Olsa475113d2016-12-28 14:31:03 +01009078static int
9079__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009080{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009081 struct hw_perf_event *hwc = &event->hw;
9082 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01009083 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01009084
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009085 seq = __this_cpu_read(perf_throttled_seq);
9086 if (seq != hwc->interrupts_seq) {
9087 hwc->interrupts_seq = seq;
9088 hwc->interrupts = 1;
9089 } else {
9090 hwc->interrupts++;
9091 if (unlikely(throttle
9092 && hwc->interrupts >= max_samples_per_tick)) {
9093 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009094 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01009095 hwc->interrupts = MAX_INTERRUPTS;
9096 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009097 ret = 1;
9098 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009099 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009100
9101 if (event->attr.freq) {
9102 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01009103 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009104
Peter Zijlstraabd50712010-01-26 18:50:16 +01009105 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009106
Peter Zijlstraabd50712010-01-26 18:50:16 +01009107 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01009108 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009109 }
9110
Jiri Olsa475113d2016-12-28 14:31:03 +01009111 return ret;
9112}
9113
9114int perf_event_account_interrupt(struct perf_event *event)
9115{
9116 return __perf_event_account_interrupt(event, 1);
9117}
9118
9119/*
9120 * Generic event overflow handling, sampling.
9121 */
9122
9123static int __perf_event_overflow(struct perf_event *event,
9124 int throttle, struct perf_sample_data *data,
9125 struct pt_regs *regs)
9126{
9127 int events = atomic_read(&event->event_limit);
9128 int ret = 0;
9129
9130 /*
9131 * Non-sampling counters might still use the PMI to fold short
9132 * hardware counters, ignore those.
9133 */
9134 if (unlikely(!is_sampling_event(event)))
9135 return 0;
9136
9137 ret = __perf_event_account_interrupt(event, throttle);
9138
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009139 /*
9140 * XXX event_limit might not quite work as expected on inherited
9141 * events
9142 */
9143
9144 event->pending_kill = POLL_IN;
9145 if (events && atomic_dec_and_test(&event->event_limit)) {
9146 ret = 1;
9147 event->pending_kill = POLL_HUP;
Marco Elver97ba62b2021-04-08 12:36:01 +02009148 event->pending_addr = data->addr;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02009149
9150 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009151 }
9152
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009153 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01009154
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02009155 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009156 event->pending_wakeup = 1;
9157 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02009158 }
9159
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009160 return ret;
9161}
9162
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009163int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009164 struct perf_sample_data *data,
9165 struct pt_regs *regs)
9166{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009167 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009168}
9169
9170/*
9171 * Generic software event infrastructure
9172 */
9173
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009174struct swevent_htable {
9175 struct swevent_hlist *swevent_hlist;
9176 struct mutex hlist_mutex;
9177 int hlist_refcount;
9178
9179 /* Recursion avoidance in each contexts */
9180 int recursion[PERF_NR_CONTEXTS];
9181};
9182
9183static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
9184
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009185/*
9186 * We directly increment event->count and keep a second value in
9187 * event->hw.period_left to count intervals. This period event
9188 * is kept in the range [-sample_period, 0] so that we can use the
9189 * sign as trigger.
9190 */
9191
Jiri Olsaab573842013-05-01 17:25:44 +02009192u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009193{
9194 struct hw_perf_event *hwc = &event->hw;
9195 u64 period = hwc->last_period;
9196 u64 nr, offset;
9197 s64 old, val;
9198
9199 hwc->last_period = hwc->sample_period;
9200
9201again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02009202 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009203 if (val < 0)
9204 return 0;
9205
9206 nr = div64_u64(period + val, period);
9207 offset = nr * period;
9208 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02009209 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009210 goto again;
9211
9212 return nr;
9213}
9214
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009215static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009216 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009217 struct pt_regs *regs)
9218{
9219 struct hw_perf_event *hwc = &event->hw;
9220 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009221
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009222 if (!overflow)
9223 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009224
9225 if (hwc->interrupts == MAX_INTERRUPTS)
9226 return;
9227
9228 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009229 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009230 data, regs)) {
9231 /*
9232 * We inhibit the overflow from happening when
9233 * hwc->interrupts == MAX_INTERRUPTS.
9234 */
9235 break;
9236 }
9237 throttle = 1;
9238 }
9239}
9240
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009241static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009242 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009243 struct pt_regs *regs)
9244{
9245 struct hw_perf_event *hwc = &event->hw;
9246
Peter Zijlstrae7850592010-05-21 14:43:08 +02009247 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009248
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009249 if (!regs)
9250 return;
9251
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009252 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009253 return;
9254
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03009255 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
9256 data->period = nr;
9257 return perf_swevent_overflow(event, 1, data, regs);
9258 } else
9259 data->period = event->hw.last_period;
9260
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009261 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009262 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009263
Peter Zijlstrae7850592010-05-21 14:43:08 +02009264 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009265 return;
9266
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009267 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009268}
9269
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009270static int perf_exclude_event(struct perf_event *event,
9271 struct pt_regs *regs)
9272{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009273 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01009274 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009275
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009276 if (regs) {
9277 if (event->attr.exclude_user && user_mode(regs))
9278 return 1;
9279
9280 if (event->attr.exclude_kernel && !user_mode(regs))
9281 return 1;
9282 }
9283
9284 return 0;
9285}
9286
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009287static int perf_swevent_match(struct perf_event *event,
9288 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08009289 u32 event_id,
9290 struct perf_sample_data *data,
9291 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009292{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009293 if (event->attr.type != type)
9294 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009296 if (event->attr.config != event_id)
9297 return 0;
9298
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009299 if (perf_exclude_event(event, regs))
9300 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009301
9302 return 1;
9303}
9304
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009305static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009306{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009307 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009308
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009309 return hash_64(val, SWEVENT_HLIST_BITS);
9310}
9311
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009312static inline struct hlist_head *
9313__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009314{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009315 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009316
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009317 return &hlist->heads[hash];
9318}
9319
9320/* For the read side: events when they trigger */
9321static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009322find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009323{
9324 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009325
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009326 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009327 if (!hlist)
9328 return NULL;
9329
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009330 return __find_swevent_head(hlist, type, event_id);
9331}
9332
9333/* For the event head insertion and removal in the hlist */
9334static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009335find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009336{
9337 struct swevent_hlist *hlist;
9338 u32 event_id = event->attr.config;
9339 u64 type = event->attr.type;
9340
9341 /*
9342 * Event scheduling is always serialized against hlist allocation
9343 * and release. Which makes the protected version suitable here.
9344 * The context lock guarantees that.
9345 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009346 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009347 lockdep_is_held(&event->ctx->lock));
9348 if (!hlist)
9349 return NULL;
9350
9351 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009352}
9353
9354static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009355 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009356 struct perf_sample_data *data,
9357 struct pt_regs *regs)
9358{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009359 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009360 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009361 struct hlist_head *head;
9362
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009363 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009364 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009365 if (!head)
9366 goto end;
9367
Sasha Levinb67bfe02013-02-27 17:06:00 -08009368 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08009369 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009370 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009371 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009372end:
9373 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009374}
9375
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009376DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
9377
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009378int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009379{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009380 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009381
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009382 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009383}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01009384EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009385
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009386void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009387{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009388 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009389
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009390 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009391}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009392
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009393void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009394{
Ingo Molnara4234bf2009-11-23 10:57:59 +01009395 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009396
9397 if (WARN_ON_ONCE(!regs))
9398 return;
9399
9400 perf_sample_data_init(&data, addr, 0);
9401 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
9402}
9403
9404void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
9405{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009406 int rctx;
9407
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009408 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009409 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009410 if (unlikely(rctx < 0))
9411 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009412
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009413 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009414
9415 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009416fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009417 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009418}
9419
9420static void perf_swevent_read(struct perf_event *event)
9421{
9422}
9423
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009424static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009425{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009426 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009427 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009428 struct hlist_head *head;
9429
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009430 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009431 hwc->last_period = hwc->sample_period;
9432 perf_swevent_set_period(event);
9433 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009434
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009435 hwc->state = !(flags & PERF_EF_START);
9436
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009437 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01009438 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009439 return -EINVAL;
9440
9441 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08009442 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009443
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009444 return 0;
9445}
9446
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009447static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009448{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009449 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009450}
9451
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009452static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009453{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009454 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009455}
9456
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009457static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009458{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009459 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009460}
9461
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009462/* Deref the hlist from the update side */
9463static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009464swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009465{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009466 return rcu_dereference_protected(swhash->swevent_hlist,
9467 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009468}
9469
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009470static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009471{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009472 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009473
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009474 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009475 return;
9476
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03009477 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08009478 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009479}
9480
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009481static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009482{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009483 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009484
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009485 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009486
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009487 if (!--swhash->hlist_refcount)
9488 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009489
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009490 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009491}
9492
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009493static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009494{
9495 int cpu;
9496
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009497 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009498 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009499}
9500
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009501static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009502{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009503 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009504 int err = 0;
9505
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009506 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009507 if (!swevent_hlist_deref(swhash) &&
9508 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009509 struct swevent_hlist *hlist;
9510
9511 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9512 if (!hlist) {
9513 err = -ENOMEM;
9514 goto exit;
9515 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009516 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009517 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009518 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009519exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009520 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009521
9522 return err;
9523}
9524
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009525static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009526{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009527 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009528
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009529 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009530 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009531 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009532 if (err) {
9533 failed_cpu = cpu;
9534 goto fail;
9535 }
9536 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009537 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009538 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009539fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009540 for_each_possible_cpu(cpu) {
9541 if (cpu == failed_cpu)
9542 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009543 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009544 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009545 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009546 return err;
9547}
9548
Ingo Molnarc5905af2012-02-24 08:31:31 +01009549struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009550
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009551static void sw_perf_event_destroy(struct perf_event *event)
9552{
9553 u64 event_id = event->attr.config;
9554
9555 WARN_ON(event->parent);
9556
Ingo Molnarc5905af2012-02-24 08:31:31 +01009557 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009558 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009559}
9560
9561static int perf_swevent_init(struct perf_event *event)
9562{
Tommi Rantala8176cce2013-04-13 22:49:14 +03009563 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009564
9565 if (event->attr.type != PERF_TYPE_SOFTWARE)
9566 return -ENOENT;
9567
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009568 /*
9569 * no branch sampling for software events
9570 */
9571 if (has_branch_stack(event))
9572 return -EOPNOTSUPP;
9573
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009574 switch (event_id) {
9575 case PERF_COUNT_SW_CPU_CLOCK:
9576 case PERF_COUNT_SW_TASK_CLOCK:
9577 return -ENOENT;
9578
9579 default:
9580 break;
9581 }
9582
Dan Carpenterce677832010-10-24 21:50:42 +02009583 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009584 return -ENOENT;
9585
9586 if (!event->parent) {
9587 int err;
9588
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009589 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009590 if (err)
9591 return err;
9592
Ingo Molnarc5905af2012-02-24 08:31:31 +01009593 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009594 event->destroy = sw_perf_event_destroy;
9595 }
9596
9597 return 0;
9598}
9599
9600static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009601 .task_ctx_nr = perf_sw_context,
9602
Peter Zijlstra34f43922015-02-20 14:05:38 +01009603 .capabilities = PERF_PMU_CAP_NO_NMI,
9604
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009605 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009606 .add = perf_swevent_add,
9607 .del = perf_swevent_del,
9608 .start = perf_swevent_start,
9609 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009610 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009611};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009612
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009613#ifdef CONFIG_EVENT_TRACING
9614
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009615static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009616 struct perf_sample_data *data)
9617{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009618 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009619
Peter Zijlstrab71b4372015-11-02 10:50:51 +01009620 /* only top level events have filters set */
9621 if (event->parent)
9622 event = event->parent;
9623
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009624 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9625 return 1;
9626 return 0;
9627}
9628
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009629static int perf_tp_event_match(struct perf_event *event,
9630 struct perf_sample_data *data,
9631 struct pt_regs *regs)
9632{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01009633 if (event->hw.state & PERF_HES_STOPPED)
9634 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02009635 /*
Song Liu9fd2e482019-05-07 09:15:45 -07009636 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02009637 */
Song Liu9fd2e482019-05-07 09:15:45 -07009638 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009639 return 0;
9640
9641 if (!perf_tp_filter_match(event, data))
9642 return 0;
9643
9644 return 1;
9645}
9646
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009647void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9648 struct trace_event_call *call, u64 count,
9649 struct pt_regs *regs, struct hlist_head *head,
9650 struct task_struct *task)
9651{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009652 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009653 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009654 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009655 perf_swevent_put_recursion_context(rctx);
9656 return;
9657 }
9658 }
9659 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009660 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009661}
9662EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9663
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009664void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009665 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009666 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009667{
9668 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009669 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009670
9671 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009672 .frag = {
9673 .size = entry_size,
9674 .data = record,
9675 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009676 };
9677
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009678 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009679 data.raw = &raw;
9680
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009681 perf_trace_buf_update(record, event_type);
9682
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009683 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009684 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009685 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009686 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009687
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009688 /*
9689 * If we got specified a target task, also iterate its context and
9690 * deliver this event there too.
9691 */
9692 if (task && task != current) {
9693 struct perf_event_context *ctx;
9694 struct trace_entry *entry = record;
9695
9696 rcu_read_lock();
9697 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9698 if (!ctx)
9699 goto unlock;
9700
9701 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009702 if (event->cpu != smp_processor_id())
9703 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009704 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9705 continue;
9706 if (event->attr.config != entry->type)
9707 continue;
9708 if (perf_tp_event_match(event, &data, regs))
9709 perf_swevent_event(event, count, &data, regs);
9710 }
9711unlock:
9712 rcu_read_unlock();
9713 }
9714
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009715 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009716}
9717EXPORT_SYMBOL_GPL(perf_tp_event);
9718
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009719static void tp_perf_event_destroy(struct perf_event *event)
9720{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009721 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009722}
9723
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009724static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009725{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009726 int err;
9727
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009728 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9729 return -ENOENT;
9730
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009731 /*
9732 * no branch sampling for tracepoint events
9733 */
9734 if (has_branch_stack(event))
9735 return -EOPNOTSUPP;
9736
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009737 err = perf_trace_init(event);
9738 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009739 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009740
9741 event->destroy = tp_perf_event_destroy;
9742
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009743 return 0;
9744}
9745
9746static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009747 .task_ctx_nr = perf_sw_context,
9748
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009749 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009750 .add = perf_trace_add,
9751 .del = perf_trace_del,
9752 .start = perf_swevent_start,
9753 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009754 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009755};
9756
Song Liu33ea4b22017-12-06 14:45:16 -08009757#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009758/*
9759 * Flags in config, used by dynamic PMU kprobe and uprobe
9760 * The flags should match following PMU_FORMAT_ATTR().
9761 *
9762 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9763 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009764 *
9765 * The following values specify a reference counter (or semaphore in the
9766 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9767 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9768 *
9769 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9770 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009771 */
9772enum perf_probe_config {
9773 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009774 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9775 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009776};
9777
9778PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009779#endif
Song Liue12f03d2017-12-06 14:45:15 -08009780
Song Liua6ca88b2018-10-01 22:36:36 -07009781#ifdef CONFIG_KPROBE_EVENTS
9782static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009783 &format_attr_retprobe.attr,
9784 NULL,
9785};
9786
Song Liua6ca88b2018-10-01 22:36:36 -07009787static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009788 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009789 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009790};
9791
Song Liua6ca88b2018-10-01 22:36:36 -07009792static const struct attribute_group *kprobe_attr_groups[] = {
9793 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009794 NULL,
9795};
9796
9797static int perf_kprobe_event_init(struct perf_event *event);
9798static struct pmu perf_kprobe = {
9799 .task_ctx_nr = perf_sw_context,
9800 .event_init = perf_kprobe_event_init,
9801 .add = perf_trace_add,
9802 .del = perf_trace_del,
9803 .start = perf_swevent_start,
9804 .stop = perf_swevent_stop,
9805 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009806 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009807};
9808
9809static int perf_kprobe_event_init(struct perf_event *event)
9810{
9811 int err;
9812 bool is_retprobe;
9813
9814 if (event->attr.type != perf_kprobe.type)
9815 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009816
Alexey Budankovc9e09242020-04-02 11:47:01 +03009817 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009818 return -EACCES;
9819
Song Liue12f03d2017-12-06 14:45:15 -08009820 /*
9821 * no branch sampling for probe events
9822 */
9823 if (has_branch_stack(event))
9824 return -EOPNOTSUPP;
9825
9826 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9827 err = perf_kprobe_init(event, is_retprobe);
9828 if (err)
9829 return err;
9830
9831 event->destroy = perf_kprobe_destroy;
9832
9833 return 0;
9834}
9835#endif /* CONFIG_KPROBE_EVENTS */
9836
Song Liu33ea4b22017-12-06 14:45:16 -08009837#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009838PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9839
9840static struct attribute *uprobe_attrs[] = {
9841 &format_attr_retprobe.attr,
9842 &format_attr_ref_ctr_offset.attr,
9843 NULL,
9844};
9845
9846static struct attribute_group uprobe_format_group = {
9847 .name = "format",
9848 .attrs = uprobe_attrs,
9849};
9850
9851static const struct attribute_group *uprobe_attr_groups[] = {
9852 &uprobe_format_group,
9853 NULL,
9854};
9855
Song Liu33ea4b22017-12-06 14:45:16 -08009856static int perf_uprobe_event_init(struct perf_event *event);
9857static struct pmu perf_uprobe = {
9858 .task_ctx_nr = perf_sw_context,
9859 .event_init = perf_uprobe_event_init,
9860 .add = perf_trace_add,
9861 .del = perf_trace_del,
9862 .start = perf_swevent_start,
9863 .stop = perf_swevent_stop,
9864 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009865 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08009866};
9867
9868static int perf_uprobe_event_init(struct perf_event *event)
9869{
9870 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07009871 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08009872 bool is_retprobe;
9873
9874 if (event->attr.type != perf_uprobe.type)
9875 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009876
Alexey Budankovc9e09242020-04-02 11:47:01 +03009877 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009878 return -EACCES;
9879
Song Liu33ea4b22017-12-06 14:45:16 -08009880 /*
9881 * no branch sampling for probe events
9882 */
9883 if (has_branch_stack(event))
9884 return -EOPNOTSUPP;
9885
9886 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07009887 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9888 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08009889 if (err)
9890 return err;
9891
9892 event->destroy = perf_uprobe_destroy;
9893
9894 return 0;
9895}
9896#endif /* CONFIG_UPROBE_EVENTS */
9897
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009898static inline void perf_tp_register(void)
9899{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009900 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08009901#ifdef CONFIG_KPROBE_EVENTS
9902 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9903#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009904#ifdef CONFIG_UPROBE_EVENTS
9905 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9906#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009907}
Li Zefan6fb29152009-10-15 11:21:42 +08009908
Li Zefan6fb29152009-10-15 11:21:42 +08009909static void perf_event_free_filter(struct perf_event *event)
9910{
9911 ftrace_profile_free_filter(event);
9912}
9913
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009914#ifdef CONFIG_BPF_SYSCALL
9915static void bpf_overflow_handler(struct perf_event *event,
9916 struct perf_sample_data *data,
9917 struct pt_regs *regs)
9918{
9919 struct bpf_perf_event_data_kern ctx = {
9920 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07009921 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009922 };
9923 int ret = 0;
9924
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01009925 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009926 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
9927 goto out;
9928 rcu_read_lock();
Andrii Nakryikofb7dd8b2021-08-15 00:05:54 -07009929 ret = bpf_prog_run(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009930 rcu_read_unlock();
9931out:
9932 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009933 if (!ret)
9934 return;
9935
9936 event->orig_overflow_handler(event, data, regs);
9937}
9938
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07009939static int perf_event_set_bpf_handler(struct perf_event *event, struct bpf_prog *prog)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009940{
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009941 if (event->overflow_handler_context)
9942 /* hw breakpoint or kernel counter */
9943 return -EINVAL;
9944
9945 if (event->prog)
9946 return -EEXIST;
9947
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07009948 if (prog->type != BPF_PROG_TYPE_PERF_EVENT)
9949 return -EINVAL;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009950
Song Liu5d99cb2c2020-07-23 11:06:45 -07009951 if (event->attr.precise_ip &&
9952 prog->call_get_stack &&
9953 (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY) ||
9954 event->attr.exclude_callchain_kernel ||
9955 event->attr.exclude_callchain_user)) {
9956 /*
9957 * On perf_event with precise_ip, calling bpf_get_stack()
9958 * may trigger unwinder warnings and occasional crashes.
9959 * bpf_get_[stack|stackid] works around this issue by using
9960 * callchain attached to perf_sample_data. If the
9961 * perf_event does not full (kernel and user) callchain
9962 * attached to perf_sample_data, do not allow attaching BPF
9963 * program that calls bpf_get_[stack|stackid].
9964 */
Song Liu5d99cb2c2020-07-23 11:06:45 -07009965 return -EPROTO;
9966 }
9967
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009968 event->prog = prog;
9969 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9970 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9971 return 0;
9972}
9973
9974static void perf_event_free_bpf_handler(struct perf_event *event)
9975{
9976 struct bpf_prog *prog = event->prog;
9977
9978 if (!prog)
9979 return;
9980
9981 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9982 event->prog = NULL;
9983 bpf_prog_put(prog);
9984}
9985#else
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07009986static int perf_event_set_bpf_handler(struct perf_event *event, struct bpf_prog *prog)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009987{
9988 return -EOPNOTSUPP;
9989}
9990static void perf_event_free_bpf_handler(struct perf_event *event)
9991{
9992}
9993#endif
9994
Song Liue12f03d2017-12-06 14:45:15 -08009995/*
9996 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9997 * with perf_event_open()
9998 */
9999static inline bool perf_event_is_tracing(struct perf_event *event)
10000{
10001 if (event->pmu == &perf_tracepoint)
10002 return true;
10003#ifdef CONFIG_KPROBE_EVENTS
10004 if (event->pmu == &perf_kprobe)
10005 return true;
10006#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010007#ifdef CONFIG_UPROBE_EVENTS
10008 if (event->pmu == &perf_uprobe)
10009 return true;
10010#endif
Song Liue12f03d2017-12-06 14:45:15 -080010011 return false;
10012}
10013
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010014int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010015{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010016 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010017
Song Liue12f03d2017-12-06 14:45:15 -080010018 if (!perf_event_is_tracing(event))
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010019 return perf_event_set_bpf_handler(event, prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010020
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010021 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
10022 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010023 is_syscall_tp = is_syscall_trace_event(event->tp_event);
10024 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010025 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -070010026 return -EINVAL;
10027
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010028 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010029 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010030 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT))
Alexei Starovoitov25415172015-03-25 12:49:20 -070010031 return -EINVAL;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010032
Josef Bacik9802d862017-12-11 11:36:48 -050010033 /* Kprobe override only works for kprobes, not uprobes. */
10034 if (prog->kprobe_override &&
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010035 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE))
Josef Bacik9802d862017-12-11 11:36:48 -050010036 return -EINVAL;
Josef Bacik9802d862017-12-11 11:36:48 -050010037
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010038 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010039 int off = trace_event_get_offsets(event->tp_event);
10040
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010041 if (prog->aux->max_ctx_offset > off)
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010042 return -EACCES;
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010043 }
Alexei Starovoitov25415172015-03-25 12:49:20 -070010044
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010045 return perf_event_attach_bpf_prog(event, prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010046}
10047
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010048void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010049{
Song Liue12f03d2017-12-06 14:45:15 -080010050 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -070010051 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010052 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010053 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -070010054 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010055}
10056
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010057#else
Li Zefan6fb29152009-10-15 11:21:42 +080010058
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010059static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010060{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010061}
Li Zefan6fb29152009-10-15 11:21:42 +080010062
Li Zefan6fb29152009-10-15 11:21:42 +080010063static void perf_event_free_filter(struct perf_event *event)
10064{
10065}
10066
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010067int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010068{
10069 return -ENOENT;
10070}
10071
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010072void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010073{
10074}
Li Zefan07b139c2009-12-21 14:27:35 +080010075#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010076
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010077#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010078void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010079{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010080 struct perf_sample_data sample;
10081 struct pt_regs *regs = data;
10082
Robert Richterfd0d0002012-04-02 20:19:08 +020010083 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010084
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010085 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020010086 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010087}
10088#endif
10089
Alexander Shishkin375637b2016-04-27 18:44:46 +030010090/*
10091 * Allocate a new address filter
10092 */
10093static struct perf_addr_filter *
10094perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
10095{
10096 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
10097 struct perf_addr_filter *filter;
10098
10099 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
10100 if (!filter)
10101 return NULL;
10102
10103 INIT_LIST_HEAD(&filter->entry);
10104 list_add_tail(&filter->entry, filters);
10105
10106 return filter;
10107}
10108
10109static void free_filters_list(struct list_head *filters)
10110{
10111 struct perf_addr_filter *filter, *iter;
10112
10113 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -070010114 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010115 list_del(&filter->entry);
10116 kfree(filter);
10117 }
10118}
10119
10120/*
10121 * Free existing address filters and optionally install new ones
10122 */
10123static void perf_addr_filters_splice(struct perf_event *event,
10124 struct list_head *head)
10125{
10126 unsigned long flags;
10127 LIST_HEAD(list);
10128
10129 if (!has_addr_filter(event))
10130 return;
10131
10132 /* don't bother with children, they don't have their own filters */
10133 if (event->parent)
10134 return;
10135
10136 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
10137
10138 list_splice_init(&event->addr_filters.list, &list);
10139 if (head)
10140 list_splice(head, &event->addr_filters.list);
10141
10142 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
10143
10144 free_filters_list(&list);
10145}
10146
10147/*
10148 * Scan through mm's vmas and see if one of them matches the
10149 * @filter; if so, adjust filter's address range.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070010150 * Called with mm::mmap_lock down for reading.
Alexander Shishkin375637b2016-04-27 18:44:46 +030010151 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010152static void perf_addr_filter_apply(struct perf_addr_filter *filter,
10153 struct mm_struct *mm,
10154 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010155{
10156 struct vm_area_struct *vma;
10157
10158 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010159 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010160 continue;
10161
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010162 if (perf_addr_filter_vma_adjust(filter, vma, fr))
10163 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010164 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010165}
10166
10167/*
10168 * Update event's address range filters based on the
10169 * task's existing mappings, if any.
10170 */
10171static void perf_event_addr_filters_apply(struct perf_event *event)
10172{
10173 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10174 struct task_struct *task = READ_ONCE(event->ctx->task);
10175 struct perf_addr_filter *filter;
10176 struct mm_struct *mm = NULL;
10177 unsigned int count = 0;
10178 unsigned long flags;
10179
10180 /*
10181 * We may observe TASK_TOMBSTONE, which means that the event tear-down
10182 * will stop on the parent's child_mutex that our caller is also holding
10183 */
10184 if (task == TASK_TOMBSTONE)
10185 return;
10186
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010187 if (ifh->nr_file_filters) {
10188 mm = get_task_mm(event->ctx->task);
10189 if (!mm)
10190 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010191
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010192 mmap_read_lock(mm);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010193 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010194
10195 raw_spin_lock_irqsave(&ifh->lock, flags);
10196 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010197 if (filter->path.dentry) {
10198 /*
10199 * Adjust base offset if the filter is associated to a
10200 * binary that needs to be mapped:
10201 */
10202 event->addr_filter_ranges[count].start = 0;
10203 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010204
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010205 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010206 } else {
10207 event->addr_filter_ranges[count].start = filter->offset;
10208 event->addr_filter_ranges[count].size = filter->size;
10209 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010210
10211 count++;
10212 }
10213
10214 event->addr_filters_gen++;
10215 raw_spin_unlock_irqrestore(&ifh->lock, flags);
10216
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010217 if (ifh->nr_file_filters) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010218 mmap_read_unlock(mm);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010219
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010220 mmput(mm);
10221 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010222
10223restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +030010224 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010225}
10226
10227/*
10228 * Address range filtering: limiting the data to certain
10229 * instruction address ranges. Filters are ioctl()ed to us from
10230 * userspace as ascii strings.
10231 *
10232 * Filter string format:
10233 *
10234 * ACTION RANGE_SPEC
10235 * where ACTION is one of the
10236 * * "filter": limit the trace to this region
10237 * * "start": start tracing from this address
10238 * * "stop": stop tracing at this address/region;
10239 * RANGE_SPEC is
10240 * * for kernel addresses: <start address>[/<size>]
10241 * * for object files: <start address>[/<size>]@</path/to/object/file>
10242 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010243 * if <size> is not specified or is zero, the range is treated as a single
10244 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +030010245 */
10246enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +020010247 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +030010248 IF_ACT_FILTER,
10249 IF_ACT_START,
10250 IF_ACT_STOP,
10251 IF_SRC_FILE,
10252 IF_SRC_KERNEL,
10253 IF_SRC_FILEADDR,
10254 IF_SRC_KERNELADDR,
10255};
10256
10257enum {
10258 IF_STATE_ACTION = 0,
10259 IF_STATE_SOURCE,
10260 IF_STATE_END,
10261};
10262
10263static const match_table_t if_tokens = {
10264 { IF_ACT_FILTER, "filter" },
10265 { IF_ACT_START, "start" },
10266 { IF_ACT_STOP, "stop" },
10267 { IF_SRC_FILE, "%u/%u@%s" },
10268 { IF_SRC_KERNEL, "%u/%u" },
10269 { IF_SRC_FILEADDR, "%u@%s" },
10270 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +020010271 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +030010272};
10273
10274/*
10275 * Address filter string parser
10276 */
10277static int
10278perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
10279 struct list_head *filters)
10280{
10281 struct perf_addr_filter *filter = NULL;
10282 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010283 substring_t args[MAX_OPT_ARGS];
10284 int state = IF_STATE_ACTION, token;
10285 unsigned int kernel = 0;
10286 int ret = -EINVAL;
10287
10288 orig = fstr = kstrdup(fstr, GFP_KERNEL);
10289 if (!fstr)
10290 return -ENOMEM;
10291
10292 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010293 static const enum perf_addr_filter_action_t actions[] = {
10294 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
10295 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
10296 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
10297 };
Alexander Shishkin375637b2016-04-27 18:44:46 +030010298 ret = -EINVAL;
10299
10300 if (!*start)
10301 continue;
10302
10303 /* filter definition begins */
10304 if (state == IF_STATE_ACTION) {
10305 filter = perf_addr_filter_new(event, filters);
10306 if (!filter)
10307 goto fail;
10308 }
10309
10310 token = match_token(start, if_tokens, args);
10311 switch (token) {
10312 case IF_ACT_FILTER:
10313 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +030010314 case IF_ACT_STOP:
10315 if (state != IF_STATE_ACTION)
10316 goto fail;
10317
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010318 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +030010319 state = IF_STATE_SOURCE;
10320 break;
10321
10322 case IF_SRC_KERNELADDR:
10323 case IF_SRC_KERNEL:
10324 kernel = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010325 fallthrough;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010326
10327 case IF_SRC_FILEADDR:
10328 case IF_SRC_FILE:
10329 if (state != IF_STATE_SOURCE)
10330 goto fail;
10331
Alexander Shishkin375637b2016-04-27 18:44:46 +030010332 *args[0].to = 0;
10333 ret = kstrtoul(args[0].from, 0, &filter->offset);
10334 if (ret)
10335 goto fail;
10336
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010337 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +030010338 *args[1].to = 0;
10339 ret = kstrtoul(args[1].from, 0, &filter->size);
10340 if (ret)
10341 goto fail;
10342 }
10343
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010344 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010345 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010346
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010347 kfree(filename);
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010348 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010349 if (!filename) {
10350 ret = -ENOMEM;
10351 goto fail;
10352 }
10353 }
10354
10355 state = IF_STATE_END;
10356 break;
10357
10358 default:
10359 goto fail;
10360 }
10361
10362 /*
10363 * Filter definition is fully parsed, validate and install it.
10364 * Make sure that it doesn't contradict itself or the event's
10365 * attribute.
10366 */
10367 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +020010368 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010369 if (kernel && event->attr.exclude_kernel)
10370 goto fail;
10371
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010372 /*
10373 * ACTION "filter" must have a non-zero length region
10374 * specified.
10375 */
10376 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
10377 !filter->size)
10378 goto fail;
10379
Alexander Shishkin375637b2016-04-27 18:44:46 +030010380 if (!kernel) {
10381 if (!filename)
10382 goto fail;
10383
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010384 /*
10385 * For now, we only support file-based filters
10386 * in per-task events; doing so for CPU-wide
10387 * events requires additional context switching
10388 * trickery, since same object code will be
10389 * mapped at different virtual addresses in
10390 * different processes.
10391 */
10392 ret = -EOPNOTSUPP;
10393 if (!event->ctx->task)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010394 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010395
Alexander Shishkin375637b2016-04-27 18:44:46 +030010396 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -070010397 ret = kern_path(filename, LOOKUP_FOLLOW,
10398 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010399 if (ret)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010400 goto fail;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010401
10402 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -070010403 if (!filter->path.dentry ||
10404 !S_ISREG(d_inode(filter->path.dentry)
10405 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010406 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010407
10408 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010409 }
10410
10411 /* ready to consume more filters */
10412 state = IF_STATE_ACTION;
10413 filter = NULL;
10414 }
10415 }
10416
10417 if (state != IF_STATE_ACTION)
10418 goto fail;
10419
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010420 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010421 kfree(orig);
10422
10423 return 0;
10424
Alexander Shishkin375637b2016-04-27 18:44:46 +030010425fail:
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010426 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010427 free_filters_list(filters);
10428 kfree(orig);
10429
10430 return ret;
10431}
10432
10433static int
10434perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10435{
10436 LIST_HEAD(filters);
10437 int ret;
10438
10439 /*
10440 * Since this is called in perf_ioctl() path, we're already holding
10441 * ctx::mutex.
10442 */
10443 lockdep_assert_held(&event->ctx->mutex);
10444
10445 if (WARN_ON_ONCE(event->parent))
10446 return -EINVAL;
10447
Alexander Shishkin375637b2016-04-27 18:44:46 +030010448 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10449 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010450 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010451
10452 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010453 if (ret)
10454 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010455
10456 /* remove existing filters, if any */
10457 perf_addr_filters_splice(event, &filters);
10458
10459 /* install new filters */
10460 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10461
10462 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010463
10464fail_free_filters:
10465 free_filters_list(&filters);
10466
10467fail_clear_files:
10468 event->addr_filters.nr_file_filters = 0;
10469
10470 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010471}
10472
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010473static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10474{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010475 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -080010476 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010477
10478 filter_str = strndup_user(arg, PAGE_SIZE);
10479 if (IS_ERR(filter_str))
10480 return PTR_ERR(filter_str);
10481
Song Liue12f03d2017-12-06 14:45:15 -080010482#ifdef CONFIG_EVENT_TRACING
10483 if (perf_event_is_tracing(event)) {
10484 struct perf_event_context *ctx = event->ctx;
10485
10486 /*
10487 * Beware, here be dragons!!
10488 *
10489 * the tracepoint muck will deadlock against ctx->mutex, but
10490 * the tracepoint stuff does not actually need it. So
10491 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10492 * already have a reference on ctx.
10493 *
10494 * This can result in event getting moved to a different ctx,
10495 * but that does not affect the tracepoint state.
10496 */
10497 mutex_unlock(&ctx->mutex);
10498 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10499 mutex_lock(&ctx->mutex);
10500 } else
10501#endif
10502 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010503 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010504
10505 kfree(filter_str);
10506 return ret;
10507}
10508
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010509/*
10510 * hrtimer based swevent callback
10511 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010512
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010513static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010514{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010515 enum hrtimer_restart ret = HRTIMER_RESTART;
10516 struct perf_sample_data data;
10517 struct pt_regs *regs;
10518 struct perf_event *event;
10519 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010520
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010521 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010522
10523 if (event->state != PERF_EVENT_STATE_ACTIVE)
10524 return HRTIMER_NORESTART;
10525
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010526 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010527
Robert Richterfd0d0002012-04-02 20:19:08 +020010528 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010529 regs = get_irq_regs();
10530
10531 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -080010532 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +020010533 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010534 ret = HRTIMER_NORESTART;
10535 }
10536
10537 period = max_t(u64, 10000, event->hw.sample_period);
10538 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
10539
10540 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010541}
10542
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010543static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010544{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010545 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010546 s64 period;
10547
10548 if (!is_sampling_event(event))
10549 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010550
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010551 period = local64_read(&hwc->period_left);
10552 if (period) {
10553 if (period < 0)
10554 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010555
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010556 local64_set(&hwc->period_left, 0);
10557 } else {
10558 period = max_t(u64, 10000, hwc->sample_period);
10559 }
Thomas Gleixner3497d202015-04-14 21:09:03 +000010560 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010561 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010562}
10563
10564static void perf_swevent_cancel_hrtimer(struct perf_event *event)
10565{
10566 struct hw_perf_event *hwc = &event->hw;
10567
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +010010568 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010569 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010570 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010571
10572 hrtimer_cancel(&hwc->hrtimer);
10573 }
10574}
10575
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010576static void perf_swevent_init_hrtimer(struct perf_event *event)
10577{
10578 struct hw_perf_event *hwc = &event->hw;
10579
10580 if (!is_sampling_event(event))
10581 return;
10582
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010583 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010584 hwc->hrtimer.function = perf_swevent_hrtimer;
10585
10586 /*
10587 * Since hrtimers have a fixed rate, we can do a static freq->period
10588 * mapping and avoid the whole period adjust feedback stuff.
10589 */
10590 if (event->attr.freq) {
10591 long freq = event->attr.sample_freq;
10592
10593 event->attr.sample_period = NSEC_PER_SEC / freq;
10594 hwc->sample_period = event->attr.sample_period;
10595 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +090010596 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010597 event->attr.freq = 0;
10598 }
10599}
10600
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010601/*
10602 * Software event: cpu wall time clock
10603 */
10604
10605static void cpu_clock_event_update(struct perf_event *event)
10606{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010607 s64 prev;
10608 u64 now;
10609
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010610 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010611 prev = local64_xchg(&event->hw.prev_count, now);
10612 local64_add(now - prev, &event->count);
10613}
10614
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010615static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010616{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010617 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010618 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010619}
10620
10621static void cpu_clock_event_stop(struct perf_event *event, int flags)
10622{
10623 perf_swevent_cancel_hrtimer(event);
10624 cpu_clock_event_update(event);
10625}
10626
10627static int cpu_clock_event_add(struct perf_event *event, int flags)
10628{
10629 if (flags & PERF_EF_START)
10630 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010631 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010632
10633 return 0;
10634}
10635
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010636static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010637{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010638 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010639}
10640
10641static void cpu_clock_event_read(struct perf_event *event)
10642{
10643 cpu_clock_event_update(event);
10644}
10645
10646static int cpu_clock_event_init(struct perf_event *event)
10647{
10648 if (event->attr.type != PERF_TYPE_SOFTWARE)
10649 return -ENOENT;
10650
10651 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10652 return -ENOENT;
10653
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010654 /*
10655 * no branch sampling for software events
10656 */
10657 if (has_branch_stack(event))
10658 return -EOPNOTSUPP;
10659
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010660 perf_swevent_init_hrtimer(event);
10661
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010662 return 0;
10663}
10664
10665static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010666 .task_ctx_nr = perf_sw_context,
10667
Peter Zijlstra34f43922015-02-20 14:05:38 +010010668 .capabilities = PERF_PMU_CAP_NO_NMI,
10669
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010670 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010671 .add = cpu_clock_event_add,
10672 .del = cpu_clock_event_del,
10673 .start = cpu_clock_event_start,
10674 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010675 .read = cpu_clock_event_read,
10676};
10677
10678/*
10679 * Software event: task time clock
10680 */
10681
10682static void task_clock_event_update(struct perf_event *event, u64 now)
10683{
10684 u64 prev;
10685 s64 delta;
10686
10687 prev = local64_xchg(&event->hw.prev_count, now);
10688 delta = now - prev;
10689 local64_add(delta, &event->count);
10690}
10691
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010692static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010693{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010694 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010695 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010696}
10697
10698static void task_clock_event_stop(struct perf_event *event, int flags)
10699{
10700 perf_swevent_cancel_hrtimer(event);
10701 task_clock_event_update(event, event->ctx->time);
10702}
10703
10704static int task_clock_event_add(struct perf_event *event, int flags)
10705{
10706 if (flags & PERF_EF_START)
10707 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010708 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010709
10710 return 0;
10711}
10712
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010713static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010714{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010715 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010716}
10717
10718static void task_clock_event_read(struct perf_event *event)
10719{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010720 u64 now = perf_clock();
10721 u64 delta = now - event->ctx->timestamp;
10722 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010723
10724 task_clock_event_update(event, time);
10725}
10726
10727static int task_clock_event_init(struct perf_event *event)
10728{
10729 if (event->attr.type != PERF_TYPE_SOFTWARE)
10730 return -ENOENT;
10731
10732 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10733 return -ENOENT;
10734
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010735 /*
10736 * no branch sampling for software events
10737 */
10738 if (has_branch_stack(event))
10739 return -EOPNOTSUPP;
10740
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010741 perf_swevent_init_hrtimer(event);
10742
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010743 return 0;
10744}
10745
10746static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010747 .task_ctx_nr = perf_sw_context,
10748
Peter Zijlstra34f43922015-02-20 14:05:38 +010010749 .capabilities = PERF_PMU_CAP_NO_NMI,
10750
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010751 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010752 .add = task_clock_event_add,
10753 .del = task_clock_event_del,
10754 .start = task_clock_event_start,
10755 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010756 .read = task_clock_event_read,
10757};
10758
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010759static void perf_pmu_nop_void(struct pmu *pmu)
10760{
10761}
10762
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010763static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10764{
10765}
10766
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010767static int perf_pmu_nop_int(struct pmu *pmu)
10768{
10769 return 0;
10770}
10771
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010772static int perf_event_nop_int(struct perf_event *event, u64 value)
10773{
10774 return 0;
10775}
10776
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010777static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010778
10779static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010780{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010781 __this_cpu_write(nop_txn_flags, flags);
10782
10783 if (flags & ~PERF_PMU_TXN_ADD)
10784 return;
10785
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010786 perf_pmu_disable(pmu);
10787}
10788
10789static int perf_pmu_commit_txn(struct pmu *pmu)
10790{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010791 unsigned int flags = __this_cpu_read(nop_txn_flags);
10792
10793 __this_cpu_write(nop_txn_flags, 0);
10794
10795 if (flags & ~PERF_PMU_TXN_ADD)
10796 return 0;
10797
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010798 perf_pmu_enable(pmu);
10799 return 0;
10800}
10801
10802static void perf_pmu_cancel_txn(struct pmu *pmu)
10803{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010804 unsigned int flags = __this_cpu_read(nop_txn_flags);
10805
10806 __this_cpu_write(nop_txn_flags, 0);
10807
10808 if (flags & ~PERF_PMU_TXN_ADD)
10809 return;
10810
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010811 perf_pmu_enable(pmu);
10812}
10813
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010814static int perf_event_idx_default(struct perf_event *event)
10815{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010816 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010817}
10818
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010819/*
10820 * Ensures all contexts with the same task_ctx_nr have the same
10821 * pmu_cpu_context too.
10822 */
Mark Rutland9e317042014-02-10 17:44:18 +000010823static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010824{
10825 struct pmu *pmu;
10826
10827 if (ctxn < 0)
10828 return NULL;
10829
10830 list_for_each_entry(pmu, &pmus, entry) {
10831 if (pmu->task_ctx_nr == ctxn)
10832 return pmu->pmu_cpu_context;
10833 }
10834
10835 return NULL;
10836}
10837
Peter Zijlstra51676952010-12-07 14:18:20 +010010838static void free_pmu_context(struct pmu *pmu)
10839{
Will Deacondf0062b2017-10-03 15:20:50 +010010840 /*
10841 * Static contexts such as perf_sw_context have a global lifetime
10842 * and may be shared between different PMUs. Avoid freeing them
10843 * when a single PMU is going away.
10844 */
10845 if (pmu->task_ctx_nr > perf_invalid_context)
10846 return;
10847
Peter Zijlstra51676952010-12-07 14:18:20 +010010848 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010849}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010850
10851/*
10852 * Let userspace know that this PMU supports address range filtering:
10853 */
10854static ssize_t nr_addr_filters_show(struct device *dev,
10855 struct device_attribute *attr,
10856 char *page)
10857{
10858 struct pmu *pmu = dev_get_drvdata(dev);
10859
10860 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10861}
10862DEVICE_ATTR_RO(nr_addr_filters);
10863
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010864static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010865
Peter Zijlstraabe43402010-11-17 23:17:37 +010010866static ssize_t
10867type_show(struct device *dev, struct device_attribute *attr, char *page)
10868{
10869 struct pmu *pmu = dev_get_drvdata(dev);
10870
10871 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10872}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010873static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010874
Stephane Eranian62b85632013-04-03 14:21:34 +020010875static ssize_t
10876perf_event_mux_interval_ms_show(struct device *dev,
10877 struct device_attribute *attr,
10878 char *page)
10879{
10880 struct pmu *pmu = dev_get_drvdata(dev);
10881
10882 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10883}
10884
Peter Zijlstra272325c2015-04-15 11:41:58 +020010885static DEFINE_MUTEX(mux_interval_mutex);
10886
Stephane Eranian62b85632013-04-03 14:21:34 +020010887static ssize_t
10888perf_event_mux_interval_ms_store(struct device *dev,
10889 struct device_attribute *attr,
10890 const char *buf, size_t count)
10891{
10892 struct pmu *pmu = dev_get_drvdata(dev);
10893 int timer, cpu, ret;
10894
10895 ret = kstrtoint(buf, 0, &timer);
10896 if (ret)
10897 return ret;
10898
10899 if (timer < 1)
10900 return -EINVAL;
10901
10902 /* same value, noting to do */
10903 if (timer == pmu->hrtimer_interval_ms)
10904 return count;
10905
Peter Zijlstra272325c2015-04-15 11:41:58 +020010906 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010907 pmu->hrtimer_interval_ms = timer;
10908
10909 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010910 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010911 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020010912 struct perf_cpu_context *cpuctx;
10913 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
10914 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
10915
Peter Zijlstra272325c2015-04-15 11:41:58 +020010916 cpu_function_call(cpu,
10917 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020010918 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010919 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010920 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010921
10922 return count;
10923}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010924static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020010925
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010926static struct attribute *pmu_dev_attrs[] = {
10927 &dev_attr_type.attr,
10928 &dev_attr_perf_event_mux_interval_ms.attr,
10929 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010930};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010931ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010932
10933static int pmu_bus_running;
10934static struct bus_type pmu_bus = {
10935 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010936 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010937};
10938
10939static void pmu_dev_release(struct device *dev)
10940{
10941 kfree(dev);
10942}
10943
10944static int pmu_dev_alloc(struct pmu *pmu)
10945{
10946 int ret = -ENOMEM;
10947
10948 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10949 if (!pmu->dev)
10950 goto out;
10951
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010010952 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010010953 device_initialize(pmu->dev);
10954 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10955 if (ret)
10956 goto free_dev;
10957
10958 dev_set_drvdata(pmu->dev, pmu);
10959 pmu->dev->bus = &pmu_bus;
10960 pmu->dev->release = pmu_dev_release;
10961 ret = device_add(pmu->dev);
10962 if (ret)
10963 goto free_dev;
10964
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010965 /* For PMUs with address filters, throw in an extra attribute: */
10966 if (pmu->nr_addr_filters)
10967 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10968
10969 if (ret)
10970 goto del_dev;
10971
Jiri Olsaf3a3a822019-05-12 17:55:11 +020010972 if (pmu->attr_update)
10973 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10974
10975 if (ret)
10976 goto del_dev;
10977
Peter Zijlstraabe43402010-11-17 23:17:37 +010010978out:
10979 return ret;
10980
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010981del_dev:
10982 device_del(pmu->dev);
10983
Peter Zijlstraabe43402010-11-17 23:17:37 +010010984free_dev:
10985 put_device(pmu->dev);
10986 goto out;
10987}
10988
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010989static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010990static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010991
Mischa Jonker03d8e802013-06-04 11:45:48 +020010992int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010993{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010994 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010995
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010996 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010997 ret = -ENOMEM;
10998 pmu->pmu_disable_count = alloc_percpu(int);
10999 if (!pmu->pmu_disable_count)
11000 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011001
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011002 pmu->type = -1;
11003 if (!name)
11004 goto skip_type;
11005 pmu->name = name;
11006
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011007 if (type != PERF_TYPE_SOFTWARE) {
11008 if (type >= 0)
11009 max = type;
11010
11011 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
11012 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011013 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011014
11015 WARN_ON(type >= 0 && ret != type);
11016
11017 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011018 }
11019 pmu->type = type;
11020
Peter Zijlstraabe43402010-11-17 23:17:37 +010011021 if (pmu_bus_running) {
11022 ret = pmu_dev_alloc(pmu);
11023 if (ret)
11024 goto free_idr;
11025 }
11026
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011027skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010011028 if (pmu->task_ctx_nr == perf_hw_context) {
11029 static int hw_context_taken = 0;
11030
Mark Rutland5101ef22016-04-26 11:33:46 +010011031 /*
11032 * Other than systems with heterogeneous CPUs, it never makes
11033 * sense for two PMUs to share perf_hw_context. PMUs which are
11034 * uncore must use perf_invalid_context.
11035 */
11036 if (WARN_ON_ONCE(hw_context_taken &&
11037 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010011038 pmu->task_ctx_nr = perf_invalid_context;
11039
11040 hw_context_taken = 1;
11041 }
11042
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011043 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
11044 if (pmu->pmu_cpu_context)
11045 goto got_cpu_context;
11046
Wei Yongjunc4814202013-04-12 11:05:54 +080011047 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011048 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
11049 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010011050 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011051
11052 for_each_possible_cpu(cpu) {
11053 struct perf_cpu_context *cpuctx;
11054
11055 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020011056 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011057 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011058 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011059 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011060 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020011061
Peter Zijlstra272325c2015-04-15 11:41:58 +020011062 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080011063
11064 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
11065 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011066 }
11067
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011068got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011069 if (!pmu->start_txn) {
11070 if (pmu->pmu_enable) {
11071 /*
11072 * If we have pmu_enable/pmu_disable calls, install
11073 * transaction stubs that use that to try and batch
11074 * hardware accesses.
11075 */
11076 pmu->start_txn = perf_pmu_start_txn;
11077 pmu->commit_txn = perf_pmu_commit_txn;
11078 pmu->cancel_txn = perf_pmu_cancel_txn;
11079 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070011080 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011081 pmu->commit_txn = perf_pmu_nop_int;
11082 pmu->cancel_txn = perf_pmu_nop_void;
11083 }
11084 }
11085
11086 if (!pmu->pmu_enable) {
11087 pmu->pmu_enable = perf_pmu_nop_void;
11088 pmu->pmu_disable = perf_pmu_nop_void;
11089 }
11090
Jiri Olsa81ec3f32019-02-04 13:35:32 +010011091 if (!pmu->check_period)
11092 pmu->check_period = perf_event_nop_int;
11093
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010011094 if (!pmu->event_idx)
11095 pmu->event_idx = perf_event_idx_default;
11096
Liang, Kand44f8212019-10-22 11:13:09 +020011097 /*
11098 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
11099 * since these cannot be in the IDR. This way the linear search
11100 * is fast, provided a valid software event is provided.
11101 */
11102 if (type == PERF_TYPE_SOFTWARE || !name)
11103 list_add_rcu(&pmu->entry, &pmus);
11104 else
11105 list_add_tail_rcu(&pmu->entry, &pmus);
11106
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011107 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011108 ret = 0;
11109unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011110 mutex_unlock(&pmus_lock);
11111
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011112 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011113
Peter Zijlstraabe43402010-11-17 23:17:37 +010011114free_dev:
11115 device_del(pmu->dev);
11116 put_device(pmu->dev);
11117
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011118free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011119 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011120 idr_remove(&pmu_idr, pmu->type);
11121
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011122free_pdc:
11123 free_percpu(pmu->pmu_disable_count);
11124 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011125}
Yan, Zhengc464c762014-03-18 16:56:41 +080011126EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011127
11128void perf_pmu_unregister(struct pmu *pmu)
11129{
11130 mutex_lock(&pmus_lock);
11131 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011132
11133 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020011134 * We dereference the pmu list under both SRCU and regular RCU, so
11135 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011136 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011137 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020011138 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011139
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011140 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011141 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011142 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011143 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020011144 if (pmu->nr_addr_filters)
11145 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
11146 device_del(pmu->dev);
11147 put_device(pmu->dev);
11148 }
Peter Zijlstra51676952010-12-07 14:18:20 +010011149 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011150 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011151}
Yan, Zhengc464c762014-03-18 16:56:41 +080011152EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011153
Kan Liange321d022019-05-28 15:08:30 -070011154static inline bool has_extended_regs(struct perf_event *event)
11155{
11156 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
11157 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
11158}
11159
Mark Rutlandcc34b982015-01-07 14:56:51 +000011160static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
11161{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011162 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000011163 int ret;
11164
11165 if (!try_module_get(pmu->module))
11166 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011167
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010011168 /*
11169 * A number of pmu->event_init() methods iterate the sibling_list to,
11170 * for example, validate if the group fits on the PMU. Therefore,
11171 * if this is a sibling event, acquire the ctx->mutex to protect
11172 * the sibling_list.
11173 */
11174 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020011175 /*
11176 * This ctx->mutex can nest when we're called through
11177 * inheritance. See the perf_event_ctx_lock_nested() comment.
11178 */
11179 ctx = perf_event_ctx_lock_nested(event->group_leader,
11180 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011181 BUG_ON(!ctx);
11182 }
11183
Mark Rutlandcc34b982015-01-07 14:56:51 +000011184 event->pmu = pmu;
11185 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011186
11187 if (ctx)
11188 perf_event_ctx_unlock(event->group_leader, ctx);
11189
Andrew Murraycc6795a2019-01-10 13:53:25 +000011190 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070011191 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
11192 has_extended_regs(event))
11193 ret = -EOPNOTSUPP;
11194
Andrew Murraycc6795a2019-01-10 13:53:25 +000011195 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070011196 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000011197 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070011198
11199 if (ret && event->destroy)
11200 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000011201 }
11202
Mark Rutlandcc34b982015-01-07 14:56:51 +000011203 if (ret)
11204 module_put(pmu->module);
11205
11206 return ret;
11207}
11208
Geliang Tang18ab2cd2015-09-27 23:25:50 +080011209static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011210{
Kan Liang55bcf6e2021-04-12 07:31:01 -070011211 bool extended_type = false;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011212 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030011213 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011214
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011215 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011216
Kan Liang40999312017-01-18 08:21:01 -050011217 /* Try parent's PMU first: */
11218 if (event->parent && event->parent->pmu) {
11219 pmu = event->parent->pmu;
11220 ret = perf_try_init_event(pmu, event);
11221 if (!ret)
11222 goto unlock;
11223 }
11224
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011225 /*
11226 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
11227 * are often aliases for PERF_TYPE_RAW.
11228 */
11229 type = event->attr.type;
Kan Liang55bcf6e2021-04-12 07:31:01 -070011230 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE) {
11231 type = event->attr.config >> PERF_PMU_TYPE_SHIFT;
11232 if (!type) {
11233 type = PERF_TYPE_RAW;
11234 } else {
11235 extended_type = true;
11236 event->attr.config &= PERF_HW_EVENT_MASK;
11237 }
11238 }
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011239
11240again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011241 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011242 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011243 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080011244 if (pmu) {
Kan Liang55bcf6e2021-04-12 07:31:01 -070011245 if (event->attr.type != type && type != PERF_TYPE_RAW &&
11246 !(pmu->capabilities & PERF_PMU_CAP_EXTENDED_HW_TYPE))
11247 goto fail;
11248
Mark Rutlandcc34b982015-01-07 14:56:51 +000011249 ret = perf_try_init_event(pmu, event);
Kan Liang55bcf6e2021-04-12 07:31:01 -070011250 if (ret == -ENOENT && event->attr.type != type && !extended_type) {
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011251 type = event->attr.type;
11252 goto again;
11253 }
11254
Lin Ming940c5b22011-02-27 21:13:31 +080011255 if (ret)
11256 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011257
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011258 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080011259 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011260
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010011261 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000011262 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011263 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011264 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011265
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011266 if (ret != -ENOENT) {
11267 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011268 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011269 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011270 }
Kan Liang55bcf6e2021-04-12 07:31:01 -070011271fail:
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011272 pmu = ERR_PTR(-ENOENT);
11273unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011274 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011275
11276 return pmu;
11277}
11278
Kan Liangf2fb6be2016-03-23 11:24:37 -070011279static void attach_sb_event(struct perf_event *event)
11280{
11281 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
11282
11283 raw_spin_lock(&pel->lock);
11284 list_add_rcu(&event->sb_list, &pel->list);
11285 raw_spin_unlock(&pel->lock);
11286}
11287
Peter Zijlstraaab5b712016-05-12 17:26:46 +020011288/*
11289 * We keep a list of all !task (and therefore per-cpu) events
11290 * that need to receive side-band records.
11291 *
11292 * This avoids having to scan all the various PMU per-cpu contexts
11293 * looking for them.
11294 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070011295static void account_pmu_sb_event(struct perf_event *event)
11296{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070011297 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070011298 attach_sb_event(event);
11299}
11300
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011301static void account_event_cpu(struct perf_event *event, int cpu)
11302{
11303 if (event->parent)
11304 return;
11305
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011306 if (is_cgroup_event(event))
11307 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
11308}
11309
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011310/* Freq events need the tick to stay alive (see perf_event_task_tick). */
11311static void account_freq_event_nohz(void)
11312{
11313#ifdef CONFIG_NO_HZ_FULL
11314 /* Lock so we don't race with concurrent unaccount */
11315 spin_lock(&nr_freq_lock);
11316 if (atomic_inc_return(&nr_freq_events) == 1)
11317 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
11318 spin_unlock(&nr_freq_lock);
11319#endif
11320}
11321
11322static void account_freq_event(void)
11323{
11324 if (tick_nohz_full_enabled())
11325 account_freq_event_nohz();
11326 else
11327 atomic_inc(&nr_freq_events);
11328}
11329
11330
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011331static void account_event(struct perf_event *event)
11332{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011333 bool inc = false;
11334
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011335 if (event->parent)
11336 return;
11337
Kan Lianga5398bf2020-11-30 11:38:40 -080011338 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011339 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011340 if (event->attr.mmap || event->attr.mmap_data)
11341 atomic_inc(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +010011342 if (event->attr.build_id)
11343 atomic_inc(&nr_build_id_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011344 if (event->attr.comm)
11345 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053011346 if (event->attr.namespaces)
11347 atomic_inc(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +090011348 if (event->attr.cgroup)
11349 atomic_inc(&nr_cgroup_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011350 if (event->attr.task)
11351 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011352 if (event->attr.freq)
11353 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030011354 if (event->attr.context_switch) {
11355 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011356 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030011357 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011358 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011359 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011360 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011361 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080011362 if (event->attr.ksymbol)
11363 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080011364 if (event->attr.bpf_event)
11365 atomic_inc(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +030011366 if (event->attr.text_poke)
11367 atomic_inc(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011368
Peter Zijlstra9107c892016-02-24 18:45:45 +010011369 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030011370 /*
11371 * We need the mutex here because static_branch_enable()
11372 * must complete *before* the perf_sched_count increment
11373 * becomes visible.
11374 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010011375 if (atomic_inc_not_zero(&perf_sched_count))
11376 goto enabled;
11377
11378 mutex_lock(&perf_sched_mutex);
11379 if (!atomic_read(&perf_sched_count)) {
11380 static_branch_enable(&perf_sched_events);
11381 /*
11382 * Guarantee that all CPUs observe they key change and
11383 * call the perf scheduling hooks before proceeding to
11384 * install events that need them.
11385 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080011386 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010011387 }
11388 /*
11389 * Now that we have waited for the sync_sched(), allow further
11390 * increments to by-pass the mutex.
11391 */
11392 atomic_inc(&perf_sched_count);
11393 mutex_unlock(&perf_sched_mutex);
11394 }
11395enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011396
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011397 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070011398
11399 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011400}
11401
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011402/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011403 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011404 */
11405static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011406perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011407 struct task_struct *task,
11408 struct perf_event *group_leader,
11409 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011410 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000011411 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011412{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020011413 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011414 struct perf_event *event;
11415 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011416 long err = -EINVAL;
Namhyung Kimff653382021-03-11 20:54:13 +090011417 int node;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011418
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011419 if ((unsigned)cpu >= nr_cpu_ids) {
11420 if (!task || cpu != -1)
11421 return ERR_PTR(-EINVAL);
11422 }
Marco Elver97ba62b2021-04-08 12:36:01 +020011423 if (attr->sigtrap && !task) {
11424 /* Requires a task: avoid signalling random tasks. */
11425 return ERR_PTR(-EINVAL);
11426 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011427
Namhyung Kimff653382021-03-11 20:54:13 +090011428 node = (cpu >= 0) ? cpu_to_node(cpu) : -1;
11429 event = kmem_cache_alloc_node(perf_event_cache, GFP_KERNEL | __GFP_ZERO,
11430 node);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011431 if (!event)
11432 return ERR_PTR(-ENOMEM);
11433
11434 /*
11435 * Single events are their own group leaders, with an
11436 * empty sibling list:
11437 */
11438 if (!group_leader)
11439 group_leader = event;
11440
11441 mutex_init(&event->child_mutex);
11442 INIT_LIST_HEAD(&event->child_list);
11443
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011444 INIT_LIST_HEAD(&event->event_entry);
11445 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010011446 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030011447 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011448 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010011449 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011450 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010011451 INIT_HLIST_NODE(&event->hlist_entry);
11452
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011453
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011454 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020011455 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080011456 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011457
11458 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011459 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011460
Al Viroa6fa9412012-08-20 14:59:25 +010011461 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011462 event->cpu = cpu;
11463 event->attr = *attr;
11464 event->group_leader = group_leader;
11465 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011466 event->oncpu = -1;
11467
11468 event->parent = parent_event;
11469
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080011470 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011471 event->id = atomic64_inc_return(&perf_event_id);
11472
11473 event->state = PERF_EVENT_STATE_INACTIVE;
11474
Marco Elver97ba62b2021-04-08 12:36:01 +020011475 if (event->attr.sigtrap)
11476 atomic_set(&event->event_limit, 1);
11477
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011478 if (task) {
11479 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011480 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010011481 * XXX pmu::event_init needs to know what task to account to
11482 * and we cannot use the ctx information because we need the
11483 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011484 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070011485 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011486 }
11487
Peter Zijlstra34f43922015-02-20 14:05:38 +010011488 event->clock = &local_clock;
11489 if (parent_event)
11490 event->clock = parent_event->clock;
11491
Avi Kivity4dc0da82011-06-29 18:42:35 +030011492 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010011493 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011494 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020011495#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011496 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011497 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011498
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011499 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011500 event->prog = prog;
11501 event->orig_overflow_handler =
11502 parent_event->orig_overflow_handler;
11503 }
11504#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030011505 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011506
Wang Nan18794452016-03-28 06:41:30 +000011507 if (overflow_handler) {
11508 event->overflow_handler = overflow_handler;
11509 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000011510 } else if (is_write_backward(event)){
11511 event->overflow_handler = perf_event_output_backward;
11512 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000011513 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000011514 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000011515 event->overflow_handler_context = NULL;
11516 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020011517
Jiri Olsa0231bb52013-02-01 11:23:45 +010011518 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011519
11520 pmu = NULL;
11521
11522 hwc = &event->hw;
11523 hwc->sample_period = attr->sample_period;
11524 if (attr->freq && attr->sample_freq)
11525 hwc->sample_period = 1;
11526 hwc->last_period = hwc->sample_period;
11527
Peter Zijlstrae7850592010-05-21 14:43:08 +020011528 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011529
11530 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011531 * We currently do not support PERF_SAMPLE_READ on inherited events.
11532 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011533 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011534 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011535 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011536
Yan, Zhenga46a2302014-11-04 21:56:06 -050011537 if (!has_branch_stack(event))
11538 event->attr.branch_sample_type = 0;
11539
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011540 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030011541 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011542 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011543 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011544 }
11545
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010011546 /*
11547 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11548 * be different on other CPUs in the uncore mask.
11549 */
11550 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11551 err = -EINVAL;
11552 goto err_pmu;
11553 }
11554
Alexander Shishkinab437622019-08-06 11:46:00 +030011555 if (event->attr.aux_output &&
11556 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11557 err = -EOPNOTSUPP;
11558 goto err_pmu;
11559 }
11560
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011561 if (cgroup_fd != -1) {
11562 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11563 if (err)
11564 goto err_pmu;
11565 }
11566
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011567 err = exclusive_event_init(event);
11568 if (err)
11569 goto err_pmu;
11570
Alexander Shishkin375637b2016-04-27 18:44:46 +030011571 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011572 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11573 sizeof(struct perf_addr_filter_range),
11574 GFP_KERNEL);
11575 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011576 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030011577 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011578 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011579
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011580 /*
11581 * Clone the parent's vma offsets: they are valid until exec()
11582 * even if the mm is not shared with the parent.
11583 */
11584 if (event->parent) {
11585 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11586
11587 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011588 memcpy(event->addr_filter_ranges,
11589 event->parent->addr_filter_ranges,
11590 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011591 raw_spin_unlock_irq(&ifh->lock);
11592 }
11593
Alexander Shishkin375637b2016-04-27 18:44:46 +030011594 /* force hw sync on the address filters */
11595 event->addr_filters_gen = 1;
11596 }
11597
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011598 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020011599 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030011600 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011601 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030011602 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010011603 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011604 }
11605
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011606 err = security_perf_event_alloc(event);
11607 if (err)
11608 goto err_callchain_buffer;
11609
Alexander Shishkin927a5572016-03-02 13:24:14 +020011610 /* symmetric to unaccount_event() in _free_event() */
11611 account_event(event);
11612
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011613 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011614
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011615err_callchain_buffer:
11616 if (!event->parent) {
11617 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11618 put_callchain_buffers();
11619 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011620err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011621 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011622
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011623err_per_task:
11624 exclusive_event_destroy(event);
11625
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011626err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011627 if (is_cgroup_event(event))
11628 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011629 if (event->destroy)
11630 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080011631 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011632err_ns:
11633 if (event->ns)
11634 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090011635 if (event->hw.target)
11636 put_task_struct(event->hw.target);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090011637 kmem_cache_free(perf_event_cache, event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011638
11639 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011640}
11641
11642static int perf_copy_attr(struct perf_event_attr __user *uattr,
11643 struct perf_event_attr *attr)
11644{
11645 u32 size;
11646 int ret;
11647
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011648 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011649 memset(attr, 0, sizeof(*attr));
11650
11651 ret = get_user(size, &uattr->size);
11652 if (ret)
11653 return ret;
11654
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011655 /* ABI compatibility quirk: */
11656 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011657 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011658 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011659 goto err_size;
11660
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011661 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11662 if (ret) {
11663 if (ret == -E2BIG)
11664 goto err_size;
11665 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011666 }
11667
Meng Xuf12f42a2017-08-23 17:07:50 -040011668 attr->size = size;
11669
Alexander Shishkina4faf002019-10-25 17:08:33 +030011670 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011671 return -EINVAL;
11672
11673 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11674 return -EINVAL;
11675
11676 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11677 return -EINVAL;
11678
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011679 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11680 u64 mask = attr->branch_sample_type;
11681
11682 /* only using defined bits */
11683 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11684 return -EINVAL;
11685
11686 /* at least one branch bit must be set */
11687 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11688 return -EINVAL;
11689
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011690 /* propagate priv level, when not set for branch */
11691 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11692
11693 /* exclude_kernel checked on syscall entry */
11694 if (!attr->exclude_kernel)
11695 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11696
11697 if (!attr->exclude_user)
11698 mask |= PERF_SAMPLE_BRANCH_USER;
11699
11700 if (!attr->exclude_hv)
11701 mask |= PERF_SAMPLE_BRANCH_HV;
11702 /*
11703 * adjust user setting (for HW filter setup)
11704 */
11705 attr->branch_sample_type = mask;
11706 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011707 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011708 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11709 ret = perf_allow_kernel(attr);
11710 if (ret)
11711 return ret;
11712 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011713 }
Jiri Olsa40189942012-08-07 15:20:37 +020011714
Jiri Olsac5ebced2012-08-07 15:20:40 +020011715 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011716 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011717 if (ret)
11718 return ret;
11719 }
11720
11721 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11722 if (!arch_perf_have_user_stack_dump())
11723 return -ENOSYS;
11724
11725 /*
11726 * We have __u32 type for the size, but so far
11727 * we can only use __u16 as maximum due to the
11728 * __u16 sample size limit.
11729 */
11730 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011731 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011732 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011733 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011734 }
Jiri Olsa40189942012-08-07 15:20:37 +020011735
Jiri Olsa5f970522018-03-12 14:45:46 +010011736 if (!attr->sample_max_stack)
11737 attr->sample_max_stack = sysctl_perf_event_max_stack;
11738
Stephane Eranian60e23642014-09-24 13:48:37 +020011739 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11740 ret = perf_reg_validate(attr->sample_regs_intr);
Namhyung Kim6546b192020-03-25 21:45:29 +090011741
11742#ifndef CONFIG_CGROUP_PERF
11743 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11744 return -EINVAL;
11745#endif
Kan Liang2a6c6b72021-01-28 14:40:07 -080011746 if ((attr->sample_type & PERF_SAMPLE_WEIGHT) &&
11747 (attr->sample_type & PERF_SAMPLE_WEIGHT_STRUCT))
11748 return -EINVAL;
Namhyung Kim6546b192020-03-25 21:45:29 +090011749
Marco Elver2b26f0a2021-04-08 12:35:58 +020011750 if (!attr->inherit && attr->inherit_thread)
11751 return -EINVAL;
11752
Marco Elver2e498d02021-04-08 12:35:59 +020011753 if (attr->remove_on_exec && attr->enable_on_exec)
11754 return -EINVAL;
11755
Marco Elver97ba62b2021-04-08 12:36:01 +020011756 if (attr->sigtrap && !attr->remove_on_exec)
11757 return -EINVAL;
11758
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011759out:
11760 return ret;
11761
11762err_size:
11763 put_user(sizeof(*attr), &uattr->size);
11764 ret = -E2BIG;
11765 goto out;
11766}
11767
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011768static int
11769perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011770{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011771 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011772 int ret = -EINVAL;
11773
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011774 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011775 goto set;
11776
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011777 /* don't allow circular references */
11778 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011779 goto out;
11780
Peter Zijlstra0f139302010-05-20 14:35:15 +020011781 /*
11782 * Don't allow cross-cpu buffers
11783 */
11784 if (output_event->cpu != event->cpu)
11785 goto out;
11786
11787 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011788 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011789 */
11790 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11791 goto out;
11792
Peter Zijlstra34f43922015-02-20 14:05:38 +010011793 /*
11794 * Mixing clocks in the same buffer is trouble you don't need.
11795 */
11796 if (output_event->clock != event->clock)
11797 goto out;
11798
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011799 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011800 * Either writing ring buffer from beginning or from end.
11801 * Mixing is not allowed.
11802 */
11803 if (is_write_backward(output_event) != is_write_backward(event))
11804 goto out;
11805
11806 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011807 * If both events generate aux data, they must be on the same PMU
11808 */
11809 if (has_aux(event) && has_aux(output_event) &&
11810 event->pmu != output_event->pmu)
11811 goto out;
11812
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011813set:
11814 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011815 /* Can't redirect output if we've got an active mmap() */
11816 if (atomic_read(&event->mmap_count))
11817 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011818
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011819 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011820 /* get the rb we want to redirect to */
11821 rb = ring_buffer_get(output_event);
11822 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011823 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011824 }
11825
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011826 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011827
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011828 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011829unlock:
11830 mutex_unlock(&event->mmap_mutex);
11831
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011832out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011833 return ret;
11834}
11835
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011836static void mutex_lock_double(struct mutex *a, struct mutex *b)
11837{
11838 if (b < a)
11839 swap(a, b);
11840
11841 mutex_lock(a);
11842 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11843}
11844
Peter Zijlstra34f43922015-02-20 14:05:38 +010011845static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11846{
11847 bool nmi_safe = false;
11848
11849 switch (clk_id) {
11850 case CLOCK_MONOTONIC:
11851 event->clock = &ktime_get_mono_fast_ns;
11852 nmi_safe = true;
11853 break;
11854
11855 case CLOCK_MONOTONIC_RAW:
11856 event->clock = &ktime_get_raw_fast_ns;
11857 nmi_safe = true;
11858 break;
11859
11860 case CLOCK_REALTIME:
11861 event->clock = &ktime_get_real_ns;
11862 break;
11863
11864 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011865 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011866 break;
11867
11868 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011869 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011870 break;
11871
11872 default:
11873 return -EINVAL;
11874 }
11875
11876 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11877 return -EINVAL;
11878
11879 return 0;
11880}
11881
Peter Zijlstra321027c2017-01-11 21:09:50 +010011882/*
11883 * Variation on perf_event_ctx_lock_nested(), except we take two context
11884 * mutexes.
11885 */
11886static struct perf_event_context *
11887__perf_event_ctx_lock_double(struct perf_event *group_leader,
11888 struct perf_event_context *ctx)
11889{
11890 struct perf_event_context *gctx;
11891
11892again:
11893 rcu_read_lock();
11894 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020011895 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011896 rcu_read_unlock();
11897 goto again;
11898 }
11899 rcu_read_unlock();
11900
11901 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11902
11903 if (group_leader->ctx != gctx) {
11904 mutex_unlock(&ctx->mutex);
11905 mutex_unlock(&gctx->mutex);
11906 put_ctx(gctx);
11907 goto again;
11908 }
11909
11910 return gctx;
11911}
11912
Marco Elverb068fc02021-07-05 10:44:53 +020011913static bool
11914perf_check_permission(struct perf_event_attr *attr, struct task_struct *task)
11915{
11916 unsigned int ptrace_mode = PTRACE_MODE_READ_REALCREDS;
11917 bool is_capable = perfmon_capable();
11918
11919 if (attr->sigtrap) {
11920 /*
11921 * perf_event_attr::sigtrap sends signals to the other task.
11922 * Require the current task to also have CAP_KILL.
11923 */
11924 rcu_read_lock();
11925 is_capable &= ns_capable(__task_cred(task)->user_ns, CAP_KILL);
11926 rcu_read_unlock();
11927
11928 /*
11929 * If the required capabilities aren't available, checks for
11930 * ptrace permissions: upgrade to ATTACH, since sending signals
11931 * can effectively change the target task.
11932 */
11933 ptrace_mode = PTRACE_MODE_ATTACH_REALCREDS;
11934 }
11935
11936 /*
11937 * Preserve ptrace permission check for backwards compatibility. The
11938 * ptrace check also includes checks that the current task and other
11939 * task have matching uids, and is therefore not done here explicitly.
11940 */
11941 return is_capable || ptrace_may_access(task, ptrace_mode);
11942}
11943
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011944/**
11945 * sys_perf_event_open - open a performance event, associate it to a task/cpu
11946 *
11947 * @attr_uptr: event_id type attributes for monitoring/sampling
11948 * @pid: target pid
11949 * @cpu: target cpu
11950 * @group_fd: group leader event fd
Haocheng Xiea1ddf522021-05-27 11:19:46 +080011951 * @flags: perf event open flags
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011952 */
11953SYSCALL_DEFINE5(perf_event_open,
11954 struct perf_event_attr __user *, attr_uptr,
11955 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
11956{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011957 struct perf_event *group_leader = NULL, *output_event = NULL;
11958 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011959 struct perf_event_attr attr;
Kees Cook3f649ab2020-06-03 13:09:38 -070011960 struct perf_event_context *ctx, *gctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011961 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040011962 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070011963 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011964 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040011965 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011966 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011967 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010011968 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000011969 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011970
11971 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020011972 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011973 return -EINVAL;
11974
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011975 /* Do we allow access to perf_event_open(2) ? */
11976 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
11977 if (err)
11978 return err;
11979
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011980 err = perf_copy_attr(attr_uptr, &attr);
11981 if (err)
11982 return err;
11983
11984 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011985 err = perf_allow_kernel(&attr);
11986 if (err)
11987 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011988 }
11989
Hari Bathinie4222672017-03-08 02:11:36 +053011990 if (attr.namespaces) {
Alexey Budankov18aa1852020-04-02 11:46:24 +030011991 if (!perfmon_capable())
Hari Bathinie4222672017-03-08 02:11:36 +053011992 return -EACCES;
11993 }
11994
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011995 if (attr.freq) {
11996 if (attr.sample_freq > sysctl_perf_event_sample_rate)
11997 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020011998 } else {
11999 if (attr.sample_period & (1ULL << 63))
12000 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012001 }
12002
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012003 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012004 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
12005 err = perf_allow_kernel(&attr);
12006 if (err)
12007 return err;
12008 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012009
Ondrej Mosnacek08ef1af2021-02-24 22:56:28 +010012010 /* REGS_INTR can leak data, lockdown must prevent this */
12011 if (attr.sample_type & PERF_SAMPLE_REGS_INTR) {
12012 err = security_locked_down(LOCKDOWN_PERF);
12013 if (err)
12014 return err;
12015 }
David Howellsb0c8fdc2019-08-19 17:18:00 -070012016
Stephane Eraniane5d13672011-02-14 11:20:01 +020012017 /*
12018 * In cgroup mode, the pid argument is used to pass the fd
12019 * opened to the cgroup directory in cgroupfs. The cpu argument
12020 * designates the cpu on which to monitor threads from that
12021 * cgroup.
12022 */
12023 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
12024 return -EINVAL;
12025
Yann Droneauda21b0b32014-01-05 21:36:33 +010012026 if (flags & PERF_FLAG_FD_CLOEXEC)
12027 f_flags |= O_CLOEXEC;
12028
12029 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012030 if (event_fd < 0)
12031 return event_fd;
12032
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012033 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040012034 err = perf_fget_light(group_fd, &group);
12035 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012036 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040012037 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012038 if (flags & PERF_FLAG_FD_OUTPUT)
12039 output_event = group_leader;
12040 if (flags & PERF_FLAG_FD_NO_GROUP)
12041 group_leader = NULL;
12042 }
12043
Stephane Eraniane5d13672011-02-14 11:20:01 +020012044 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012045 task = find_lively_task_by_vpid(pid);
12046 if (IS_ERR(task)) {
12047 err = PTR_ERR(task);
12048 goto err_group_fd;
12049 }
12050 }
12051
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012052 if (task && group_leader &&
12053 group_leader->attr.inherit != attr.inherit) {
12054 err = -EINVAL;
12055 goto err_task;
12056 }
12057
Matt Fleming79dff512015-01-23 18:45:42 +000012058 if (flags & PERF_FLAG_PID_CGROUP)
12059 cgroup_fd = pid;
12060
Avi Kivity4dc0da82011-06-29 18:42:35 +030012061 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012062 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012063 if (IS_ERR(event)) {
12064 err = PTR_ERR(event);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012065 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012066 }
12067
Vince Weaver53b25332014-05-16 17:12:12 -040012068 if (is_sampling_event(event)) {
12069 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053012070 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040012071 goto err_alloc;
12072 }
12073 }
12074
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012075 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012076 * Special case software events and allow them to be part of
12077 * any hardware group.
12078 */
12079 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012080
Peter Zijlstra34f43922015-02-20 14:05:38 +010012081 if (attr.use_clockid) {
12082 err = perf_event_set_clock(event, attr.clockid);
12083 if (err)
12084 goto err_alloc;
12085 }
12086
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012087 if (pmu->task_ctx_nr == perf_sw_context)
12088 event->event_caps |= PERF_EV_CAP_SOFTWARE;
12089
Song Liua1150c22018-05-03 12:47:16 -070012090 if (group_leader) {
12091 if (is_software_event(event) &&
12092 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012093 /*
Song Liua1150c22018-05-03 12:47:16 -070012094 * If the event is a sw event, but the group_leader
12095 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012096 *
Song Liua1150c22018-05-03 12:47:16 -070012097 * Allow the addition of software events to hw
12098 * groups, this is safe because software events
12099 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012100 */
Song Liua1150c22018-05-03 12:47:16 -070012101 pmu = group_leader->ctx->pmu;
12102 } else if (!is_software_event(event) &&
12103 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012104 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012105 /*
12106 * In case the group is a pure software group, and we
12107 * try to add a hardware event, move the whole group to
12108 * the hardware context.
12109 */
12110 move_group = 1;
12111 }
12112 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012113
12114 /*
12115 * Get the target context (task or percpu):
12116 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012117 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012118 if (IS_ERR(ctx)) {
12119 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012120 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012121 }
12122
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012123 /*
12124 * Look up the group leader (we will attach this event to it):
12125 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012126 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012127 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012128
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012129 /*
12130 * Do not allow a recursive hierarchy (this new sibling
12131 * becoming part of another group-sibling):
12132 */
12133 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012134 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012135
12136 /* All events in a group should have the same clock */
12137 if (group_leader->clock != event->clock)
12138 goto err_context;
12139
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012140 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010012141 * Make sure we're both events for the same CPU;
12142 * grouping events for different CPUs is broken; since
12143 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012144 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010012145 if (group_leader->cpu != event->cpu)
12146 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010012147
Mark Rutland64aee2a2017-06-22 15:41:38 +010012148 /*
12149 * Make sure we're both on the same task, or both
12150 * per-CPU events.
12151 */
12152 if (group_leader->ctx->task != ctx->task)
12153 goto err_context;
12154
12155 /*
12156 * Do not allow to attach to a group in a different task
12157 * or CPU context. If we're moving SW events, we'll fix
12158 * this up later, so allow that.
12159 */
12160 if (!move_group && group_leader->ctx != ctx)
12161 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012162
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012163 /*
12164 * Only a group leader can be exclusive or pinned
12165 */
12166 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012167 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012168 }
12169
12170 if (output_event) {
12171 err = perf_event_set_output(event, output_event);
12172 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012173 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012174 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012175
Yann Droneauda21b0b32014-01-05 21:36:33 +010012176 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
12177 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012178 if (IS_ERR(event_file)) {
12179 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020012180 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012181 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040012182 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012183
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012184 if (task) {
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012185 err = down_read_interruptible(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012186 if (err)
12187 goto err_file;
12188
12189 /*
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012190 * We must hold exec_update_lock across this and any potential
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012191 * perf_install_in_context() call for this new event to
12192 * serialize against exec() altering our credentials (and the
12193 * perf_event_exit_task() that could imply).
12194 */
12195 err = -EACCES;
Marco Elverb068fc02021-07-05 10:44:53 +020012196 if (!perf_check_permission(&attr, task))
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012197 goto err_cred;
12198 }
12199
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012200 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012201 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
12202
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012203 if (gctx->task == TASK_TOMBSTONE) {
12204 err = -ESRCH;
12205 goto err_locked;
12206 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010012207
12208 /*
12209 * Check if we raced against another sys_perf_event_open() call
12210 * moving the software group underneath us.
12211 */
12212 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
12213 /*
12214 * If someone moved the group out from under us, check
12215 * if this new event wound up on the same ctx, if so
12216 * its the regular !move_group case, otherwise fail.
12217 */
12218 if (gctx != ctx) {
12219 err = -EINVAL;
12220 goto err_locked;
12221 } else {
12222 perf_event_ctx_unlock(group_leader, gctx);
12223 move_group = 0;
12224 }
12225 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030012226
12227 /*
12228 * Failure to create exclusive events returns -EBUSY.
12229 */
12230 err = -EBUSY;
12231 if (!exclusive_event_installable(group_leader, ctx))
12232 goto err_locked;
12233
12234 for_each_sibling_event(sibling, group_leader) {
12235 if (!exclusive_event_installable(sibling, ctx))
12236 goto err_locked;
12237 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012238 } else {
12239 mutex_lock(&ctx->mutex);
12240 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012241
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012242 if (ctx->task == TASK_TOMBSTONE) {
12243 err = -ESRCH;
12244 goto err_locked;
12245 }
12246
Peter Zijlstraa7239682015-09-09 19:06:33 +020012247 if (!perf_event_validate_size(event)) {
12248 err = -E2BIG;
12249 goto err_locked;
12250 }
12251
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012252 if (!task) {
12253 /*
12254 * Check if the @cpu we're creating an event for is online.
12255 *
12256 * We use the perf_cpu_context::ctx::mutex to serialize against
12257 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12258 */
12259 struct perf_cpu_context *cpuctx =
12260 container_of(ctx, struct perf_cpu_context, ctx);
12261
12262 if (!cpuctx->online) {
12263 err = -ENODEV;
12264 goto err_locked;
12265 }
12266 }
12267
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012268 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
12269 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030012270 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012271 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012272
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012273 /*
12274 * Must be under the same ctx::mutex as perf_install_in_context(),
12275 * because we need to serialize with concurrent event creation.
12276 */
12277 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012278 err = -EBUSY;
12279 goto err_locked;
12280 }
12281
12282 WARN_ON_ONCE(ctx->parent_ctx);
12283
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012284 /*
12285 * This is the point on no return; we cannot fail hereafter. This is
12286 * where we start modifying current state.
12287 */
12288
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012289 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012290 /*
12291 * See perf_event_ctx_lock() for comments on the details
12292 * of swizzling perf_event::ctx.
12293 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012294 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010012295 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010012296
Peter Zijlstraedb39592018-03-15 17:36:56 +010012297 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012298 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012299 put_ctx(gctx);
12300 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012301
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012302 /*
12303 * Wait for everybody to stop referencing the events through
12304 * the old lists, before installing it on new lists.
12305 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012306 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012307
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012308 /*
12309 * Install the group siblings before the group leader.
12310 *
12311 * Because a group leader will try and install the entire group
12312 * (through the sibling list, which is still in-tact), we can
12313 * end up with siblings installed in the wrong context.
12314 *
12315 * By installing siblings first we NO-OP because they're not
12316 * reachable through the group lists.
12317 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012318 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012319 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010012320 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012321 get_ctx(ctx);
12322 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012323
12324 /*
12325 * Removing from the context ends up with disabled
12326 * event. What we want here is event in the initial
12327 * startup state, ready to be add into new context.
12328 */
12329 perf_event__state_init(group_leader);
12330 perf_install_in_context(ctx, group_leader, group_leader->cpu);
12331 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012332 }
12333
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020012334 /*
12335 * Precalculate sample_data sizes; do while holding ctx::mutex such
12336 * that we're serialized against further additions and before
12337 * perf_install_in_context() which is the point the event is active and
12338 * can use these values.
12339 */
12340 perf_event__header_size(event);
12341 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012342
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010012343 event->owner = current;
12344
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080012345 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012346 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012347
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012348 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012349 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012350 mutex_unlock(&ctx->mutex);
12351
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012352 if (task) {
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012353 up_read(&task->signal->exec_update_lock);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012354 put_task_struct(task);
12355 }
12356
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012357 mutex_lock(&current->perf_event_mutex);
12358 list_add_tail(&event->owner_entry, &current->perf_event_list);
12359 mutex_unlock(&current->perf_event_mutex);
12360
Peter Zijlstra8a495422010-05-27 15:47:49 +020012361 /*
12362 * Drop the reference on the group_event after placing the
12363 * new event on the sibling_list. This ensures destruction
12364 * of the group leader will find the pointer to itself in
12365 * perf_group_detach().
12366 */
Al Viro2903ff02012-08-28 12:52:22 -040012367 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012368 fd_install(event_fd, event_file);
12369 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012370
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012371err_locked:
12372 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012373 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012374 mutex_unlock(&ctx->mutex);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012375err_cred:
12376 if (task)
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012377 up_read(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012378err_file:
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012379 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012380err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012381 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040012382 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012383err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010012384 /*
12385 * If event_file is set, the fput() above will have called ->release()
12386 * and that will take care of freeing the event.
12387 */
12388 if (!event_file)
12389 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012390err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020012391 if (task)
12392 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012393err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040012394 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012395err_fd:
12396 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012397 return err;
12398}
12399
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012400/**
12401 * perf_event_create_kernel_counter
12402 *
12403 * @attr: attributes of the counter to create
12404 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070012405 * @task: task to profile (NULL for percpu)
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012406 * @overflow_handler: callback to trigger when we hit the event
12407 * @context: context data could be used in overflow_handler callback
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012408 */
12409struct perf_event *
12410perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070012411 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030012412 perf_overflow_handler_t overflow_handler,
12413 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012414{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012415 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012416 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012417 int err;
12418
Alexander Shishkindce5aff2019-10-30 15:47:31 +020012419 /*
12420 * Grouping is not supported for kernel events, neither is 'AUX',
12421 * make sure the caller's intentions are adjusted.
12422 */
12423 if (attr->aux_output)
12424 return ERR_PTR(-EINVAL);
12425
Avi Kivity4dc0da82011-06-29 18:42:35 +030012426 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012427 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012428 if (IS_ERR(event)) {
12429 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012430 goto err;
12431 }
12432
Jiri Olsaf8697762014-08-01 14:33:01 +020012433 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012434 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020012435
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020012436 /*
12437 * Get the target context (task or percpu):
12438 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012439 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012440 if (IS_ERR(ctx)) {
12441 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012442 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012443 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012444
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012445 WARN_ON_ONCE(ctx->parent_ctx);
12446 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012447 if (ctx->task == TASK_TOMBSTONE) {
12448 err = -ESRCH;
12449 goto err_unlock;
12450 }
12451
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012452 if (!task) {
12453 /*
12454 * Check if the @cpu we're creating an event for is online.
12455 *
12456 * We use the perf_cpu_context::ctx::mutex to serialize against
12457 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12458 */
12459 struct perf_cpu_context *cpuctx =
12460 container_of(ctx, struct perf_cpu_context, ctx);
12461 if (!cpuctx->online) {
12462 err = -ENODEV;
12463 goto err_unlock;
12464 }
12465 }
12466
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012467 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012468 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012469 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012470 }
12471
Leonard Crestez4ce54af2019-07-24 15:53:24 +030012472 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012473 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012474 mutex_unlock(&ctx->mutex);
12475
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012476 return event;
12477
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012478err_unlock:
12479 mutex_unlock(&ctx->mutex);
12480 perf_unpin_context(ctx);
12481 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012482err_free:
12483 free_event(event);
12484err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012485 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012486}
12487EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
12488
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012489void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12490{
12491 struct perf_event_context *src_ctx;
12492 struct perf_event_context *dst_ctx;
12493 struct perf_event *event, *tmp;
12494 LIST_HEAD(events);
12495
12496 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12497 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12498
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012499 /*
12500 * See perf_event_ctx_lock() for comments on the details
12501 * of swizzling perf_event::ctx.
12502 */
12503 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012504 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12505 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012506 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012507 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012508 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020012509 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012510 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012511
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012512 /*
12513 * Wait for the events to quiesce before re-instating them.
12514 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012515 synchronize_rcu();
12516
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012517 /*
12518 * Re-instate events in 2 passes.
12519 *
12520 * Skip over group leaders and only install siblings on this first
12521 * pass, siblings will not get enabled without a leader, however a
12522 * leader will enable its siblings, even if those are still on the old
12523 * context.
12524 */
12525 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12526 if (event->group_leader == event)
12527 continue;
12528
12529 list_del(&event->migrate_entry);
12530 if (event->state >= PERF_EVENT_STATE_OFF)
12531 event->state = PERF_EVENT_STATE_INACTIVE;
12532 account_event_cpu(event, dst_cpu);
12533 perf_install_in_context(dst_ctx, event, dst_cpu);
12534 get_ctx(dst_ctx);
12535 }
12536
12537 /*
12538 * Once all the siblings are setup properly, install the group leaders
12539 * to make it go.
12540 */
Peter Zijlstra98861672013-10-03 16:02:23 +020012541 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12542 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012543 if (event->state >= PERF_EVENT_STATE_OFF)
12544 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012545 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012546 perf_install_in_context(dst_ctx, event, dst_cpu);
12547 get_ctx(dst_ctx);
12548 }
12549 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012550 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012551}
12552EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12553
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012554static void sync_child_event(struct perf_event *child_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012555{
12556 struct perf_event *parent_event = child_event->parent;
12557 u64 child_val;
12558
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012559 if (child_event->attr.inherit_stat) {
12560 struct task_struct *task = child_event->ctx->task;
12561
12562 if (task && task != TASK_TOMBSTONE)
12563 perf_event_read_event(child_event, task);
12564 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012565
Peter Zijlstrab5e58792010-05-21 14:43:12 +020012566 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012567
12568 /*
12569 * Add back the child's count to the parent's count:
12570 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020012571 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012572 atomic64_add(child_event->total_time_enabled,
12573 &parent_event->child_total_time_enabled);
12574 atomic64_add(child_event->total_time_running,
12575 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012576}
12577
12578static void
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012579perf_event_exit_event(struct perf_event *event, struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012580{
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012581 struct perf_event *parent_event = event->parent;
12582 unsigned long detach_flags = 0;
12583
12584 if (parent_event) {
12585 /*
12586 * Do not destroy the 'original' grouping; because of the
12587 * context switch optimization the original events could've
12588 * ended up in a random child task.
12589 *
12590 * If we were to destroy the original group, all group related
12591 * operations would cease to function properly after this
12592 * random child dies.
12593 *
12594 * Do destroy all inherited groups, we don't care about those
12595 * and being thorough is better.
12596 */
12597 detach_flags = DETACH_GROUP | DETACH_CHILD;
12598 mutex_lock(&parent_event->child_mutex);
12599 }
12600
12601 perf_remove_from_context(event, detach_flags);
12602
12603 raw_spin_lock_irq(&ctx->lock);
12604 if (event->state > PERF_EVENT_STATE_EXIT)
12605 perf_event_set_state(event, PERF_EVENT_STATE_EXIT);
12606 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012607
Peter Zijlstra1903d502014-07-15 17:27:27 +020012608 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012609 * Child events can be freed.
Peter Zijlstra1903d502014-07-15 17:27:27 +020012610 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012611 if (parent_event) {
12612 mutex_unlock(&parent_event->child_mutex);
12613 /*
12614 * Kick perf_poll() for is_event_hup();
12615 */
12616 perf_event_wakeup(parent_event);
12617 free_event(event);
12618 put_event(parent_event);
12619 return;
12620 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012621
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012622 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012623 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012624 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012625 perf_event_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012626}
12627
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012628static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012629{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012630 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012631 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012632
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012633 WARN_ON_ONCE(child != current);
12634
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012635 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012636 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012637 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012638
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012639 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012640 * In order to reduce the amount of tricky in ctx tear-down, we hold
12641 * ctx::mutex over the entire thing. This serializes against almost
12642 * everything that wants to access the ctx.
12643 *
12644 * The exception is sys_perf_event_open() /
12645 * perf_event_create_kernel_count() which does find_get_context()
12646 * without ctx::mutex (it cannot because of the move_group double mutex
12647 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012648 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012649 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012650
12651 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012652 * In a single ctx::lock section, de-schedule the events and detach the
12653 * context from the task such that we cannot ever get it scheduled back
12654 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012655 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012656 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020012657 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012658
12659 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012660 * Now that the context is inactive, destroy the task <-> ctx relation
12661 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012662 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012663 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12664 put_ctx(child_ctx); /* cannot be last */
12665 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12666 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012667
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012668 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012669 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012670
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012671 if (clone_ctx)
12672 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012673
12674 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012675 * Report the task dead after unscheduling the events so that we
12676 * won't get any samples after PERF_RECORD_EXIT. We can however still
12677 * get a few PERF_RECORD_READ events.
12678 */
12679 perf_event_task(child, child_ctx, 0);
12680
Peter Zijlstraebf905f2014-05-29 19:00:24 +020012681 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012682 perf_event_exit_event(child_event, child_ctx);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012683
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012684 mutex_unlock(&child_ctx->mutex);
12685
12686 put_ctx(child_ctx);
12687}
12688
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012689/*
12690 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012691 *
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012692 * Can be called with exec_update_lock held when called from
Eric W. Biederman96ecee22020-05-03 06:48:17 -050012693 * setup_new_exec().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012694 */
12695void perf_event_exit_task(struct task_struct *child)
12696{
Peter Zijlstra88821352010-11-09 19:01:43 +010012697 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012698 int ctxn;
12699
Peter Zijlstra88821352010-11-09 19:01:43 +010012700 mutex_lock(&child->perf_event_mutex);
12701 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12702 owner_entry) {
12703 list_del_init(&event->owner_entry);
12704
12705 /*
12706 * Ensure the list deletion is visible before we clear
12707 * the owner, closes a race against perf_release() where
12708 * we need to serialize on the owner->perf_event_mutex.
12709 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010012710 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010012711 }
12712 mutex_unlock(&child->perf_event_mutex);
12713
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012714 for_each_task_context_nr(ctxn)
12715 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010012716
12717 /*
12718 * The perf_event_exit_task_context calls perf_event_task
12719 * with child's task_ctx, which generates EXIT events for
12720 * child contexts and sets child->perf_event_ctxp[] to NULL.
12721 * At this point we need to send EXIT events to cpu contexts.
12722 */
12723 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012724}
12725
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012726static void perf_free_event(struct perf_event *event,
12727 struct perf_event_context *ctx)
12728{
12729 struct perf_event *parent = event->parent;
12730
12731 if (WARN_ON_ONCE(!parent))
12732 return;
12733
12734 mutex_lock(&parent->child_mutex);
12735 list_del_init(&event->child_list);
12736 mutex_unlock(&parent->child_mutex);
12737
Al Viroa6fa9412012-08-20 14:59:25 +010012738 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012739
Peter Zijlstra652884f2015-01-23 11:20:10 +010012740 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020012741 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012742 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010012743 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012744 free_event(event);
12745}
12746
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012747/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012748 * Free a context as created by inheritance by perf_event_init_task() below,
12749 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010012750 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012751 * Even though the task has never lived, the context and events have been
12752 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012753 */
12754void perf_event_free_task(struct task_struct *task)
12755{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012756 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012757 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012758 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012759
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012760 for_each_task_context_nr(ctxn) {
12761 ctx = task->perf_event_ctxp[ctxn];
12762 if (!ctx)
12763 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012764
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012765 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012766 raw_spin_lock_irq(&ctx->lock);
12767 /*
12768 * Destroy the task <-> ctx relation and mark the context dead.
12769 *
12770 * This is important because even though the task hasn't been
12771 * exposed yet the context has been (through child_list).
12772 */
12773 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12774 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12775 put_task_struct(task); /* cannot be last */
12776 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012777
Peter Zijlstra15121c72017-03-16 13:47:50 +010012778 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012779 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012780
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012781 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012782
12783 /*
12784 * perf_event_release_kernel() could've stolen some of our
12785 * child events and still have them on its free_list. In that
12786 * case we must wait for these events to have been freed (in
12787 * particular all their references to this task must've been
12788 * dropped).
12789 *
12790 * Without this copy_process() will unconditionally free this
12791 * task (irrespective of its reference count) and
12792 * _free_event()'s put_task_struct(event->hw.target) will be a
12793 * use-after-free.
12794 *
12795 * Wait for all events to drop their context reference.
12796 */
12797 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12798 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012799 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012800}
12801
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012802void perf_event_delayed_put(struct task_struct *task)
12803{
12804 int ctxn;
12805
12806 for_each_task_context_nr(ctxn)
12807 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12808}
12809
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012810struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012811{
Al Viro02e5ad92019-06-26 20:43:53 -040012812 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012813 if (!file)
12814 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012815
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012816 if (file->f_op != &perf_fops) {
12817 fput(file);
12818 return ERR_PTR(-EBADF);
12819 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012820
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012821 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012822}
12823
Yonghong Songf8d959a2018-05-24 11:21:08 -070012824const struct perf_event *perf_get_event(struct file *file)
12825{
12826 if (file->f_op != &perf_fops)
12827 return ERR_PTR(-EINVAL);
12828
12829 return file->private_data;
12830}
12831
Kaixu Xiaffe86902015-08-06 07:02:32 +000012832const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12833{
12834 if (!event)
12835 return ERR_PTR(-EINVAL);
12836
12837 return &event->attr;
12838}
12839
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012840/*
Tobias Tefke788faab2018-07-09 12:57:15 +020012841 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012842 *
12843 * Returns:
12844 * - valid pointer on success
12845 * - NULL for orphaned events
12846 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012847 */
12848static struct perf_event *
12849inherit_event(struct perf_event *parent_event,
12850 struct task_struct *parent,
12851 struct perf_event_context *parent_ctx,
12852 struct task_struct *child,
12853 struct perf_event *group_leader,
12854 struct perf_event_context *child_ctx)
12855{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020012856 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012857 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020012858 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012859
12860 /*
12861 * Instead of creating recursive hierarchies of events,
12862 * we link inherited events back to the original parent,
12863 * which has a filp for sure, which we use as the reference
12864 * count:
12865 */
12866 if (parent_event->parent)
12867 parent_event = parent_event->parent;
12868
12869 child_event = perf_event_alloc(&parent_event->attr,
12870 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020012871 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012872 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000012873 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012874 if (IS_ERR(child_event))
12875 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010012876
Jiri Olsa313ccb92018-01-07 17:03:47 +010012877
12878 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12879 !child_ctx->task_ctx_data) {
12880 struct pmu *pmu = child_event->pmu;
12881
Kan Liangff9ff922020-07-03 05:49:21 -070012882 child_ctx->task_ctx_data = alloc_task_ctx_data(pmu);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012883 if (!child_ctx->task_ctx_data) {
12884 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020012885 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012886 }
12887 }
12888
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012889 /*
12890 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12891 * must be under the same lock in order to serialize against
12892 * perf_event_release_kernel(), such that either we must observe
12893 * is_orphaned_event() or they will observe us on the child_list.
12894 */
12895 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020012896 if (is_orphaned_event(parent_event) ||
12897 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012898 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012899 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010012900 free_event(child_event);
12901 return NULL;
12902 }
12903
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012904 get_ctx(child_ctx);
12905
12906 /*
12907 * Make the child state follow the state of the parent event,
12908 * not its attr.disabled bit. We hold the parent's mutex,
12909 * so we won't race with perf_event_{en, dis}able_family.
12910 */
Jiri Olsa1929def2014-09-12 13:18:27 +020012911 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012912 child_event->state = PERF_EVENT_STATE_INACTIVE;
12913 else
12914 child_event->state = PERF_EVENT_STATE_OFF;
12915
12916 if (parent_event->attr.freq) {
12917 u64 sample_period = parent_event->hw.sample_period;
12918 struct hw_perf_event *hwc = &child_event->hw;
12919
12920 hwc->sample_period = sample_period;
12921 hwc->last_period = sample_period;
12922
12923 local64_set(&hwc->period_left, sample_period);
12924 }
12925
12926 child_event->ctx = child_ctx;
12927 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030012928 child_event->overflow_handler_context
12929 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012930
12931 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020012932 * Precalculate sample_data sizes
12933 */
12934 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020012935 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020012936
12937 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012938 * Link it up in the child's context:
12939 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020012940 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012941 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012942 child_event->attach_state |= PERF_ATTACH_CHILD;
Peter Zijlstracee010e2010-09-10 12:51:54 +020012943 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012944
12945 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012946 * Link this into the parent event's child list
12947 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012948 list_add_tail(&child_event->child_list, &parent_event->child_list);
12949 mutex_unlock(&parent_event->child_mutex);
12950
12951 return child_event;
12952}
12953
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012954/*
12955 * Inherits an event group.
12956 *
12957 * This will quietly suppress orphaned events; !inherit_event() is not an error.
12958 * This matches with perf_event_release_kernel() removing all child events.
12959 *
12960 * Returns:
12961 * - 0 on success
12962 * - <0 on error
12963 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012964static int inherit_group(struct perf_event *parent_event,
12965 struct task_struct *parent,
12966 struct perf_event_context *parent_ctx,
12967 struct task_struct *child,
12968 struct perf_event_context *child_ctx)
12969{
12970 struct perf_event *leader;
12971 struct perf_event *sub;
12972 struct perf_event *child_ctr;
12973
12974 leader = inherit_event(parent_event, parent, parent_ctx,
12975 child, NULL, child_ctx);
12976 if (IS_ERR(leader))
12977 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012978 /*
12979 * @leader can be NULL here because of is_orphaned_event(). In this
12980 * case inherit_event() will create individual events, similar to what
12981 * perf_group_detach() would do anyway.
12982 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012983 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012984 child_ctr = inherit_event(sub, parent, parent_ctx,
12985 child, leader, child_ctx);
12986 if (IS_ERR(child_ctr))
12987 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012988
Alexander Shishkin00496fe2019-11-01 17:12:48 +020012989 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012990 !perf_get_aux_event(child_ctr, leader))
12991 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012992 }
12993 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012994}
12995
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012996/*
12997 * Creates the child task context and tries to inherit the event-group.
12998 *
12999 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
13000 * inherited_all set when we 'fail' to inherit an orphaned event; this is
13001 * consistent with perf_event_release_kernel() removing all child events.
13002 *
13003 * Returns:
13004 * - 0 on success
13005 * - <0 on error
13006 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013007static int
13008inherit_task_group(struct perf_event *event, struct task_struct *parent,
13009 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013010 struct task_struct *child, int ctxn,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013011 u64 clone_flags, int *inherited_all)
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013012{
13013 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013014 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013015
Marco Elver2b26f0a2021-04-08 12:35:58 +020013016 if (!event->attr.inherit ||
Marco Elver97ba62b2021-04-08 12:36:01 +020013017 (event->attr.inherit_thread && !(clone_flags & CLONE_THREAD)) ||
13018 /* Do not inherit if sigtrap and signal handlers were cleared. */
13019 (event->attr.sigtrap && (clone_flags & CLONE_CLEAR_SIGHAND))) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013020 *inherited_all = 0;
13021 return 0;
13022 }
13023
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013024 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013025 if (!child_ctx) {
13026 /*
13027 * This is executed from the parent task context, so
13028 * inherit events that have been marked for cloning.
13029 * First allocate and initialize a context for the
13030 * child.
13031 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020013032 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013033 if (!child_ctx)
13034 return -ENOMEM;
13035
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013036 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013037 }
13038
13039 ret = inherit_group(event, parent, parent_ctx,
13040 child, child_ctx);
13041
13042 if (ret)
13043 *inherited_all = 0;
13044
13045 return ret;
13046}
13047
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013048/*
13049 * Initialize the perf_event context in task_struct
13050 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013051static int perf_event_init_context(struct task_struct *child, int ctxn,
13052 u64 clone_flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013053{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013054 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013055 struct perf_event_context *cloned_ctx;
13056 struct perf_event *event;
13057 struct task_struct *parent = current;
13058 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013059 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013060 int ret = 0;
13061
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013062 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013063 return 0;
13064
13065 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013066 * If the parent's context is a clone, pin it so it won't get
13067 * swapped under us.
13068 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013069 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020013070 if (!parent_ctx)
13071 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013072
13073 /*
13074 * No need to check if parent_ctx != NULL here; since we saw
13075 * it non-NULL earlier, the only reason for it to become NULL
13076 * is if we exit, and since we're currently in the middle of
13077 * a fork we can't be exiting at the same time.
13078 */
13079
13080 /*
13081 * Lock the parent list. No need to lock the child - not PID
13082 * hashed yet and not running, so nobody can access it.
13083 */
13084 mutex_lock(&parent_ctx->mutex);
13085
13086 /*
13087 * We dont have to disable NMIs - we are only looking at
13088 * the list, not manipulating it:
13089 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013090 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013091 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013092 child, ctxn, clone_flags,
13093 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013094 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013095 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013096 }
13097
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013098 /*
13099 * We can't hold ctx->lock when iterating the ->flexible_group list due
13100 * to allocations, but we need to prevent rotation because
13101 * rotate_ctx() will change the list from interrupt context.
13102 */
13103 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13104 parent_ctx->rotate_disable = 1;
13105 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
13106
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013107 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013108 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013109 child, ctxn, clone_flags,
13110 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013111 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013112 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013113 }
13114
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013115 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13116 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013117
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013118 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013119
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010013120 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013121 /*
13122 * Mark the child context as a clone of the parent
13123 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013124 *
13125 * Note that if the parent is a clone, the holding of
13126 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013127 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013128 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013129 if (cloned_ctx) {
13130 child_ctx->parent_ctx = cloned_ctx;
13131 child_ctx->parent_gen = parent_ctx->parent_gen;
13132 } else {
13133 child_ctx->parent_ctx = parent_ctx;
13134 child_ctx->parent_gen = parent_ctx->generation;
13135 }
13136 get_ctx(child_ctx->parent_ctx);
13137 }
13138
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013139 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013140out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013141 mutex_unlock(&parent_ctx->mutex);
13142
13143 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013144 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013145
13146 return ret;
13147}
13148
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013149/*
13150 * Initialize the perf_event context in task_struct
13151 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013152int perf_event_init_task(struct task_struct *child, u64 clone_flags)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013153{
13154 int ctxn, ret;
13155
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010013156 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
13157 mutex_init(&child->perf_event_mutex);
13158 INIT_LIST_HEAD(&child->perf_event_list);
13159
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013160 for_each_task_context_nr(ctxn) {
Marco Elver2b26f0a2021-04-08 12:35:58 +020013161 ret = perf_event_init_context(child, ctxn, clone_flags);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013162 if (ret) {
13163 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013164 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013165 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013166 }
13167
13168 return 0;
13169}
13170
Paul Mackerras220b1402010-03-10 20:45:52 +110013171static void __init perf_event_init_all_cpus(void)
13172{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013173 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110013174 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110013175
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013176 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
13177
Paul Mackerras220b1402010-03-10 20:45:52 +110013178 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013179 swhash = &per_cpu(swevent_htable, cpu);
13180 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000013181 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070013182
13183 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
13184 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020013185
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080013186#ifdef CONFIG_CGROUP_PERF
13187 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
13188#endif
Kan Lianga5398bf2020-11-30 11:38:40 -080013189 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110013190 }
13191}
13192
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040013193static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013194{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013195 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013196
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013197 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000013198 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013199 struct swevent_hlist *hlist;
13200
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013201 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
13202 WARN_ON(!hlist);
13203 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013204 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013205 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013206}
13207
Dave Young2965faa2015-09-09 15:38:55 -070013208#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013209static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013210{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013211 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013212 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
13213 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013214
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013215 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020013216 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013217 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010013218 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013219 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013220}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013221
13222static void perf_event_exit_cpu_context(int cpu)
13223{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013224 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013225 struct perf_event_context *ctx;
13226 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013227
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013228 mutex_lock(&pmus_lock);
13229 list_for_each_entry(pmu, &pmus, entry) {
13230 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13231 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013232
13233 mutex_lock(&ctx->mutex);
13234 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013235 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013236 mutex_unlock(&ctx->mutex);
13237 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013238 cpumask_clear_cpu(cpu, perf_online_mask);
13239 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013240}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013241#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013242
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013243static void perf_event_exit_cpu_context(int cpu) { }
13244
13245#endif
13246
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013247int perf_event_init_cpu(unsigned int cpu)
13248{
13249 struct perf_cpu_context *cpuctx;
13250 struct perf_event_context *ctx;
13251 struct pmu *pmu;
13252
13253 perf_swevent_init_cpu(cpu);
13254
13255 mutex_lock(&pmus_lock);
13256 cpumask_set_cpu(cpu, perf_online_mask);
13257 list_for_each_entry(pmu, &pmus, entry) {
13258 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13259 ctx = &cpuctx->ctx;
13260
13261 mutex_lock(&ctx->mutex);
13262 cpuctx->online = 1;
13263 mutex_unlock(&ctx->mutex);
13264 }
13265 mutex_unlock(&pmus_lock);
13266
13267 return 0;
13268}
13269
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013270int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013271{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010013272 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013273 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013274}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013275
Peter Zijlstrac2774432010-12-08 15:29:02 +010013276static int
13277perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
13278{
13279 int cpu;
13280
13281 for_each_online_cpu(cpu)
13282 perf_event_exit_cpu(cpu);
13283
13284 return NOTIFY_OK;
13285}
13286
13287/*
13288 * Run the perf reboot notifier at the very last possible moment so that
13289 * the generic watchdog code runs as long as possible.
13290 */
13291static struct notifier_block perf_reboot_notifier = {
13292 .notifier_call = perf_reboot,
13293 .priority = INT_MIN,
13294};
13295
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013296void __init perf_event_init(void)
13297{
Jason Wessel3c502e72010-11-04 17:33:01 -050013298 int ret;
13299
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013300 idr_init(&pmu_idr);
13301
Paul Mackerras220b1402010-03-10 20:45:52 +110013302 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013303 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013304 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
13305 perf_pmu_register(&perf_cpu_clock, NULL, -1);
13306 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013307 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013308 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010013309 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050013310
13311 ret = init_hw_breakpoint();
13312 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020013313
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090013314 perf_event_cache = KMEM_CACHE(perf_event, SLAB_PANIC);
13315
Jiri Olsab01c3a02012-03-23 15:41:20 +010013316 /*
13317 * Build time assertion that we keep the data_head at the intended
13318 * location. IOW, validation we got the __reserved[] size right.
13319 */
13320 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
13321 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013322}
Peter Zijlstraabe43402010-11-17 23:17:37 +010013323
Cody P Schaferfd979c02015-01-30 13:45:57 -080013324ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
13325 char *page)
13326{
13327 struct perf_pmu_events_attr *pmu_attr =
13328 container_of(attr, struct perf_pmu_events_attr, attr);
13329
13330 if (pmu_attr->event_str)
13331 return sprintf(page, "%s\n", pmu_attr->event_str);
13332
13333 return 0;
13334}
Thomas Gleixner675965b2016-02-22 22:19:27 +000013335EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080013336
Peter Zijlstraabe43402010-11-17 23:17:37 +010013337static int __init perf_event_sysfs_init(void)
13338{
13339 struct pmu *pmu;
13340 int ret;
13341
13342 mutex_lock(&pmus_lock);
13343
13344 ret = bus_register(&pmu_bus);
13345 if (ret)
13346 goto unlock;
13347
13348 list_for_each_entry(pmu, &pmus, entry) {
13349 if (!pmu->name || pmu->type < 0)
13350 continue;
13351
13352 ret = pmu_dev_alloc(pmu);
13353 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
13354 }
13355 pmu_bus_running = 1;
13356 ret = 0;
13357
13358unlock:
13359 mutex_unlock(&pmus_lock);
13360
13361 return ret;
13362}
13363device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013364
13365#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040013366static struct cgroup_subsys_state *
13367perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013368{
13369 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020013370
Li Zefan1b15d052011-03-03 14:26:06 +080013371 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013372 if (!jc)
13373 return ERR_PTR(-ENOMEM);
13374
Stephane Eraniane5d13672011-02-14 11:20:01 +020013375 jc->info = alloc_percpu(struct perf_cgroup_info);
13376 if (!jc->info) {
13377 kfree(jc);
13378 return ERR_PTR(-ENOMEM);
13379 }
13380
Stephane Eraniane5d13672011-02-14 11:20:01 +020013381 return &jc->css;
13382}
13383
Tejun Heoeb954192013-08-08 20:11:23 -040013384static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013385{
Tejun Heoeb954192013-08-08 20:11:23 -040013386 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
13387
Stephane Eraniane5d13672011-02-14 11:20:01 +020013388 free_percpu(jc->info);
13389 kfree(jc);
13390}
13391
Namhyung Kim96aaab62020-03-25 21:45:28 +090013392static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
13393{
13394 perf_event_cgroup(css->cgroup);
13395 return 0;
13396}
13397
Stephane Eraniane5d13672011-02-14 11:20:01 +020013398static int __perf_cgroup_move(void *info)
13399{
13400 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013401 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013402 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013403 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013404 return 0;
13405}
13406
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013407static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013408{
Tejun Heobb9d97b2011-12-12 18:12:21 -080013409 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013410 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080013411
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013412 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080013413 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013414}
13415
Tejun Heo073219e2014-02-08 10:36:58 -050013416struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080013417 .css_alloc = perf_cgroup_css_alloc,
13418 .css_free = perf_cgroup_css_free,
Namhyung Kim96aaab62020-03-25 21:45:28 +090013419 .css_online = perf_cgroup_css_online,
Tejun Heobb9d97b2011-12-12 18:12:21 -080013420 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050013421 /*
13422 * Implicitly enable on dfl hierarchy so that perf events can
13423 * always be filtered by cgroup2 path as long as perf_event
13424 * controller is not mounted on a legacy hierarchy.
13425 */
13426 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040013427 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020013428};
13429#endif /* CONFIG_CGROUP_PERF */