blob: 76c754e45d012a4a8cfbe53dfdb38b936186aaec [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
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100677/*
678 * UP store-release, load-acquire
679 */
680
681#define __store_release(ptr, val) \
682do { \
683 barrier(); \
684 WRITE_ONCE(*(ptr), (val)); \
685} while (0)
686
687#define __load_acquire(ptr) \
688({ \
689 __unqual_scalar_typeof(*(ptr)) ___p = READ_ONCE(*(ptr)); \
690 barrier(); \
691 ___p; \
692})
693
Stephane Eraniane5d13672011-02-14 11:20:01 +0200694#ifdef CONFIG_CGROUP_PERF
695
Stephane Eraniane5d13672011-02-14 11:20:01 +0200696static inline bool
697perf_cgroup_match(struct perf_event *event)
698{
699 struct perf_event_context *ctx = event->ctx;
700 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
701
Tejun Heoef824fa2013-04-08 19:00:38 -0700702 /* @event doesn't care about cgroup */
703 if (!event->cgrp)
704 return true;
705
706 /* wants specific cgroup scope but @cpuctx isn't associated with any */
707 if (!cpuctx->cgrp)
708 return false;
709
710 /*
711 * Cgroup scoping is recursive. An event enabled for a cgroup is
712 * also enabled for all its descendant cgroups. If @cpuctx's
713 * cgroup is a descendant of @event's (the test covers identity
714 * case), it's a match.
715 */
716 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
717 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200718}
719
Stephane Eraniane5d13672011-02-14 11:20:01 +0200720static inline void perf_detach_cgroup(struct perf_event *event)
721{
Zefan Li4e2ba652014-09-19 16:53:14 +0800722 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200723 event->cgrp = NULL;
724}
725
726static inline int is_cgroup_event(struct perf_event *event)
727{
728 return event->cgrp != NULL;
729}
730
731static inline u64 perf_cgroup_event_time(struct perf_event *event)
732{
733 struct perf_cgroup_info *t;
734
735 t = per_cpu_ptr(event->cgrp->info, event->cpu);
736 return t->time;
737}
738
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100739static inline u64 perf_cgroup_event_time_now(struct perf_event *event, u64 now)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200740{
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100741 struct perf_cgroup_info *t;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200742
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100743 t = per_cpu_ptr(event->cgrp->info, event->cpu);
744 if (!__load_acquire(&t->active))
745 return t->time;
746 now += READ_ONCE(t->timeoffset);
747 return now;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200748}
749
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100750static inline void __update_cgrp_time(struct perf_cgroup_info *info, u64 now, bool adv)
751{
752 if (adv)
753 info->time += now - info->timestamp;
754 info->timestamp = now;
755 /*
756 * see update_context_time()
757 */
758 WRITE_ONCE(info->timeoffset, info->time - info->timestamp);
759}
760
761static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx, bool final)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200762{
Song Liuc917e0f22018-03-12 09:59:43 -0700763 struct perf_cgroup *cgrp = cpuctx->cgrp;
764 struct cgroup_subsys_state *css;
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100765 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700766
767 if (cgrp) {
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100768 u64 now = perf_clock();
769
Song Liuc917e0f22018-03-12 09:59:43 -0700770 for (css = &cgrp->css; css; css = css->parent) {
771 cgrp = container_of(css, struct perf_cgroup, css);
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100772 info = this_cpu_ptr(cgrp->info);
773
774 __update_cgrp_time(info, now, true);
775 if (final)
776 __store_release(&info->active, 0);
Song Liuc917e0f22018-03-12 09:59:43 -0700777 }
778 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200779}
780
781static inline void update_cgrp_time_from_event(struct perf_event *event)
782{
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100783 struct perf_cgroup_info *info;
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200784 struct perf_cgroup *cgrp;
785
Stephane Eraniane5d13672011-02-14 11:20:01 +0200786 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200787 * ensure we access cgroup data only when needed and
788 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200789 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200790 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200791 return;
792
Stephane Eranian614e4c42015-11-12 11:00:04 +0100793 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200794 /*
795 * Do not update time when cgroup is not active
796 */
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100797 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup)) {
798 info = this_cpu_ptr(event->cgrp->info);
799 __update_cgrp_time(info, perf_clock(), true);
800 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200801}
802
803static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200804perf_cgroup_set_timestamp(struct task_struct *task,
805 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200806{
807 struct perf_cgroup *cgrp;
808 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700809 struct cgroup_subsys_state *css;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200810
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200811 /*
812 * ctx->lock held by caller
813 * ensure we do not access cgroup data
814 * unless we have the cgroup pinned (css_get)
815 */
816 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200817 return;
818
Stephane Eranian614e4c42015-11-12 11:00:04 +0100819 cgrp = perf_cgroup_from_task(task, ctx);
Song Liuc917e0f22018-03-12 09:59:43 -0700820
821 for (css = &cgrp->css; css; css = css->parent) {
822 cgrp = container_of(css, struct perf_cgroup, css);
823 info = this_cpu_ptr(cgrp->info);
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +0100824 __update_cgrp_time(info, ctx->timestamp, false);
825 __store_release(&info->active, 1);
Song Liuc917e0f22018-03-12 09:59:43 -0700826 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200827}
828
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800829static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
830
Stephane Eraniane5d13672011-02-14 11:20:01 +0200831#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
832#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
833
834/*
835 * reschedule events based on the cgroup constraint of task.
836 *
837 * mode SWOUT : schedule out everything
838 * mode SWIN : schedule in based on cgroup for next
839 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800840static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200841{
842 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800843 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200844 unsigned long flags;
845
846 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800847 * Disable interrupts and preemption to avoid this CPU's
848 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200849 */
850 local_irq_save(flags);
851
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800852 list = this_cpu_ptr(&cgrp_cpuctx_list);
853 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
854 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200855
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800856 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
857 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200858
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800859 if (mode & PERF_CGROUP_SWOUT) {
860 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
861 /*
862 * must not be done before ctxswout due
863 * to event_filter_match() in event_sched_out()
864 */
865 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200866 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800867
868 if (mode & PERF_CGROUP_SWIN) {
869 WARN_ON_ONCE(cpuctx->cgrp);
870 /*
871 * set cgrp before ctxsw in to allow
872 * event_filter_match() to not have to pass
873 * task around
874 * we pass the cpuctx->ctx to perf_cgroup_from_task()
875 * because cgorup events are only per-cpu
876 */
877 cpuctx->cgrp = perf_cgroup_from_task(task,
878 &cpuctx->ctx);
879 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
880 }
881 perf_pmu_enable(cpuctx->ctx.pmu);
882 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200883 }
884
Stephane Eraniane5d13672011-02-14 11:20:01 +0200885 local_irq_restore(flags);
886}
887
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200888static inline void perf_cgroup_sched_out(struct task_struct *task,
889 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200890{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200891 struct perf_cgroup *cgrp1;
892 struct perf_cgroup *cgrp2 = NULL;
893
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100894 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200895 /*
896 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100897 * we do not need to pass the ctx here because we know
898 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200899 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100900 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100901 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200902
903 /*
904 * only schedule out current cgroup events if we know
905 * that we are switching to a different cgroup. Otherwise,
906 * do no touch the cgroup events.
907 */
908 if (cgrp1 != cgrp2)
909 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100910
911 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200912}
913
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200914static inline void perf_cgroup_sched_in(struct task_struct *prev,
915 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200916{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200917 struct perf_cgroup *cgrp1;
918 struct perf_cgroup *cgrp2 = NULL;
919
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100920 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200921 /*
922 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100923 * we do not need to pass the ctx here because we know
924 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200925 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100926 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100927 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200928
929 /*
930 * only need to schedule in cgroup events if we are changing
931 * cgroup during ctxsw. Cgroup events were not scheduled
932 * out of ctxsw out if that was not the case.
933 */
934 if (cgrp1 != cgrp2)
935 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100936
937 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200938}
939
Ian Rogersc2283c92020-02-13 23:51:32 -0800940static int perf_cgroup_ensure_storage(struct perf_event *event,
941 struct cgroup_subsys_state *css)
942{
943 struct perf_cpu_context *cpuctx;
944 struct perf_event **storage;
945 int cpu, heap_size, ret = 0;
946
947 /*
948 * Allow storage to have sufficent space for an iterator for each
949 * possibly nested cgroup plus an iterator for events with no cgroup.
950 */
951 for (heap_size = 1; css; css = css->parent)
952 heap_size++;
953
954 for_each_possible_cpu(cpu) {
955 cpuctx = per_cpu_ptr(event->pmu->pmu_cpu_context, cpu);
956 if (heap_size <= cpuctx->heap_size)
957 continue;
958
959 storage = kmalloc_node(heap_size * sizeof(struct perf_event *),
960 GFP_KERNEL, cpu_to_node(cpu));
961 if (!storage) {
962 ret = -ENOMEM;
963 break;
964 }
965
966 raw_spin_lock_irq(&cpuctx->ctx.lock);
967 if (cpuctx->heap_size < heap_size) {
968 swap(cpuctx->heap, storage);
969 if (storage == cpuctx->heap_default)
970 storage = NULL;
971 cpuctx->heap_size = heap_size;
972 }
973 raw_spin_unlock_irq(&cpuctx->ctx.lock);
974
975 kfree(storage);
976 }
977
978 return ret;
979}
980
Stephane Eraniane5d13672011-02-14 11:20:01 +0200981static inline int perf_cgroup_connect(int fd, struct perf_event *event,
982 struct perf_event_attr *attr,
983 struct perf_event *group_leader)
984{
985 struct perf_cgroup *cgrp;
986 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400987 struct fd f = fdget(fd);
988 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200989
Al Viro2903ff02012-08-28 12:52:22 -0400990 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200991 return -EBADF;
992
Al Virob5830432014-10-31 01:22:04 -0400993 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400994 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800995 if (IS_ERR(css)) {
996 ret = PTR_ERR(css);
997 goto out;
998 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200999
Ian Rogersc2283c92020-02-13 23:51:32 -08001000 ret = perf_cgroup_ensure_storage(event, css);
1001 if (ret)
1002 goto out;
1003
Stephane Eraniane5d13672011-02-14 11:20:01 +02001004 cgrp = container_of(css, struct perf_cgroup, css);
1005 event->cgrp = cgrp;
1006
1007 /*
1008 * all events in a group must monitor
1009 * the same cgroup because a task belongs
1010 * to only one perf cgroup at a time
1011 */
1012 if (group_leader && group_leader->cgrp != cgrp) {
1013 perf_detach_cgroup(event);
1014 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001015 }
Li Zefan3db272c2011-03-03 14:25:37 +08001016out:
Al Viro2903ff02012-08-28 12:52:22 -04001017 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001018 return ret;
1019}
1020
1021static inline void
Peter Zijlstra33238c52020-03-18 20:33:37 +01001022perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001023{
1024 struct perf_cpu_context *cpuctx;
1025
1026 if (!is_cgroup_event(event))
1027 return;
1028
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001029 /*
1030 * Because cgroup events are always per-cpu events,
Song Liu07c59722020-01-22 11:50:27 -08001031 * @ctx == &cpuctx->ctx.
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001032 */
Song Liu07c59722020-01-22 11:50:27 -08001033 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
leilei.lin33801b92018-03-06 17:36:37 +08001034
1035 /*
1036 * Since setting cpuctx->cgrp is conditional on the current @cgrp
1037 * matching the event's cgroup, we must do this for every new event,
1038 * because if the first would mismatch, the second would not try again
1039 * and we would leave cpuctx->cgrp unset.
1040 */
Peter Zijlstra33238c52020-03-18 20:33:37 +01001041 if (ctx->is_active && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -07001042 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
1043
Tejun Heobe96b312017-10-28 09:49:37 -07001044 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
1045 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -08001046 }
leilei.lin33801b92018-03-06 17:36:37 +08001047
Peter Zijlstra33238c52020-03-18 20:33:37 +01001048 if (ctx->nr_cgroups++)
leilei.lin33801b92018-03-06 17:36:37 +08001049 return;
1050
Peter Zijlstra33238c52020-03-18 20:33:37 +01001051 list_add(&cpuctx->cgrp_cpuctx_entry,
1052 per_cpu_ptr(&cgrp_cpuctx_list, event->cpu));
1053}
1054
1055static inline void
1056perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1057{
1058 struct perf_cpu_context *cpuctx;
1059
1060 if (!is_cgroup_event(event))
1061 return;
1062
1063 /*
1064 * Because cgroup events are always per-cpu events,
1065 * @ctx == &cpuctx->ctx.
1066 */
1067 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
1068
1069 if (--ctx->nr_cgroups)
1070 return;
1071
1072 if (ctx->is_active && cpuctx->cgrp)
leilei.lin33801b92018-03-06 17:36:37 +08001073 cpuctx->cgrp = NULL;
1074
Peter Zijlstra33238c52020-03-18 20:33:37 +01001075 list_del(&cpuctx->cgrp_cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001076}
1077
Stephane Eraniane5d13672011-02-14 11:20:01 +02001078#else /* !CONFIG_CGROUP_PERF */
1079
1080static inline bool
1081perf_cgroup_match(struct perf_event *event)
1082{
1083 return true;
1084}
1085
1086static inline void perf_detach_cgroup(struct perf_event *event)
1087{}
1088
1089static inline int is_cgroup_event(struct perf_event *event)
1090{
1091 return 0;
1092}
1093
Stephane Eraniane5d13672011-02-14 11:20:01 +02001094static inline void update_cgrp_time_from_event(struct perf_event *event)
1095{
1096}
1097
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001098static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx,
1099 bool final)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001100{
1101}
1102
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001103static inline void perf_cgroup_sched_out(struct task_struct *task,
1104 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001105{
1106}
1107
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001108static inline void perf_cgroup_sched_in(struct task_struct *prev,
1109 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001110{
1111}
1112
1113static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1114 struct perf_event_attr *attr,
1115 struct perf_event *group_leader)
1116{
1117 return -EINVAL;
1118}
1119
1120static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001121perf_cgroup_set_timestamp(struct task_struct *task,
1122 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001123{
1124}
1125
Ben Dooks (Codethink)d00dbd292019-11-06 13:25:27 +00001126static inline void
Stephane Eraniane5d13672011-02-14 11:20:01 +02001127perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1128{
1129}
1130
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001131static inline u64 perf_cgroup_event_time(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001132{
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001133 return 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001134}
1135
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001136static inline u64 perf_cgroup_event_time_now(struct perf_event *event, u64 now)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001137{
1138 return 0;
1139}
1140
1141static inline void
Peter Zijlstra33238c52020-03-18 20:33:37 +01001142perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001143{
1144}
1145
Peter Zijlstra33238c52020-03-18 20:33:37 +01001146static inline void
1147perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1148{
1149}
Stephane Eraniane5d13672011-02-14 11:20:01 +02001150#endif
1151
Stephane Eranian9e630202013-04-03 14:21:33 +02001152/*
1153 * set default to be dependent on timer tick just
1154 * like original code
1155 */
1156#define PERF_CPU_HRTIMER (1000 / HZ)
1157/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001158 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001159 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001160static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001161{
1162 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001163 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001164
Frederic Weisbecker16444642017-11-06 16:01:24 +01001165 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001166
1167 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001168 rotations = perf_rotate_context(cpuctx);
1169
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001170 raw_spin_lock(&cpuctx->hrtimer_lock);
1171 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001172 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001173 else
1174 cpuctx->hrtimer_active = 0;
1175 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001176
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001177 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001178}
1179
Peter Zijlstra272325c2015-04-15 11:41:58 +02001180static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001181{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001182 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001183 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001184 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001185
1186 /* no multiplexing needed for SW PMU */
1187 if (pmu->task_ctx_nr == perf_sw_context)
1188 return;
1189
Stephane Eranian62b85632013-04-03 14:21:34 +02001190 /*
1191 * check default is sane, if not set then force to
1192 * default interval (1/tick)
1193 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001194 interval = pmu->hrtimer_interval_ms;
1195 if (interval < 1)
1196 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001197
Peter Zijlstra272325c2015-04-15 11:41:58 +02001198 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001199
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001200 raw_spin_lock_init(&cpuctx->hrtimer_lock);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001201 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001202 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001203}
1204
Peter Zijlstra272325c2015-04-15 11:41:58 +02001205static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001206{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001207 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001208 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001209 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001210
1211 /* not for SW PMU */
1212 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001213 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001214
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001215 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1216 if (!cpuctx->hrtimer_active) {
1217 cpuctx->hrtimer_active = 1;
1218 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001219 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001220 }
1221 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001222
Peter Zijlstra272325c2015-04-15 11:41:58 +02001223 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001224}
1225
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001226void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001227{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001228 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1229 if (!(*count)++)
1230 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001231}
1232
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001233void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001234{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001235 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1236 if (!--(*count))
1237 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001238}
1239
Mark Rutland2fde4f92015-01-07 15:01:54 +00001240static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001241
1242/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001243 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1244 * perf_event_task_tick() are fully serialized because they're strictly cpu
1245 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1246 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001247 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001248static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001249{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001250 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001251
Frederic Weisbecker16444642017-11-06 16:01:24 +01001252 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001253
Mark Rutland2fde4f92015-01-07 15:01:54 +00001254 WARN_ON(!list_empty(&ctx->active_ctx_list));
1255
1256 list_add(&ctx->active_ctx_list, head);
1257}
1258
1259static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1260{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001261 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001262
1263 WARN_ON(list_empty(&ctx->active_ctx_list));
1264
1265 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266}
1267
1268static void get_ctx(struct perf_event_context *ctx)
1269{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001270 refcount_inc(&ctx->refcount);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001271}
1272
Kan Liangff9ff922020-07-03 05:49:21 -07001273static void *alloc_task_ctx_data(struct pmu *pmu)
1274{
Kan Liang217c2a62020-07-03 05:49:22 -07001275 if (pmu->task_ctx_cache)
1276 return kmem_cache_zalloc(pmu->task_ctx_cache, GFP_KERNEL);
1277
Kan Liang5a099282020-07-03 05:49:24 -07001278 return NULL;
Kan Liangff9ff922020-07-03 05:49:21 -07001279}
1280
1281static void free_task_ctx_data(struct pmu *pmu, void *task_ctx_data)
1282{
Kan Liang217c2a62020-07-03 05:49:22 -07001283 if (pmu->task_ctx_cache && task_ctx_data)
1284 kmem_cache_free(pmu->task_ctx_cache, task_ctx_data);
Kan Liangff9ff922020-07-03 05:49:21 -07001285}
1286
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001287static void free_ctx(struct rcu_head *head)
1288{
1289 struct perf_event_context *ctx;
1290
1291 ctx = container_of(head, struct perf_event_context, rcu_head);
Kan Liangff9ff922020-07-03 05:49:21 -07001292 free_task_ctx_data(ctx->pmu, ctx->task_ctx_data);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001293 kfree(ctx);
1294}
1295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296static void put_ctx(struct perf_event_context *ctx)
1297{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001298 if (refcount_dec_and_test(&ctx->refcount)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001299 if (ctx->parent_ctx)
1300 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001301 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001302 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001303 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304 }
1305}
1306
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001307/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001308 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1309 * perf_pmu_migrate_context() we need some magic.
1310 *
1311 * Those places that change perf_event::ctx will hold both
1312 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1313 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001314 * Lock ordering is by mutex address. There are two other sites where
1315 * perf_event_context::mutex nests and those are:
1316 *
1317 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001318 * perf_event_exit_event()
1319 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001320 *
1321 * - perf_event_init_context() [ parent, 0 ]
1322 * inherit_task_group()
1323 * inherit_group()
1324 * inherit_event()
1325 * perf_event_alloc()
1326 * perf_init_event()
1327 * perf_try_init_event() [ child , 1 ]
1328 *
1329 * While it appears there is an obvious deadlock here -- the parent and child
1330 * nesting levels are inverted between the two. This is in fact safe because
1331 * life-time rules separate them. That is an exiting task cannot fork, and a
1332 * spawning task cannot (yet) exit.
1333 *
Randy Dunlapc034f482021-02-25 17:21:10 -08001334 * But remember that these are parent<->child context relations, and
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001335 * migration does not affect children, therefore these two orderings should not
1336 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001337 *
1338 * The change in perf_event::ctx does not affect children (as claimed above)
1339 * because the sys_perf_event_open() case will install a new event and break
1340 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1341 * concerned with cpuctx and that doesn't have children.
1342 *
1343 * The places that change perf_event::ctx will issue:
1344 *
1345 * perf_remove_from_context();
1346 * synchronize_rcu();
1347 * perf_install_in_context();
1348 *
1349 * to affect the change. The remove_from_context() + synchronize_rcu() should
1350 * quiesce the event, after which we can install it in the new location. This
1351 * means that only external vectors (perf_fops, prctl) can perturb the event
1352 * while in transit. Therefore all such accessors should also acquire
1353 * perf_event_context::mutex to serialize against this.
1354 *
1355 * However; because event->ctx can change while we're waiting to acquire
1356 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1357 * function.
1358 *
1359 * Lock order:
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -06001360 * exec_update_lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001361 * task_struct::perf_event_mutex
1362 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001363 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001364 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001365 * perf_event::mmap_mutex
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001366 * mmap_lock
Alexander Shishkin18736ee2019-02-15 13:56:54 +02001367 * perf_addr_filters_head::lock
Peter Zijlstra82d94852018-01-09 13:10:30 +01001368 *
1369 * cpu_hotplug_lock
1370 * pmus_lock
1371 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001372 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001373static struct perf_event_context *
1374perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001375{
1376 struct perf_event_context *ctx;
1377
1378again:
1379 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001380 ctx = READ_ONCE(event->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001381 if (!refcount_inc_not_zero(&ctx->refcount)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001382 rcu_read_unlock();
1383 goto again;
1384 }
1385 rcu_read_unlock();
1386
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001387 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001388 if (event->ctx != ctx) {
1389 mutex_unlock(&ctx->mutex);
1390 put_ctx(ctx);
1391 goto again;
1392 }
1393
1394 return ctx;
1395}
1396
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001397static inline struct perf_event_context *
1398perf_event_ctx_lock(struct perf_event *event)
1399{
1400 return perf_event_ctx_lock_nested(event, 0);
1401}
1402
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001403static void perf_event_ctx_unlock(struct perf_event *event,
1404 struct perf_event_context *ctx)
1405{
1406 mutex_unlock(&ctx->mutex);
1407 put_ctx(ctx);
1408}
1409
1410/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001411 * This must be done under the ctx->lock, such as to serialize against
1412 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1413 * calling scheduler related locks and ctx->lock nests inside those.
1414 */
1415static __must_check struct perf_event_context *
1416unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001417{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001418 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1419
1420 lockdep_assert_held(&ctx->lock);
1421
1422 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001424 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001425
1426 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001427}
1428
Oleg Nesterov1d953112017-08-22 17:59:28 +02001429static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1430 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001431{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001432 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001433 /*
1434 * only top level events have the pid namespace they were created in
1435 */
1436 if (event->parent)
1437 event = event->parent;
1438
Oleg Nesterov1d953112017-08-22 17:59:28 +02001439 nr = __task_pid_nr_ns(p, type, event->ns);
1440 /* avoid -1 if it is idle thread or runs in another ns */
1441 if (!nr && !pid_alive(p))
1442 nr = -1;
1443 return nr;
1444}
1445
1446static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1447{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001448 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001449}
1450
1451static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1452{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001453 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001454}
1455
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001456/*
1457 * If we inherit events we want to return the parent event id
1458 * to userspace.
1459 */
1460static u64 primary_event_id(struct perf_event *event)
1461{
1462 u64 id = event->id;
1463
1464 if (event->parent)
1465 id = event->parent->id;
1466
1467 return id;
1468}
1469
1470/*
1471 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001472 *
Randy Dunlapc034f482021-02-25 17:21:10 -08001473 * This has to cope with the fact that until it is locked,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001474 * the context could get moved to another task.
1475 */
1476static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001477perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001478{
1479 struct perf_event_context *ctx;
1480
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001481retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001482 /*
1483 * One of the few rules of preemptible RCU is that one cannot do
1484 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001485 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001486 * rcu_read_unlock_special().
1487 *
1488 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001489 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001490 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001491 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001492 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001493 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 if (ctx) {
1495 /*
1496 * If this context is a clone of another, it might
1497 * get swapped for another underneath us by
1498 * perf_event_task_sched_out, though the
1499 * rcu_read_lock() protects us from any context
1500 * getting freed. Lock the context and check if it
1501 * got swapped before we could get the lock, and retry
1502 * if so. If we locked the right context, then it
1503 * can't get swapped on us any more.
1504 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001505 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001506 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001507 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001508 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001509 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001510 goto retry;
1511 }
1512
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001513 if (ctx->task == TASK_TOMBSTONE ||
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001514 !refcount_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001515 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001516 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001517 } else {
1518 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001519 }
1520 }
1521 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001522 if (!ctx)
1523 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001524 return ctx;
1525}
1526
1527/*
1528 * Get the context for a task and increment its pin_count so it
1529 * can't get swapped to another task. This also increments its
1530 * reference count so that the context can't get freed.
1531 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001532static struct perf_event_context *
1533perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001534{
1535 struct perf_event_context *ctx;
1536 unsigned long flags;
1537
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001538 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001539 if (ctx) {
1540 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001541 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001542 }
1543 return ctx;
1544}
1545
1546static void perf_unpin_context(struct perf_event_context *ctx)
1547{
1548 unsigned long flags;
1549
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001550 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001551 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001552 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001553}
1554
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001555/*
1556 * Update the record of the current time in a context.
1557 */
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001558static void __update_context_time(struct perf_event_context *ctx, bool adv)
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001559{
1560 u64 now = perf_clock();
1561
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001562 if (adv)
1563 ctx->time += now - ctx->timestamp;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001564 ctx->timestamp = now;
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001565
1566 /*
1567 * The above: time' = time + (now - timestamp), can be re-arranged
1568 * into: time` = now + (time - timestamp), which gives a single value
1569 * offset to compute future time without locks on.
1570 *
1571 * See perf_event_time_now(), which can be used from NMI context where
1572 * it's (obviously) not possible to acquire ctx->lock in order to read
1573 * both the above values in a consistent manner.
1574 */
1575 WRITE_ONCE(ctx->timeoffset, ctx->time - ctx->timestamp);
1576}
1577
1578static void update_context_time(struct perf_event_context *ctx)
1579{
1580 __update_context_time(ctx, true);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001581}
1582
Stephane Eranian41587552011-01-03 18:20:01 +02001583static u64 perf_event_time(struct perf_event *event)
1584{
1585 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001586
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001587 if (unlikely(!ctx))
1588 return 0;
1589
Stephane Eraniane5d13672011-02-14 11:20:01 +02001590 if (is_cgroup_event(event))
1591 return perf_cgroup_event_time(event);
1592
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01001593 return ctx->time;
1594}
1595
1596static u64 perf_event_time_now(struct perf_event *event, u64 now)
1597{
1598 struct perf_event_context *ctx = event->ctx;
1599
1600 if (unlikely(!ctx))
1601 return 0;
1602
1603 if (is_cgroup_event(event))
1604 return perf_cgroup_event_time_now(event, now);
1605
1606 if (!(__load_acquire(&ctx->is_active) & EVENT_TIME))
1607 return ctx->time;
1608
1609 now += READ_ONCE(ctx->timeoffset);
1610 return now;
Stephane Eranian41587552011-01-03 18:20:01 +02001611}
1612
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001613static enum event_type_t get_event_type(struct perf_event *event)
1614{
1615 struct perf_event_context *ctx = event->ctx;
1616 enum event_type_t event_type;
1617
1618 lockdep_assert_held(&ctx->lock);
1619
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001620 /*
1621 * It's 'group type', really, because if our group leader is
1622 * pinned, so are we.
1623 */
1624 if (event->group_leader != event)
1625 event = event->group_leader;
1626
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001627 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1628 if (!ctx->task)
1629 event_type |= EVENT_CPU;
1630
1631 return event_type;
1632}
1633
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001634/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001635 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001636 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001637static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001638{
1639 RB_CLEAR_NODE(&event->group_node);
1640 event->group_index = 0;
1641}
1642
1643/*
1644 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001645 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001646 */
1647static struct perf_event_groups *
1648get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001649{
1650 if (event->attr.pinned)
1651 return &ctx->pinned_groups;
1652 else
1653 return &ctx->flexible_groups;
1654}
1655
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001656/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001657 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001658 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001659static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001660{
1661 groups->tree = RB_ROOT;
1662 groups->index = 0;
1663}
1664
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001665static inline struct cgroup *event_cgroup(const struct perf_event *event)
1666{
1667 struct cgroup *cgroup = NULL;
1668
1669#ifdef CONFIG_CGROUP_PERF
1670 if (event->cgrp)
1671 cgroup = event->cgrp->css.cgroup;
1672#endif
1673
1674 return cgroup;
1675}
1676
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001677/*
1678 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001679 *
1680 * Implements complex key that first sorts by CPU and then by virtual index
1681 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001682 */
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001683static __always_inline int
1684perf_event_groups_cmp(const int left_cpu, const struct cgroup *left_cgroup,
1685 const u64 left_group_index, const struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001686{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001687 if (left_cpu < right->cpu)
1688 return -1;
1689 if (left_cpu > right->cpu)
1690 return 1;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001691
Ian Rogers95ed6c72020-02-13 23:51:33 -08001692#ifdef CONFIG_CGROUP_PERF
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001693 {
1694 const struct cgroup *right_cgroup = event_cgroup(right);
Ian Rogers95ed6c72020-02-13 23:51:33 -08001695
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001696 if (left_cgroup != right_cgroup) {
1697 if (!left_cgroup) {
1698 /*
1699 * Left has no cgroup but right does, no
1700 * cgroups come first.
1701 */
1702 return -1;
1703 }
1704 if (!right_cgroup) {
1705 /*
1706 * Right has no cgroup but left does, no
1707 * cgroups come first.
1708 */
1709 return 1;
1710 }
1711 /* Two dissimilar cgroups, order by id. */
1712 if (cgroup_id(left_cgroup) < cgroup_id(right_cgroup))
1713 return -1;
1714
1715 return 1;
1716 }
Ian Rogers95ed6c72020-02-13 23:51:33 -08001717 }
1718#endif
1719
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001720 if (left_group_index < right->group_index)
1721 return -1;
1722 if (left_group_index > right->group_index)
1723 return 1;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001724
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001725 return 0;
1726}
1727
1728#define __node_2_pe(node) \
1729 rb_entry((node), struct perf_event, group_node)
1730
1731static inline bool __group_less(struct rb_node *a, const struct rb_node *b)
1732{
1733 struct perf_event *e = __node_2_pe(a);
1734 return perf_event_groups_cmp(e->cpu, event_cgroup(e), e->group_index,
1735 __node_2_pe(b)) < 0;
1736}
1737
1738struct __group_key {
1739 int cpu;
1740 struct cgroup *cgroup;
1741};
1742
1743static inline int __group_cmp(const void *key, const struct rb_node *node)
1744{
1745 const struct __group_key *a = key;
1746 const struct perf_event *b = __node_2_pe(node);
1747
1748 /* partial/subtree match: @cpu, @cgroup; ignore: @group_index */
1749 return perf_event_groups_cmp(a->cpu, a->cgroup, b->group_index, b);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001750}
1751
1752/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001753 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1754 * key (see perf_event_groups_less). This places it last inside the CPU
1755 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001756 */
1757static void
1758perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001759 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001760{
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001761 event->group_index = ++groups->index;
1762
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001763 rb_add(&event->group_node, &groups->tree, __group_less);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001764}
1765
1766/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001767 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001768 */
1769static void
1770add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1771{
1772 struct perf_event_groups *groups;
1773
1774 groups = get_event_groups(event, ctx);
1775 perf_event_groups_insert(groups, event);
1776}
1777
1778/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001779 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001780 */
1781static void
1782perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001783 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001784{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001785 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1786 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001787
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001788 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001789 init_event_group(event);
1790}
1791
1792/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001793 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001794 */
1795static void
1796del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1797{
1798 struct perf_event_groups *groups;
1799
1800 groups = get_event_groups(event, ctx);
1801 perf_event_groups_delete(groups, event);
1802}
1803
1804/*
Ian Rogers95ed6c72020-02-13 23:51:33 -08001805 * Get the leftmost event in the cpu/cgroup subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001806 */
1807static struct perf_event *
Ian Rogers95ed6c72020-02-13 23:51:33 -08001808perf_event_groups_first(struct perf_event_groups *groups, int cpu,
1809 struct cgroup *cgrp)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001810{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001811 struct __group_key key = {
1812 .cpu = cpu,
1813 .cgroup = cgrp,
1814 };
1815 struct rb_node *node;
Ian Rogers95ed6c72020-02-13 23:51:33 -08001816
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001817 node = rb_find_first(&key, &groups->tree, __group_cmp);
1818 if (node)
1819 return __node_2_pe(node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001820
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001821 return NULL;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001822}
1823
1824/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001825 * Like rb_entry_next_safe() for the @cpu subtree.
1826 */
1827static struct perf_event *
1828perf_event_groups_next(struct perf_event *event)
1829{
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001830 struct __group_key key = {
1831 .cpu = event->cpu,
1832 .cgroup = event_cgroup(event),
1833 };
1834 struct rb_node *next;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001835
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001836 next = rb_next_match(&key, &event->group_node, __group_cmp);
1837 if (next)
1838 return __node_2_pe(next);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001839
Peter Zijlstraa3b89862020-04-29 17:05:15 +02001840 return NULL;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001841}
1842
1843/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001844 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001845 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001846#define perf_event_groups_for_each(event, groups) \
1847 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1848 typeof(*event), group_node); event; \
1849 event = rb_entry_safe(rb_next(&event->group_node), \
1850 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001851
1852/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001853 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001854 * Must be called with ctx->mutex and ctx->lock held.
1855 */
1856static void
1857list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1858{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001859 lockdep_assert_held(&ctx->lock);
1860
Peter Zijlstra8a495422010-05-27 15:47:49 +02001861 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1862 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001863
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001864 event->tstamp = perf_event_time(event);
1865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001867 * If we're a stand alone event or group leader, we go to the context
1868 * list, group events are kept attached to the group so that
1869 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001871 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001872 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001873 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001874 }
1875
1876 list_add_rcu(&event->event_entry, &ctx->event_list);
1877 ctx->nr_events++;
Rob Herring82ff0c02021-12-08 14:11:21 -06001878 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT)
1879 ctx->nr_user++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001880 if (event->attr.inherit_stat)
1881 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001882
Peter Zijlstra33238c52020-03-18 20:33:37 +01001883 if (event->state > PERF_EVENT_STATE_OFF)
1884 perf_cgroup_event_enable(event, ctx);
1885
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001886 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001887}
1888
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001889/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001890 * Initialize event state based on the perf_event_attr::disabled.
1891 */
1892static inline void perf_event__state_init(struct perf_event *event)
1893{
1894 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1895 PERF_EVENT_STATE_INACTIVE;
1896}
1897
Peter Zijlstraa7239682015-09-09 19:06:33 +02001898static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001899{
1900 int entry = sizeof(u64); /* value */
1901 int size = 0;
1902 int nr = 1;
1903
1904 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1905 size += sizeof(u64);
1906
1907 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1908 size += sizeof(u64);
1909
1910 if (event->attr.read_format & PERF_FORMAT_ID)
1911 entry += sizeof(u64);
1912
1913 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001914 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001915 size += sizeof(u64);
1916 }
1917
1918 size += entry * nr;
1919 event->read_size = size;
1920}
1921
Peter Zijlstraa7239682015-09-09 19:06:33 +02001922static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001923{
1924 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001925 u16 size = 0;
1926
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001927 if (sample_type & PERF_SAMPLE_IP)
1928 size += sizeof(data->ip);
1929
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001930 if (sample_type & PERF_SAMPLE_ADDR)
1931 size += sizeof(data->addr);
1932
1933 if (sample_type & PERF_SAMPLE_PERIOD)
1934 size += sizeof(data->period);
1935
Kan Liang2a6c6b72021-01-28 14:40:07 -08001936 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
1937 size += sizeof(data->weight.full);
Andi Kleenc3feedf2013-01-24 16:10:28 +01001938
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001939 if (sample_type & PERF_SAMPLE_READ)
1940 size += event->read_size;
1941
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001942 if (sample_type & PERF_SAMPLE_DATA_SRC)
1943 size += sizeof(data->data_src.val);
1944
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001945 if (sample_type & PERF_SAMPLE_TRANSACTION)
1946 size += sizeof(data->txn);
1947
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001948 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1949 size += sizeof(data->phys_addr);
1950
Namhyung Kim6546b192020-03-25 21:45:29 +09001951 if (sample_type & PERF_SAMPLE_CGROUP)
1952 size += sizeof(data->cgroup);
1953
Kan Liang8d97e712020-10-01 06:57:46 -07001954 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1955 size += sizeof(data->data_page_size);
1956
Stephane Eranian995f0882020-10-01 06:57:49 -07001957 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1958 size += sizeof(data->code_page_size);
1959
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001960 event->header_size = size;
1961}
1962
Peter Zijlstraa7239682015-09-09 19:06:33 +02001963/*
1964 * Called at perf_event creation and when events are attached/detached from a
1965 * group.
1966 */
1967static void perf_event__header_size(struct perf_event *event)
1968{
1969 __perf_event_read_size(event,
1970 event->group_leader->nr_siblings);
1971 __perf_event_header_size(event, event->attr.sample_type);
1972}
1973
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001974static void perf_event__id_header_size(struct perf_event *event)
1975{
1976 struct perf_sample_data *data;
1977 u64 sample_type = event->attr.sample_type;
1978 u16 size = 0;
1979
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001980 if (sample_type & PERF_SAMPLE_TID)
1981 size += sizeof(data->tid_entry);
1982
1983 if (sample_type & PERF_SAMPLE_TIME)
1984 size += sizeof(data->time);
1985
Adrian Hunterff3d5272013-08-27 11:23:07 +03001986 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1987 size += sizeof(data->id);
1988
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001989 if (sample_type & PERF_SAMPLE_ID)
1990 size += sizeof(data->id);
1991
1992 if (sample_type & PERF_SAMPLE_STREAM_ID)
1993 size += sizeof(data->stream_id);
1994
1995 if (sample_type & PERF_SAMPLE_CPU)
1996 size += sizeof(data->cpu_entry);
1997
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001998 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001999}
2000
Peter Zijlstraa7239682015-09-09 19:06:33 +02002001static bool perf_event_validate_size(struct perf_event *event)
2002{
2003 /*
2004 * The values computed here will be over-written when we actually
2005 * attach the event.
2006 */
2007 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
2008 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
2009 perf_event__id_header_size(event);
2010
2011 /*
2012 * Sum the lot; should not exceed the 64k limit we have on records.
2013 * Conservative limit to allow for callchains and other variable fields.
2014 */
2015 if (event->read_size + event->header_size +
2016 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
2017 return false;
2018
2019 return true;
2020}
2021
Peter Zijlstra8a495422010-05-27 15:47:49 +02002022static void perf_group_attach(struct perf_event *event)
2023{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002024 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002025
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002026 lockdep_assert_held(&event->ctx->lock);
2027
Peter Zijlstra74c33372010-10-15 11:40:29 +02002028 /*
2029 * We can have double attach due to group movement in perf_event_open.
2030 */
2031 if (event->attach_state & PERF_ATTACH_GROUP)
2032 return;
2033
Peter Zijlstra8a495422010-05-27 15:47:49 +02002034 event->attach_state |= PERF_ATTACH_GROUP;
2035
2036 if (group_leader == event)
2037 return;
2038
Peter Zijlstra652884f2015-01-23 11:20:10 +01002039 WARN_ON_ONCE(group_leader->ctx != event->ctx);
2040
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002041 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002042
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002043 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002044 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002045
2046 perf_event__header_size(group_leader);
2047
Peter Zijlstraedb39592018-03-15 17:36:56 +01002048 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002049 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002050}
2051
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002052/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002053 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002054 * Must be called with ctx->mutex and ctx->lock held.
2055 */
2056static void
2057list_del_event(struct perf_event *event, struct perf_event_context *ctx)
2058{
Peter Zijlstra652884f2015-01-23 11:20:10 +01002059 WARN_ON_ONCE(event->ctx != ctx);
2060 lockdep_assert_held(&ctx->lock);
2061
Peter Zijlstra8a495422010-05-27 15:47:49 +02002062 /*
2063 * We can have double detach due to exit/hot-unplug + close.
2064 */
2065 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002066 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002067
2068 event->attach_state &= ~PERF_ATTACH_CONTEXT;
2069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002070 ctx->nr_events--;
Rob Herring82ff0c02021-12-08 14:11:21 -06002071 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT)
2072 ctx->nr_user--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002073 if (event->attr.inherit_stat)
2074 ctx->nr_stat--;
2075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002076 list_del_rcu(&event->event_entry);
2077
Peter Zijlstra8a495422010-05-27 15:47:49 +02002078 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002079 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002080
Stephane Eranianb2e74a22009-11-26 09:24:30 -08002081 /*
2082 * If event was in error state, then keep it
2083 * that way, otherwise bogus counts will be
2084 * returned on read(). The only way to get out
2085 * of error state is by explicit re-enabling
2086 * of the event
2087 */
Peter Zijlstra33238c52020-03-18 20:33:37 +01002088 if (event->state > PERF_EVENT_STATE_OFF) {
2089 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002090 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002091 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002092
2093 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002094}
2095
Alexander Shishkinab437622019-08-06 11:46:00 +03002096static int
2097perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
2098{
2099 if (!has_aux(aux_event))
2100 return 0;
2101
2102 if (!event->pmu->aux_output_match)
2103 return 0;
2104
2105 return event->pmu->aux_output_match(aux_event);
2106}
2107
2108static void put_event(struct perf_event *event);
2109static void event_sched_out(struct perf_event *event,
2110 struct perf_cpu_context *cpuctx,
2111 struct perf_event_context *ctx);
2112
2113static void perf_put_aux_event(struct perf_event *event)
2114{
2115 struct perf_event_context *ctx = event->ctx;
2116 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2117 struct perf_event *iter;
2118
2119 /*
2120 * If event uses aux_event tear down the link
2121 */
2122 if (event->aux_event) {
2123 iter = event->aux_event;
2124 event->aux_event = NULL;
2125 put_event(iter);
2126 return;
2127 }
2128
2129 /*
2130 * If the event is an aux_event, tear down all links to
2131 * it from other events.
2132 */
2133 for_each_sibling_event(iter, event->group_leader) {
2134 if (iter->aux_event != event)
2135 continue;
2136
2137 iter->aux_event = NULL;
2138 put_event(event);
2139
2140 /*
2141 * If it's ACTIVE, schedule it out and put it into ERROR
2142 * state so that we don't try to schedule it again. Note
2143 * that perf_event_enable() will clear the ERROR status.
2144 */
2145 event_sched_out(iter, cpuctx, ctx);
2146 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2147 }
2148}
2149
Alexander Shishkina4faf002019-10-25 17:08:33 +03002150static bool perf_need_aux_event(struct perf_event *event)
2151{
2152 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
2153}
2154
Alexander Shishkinab437622019-08-06 11:46:00 +03002155static int perf_get_aux_event(struct perf_event *event,
2156 struct perf_event *group_leader)
2157{
2158 /*
2159 * Our group leader must be an aux event if we want to be
2160 * an aux_output. This way, the aux event will precede its
2161 * aux_output events in the group, and therefore will always
2162 * schedule first.
2163 */
2164 if (!group_leader)
2165 return 0;
2166
Alexander Shishkina4faf002019-10-25 17:08:33 +03002167 /*
2168 * aux_output and aux_sample_size are mutually exclusive.
2169 */
2170 if (event->attr.aux_output && event->attr.aux_sample_size)
2171 return 0;
2172
2173 if (event->attr.aux_output &&
2174 !perf_aux_output_match(event, group_leader))
2175 return 0;
2176
2177 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
Alexander Shishkinab437622019-08-06 11:46:00 +03002178 return 0;
2179
2180 if (!atomic_long_inc_not_zero(&group_leader->refcount))
2181 return 0;
2182
2183 /*
2184 * Link aux_outputs to their aux event; this is undone in
2185 * perf_group_detach() by perf_put_aux_event(). When the
2186 * group in torn down, the aux_output events loose their
2187 * link to the aux_event and can't schedule any more.
2188 */
2189 event->aux_event = group_leader;
2190
2191 return 1;
2192}
2193
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002194static inline struct list_head *get_event_list(struct perf_event *event)
2195{
2196 struct perf_event_context *ctx = event->ctx;
2197 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
2198}
2199
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002200/*
2201 * Events that have PERF_EV_CAP_SIBLING require being part of a group and
2202 * cannot exist on their own, schedule them out and move them into the ERROR
2203 * state. Also see _perf_event_enable(), it will not be able to recover
2204 * this ERROR state.
2205 */
2206static inline void perf_remove_sibling_event(struct perf_event *event)
2207{
2208 struct perf_event_context *ctx = event->ctx;
2209 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2210
2211 event_sched_out(event, cpuctx, ctx);
2212 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2213}
2214
Peter Zijlstra8a495422010-05-27 15:47:49 +02002215static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02002216{
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002217 struct perf_event *leader = event->group_leader;
Peter Zijlstra050735b2010-05-11 11:51:53 +02002218 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01002219 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002220
Peter Zijlstra66681282017-11-13 14:28:38 +01002221 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002222
Peter Zijlstra8a495422010-05-27 15:47:49 +02002223 /*
2224 * We can have double detach due to exit/hot-unplug + close.
2225 */
2226 if (!(event->attach_state & PERF_ATTACH_GROUP))
2227 return;
2228
2229 event->attach_state &= ~PERF_ATTACH_GROUP;
2230
Alexander Shishkinab437622019-08-06 11:46:00 +03002231 perf_put_aux_event(event);
2232
Peter Zijlstra8a495422010-05-27 15:47:49 +02002233 /*
2234 * If this is a sibling, remove it from its group.
2235 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002236 if (leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002237 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002238 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002239 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002240 }
2241
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002242 /*
2243 * If this was a group event with sibling events then
2244 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002245 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002246 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002247 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002248
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002249 if (sibling->event_caps & PERF_EV_CAP_SIBLING)
2250 perf_remove_sibling_event(sibling);
2251
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002252 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002253 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002254
2255 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002256 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002257
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002258 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002259 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002260
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002261 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2262 list_add_tail(&sibling->active_list, get_event_list(sibling));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002263 }
2264
Peter Zijlstra652884f2015-01-23 11:20:10 +01002265 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002266 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002267
2268out:
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002269 for_each_sibling_event(tmp, leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002270 perf_event__header_size(tmp);
Kan Liang9f0c4fa2020-07-23 10:11:10 -07002271
2272 perf_event__header_size(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002273}
2274
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002275static void sync_child_event(struct perf_event *child_event);
2276
2277static void perf_child_detach(struct perf_event *event)
2278{
2279 struct perf_event *parent_event = event->parent;
2280
2281 if (!(event->attach_state & PERF_ATTACH_CHILD))
2282 return;
2283
2284 event->attach_state &= ~PERF_ATTACH_CHILD;
2285
2286 if (WARN_ON_ONCE(!parent_event))
2287 return;
2288
2289 lockdep_assert_held(&parent_event->child_mutex);
2290
2291 sync_child_event(event);
2292 list_del_init(&event->child_list);
2293}
2294
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002295static bool is_orphaned_event(struct perf_event *event)
2296{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002297 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002298}
2299
Mark Rutland2c81a642016-06-14 16:10:41 +01002300static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002301{
2302 struct pmu *pmu = event->pmu;
2303 return pmu->filter_match ? pmu->filter_match(event) : 1;
2304}
2305
Mark Rutland2c81a642016-06-14 16:10:41 +01002306/*
2307 * Check whether we should attempt to schedule an event group based on
2308 * PMU-specific filtering. An event group can consist of HW and SW events,
2309 * potentially with a SW leader, so we must check all the filters, to
2310 * determine whether a group is schedulable:
2311 */
2312static inline int pmu_filter_match(struct perf_event *event)
2313{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002314 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002315
2316 if (!__pmu_filter_match(event))
2317 return 0;
2318
Peter Zijlstraedb39592018-03-15 17:36:56 +01002319 for_each_sibling_event(sibling, event) {
2320 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002321 return 0;
2322 }
2323
2324 return 1;
2325}
2326
Stephane Eranianfa66f072010-08-26 16:40:01 +02002327static inline int
2328event_filter_match(struct perf_event *event)
2329{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002330 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2331 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002332}
2333
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002334static void
2335event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002336 struct perf_cpu_context *cpuctx,
2337 struct perf_event_context *ctx)
2338{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002339 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002340
2341 WARN_ON_ONCE(event->ctx != ctx);
2342 lockdep_assert_held(&ctx->lock);
2343
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002344 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002345 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002346
Peter Zijlstra66681282017-11-13 14:28:38 +01002347 /*
2348 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2349 * we can schedule events _OUT_ individually through things like
2350 * __perf_remove_from_context().
2351 */
2352 list_del_init(&event->active_list);
2353
Alexander Shishkin44377272013-12-16 14:17:36 +02002354 perf_pmu_disable(event->pmu);
2355
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002356 event->pmu->del(event, 0);
2357 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002358
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002359 if (READ_ONCE(event->pending_disable) >= 0) {
2360 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002361 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002362 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002363 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002364 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002365
2366 if (!is_software_event(event))
2367 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002368 if (!--ctx->nr_active)
2369 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002370 if (event->attr.freq && event->attr.sample_freq)
2371 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372 if (event->attr.exclusive || !cpuctx->active_oncpu)
2373 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002374
2375 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002376}
2377
2378static void
2379group_sched_out(struct perf_event *group_event,
2380 struct perf_cpu_context *cpuctx,
2381 struct perf_event_context *ctx)
2382{
2383 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002384
2385 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2386 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002387
Mark Rutland3f005e72016-07-26 18:12:21 +01002388 perf_pmu_disable(ctx->pmu);
2389
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002390 event_sched_out(group_event, cpuctx, ctx);
2391
2392 /*
2393 * Schedule out siblings (if any):
2394 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002395 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002396 event_sched_out(event, cpuctx, ctx);
2397
Mark Rutland3f005e72016-07-26 18:12:21 +01002398 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002399}
2400
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002401#define DETACH_GROUP 0x01UL
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002402#define DETACH_CHILD 0x02UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404/*
2405 * Cross CPU call to remove a performance event
2406 *
2407 * We disable the event on the hardware level first. After that we
2408 * remove it from the context list.
2409 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002410static void
2411__perf_remove_from_context(struct perf_event *event,
2412 struct perf_cpu_context *cpuctx,
2413 struct perf_event_context *ctx,
2414 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002415{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002416 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002417
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002418 if (ctx->is_active & EVENT_TIME) {
2419 update_context_time(ctx);
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01002420 update_cgrp_time_from_cpuctx(cpuctx, false);
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002421 }
2422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002423 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002424 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002425 perf_group_detach(event);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002426 if (flags & DETACH_CHILD)
2427 perf_child_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002428 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002429
Peter Zijlstra39a43642016-01-11 12:46:35 +01002430 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01002431 if (ctx == &cpuctx->ctx)
2432 update_cgrp_time_from_cpuctx(cpuctx, true);
2433
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002434 ctx->is_active = 0;
Peter Zijlstra90c91df2020-03-05 13:38:51 +01002435 ctx->rotate_necessary = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002436 if (ctx->task) {
2437 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2438 cpuctx->task_ctx = NULL;
2439 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002440 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441}
2442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443/*
2444 * Remove the event from a task's (or a CPU's) list of events.
2445 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002446 * If event->ctx is a cloned context, callers must make sure that
2447 * every task struct that event->ctx->task could possibly point to
2448 * remains valid. This is OK when called from perf_release since
2449 * that only calls us on the top-level context, which can't be a clone.
2450 * When called from perf_event_exit_task, it's OK because the
2451 * context has been detached from its task.
2452 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002453static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002454{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002455 struct perf_event_context *ctx = event->ctx;
2456
2457 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002458
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002459 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002460 * Because of perf_event_exit_task(), perf_remove_from_context() ought
2461 * to work in the face of TASK_TOMBSTONE, unlike every other
2462 * event_function_call() user.
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002463 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002464 raw_spin_lock_irq(&ctx->lock);
Namhyung Kimc5de60c2022-01-24 11:58:08 -08002465 /*
2466 * Cgroup events are per-cpu events, and must IPI because of
2467 * cgrp_cpuctx_list.
2468 */
2469 if (!ctx->is_active && !is_cgroup_event(event)) {
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002470 __perf_remove_from_context(event, __get_cpu_context(ctx),
2471 ctx, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002472 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002473 return;
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002474 }
Peter Zijlstraef54c1a2021-04-08 12:35:56 +02002475 raw_spin_unlock_irq(&ctx->lock);
2476
2477 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478}
2479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002481 * Cross CPU call to disable a performance event
2482 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002483static void __perf_event_disable(struct perf_event *event,
2484 struct perf_cpu_context *cpuctx,
2485 struct perf_event_context *ctx,
2486 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002488 if (event->state < PERF_EVENT_STATE_INACTIVE)
2489 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002490
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002491 if (ctx->is_active & EVENT_TIME) {
2492 update_context_time(ctx);
2493 update_cgrp_time_from_event(event);
2494 }
2495
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002496 if (event == event->group_leader)
2497 group_sched_out(event, cpuctx, ctx);
2498 else
2499 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002500
2501 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra33238c52020-03-18 20:33:37 +01002502 perf_cgroup_event_disable(event, ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002503}
2504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002505/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002506 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507 *
2508 * If event->ctx is a cloned context, callers must make sure that
2509 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002510 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002511 * perf_event_for_each_child or perf_event_for_each because they
2512 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002513 * goes to exit will block in perf_event_exit_event().
2514 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515 * When called from perf_pending_event it's OK because event->ctx
2516 * is the current context on this CPU and preemption is disabled,
2517 * hence we can't get into perf_event_task_sched_out for this context.
2518 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002519static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002520{
2521 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002522
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002523 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002524 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002525 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002526 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002527 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002528 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002529
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002530 event_function_call(event, __perf_event_disable, NULL);
2531}
2532
2533void perf_event_disable_local(struct perf_event *event)
2534{
2535 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002536}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002537
2538/*
2539 * Strictly speaking kernel users cannot create groups and therefore this
2540 * interface does not need the perf_event_ctx_lock() magic.
2541 */
2542void perf_event_disable(struct perf_event *event)
2543{
2544 struct perf_event_context *ctx;
2545
2546 ctx = perf_event_ctx_lock(event);
2547 _perf_event_disable(event);
2548 perf_event_ctx_unlock(event, ctx);
2549}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002550EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002551
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002552void perf_event_disable_inatomic(struct perf_event *event)
2553{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002554 WRITE_ONCE(event->pending_disable, smp_processor_id());
2555 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002556 irq_work_queue(&event->pending);
2557}
2558
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002559#define MAX_INTERRUPTS (~0ULL)
2560
2561static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002562static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002563
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002564static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002565event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002566 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002567 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568{
Alexander Shishkin44377272013-12-16 14:17:36 +02002569 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002570
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002571 WARN_ON_ONCE(event->ctx != ctx);
2572
Peter Zijlstra63342412014-05-05 11:49:16 +02002573 lockdep_assert_held(&ctx->lock);
2574
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575 if (event->state <= PERF_EVENT_STATE_OFF)
2576 return 0;
2577
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002578 WRITE_ONCE(event->oncpu, smp_processor_id());
2579 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002580 * Order event::oncpu write to happen before the ACTIVE state is
2581 * visible. This allows perf_event_{stop,read}() to observe the correct
2582 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002583 */
2584 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002585 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002586
2587 /*
2588 * Unthrottle events, since we scheduled we might have missed several
2589 * ticks already, also for a heavily scheduling task there is little
2590 * guarantee it'll get a tick in a timely manner.
2591 */
2592 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2593 perf_log_throttle(event, 1);
2594 event->hw.interrupts = 0;
2595 }
2596
Alexander Shishkin44377272013-12-16 14:17:36 +02002597 perf_pmu_disable(event->pmu);
2598
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002599 perf_log_itrace_start(event);
2600
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002601 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002602 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002603 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002604 ret = -EAGAIN;
2605 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002606 }
2607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002608 if (!is_software_event(event))
2609 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002610 if (!ctx->nr_active++)
2611 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002612 if (event->attr.freq && event->attr.sample_freq)
2613 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002614
2615 if (event->attr.exclusive)
2616 cpuctx->exclusive = 1;
2617
Alexander Shishkin44377272013-12-16 14:17:36 +02002618out:
2619 perf_pmu_enable(event->pmu);
2620
2621 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622}
2623
2624static int
2625group_sched_in(struct perf_event *group_event,
2626 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002627 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002628{
Lin Ming6bde9b62010-04-23 13:56:00 +08002629 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002630 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002631
2632 if (group_event->state == PERF_EVENT_STATE_OFF)
2633 return 0;
2634
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002635 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002636
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002637 if (event_sched_in(group_event, cpuctx, ctx))
2638 goto error;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002639
2640 /*
2641 * Schedule in siblings as one group (if any):
2642 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002643 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002644 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002645 partial_group = event;
2646 goto group_error;
2647 }
2648 }
2649
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002650 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002651 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002652
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002653group_error:
2654 /*
2655 * Groups can be scheduled in as one unit only, so undo any
2656 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002657 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002658 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002659 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002661 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002662
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002663 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002664 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002665 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002666
Peter Zijlstra251ff2d2020-10-29 16:29:15 +01002667error:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002668 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002669 return -EAGAIN;
2670}
2671
2672/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002673 * Work out whether we can put this event group on the CPU now.
2674 */
2675static int group_can_go_on(struct perf_event *event,
2676 struct perf_cpu_context *cpuctx,
2677 int can_add_hw)
2678{
2679 /*
2680 * Groups consisting entirely of software events can always go on.
2681 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002682 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002683 return 1;
2684 /*
2685 * If an exclusive group is already on, no other hardware
2686 * events can go on.
2687 */
2688 if (cpuctx->exclusive)
2689 return 0;
2690 /*
2691 * If this group is exclusive and there are already
2692 * events on the CPU, it can't go on.
2693 */
Peter Zijlstra1908dc92020-10-29 16:32:22 +01002694 if (event->attr.exclusive && !list_empty(get_event_list(event)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002695 return 0;
2696 /*
2697 * Otherwise, try to add it if all previous groups were able
2698 * to go on.
2699 */
2700 return can_add_hw;
2701}
2702
2703static void add_event_to_ctx(struct perf_event *event,
2704 struct perf_event_context *ctx)
2705{
2706 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002707 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002708}
2709
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002710static void ctx_sched_out(struct perf_event_context *ctx,
2711 struct perf_cpu_context *cpuctx,
2712 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002713static void
2714ctx_sched_in(struct perf_event_context *ctx,
2715 struct perf_cpu_context *cpuctx,
2716 enum event_type_t event_type,
2717 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002718
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002719static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002720 struct perf_event_context *ctx,
2721 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002722{
2723 if (!cpuctx->task_ctx)
2724 return;
2725
2726 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2727 return;
2728
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002729 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002730}
2731
Peter Zijlstradce58552011-04-09 21:17:46 +02002732static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2733 struct perf_event_context *ctx,
2734 struct task_struct *task)
2735{
2736 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2737 if (ctx)
2738 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2739 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2740 if (ctx)
2741 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2742}
2743
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002744/*
2745 * We want to maintain the following priority of scheduling:
2746 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2747 * - task pinned (EVENT_PINNED)
2748 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2749 * - task flexible (EVENT_FLEXIBLE).
2750 *
2751 * In order to avoid unscheduling and scheduling back in everything every
2752 * time an event is added, only do it for the groups of equal priority and
2753 * below.
2754 *
2755 * This can be called after a batch operation on task events, in which case
2756 * event_type is a bit mask of the types of events involved. For CPU events,
2757 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2758 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002759static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002760 struct perf_event_context *task_ctx,
2761 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002762{
Song Liubd903af2018-03-05 21:55:04 -08002763 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002764 bool cpu_event = !!(event_type & EVENT_CPU);
2765
2766 /*
2767 * If pinned groups are involved, flexible groups also need to be
2768 * scheduled out.
2769 */
2770 if (event_type & EVENT_PINNED)
2771 event_type |= EVENT_FLEXIBLE;
2772
Song Liubd903af2018-03-05 21:55:04 -08002773 ctx_event_type = event_type & EVENT_ALL;
2774
Peter Zijlstra3e349502016-01-08 10:01:18 +01002775 perf_pmu_disable(cpuctx->ctx.pmu);
2776 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002777 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2778
2779 /*
2780 * Decide which cpu ctx groups to schedule out based on the types
2781 * of events that caused rescheduling:
2782 * - EVENT_CPU: schedule out corresponding groups;
2783 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2784 * - otherwise, do nothing more.
2785 */
2786 if (cpu_event)
2787 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2788 else if (ctx_event_type & EVENT_PINNED)
2789 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2790
Peter Zijlstra3e349502016-01-08 10:01:18 +01002791 perf_event_sched_in(cpuctx, task_ctx, current);
2792 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002793}
2794
Stephane Eranianc68d2242019-04-08 10:32:51 -07002795void perf_pmu_resched(struct pmu *pmu)
2796{
2797 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2798 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2799
2800 perf_ctx_lock(cpuctx, task_ctx);
2801 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2802 perf_ctx_unlock(cpuctx, task_ctx);
2803}
2804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002805/*
2806 * Cross CPU call to install and enable a performance event
2807 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002808 * Very similar to remote_function() + event_function() but cannot assume that
2809 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002810 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002811static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002812{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002813 struct perf_event *event = info;
2814 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002815 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002816 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002817 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002818 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002819
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002820 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002821 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002822 raw_spin_lock(&ctx->lock);
2823 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002824
Peter Zijlstra63cae122016-12-09 14:59:00 +01002825 reprogram = (ctx->task == current);
2826
2827 /*
2828 * If the task is running, it must be running on this CPU,
2829 * otherwise we cannot reprogram things.
2830 *
2831 * If its not running, we don't care, ctx->lock will
2832 * serialize against it becoming runnable.
2833 */
2834 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002835 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002836 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002837 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838
Peter Zijlstra63cae122016-12-09 14:59:00 +01002839 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002840 } else if (task_ctx) {
2841 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002842 }
2843
leilei.lin33801b92018-03-06 17:36:37 +08002844#ifdef CONFIG_CGROUP_PERF
Peter Zijlstra33238c52020-03-18 20:33:37 +01002845 if (event->state > PERF_EVENT_STATE_OFF && is_cgroup_event(event)) {
leilei.lin33801b92018-03-06 17:36:37 +08002846 /*
2847 * If the current cgroup doesn't match the event's
2848 * cgroup, we should not try to schedule it.
2849 */
2850 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2851 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2852 event->cgrp->css.cgroup);
2853 }
2854#endif
2855
Peter Zijlstra63cae122016-12-09 14:59:00 +01002856 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002857 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2858 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002859 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002860 } else {
2861 add_event_to_ctx(event, ctx);
2862 }
2863
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002864unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002865 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002866
Peter Zijlstraa0963092016-02-24 18:45:50 +01002867 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868}
2869
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002870static bool exclusive_event_installable(struct perf_event *event,
2871 struct perf_event_context *ctx);
2872
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002873/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002874 * Attach a performance event to a context.
2875 *
2876 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002877 */
2878static void
2879perf_install_in_context(struct perf_event_context *ctx,
2880 struct perf_event *event,
2881 int cpu)
2882{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002883 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002884
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002885 lockdep_assert_held(&ctx->mutex);
2886
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002887 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2888
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002889 if (event->cpu != -1)
2890 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002891
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002892 /*
2893 * Ensures that if we can observe event->ctx, both the event and ctx
2894 * will be 'complete'. See perf_iterate_sb_cpu().
2895 */
2896 smp_store_release(&event->ctx, ctx);
2897
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002898 /*
2899 * perf_event_attr::disabled events will not run and can be initialized
2900 * without IPI. Except when this is the first event for the context, in
2901 * that case we need the magic of the IPI to set ctx->is_active.
Namhyung Kimc5de60c2022-01-24 11:58:08 -08002902 * Similarly, cgroup events for the context also needs the IPI to
2903 * manipulate the cgrp_cpuctx_list.
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002904 *
2905 * The IOC_ENABLE that is sure to follow the creation of a disabled
2906 * event will issue the IPI and reprogram the hardware.
2907 */
Namhyung Kimc5de60c2022-01-24 11:58:08 -08002908 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF &&
2909 ctx->nr_events && !is_cgroup_event(event)) {
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002910 raw_spin_lock_irq(&ctx->lock);
2911 if (ctx->task == TASK_TOMBSTONE) {
2912 raw_spin_unlock_irq(&ctx->lock);
2913 return;
2914 }
2915 add_event_to_ctx(event, ctx);
2916 raw_spin_unlock_irq(&ctx->lock);
2917 return;
2918 }
2919
Peter Zijlstraa0963092016-02-24 18:45:50 +01002920 if (!task) {
2921 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002922 return;
2923 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002924
Peter Zijlstraa0963092016-02-24 18:45:50 +01002925 /*
2926 * Should not happen, we validate the ctx is still alive before calling.
2927 */
2928 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2929 return;
2930
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002931 /*
2932 * Installing events is tricky because we cannot rely on ctx->is_active
2933 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002934 *
2935 * Instead we use task_curr(), which tells us if the task is running.
2936 * However, since we use task_curr() outside of rq::lock, we can race
2937 * against the actual state. This means the result can be wrong.
2938 *
2939 * If we get a false positive, we retry, this is harmless.
2940 *
2941 * If we get a false negative, things are complicated. If we are after
2942 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2943 * value must be correct. If we're before, it doesn't matter since
2944 * perf_event_context_sched_in() will program the counter.
2945 *
2946 * However, this hinges on the remote context switch having observed
2947 * our task->perf_event_ctxp[] store, such that it will in fact take
2948 * ctx::lock in perf_event_context_sched_in().
2949 *
2950 * We do this by task_function_call(), if the IPI fails to hit the task
2951 * we know any future context switch of task must see the
2952 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002953 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002954
Peter Zijlstraa0963092016-02-24 18:45:50 +01002955 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002956 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2957 * task_cpu() load, such that if the IPI then does not find the task
2958 * running, a future context switch of that task must observe the
2959 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002960 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002961 smp_mb();
2962again:
2963 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002964 return;
2965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002966 raw_spin_lock_irq(&ctx->lock);
2967 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002968 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2969 /*
2970 * Cannot happen because we already checked above (which also
2971 * cannot happen), and we hold ctx->mutex, which serializes us
2972 * against perf_event_exit_task_context().
2973 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002974 raw_spin_unlock_irq(&ctx->lock);
2975 return;
2976 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002977 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002978 * If the task is not running, ctx->lock will avoid it becoming so,
2979 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002980 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002981 if (task_curr(task)) {
2982 raw_spin_unlock_irq(&ctx->lock);
2983 goto again;
2984 }
2985 add_event_to_ctx(event, ctx);
2986 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002987}
2988
2989/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002990 * Cross CPU call to enable a performance event
2991 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002992static void __perf_event_enable(struct perf_event *event,
2993 struct perf_cpu_context *cpuctx,
2994 struct perf_event_context *ctx,
2995 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002996{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002997 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002998 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002999
Peter Zijlstra6e801e012016-01-26 12:17:08 +01003000 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
3001 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003002 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01003004 if (ctx->is_active)
3005 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
3006
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003007 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Peter Zijlstra33238c52020-03-18 20:33:37 +01003008 perf_cgroup_event_enable(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003009
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003010 if (!ctx->is_active)
3011 return;
3012
Stephane Eraniane5d13672011-02-14 11:20:01 +02003013 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01003014 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003015 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003016 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01003017
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003018 /*
3019 * If the event is in a group and isn't the group leader,
3020 * then don't put it on unless the group is on.
3021 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01003022 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
3023 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003024 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01003025 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003026
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003027 task_ctx = cpuctx->task_ctx;
3028 if (ctx->task)
3029 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003031 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01003032}
3033
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003034/*
Tobias Tefke788faab2018-07-09 12:57:15 +02003035 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036 *
3037 * If event->ctx is a cloned context, callers must make sure that
3038 * every task struct that event->ctx->task could possibly point to
3039 * remains valid. This condition is satisfied when called through
3040 * perf_event_for_each_child or perf_event_for_each as described
3041 * for perf_event_disable.
3042 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003043static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044{
3045 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003046
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003047 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01003048 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
3049 event->state < PERF_EVENT_STATE_ERROR) {
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003050out:
Peter Zijlstra7b648012015-12-03 18:35:21 +01003051 raw_spin_unlock_irq(&ctx->lock);
3052 return;
3053 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003054
3055 /*
3056 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01003057 *
3058 * That way, if we see the event in error state below, we know that it
3059 * has gone back into error state, as distinct from the task having
3060 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061 */
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003062 if (event->state == PERF_EVENT_STATE_ERROR) {
3063 /*
3064 * Detached SIBLING events cannot leave ERROR state.
3065 */
3066 if (event->event_caps & PERF_EV_CAP_SIBLING &&
3067 event->group_leader == event)
3068 goto out;
3069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003070 event->state = PERF_EVENT_STATE_OFF;
Kan Liang9f0c4fa2020-07-23 10:11:10 -07003071 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003072 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003073
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01003074 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003075}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003076
3077/*
3078 * See perf_event_disable();
3079 */
3080void perf_event_enable(struct perf_event *event)
3081{
3082 struct perf_event_context *ctx;
3083
3084 ctx = perf_event_ctx_lock(event);
3085 _perf_event_enable(event);
3086 perf_event_ctx_unlock(event, ctx);
3087}
Robert Richterdcfce4a2011-10-11 17:11:08 +02003088EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003089
Alexander Shishkin375637b2016-04-27 18:44:46 +03003090struct stop_event_data {
3091 struct perf_event *event;
3092 unsigned int restart;
3093};
3094
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003095static int __perf_event_stop(void *info)
3096{
Alexander Shishkin375637b2016-04-27 18:44:46 +03003097 struct stop_event_data *sd = info;
3098 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003099
Alexander Shishkin375637b2016-04-27 18:44:46 +03003100 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003101 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3102 return 0;
3103
3104 /* matches smp_wmb() in event_sched_in() */
3105 smp_rmb();
3106
3107 /*
3108 * There is a window with interrupts enabled before we get here,
3109 * so we need to check again lest we try to stop another CPU's event.
3110 */
3111 if (READ_ONCE(event->oncpu) != smp_processor_id())
3112 return -EAGAIN;
3113
3114 event->pmu->stop(event, PERF_EF_UPDATE);
3115
Alexander Shishkin375637b2016-04-27 18:44:46 +03003116 /*
3117 * May race with the actual stop (through perf_pmu_output_stop()),
3118 * but it is only used for events with AUX ring buffer, and such
3119 * events will refuse to restart because of rb::aux_mmap_count==0,
3120 * see comments in perf_aux_output_begin().
3121 *
Tobias Tefke788faab2018-07-09 12:57:15 +02003122 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03003123 * while restarting.
3124 */
3125 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01003126 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03003127
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003128 return 0;
3129}
3130
Alexander Shishkin767ae082016-09-06 16:23:49 +03003131static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03003132{
3133 struct stop_event_data sd = {
3134 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03003135 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03003136 };
3137 int ret = 0;
3138
3139 do {
3140 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3141 return 0;
3142
3143 /* matches smp_wmb() in event_sched_in() */
3144 smp_rmb();
3145
3146 /*
3147 * We only want to restart ACTIVE events, so if the event goes
3148 * inactive here (event->oncpu==-1), there's nothing more to do;
3149 * fall through with ret==-ENXIO.
3150 */
3151 ret = cpu_function_call(READ_ONCE(event->oncpu),
3152 __perf_event_stop, &sd);
3153 } while (ret == -EAGAIN);
3154
3155 return ret;
3156}
3157
3158/*
3159 * In order to contain the amount of racy and tricky in the address filter
3160 * configuration management, it is a two part process:
3161 *
3162 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
3163 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02003164 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03003165 * (p2) when an event is scheduled in (pmu::add), it calls
3166 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
3167 * if the generation has changed since the previous call.
3168 *
3169 * If (p1) happens while the event is active, we restart it to force (p2).
3170 *
3171 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
3172 * pre-existing mappings, called once when new filters arrive via SET_FILTER
3173 * ioctl;
3174 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003175 * registered mapping, called for every new mmap(), with mm::mmap_lock down
Alexander Shishkin375637b2016-04-27 18:44:46 +03003176 * for reading;
3177 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
3178 * of exec.
3179 */
3180void perf_event_addr_filters_sync(struct perf_event *event)
3181{
3182 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
3183
3184 if (!has_addr_filter(event))
3185 return;
3186
3187 raw_spin_lock(&ifh->lock);
3188 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
3189 event->pmu->addr_filters_sync(event);
3190 event->hw.addr_filters_gen = event->addr_filters_gen;
3191 }
3192 raw_spin_unlock(&ifh->lock);
3193}
3194EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
3195
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003196static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003197{
3198 /*
3199 * not supported on inherited events
3200 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01003201 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003202 return -EINVAL;
3203
3204 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003205 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003206
3207 return 0;
3208}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003209
3210/*
3211 * See perf_event_disable()
3212 */
3213int perf_event_refresh(struct perf_event *event, int refresh)
3214{
3215 struct perf_event_context *ctx;
3216 int ret;
3217
3218 ctx = perf_event_ctx_lock(event);
3219 ret = _perf_event_refresh(event, refresh);
3220 perf_event_ctx_unlock(event, ctx);
3221
3222 return ret;
3223}
Avi Kivity26ca5c12011-06-29 18:42:37 +03003224EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003225
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003226static int perf_event_modify_breakpoint(struct perf_event *bp,
3227 struct perf_event_attr *attr)
3228{
3229 int err;
3230
3231 _perf_event_disable(bp);
3232
3233 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003234
Jiri Olsabf062782018-08-27 11:12:28 +02003235 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003236 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02003237
3238 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003239}
3240
3241static int perf_event_modify_attr(struct perf_event *event,
3242 struct perf_event_attr *attr)
3243{
Marco Elver47f661e2021-04-08 12:35:57 +02003244 int (*func)(struct perf_event *, struct perf_event_attr *);
3245 struct perf_event *child;
3246 int err;
3247
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003248 if (event->attr.type != attr->type)
3249 return -EINVAL;
3250
3251 switch (event->attr.type) {
3252 case PERF_TYPE_BREAKPOINT:
Marco Elver47f661e2021-04-08 12:35:57 +02003253 func = perf_event_modify_breakpoint;
3254 break;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003255 default:
3256 /* Place holder for future additions. */
3257 return -EOPNOTSUPP;
3258 }
Marco Elver47f661e2021-04-08 12:35:57 +02003259
3260 WARN_ON_ONCE(event->ctx->parent_ctx);
3261
3262 mutex_lock(&event->child_mutex);
3263 err = func(event, attr);
3264 if (err)
3265 goto out;
3266 list_for_each_entry(child, &event->child_list, child_list) {
3267 err = func(child, attr);
3268 if (err)
3269 goto out;
3270 }
3271out:
3272 mutex_unlock(&event->child_mutex);
3273 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003274}
3275
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003276static void ctx_sched_out(struct perf_event_context *ctx,
3277 struct perf_cpu_context *cpuctx,
3278 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003279{
Peter Zijlstra66681282017-11-13 14:28:38 +01003280 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003281 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003282
3283 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003284
Peter Zijlstra39a43642016-01-11 12:46:35 +01003285 if (likely(!ctx->nr_events)) {
3286 /*
3287 * See __perf_remove_from_context().
3288 */
3289 WARN_ON_ONCE(ctx->is_active);
3290 if (ctx->task)
3291 WARN_ON_ONCE(cpuctx->task_ctx);
3292 return;
3293 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003294
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003295 /*
3296 * Always update time if it was set; not only when it changes.
3297 * Otherwise we can 'forget' to update time for any but the last
3298 * context we sched out. For example:
3299 *
3300 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3301 * ctx_sched_out(.event_type = EVENT_PINNED)
3302 *
3303 * would only update time for the pinned events.
3304 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003305 if (is_active & EVENT_TIME) {
3306 /* update (and stop) ctx time */
3307 update_context_time(ctx);
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003308 update_cgrp_time_from_cpuctx(cpuctx, ctx == &cpuctx->ctx);
3309 /*
3310 * CPU-release for the below ->is_active store,
3311 * see __load_acquire() in perf_event_time_now()
3312 */
3313 barrier();
3314 }
3315
3316 ctx->is_active &= ~event_type;
3317 if (!(ctx->is_active & EVENT_ALL))
3318 ctx->is_active = 0;
3319
3320 if (ctx->task) {
3321 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3322 if (!ctx->is_active)
3323 cpuctx->task_ctx = NULL;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003324 }
3325
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003326 is_active ^= ctx->is_active; /* changed bits */
3327
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003328 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003329 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003330
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003331 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003332 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003333 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003334 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003335 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003336
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003337 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003338 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003339 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra90c91df2020-03-05 13:38:51 +01003340
3341 /*
3342 * Since we cleared EVENT_FLEXIBLE, also clear
3343 * rotate_necessary, is will be reset by
3344 * ctx_flexible_sched_in() when needed.
3345 */
3346 ctx->rotate_necessary = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003347 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003348 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003349}
3350
3351/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003352 * Test whether two contexts are equivalent, i.e. whether they have both been
3353 * cloned from the same version of the same context.
3354 *
3355 * Equivalence is measured using a generation number in the context that is
3356 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3357 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003358 */
3359static int context_equiv(struct perf_event_context *ctx1,
3360 struct perf_event_context *ctx2)
3361{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003362 lockdep_assert_held(&ctx1->lock);
3363 lockdep_assert_held(&ctx2->lock);
3364
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003365 /* Pinning disables the swap optimization */
3366 if (ctx1->pin_count || ctx2->pin_count)
3367 return 0;
3368
3369 /* If ctx1 is the parent of ctx2 */
3370 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3371 return 1;
3372
3373 /* If ctx2 is the parent of ctx1 */
3374 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3375 return 1;
3376
3377 /*
3378 * If ctx1 and ctx2 have the same parent; we flatten the parent
3379 * hierarchy, see perf_event_init_context().
3380 */
3381 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3382 ctx1->parent_gen == ctx2->parent_gen)
3383 return 1;
3384
3385 /* Unmatched */
3386 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387}
3388
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003389static void __perf_event_sync_stat(struct perf_event *event,
3390 struct perf_event *next_event)
3391{
3392 u64 value;
3393
3394 if (!event->attr.inherit_stat)
3395 return;
3396
3397 /*
3398 * Update the event value, we cannot use perf_event_read()
3399 * because we're in the middle of a context switch and have IRQs
3400 * disabled, which upsets smp_call_function_single(), however
3401 * we know the event must be on the current CPU, therefore we
3402 * don't need to use it.
3403 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003404 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003405 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003407 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003408
3409 /*
3410 * In order to keep per-task stats reliable we need to flip the event
3411 * values when we flip the contexts.
3412 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003413 value = local64_read(&next_event->count);
3414 value = local64_xchg(&event->count, value);
3415 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003416
3417 swap(event->total_time_enabled, next_event->total_time_enabled);
3418 swap(event->total_time_running, next_event->total_time_running);
3419
3420 /*
3421 * Since we swizzled the values, update the user visible data too.
3422 */
3423 perf_event_update_userpage(event);
3424 perf_event_update_userpage(next_event);
3425}
3426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003427static void perf_event_sync_stat(struct perf_event_context *ctx,
3428 struct perf_event_context *next_ctx)
3429{
3430 struct perf_event *event, *next_event;
3431
3432 if (!ctx->nr_stat)
3433 return;
3434
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003435 update_context_time(ctx);
3436
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003437 event = list_first_entry(&ctx->event_list,
3438 struct perf_event, event_entry);
3439
3440 next_event = list_first_entry(&next_ctx->event_list,
3441 struct perf_event, event_entry);
3442
3443 while (&event->event_entry != &ctx->event_list &&
3444 &next_event->event_entry != &next_ctx->event_list) {
3445
3446 __perf_event_sync_stat(event, next_event);
3447
3448 event = list_next_entry(event, event_entry);
3449 next_event = list_next_entry(next_event, event_entry);
3450 }
3451}
3452
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003453static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3454 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003456 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003457 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003458 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003459 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003460 int do_switch = 1;
Kan Liang44fae1792020-08-21 12:57:53 -07003461 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003462
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003463 if (likely(!ctx))
3464 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003465
Kan Liang44fae1792020-08-21 12:57:53 -07003466 pmu = ctx->pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003467 cpuctx = __get_cpu_context(ctx);
3468 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003469 return;
3470
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003471 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003472 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003473 if (!next_ctx)
3474 goto unlock;
3475
3476 parent = rcu_dereference(ctx->parent_ctx);
3477 next_parent = rcu_dereference(next_ctx->parent_ctx);
3478
3479 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003480 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003481 goto unlock;
3482
3483 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003484 /*
3485 * Looks like the two contexts are clones, so we might be
3486 * able to optimize the context switch. We lock both
3487 * contexts and check that they are clones under the
3488 * lock (including re-checking that neither has been
3489 * uncloned in the meantime). It doesn't matter which
3490 * order we take the locks because no other cpu could
3491 * be trying to lock both of these tasks.
3492 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003493 raw_spin_lock(&ctx->lock);
3494 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003495 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003496
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003497 WRITE_ONCE(ctx->task, next);
3498 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003499
Kan Liang44fae1792020-08-21 12:57:53 -07003500 perf_pmu_disable(pmu);
3501
3502 if (cpuctx->sched_cb_usage && pmu->sched_task)
3503 pmu->sched_task(ctx, false);
3504
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003505 /*
3506 * PMU specific parts of task perf context can require
3507 * additional synchronization. As an example of such
3508 * synchronization see implementation details of Intel
3509 * LBR call stack data profiling;
3510 */
3511 if (pmu->swap_task_ctx)
3512 pmu->swap_task_ctx(ctx, next_ctx);
3513 else
3514 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003515
Kan Liang44fae1792020-08-21 12:57:53 -07003516 perf_pmu_enable(pmu);
3517
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003518 /*
3519 * RCU_INIT_POINTER here is safe because we've not
3520 * modified the ctx and the above modification of
3521 * ctx->task and ctx->task_ctx_data are immaterial
3522 * since those values are always verified under
3523 * ctx->lock which we're now holding.
3524 */
3525 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3526 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3527
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003528 do_switch = 0;
3529
3530 perf_event_sync_stat(ctx, next_ctx);
3531 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003532 raw_spin_unlock(&next_ctx->lock);
3533 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003534 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003535unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003536 rcu_read_unlock();
3537
3538 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003539 raw_spin_lock(&ctx->lock);
Kan Liang44fae1792020-08-21 12:57:53 -07003540 perf_pmu_disable(pmu);
3541
3542 if (cpuctx->sched_cb_usage && pmu->sched_task)
3543 pmu->sched_task(ctx, false);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003544 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Kan Liang44fae1792020-08-21 12:57:53 -07003545
3546 perf_pmu_enable(pmu);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003547 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003548 }
3549}
3550
Kan Lianga5398bf2020-11-30 11:38:40 -08003551static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3552
Yan, Zhengba532502014-11-04 21:55:58 -05003553void perf_sched_cb_dec(struct pmu *pmu)
3554{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003555 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3556
Kan Lianga5398bf2020-11-30 11:38:40 -08003557 this_cpu_dec(perf_sched_cb_usages);
3558
3559 if (!--cpuctx->sched_cb_usage)
3560 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003561}
3562
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003563
Yan, Zhengba532502014-11-04 21:55:58 -05003564void perf_sched_cb_inc(struct pmu *pmu)
3565{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003566 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3567
Kan Lianga5398bf2020-11-30 11:38:40 -08003568 if (!cpuctx->sched_cb_usage++)
3569 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3570
3571 this_cpu_inc(perf_sched_cb_usages);
Yan, Zhengba532502014-11-04 21:55:58 -05003572}
3573
3574/*
3575 * This function provides the context switch callback to the lower code
3576 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003577 *
3578 * This callback is relevant even to per-cpu events; for example multi event
3579 * PEBS requires this to provide PID/TID information. This requires we flush
3580 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003581 */
Kan Liang556ccca2020-08-21 12:57:52 -07003582static void __perf_pmu_sched_task(struct perf_cpu_context *cpuctx, bool sched_in)
3583{
3584 struct pmu *pmu;
3585
3586 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
3587
3588 if (WARN_ON_ONCE(!pmu->sched_task))
3589 return;
3590
3591 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3592 perf_pmu_disable(pmu);
3593
3594 pmu->sched_task(cpuctx->task_ctx, sched_in);
3595
3596 perf_pmu_enable(pmu);
3597 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
3598}
3599
Kan Lianga5398bf2020-11-30 11:38:40 -08003600static void perf_pmu_sched_task(struct task_struct *prev,
3601 struct task_struct *next,
3602 bool sched_in)
3603{
3604 struct perf_cpu_context *cpuctx;
3605
3606 if (prev == next)
3607 return;
3608
3609 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3610 /* will be handled in perf_event_context_sched_in/out */
3611 if (cpuctx->task_ctx)
3612 continue;
3613
3614 __perf_pmu_sched_task(cpuctx, sched_in);
3615 }
3616}
3617
Adrian Hunter45ac1402015-07-21 12:44:02 +03003618static void perf_event_switch(struct task_struct *task,
3619 struct task_struct *next_prev, bool sched_in);
3620
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003621#define for_each_task_context_nr(ctxn) \
3622 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3623
3624/*
3625 * Called from scheduler to remove the events of the current task,
3626 * with interrupts disabled.
3627 *
3628 * We stop each event and update the event value in event->count.
3629 *
3630 * This does not protect us against NMI, but disable()
3631 * sets the disabled bit in the control field of event _before_
3632 * accessing the event control register. If a NMI hits, then it will
3633 * not restart the event.
3634 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003635void __perf_event_task_sched_out(struct task_struct *task,
3636 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003637{
3638 int ctxn;
3639
Kan Lianga5398bf2020-11-30 11:38:40 -08003640 if (__this_cpu_read(perf_sched_cb_usages))
3641 perf_pmu_sched_task(task, next, false);
3642
Adrian Hunter45ac1402015-07-21 12:44:02 +03003643 if (atomic_read(&nr_switch_events))
3644 perf_event_switch(task, next, false);
3645
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003646 for_each_task_context_nr(ctxn)
3647 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003648
3649 /*
3650 * if cgroup events exist on this CPU, then we need
3651 * to check if we have to switch out PMU state.
3652 * cgroup event are system-wide mode only
3653 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003654 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003655 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003656}
3657
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003658/*
3659 * Called with IRQs disabled
3660 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003661static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3662 enum event_type_t event_type)
3663{
3664 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003665}
3666
Ian Rogers6eef8a712020-02-13 23:51:30 -08003667static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003668{
Ian Rogers24fb6b82020-03-21 09:43:31 -07003669 const struct perf_event *le = *(const struct perf_event **)l;
3670 const struct perf_event *re = *(const struct perf_event **)r;
Ian Rogers6eef8a712020-02-13 23:51:30 -08003671
3672 return le->group_index < re->group_index;
3673}
3674
3675static void swap_ptr(void *l, void *r)
3676{
3677 void **lp = l, **rp = r;
3678
3679 swap(*lp, *rp);
3680}
3681
3682static const struct min_heap_callbacks perf_min_heap = {
3683 .elem_size = sizeof(struct perf_event *),
3684 .less = perf_less_group_idx,
3685 .swp = swap_ptr,
3686};
3687
3688static void __heap_add(struct min_heap *heap, struct perf_event *event)
3689{
3690 struct perf_event **itrs = heap->data;
3691
3692 if (event) {
3693 itrs[heap->nr] = event;
3694 heap->nr++;
3695 }
3696}
3697
Ian Rogers836196be2020-02-13 23:51:31 -08003698static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3699 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003700 int (*func)(struct perf_event *, void *),
3701 void *data)
3702{
Ian Rogers95ed6c72020-02-13 23:51:33 -08003703#ifdef CONFIG_CGROUP_PERF
3704 struct cgroup_subsys_state *css = NULL;
3705#endif
Ian Rogers6eef8a712020-02-13 23:51:30 -08003706 /* Space for per CPU and/or any CPU event iterators. */
3707 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003708 struct min_heap event_heap;
3709 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003710 int ret;
3711
Ian Rogers836196be2020-02-13 23:51:31 -08003712 if (cpuctx) {
3713 event_heap = (struct min_heap){
3714 .data = cpuctx->heap,
3715 .nr = 0,
3716 .size = cpuctx->heap_size,
3717 };
Ian Rogersc2283c92020-02-13 23:51:32 -08003718
3719 lockdep_assert_held(&cpuctx->ctx.lock);
Ian Rogers95ed6c72020-02-13 23:51:33 -08003720
3721#ifdef CONFIG_CGROUP_PERF
3722 if (cpuctx->cgrp)
3723 css = &cpuctx->cgrp->css;
3724#endif
Ian Rogers836196be2020-02-13 23:51:31 -08003725 } else {
3726 event_heap = (struct min_heap){
3727 .data = itrs,
3728 .nr = 0,
3729 .size = ARRAY_SIZE(itrs),
3730 };
3731 /* Events not within a CPU context may be on any CPU. */
Ian Rogers95ed6c72020-02-13 23:51:33 -08003732 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
Ian Rogers836196be2020-02-13 23:51:31 -08003733 }
3734 evt = event_heap.data;
3735
Ian Rogers95ed6c72020-02-13 23:51:33 -08003736 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3737
3738#ifdef CONFIG_CGROUP_PERF
3739 for (; css; css = css->parent)
3740 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3741#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003742
Ian Rogers6eef8a712020-02-13 23:51:30 -08003743 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003744
Ian Rogers6eef8a712020-02-13 23:51:30 -08003745 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003746 ret = func(*evt, data);
3747 if (ret)
3748 return ret;
3749
3750 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003751 if (*evt)
3752 min_heapify(&event_heap, 0, &perf_min_heap);
3753 else
3754 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003755 }
3756
3757 return 0;
3758}
3759
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003760/*
3761 * Because the userpage is strictly per-event (there is no concept of context,
3762 * so there cannot be a context indirection), every userpage must be updated
3763 * when context time starts :-(
3764 *
3765 * IOW, we must not miss EVENT_TIME edges.
3766 */
Song Liuf7925652021-09-29 12:43:13 -07003767static inline bool event_update_userpage(struct perf_event *event)
3768{
3769 if (likely(!atomic_read(&event->mmap_count)))
3770 return false;
3771
3772 perf_event_update_time(event);
Song Liuf7925652021-09-29 12:43:13 -07003773 perf_event_update_userpage(event);
3774
3775 return true;
3776}
3777
3778static inline void group_update_userpage(struct perf_event *group_event)
3779{
3780 struct perf_event *event;
3781
3782 if (!event_update_userpage(group_event))
3783 return;
3784
3785 for_each_sibling_event(event, group_event)
3786 event_update_userpage(event);
3787}
3788
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003789static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003790{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003791 struct perf_event_context *ctx = event->ctx;
3792 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3793 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003794
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003795 if (event->state <= PERF_EVENT_STATE_OFF)
3796 return 0;
3797
3798 if (!event_filter_match(event))
3799 return 0;
3800
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003801 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3802 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003803 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003804 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003805
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003806 if (event->state == PERF_EVENT_STATE_INACTIVE) {
Song Liuf7925652021-09-29 12:43:13 -07003807 *can_add_hw = 0;
Peter Zijlstra33238c52020-03-18 20:33:37 +01003808 if (event->attr.pinned) {
3809 perf_cgroup_event_disable(event, ctx);
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003810 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Song Liuf7925652021-09-29 12:43:13 -07003811 } else {
3812 ctx->rotate_necessary = 1;
3813 perf_mux_hrtimer_restart(cpuctx);
3814 group_update_userpage(event);
Peter Zijlstra33238c52020-03-18 20:33:37 +01003815 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003816 }
3817
3818 return 0;
3819}
3820
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003821static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003822ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003823 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003824{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003825 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003826
Ian Rogers836196be2020-02-13 23:51:31 -08003827 if (ctx != &cpuctx->ctx)
3828 cpuctx = NULL;
3829
3830 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003831 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003832 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003833}
3834
3835static void
3836ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003837 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003838{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003839 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003840
Ian Rogers836196be2020-02-13 23:51:31 -08003841 if (ctx != &cpuctx->ctx)
3842 cpuctx = NULL;
3843
3844 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003845 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003846 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003847}
3848
3849static void
3850ctx_sched_in(struct perf_event_context *ctx,
3851 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003852 enum event_type_t event_type,
3853 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003854{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003855 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003856
Peter Zijlstrac994d612016-01-08 09:20:23 +01003857 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003858
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003859 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003860 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003861
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003862 if (is_active ^ EVENT_TIME) {
3863 /* start ctx time */
3864 __update_context_time(ctx, false);
3865 perf_cgroup_set_timestamp(task, ctx);
3866 /*
3867 * CPU-release for the below ->is_active store,
3868 * see __load_acquire() in perf_event_time_now()
3869 */
3870 barrier();
3871 }
3872
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003873 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003874 if (ctx->task) {
3875 if (!is_active)
3876 cpuctx->task_ctx = ctx;
3877 else
3878 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3879 }
3880
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003881 is_active ^= ctx->is_active; /* changed bits */
3882
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003883 /*
3884 * First go through the list and put on any pinned groups
3885 * in order to give them the best chance of going on.
3886 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003887 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003888 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003889
3890 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003891 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003892 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003893}
3894
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003895static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003896 enum event_type_t event_type,
3897 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003898{
3899 struct perf_event_context *ctx = &cpuctx->ctx;
3900
Stephane Eraniane5d13672011-02-14 11:20:01 +02003901 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003902}
3903
Stephane Eraniane5d13672011-02-14 11:20:01 +02003904static void perf_event_context_sched_in(struct perf_event_context *ctx,
3905 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003906{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003907 struct perf_cpu_context *cpuctx;
Peter Zijlstra012669c2021-06-22 16:21:01 +02003908 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003910 cpuctx = __get_cpu_context(ctx);
Peter Zijlstra012669c2021-06-22 16:21:01 +02003911
3912 /*
3913 * HACK: for HETEROGENEOUS the task context might have switched to a
3914 * different PMU, force (re)set the context,
3915 */
3916 pmu = ctx->pmu = cpuctx->ctx.pmu;
3917
Kan Liang556ccca2020-08-21 12:57:52 -07003918 if (cpuctx->task_ctx == ctx) {
3919 if (cpuctx->sched_cb_usage)
3920 __perf_pmu_sched_task(cpuctx, true);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003921 return;
Kan Liang556ccca2020-08-21 12:57:52 -07003922 }
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003923
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003924 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003925 /*
3926 * We must check ctx->nr_events while holding ctx->lock, such
3927 * that we serialize against perf_install_in_context().
3928 */
3929 if (!ctx->nr_events)
3930 goto unlock;
3931
Kan Liang556ccca2020-08-21 12:57:52 -07003932 perf_pmu_disable(pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003933 /*
3934 * We want to keep the following priority order:
3935 * cpu pinned (that don't need to move), task pinned,
3936 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003937 *
3938 * However, if task's ctx is not carrying any pinned
3939 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003940 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003941 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003942 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003943 perf_event_sched_in(cpuctx, ctx, task);
Kan Liang556ccca2020-08-21 12:57:52 -07003944
3945 if (cpuctx->sched_cb_usage && pmu->sched_task)
3946 pmu->sched_task(cpuctx->task_ctx, true);
3947
3948 perf_pmu_enable(pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003949
3950unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003951 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003952}
3953
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003954/*
3955 * Called from scheduler to add the events of the current task
3956 * with interrupts disabled.
3957 *
3958 * We restore the event value and then enable it.
3959 *
3960 * This does not protect us against NMI, but enable()
3961 * sets the enabled bit in the control field of event _before_
3962 * accessing the event control register. If a NMI hits, then it will
3963 * keep the event running.
3964 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003965void __perf_event_task_sched_in(struct task_struct *prev,
3966 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003967{
3968 struct perf_event_context *ctx;
3969 int ctxn;
3970
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003971 /*
3972 * If cgroup events exist on this CPU, then we need to check if we have
3973 * to switch in PMU state; cgroup event are system-wide mode only.
3974 *
3975 * Since cgroup events are CPU events, we must schedule these in before
3976 * we schedule in the task events.
3977 */
3978 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3979 perf_cgroup_sched_in(prev, task);
3980
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003981 for_each_task_context_nr(ctxn) {
3982 ctx = task->perf_event_ctxp[ctxn];
3983 if (likely(!ctx))
3984 continue;
3985
Stephane Eraniane5d13672011-02-14 11:20:01 +02003986 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003987 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003988
Adrian Hunter45ac1402015-07-21 12:44:02 +03003989 if (atomic_read(&nr_switch_events))
3990 perf_event_switch(task, prev, true);
Kan Lianga5398bf2020-11-30 11:38:40 -08003991
3992 if (__this_cpu_read(perf_sched_cb_usages))
3993 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003994}
3995
Peter Zijlstraabd50712010-01-26 18:50:16 +01003996static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3997{
3998 u64 frequency = event->attr.sample_freq;
3999 u64 sec = NSEC_PER_SEC;
4000 u64 divisor, dividend;
4001
4002 int count_fls, nsec_fls, frequency_fls, sec_fls;
4003
4004 count_fls = fls64(count);
4005 nsec_fls = fls64(nsec);
4006 frequency_fls = fls64(frequency);
4007 sec_fls = 30;
4008
4009 /*
4010 * We got @count in @nsec, with a target of sample_freq HZ
4011 * the target period becomes:
4012 *
4013 * @count * 10^9
4014 * period = -------------------
4015 * @nsec * sample_freq
4016 *
4017 */
4018
4019 /*
4020 * Reduce accuracy by one bit such that @a and @b converge
4021 * to a similar magnitude.
4022 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004023#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01004024do { \
4025 if (a##_fls > b##_fls) { \
4026 a >>= 1; \
4027 a##_fls--; \
4028 } else { \
4029 b >>= 1; \
4030 b##_fls--; \
4031 } \
4032} while (0)
4033
4034 /*
4035 * Reduce accuracy until either term fits in a u64, then proceed with
4036 * the other, so that finally we can do a u64/u64 division.
4037 */
4038 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
4039 REDUCE_FLS(nsec, frequency);
4040 REDUCE_FLS(sec, count);
4041 }
4042
4043 if (count_fls + sec_fls > 64) {
4044 divisor = nsec * frequency;
4045
4046 while (count_fls + sec_fls > 64) {
4047 REDUCE_FLS(count, sec);
4048 divisor >>= 1;
4049 }
4050
4051 dividend = count * sec;
4052 } else {
4053 dividend = count * sec;
4054
4055 while (nsec_fls + frequency_fls > 64) {
4056 REDUCE_FLS(nsec, frequency);
4057 dividend >>= 1;
4058 }
4059
4060 divisor = nsec * frequency;
4061 }
4062
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004063 if (!divisor)
4064 return dividend;
4065
Peter Zijlstraabd50712010-01-26 18:50:16 +01004066 return div64_u64(dividend, divisor);
4067}
4068
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004069static DEFINE_PER_CPU(int, perf_throttled_count);
4070static DEFINE_PER_CPU(u64, perf_throttled_seq);
4071
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004072static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004073{
4074 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004075 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004076 s64 delta;
4077
Peter Zijlstraabd50712010-01-26 18:50:16 +01004078 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004079
4080 delta = (s64)(period - hwc->sample_period);
4081 delta = (delta + 7) / 8; /* low pass filter */
4082
4083 sample_period = hwc->sample_period + delta;
4084
4085 if (!sample_period)
4086 sample_period = 1;
4087
4088 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004089
Peter Zijlstrae7850592010-05-21 14:43:08 +02004090 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004091 if (disable)
4092 event->pmu->stop(event, PERF_EF_UPDATE);
4093
Peter Zijlstrae7850592010-05-21 14:43:08 +02004094 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004095
4096 if (disable)
4097 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004098 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004099}
4100
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004101/*
4102 * combine freq adjustment with unthrottling to avoid two passes over the
4103 * events. At the same time, make sure, having freq events does not change
4104 * the rate of unthrottling as that would introduce bias.
4105 */
4106static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
4107 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004108{
4109 struct perf_event *event;
4110 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004111 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004112 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004113
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004114 /*
4115 * only need to iterate over all events iff:
4116 * - context have events in frequency mode (needs freq adjust)
4117 * - there are events to unthrottle on this cpu
4118 */
4119 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004120 return;
4121
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004122 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004123 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004124
Paul Mackerras03541f82009-10-14 16:58:03 +11004125 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004126 if (event->state != PERF_EVENT_STATE_ACTIVE)
4127 continue;
4128
Stephane Eranian5632ab12011-01-03 18:20:01 +02004129 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004130 continue;
4131
Alexander Shishkin44377272013-12-16 14:17:36 +02004132 perf_pmu_disable(event->pmu);
4133
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004134 hwc = &event->hw;
4135
Jiri Olsaae23bff2013-08-24 16:45:54 +02004136 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004137 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004138 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004139 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004140 }
4141
4142 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02004143 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004144
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004145 /*
4146 * stop the event and update event->count
4147 */
4148 event->pmu->stop(event, PERF_EF_UPDATE);
4149
Peter Zijlstrae7850592010-05-21 14:43:08 +02004150 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004151 delta = now - hwc->freq_count_stamp;
4152 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004153
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004154 /*
4155 * restart the event
4156 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004157 * we have stopped the event so tell that
4158 * to perf_adjust_period() to avoid stopping it
4159 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004160 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01004161 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004162 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004163
4164 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02004165 next:
4166 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004168
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004169 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004170 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004171}
4172
4173/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004174 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004175 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004176static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004177{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01004178 /*
4179 * Rotate the first entry last of non-pinned groups. Rotation might be
4180 * disabled by the inheritance code.
4181 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004182 if (ctx->rotate_disable)
4183 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004184
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004185 perf_event_groups_delete(&ctx->flexible_groups, event);
4186 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004187}
4188
Song Liu7fa343b72019-10-08 09:59:49 -07004189/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004190static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07004191ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004192{
Song Liu7fa343b72019-10-08 09:59:49 -07004193 struct perf_event *event;
4194
4195 /* pick the first active flexible event */
4196 event = list_first_entry_or_null(&ctx->flexible_active,
4197 struct perf_event, active_list);
4198
4199 /* if no active flexible event, pick the first event */
4200 if (!event) {
4201 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
4202 typeof(*event), group_node);
4203 }
4204
Peter Zijlstra90c91df2020-03-05 13:38:51 +01004205 /*
4206 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in()
4207 * finds there are unschedulable events, it will set it again.
4208 */
4209 ctx->rotate_necessary = 0;
4210
Song Liu7fa343b72019-10-08 09:59:49 -07004211 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004212}
4213
4214static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
4215{
4216 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07004217 struct perf_event_context *task_ctx = NULL;
4218 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004219
4220 /*
4221 * Since we run this from IRQ context, nobody can install new
4222 * events, thus the event count values are stable.
4223 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004224
Ian Rogersfd7d5512019-06-01 01:27:22 -07004225 cpu_rotate = cpuctx->ctx.rotate_necessary;
4226 task_ctx = cpuctx->task_ctx;
4227 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004228
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004229 if (!(cpu_rotate || task_rotate))
4230 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004231
Peter Zijlstrafacc4302011-04-09 21:17:42 +02004232 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02004233 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004234
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004235 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004236 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004237 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004238 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004239
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004240 /*
4241 * As per the order given at ctx_resched() first 'pop' task flexible
4242 * and then, if needed CPU flexible.
4243 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07004244 if (task_event || (task_ctx && cpu_event))
4245 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004246 if (cpu_event)
4247 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01004248
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004249 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07004250 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004251 if (cpu_event)
4252 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004253
Ian Rogersfd7d5512019-06-01 01:27:22 -07004254 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004255
4256 perf_pmu_enable(cpuctx->ctx.pmu);
4257 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02004258
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004259 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004260}
4261
4262void perf_event_task_tick(void)
4263{
Mark Rutland2fde4f92015-01-07 15:01:54 +00004264 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4265 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004266 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004267
Frederic Weisbecker16444642017-11-06 16:01:24 +01004268 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004269
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004270 __this_cpu_inc(perf_throttled_seq);
4271 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004272 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004273
Mark Rutland2fde4f92015-01-07 15:01:54 +00004274 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004275 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004276}
4277
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004278static int event_enable_on_exec(struct perf_event *event,
4279 struct perf_event_context *ctx)
4280{
4281 if (!event->attr.enable_on_exec)
4282 return 0;
4283
4284 event->attr.enable_on_exec = 0;
4285 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4286 return 0;
4287
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004288 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004289
4290 return 1;
4291}
4292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004293/*
4294 * Enable all of a task's events that have been marked enable-on-exec.
4295 * This expects task == current.
4296 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01004297static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004298{
Peter Zijlstrac1274492015-12-10 20:57:40 +01004299 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004300 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01004301 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004302 struct perf_event *event;
4303 unsigned long flags;
4304 int enabled = 0;
4305
4306 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01004307 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004308 if (!ctx || !ctx->nr_events)
4309 goto out;
4310
Peter Zijlstra3e349502016-01-08 10:01:18 +01004311 cpuctx = __get_cpu_context(ctx);
4312 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01004313 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004314 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01004315 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004316 event_type |= get_event_type(event);
4317 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004318
4319 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01004320 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004321 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01004322 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004323 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004324 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01004325 } else {
4326 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01004327 }
4328 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004329
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004330out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004331 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004332
4333 if (clone_ctx)
4334 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004335}
4336
Marco Elver2e498d02021-04-08 12:35:59 +02004337static void perf_remove_from_owner(struct perf_event *event);
4338static void perf_event_exit_event(struct perf_event *event,
4339 struct perf_event_context *ctx);
4340
4341/*
4342 * Removes all events from the current task that have been marked
4343 * remove-on-exec, and feeds their values back to parent events.
4344 */
4345static void perf_event_remove_on_exec(int ctxn)
4346{
4347 struct perf_event_context *ctx, *clone_ctx = NULL;
4348 struct perf_event *event, *next;
4349 LIST_HEAD(free_list);
4350 unsigned long flags;
4351 bool modified = false;
4352
4353 ctx = perf_pin_task_context(current, ctxn);
4354 if (!ctx)
4355 return;
4356
4357 mutex_lock(&ctx->mutex);
4358
4359 if (WARN_ON_ONCE(ctx->task != current))
4360 goto unlock;
4361
4362 list_for_each_entry_safe(event, next, &ctx->event_list, event_entry) {
4363 if (!event->attr.remove_on_exec)
4364 continue;
4365
4366 if (!is_kernel_event(event))
4367 perf_remove_from_owner(event);
4368
4369 modified = true;
4370
4371 perf_event_exit_event(event, ctx);
4372 }
4373
4374 raw_spin_lock_irqsave(&ctx->lock, flags);
4375 if (modified)
4376 clone_ctx = unclone_ctx(ctx);
4377 --ctx->pin_count;
4378 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4379
4380unlock:
4381 mutex_unlock(&ctx->mutex);
4382
4383 put_ctx(ctx);
4384 if (clone_ctx)
4385 put_ctx(clone_ctx);
4386}
4387
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004388struct perf_read_data {
4389 struct perf_event *event;
4390 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004391 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004392};
4393
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004394static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004395{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004396 u16 local_pkg, event_pkg;
4397
4398 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004399 int local_cpu = smp_processor_id();
4400
4401 event_pkg = topology_physical_package_id(event_cpu);
4402 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004403
4404 if (event_pkg == local_pkg)
4405 return local_cpu;
4406 }
4407
4408 return event_cpu;
4409}
4410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004411/*
4412 * Cross CPU call to read the hardware event
4413 */
4414static void __perf_event_read(void *info)
4415{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004416 struct perf_read_data *data = info;
4417 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004418 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004419 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004420 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004421
4422 /*
4423 * If this is a task context, we need to check whether it is
4424 * the current task context of this cpu. If not it has been
4425 * scheduled out before the smp call arrived. In that case
4426 * event->count would have been updated to a recent sample
4427 * when the event was scheduled out.
4428 */
4429 if (ctx->task && cpuctx->task_ctx != ctx)
4430 return;
4431
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004432 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004433 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004434 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004435 update_cgrp_time_from_event(event);
4436 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004437
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004438 perf_event_update_time(event);
4439 if (data->group)
4440 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004441
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004442 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004443 goto unlock;
4444
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004445 if (!data->group) {
4446 pmu->read(event);
4447 data->ret = 0;
4448 goto unlock;
4449 }
4450
4451 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4452
4453 pmu->read(event);
4454
Peter Zijlstraedb39592018-03-15 17:36:56 +01004455 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004456 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4457 /*
4458 * Use sibling's PMU rather than @event's since
4459 * sibling could be on different (eg: software) PMU.
4460 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004461 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004462 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004463 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004464
4465 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004466
4467unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004468 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004469}
4470
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004471static inline u64 perf_event_count(struct perf_event *event)
4472{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004473 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004474}
4475
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004476static void calc_timer_values(struct perf_event *event,
4477 u64 *now,
4478 u64 *enabled,
4479 u64 *running)
4480{
4481 u64 ctx_time;
4482
4483 *now = perf_clock();
4484 ctx_time = perf_event_time_now(event, *now);
4485 __perf_update_times(event, ctx_time, enabled, running);
4486}
4487
Kaixu Xiaffe86902015-08-06 07:02:32 +00004488/*
4489 * NMI-safe method to read a local event, that is an event that
4490 * is:
4491 * - either for the current task, or for this CPU
4492 * - does not have inherit set, for inherited task events
4493 * will not be local and we cannot read them atomically
4494 * - must not have a pmu::count method
4495 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004496int perf_event_read_local(struct perf_event *event, u64 *value,
4497 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004498{
4499 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004500 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004501
4502 /*
4503 * Disabling interrupts avoids all counter scheduling (context
4504 * switches, timer based rotation and IPIs).
4505 */
4506 local_irq_save(flags);
4507
Kaixu Xiaffe86902015-08-06 07:02:32 +00004508 /*
4509 * It must not be an event with inherit set, we cannot read
4510 * all child counters from atomic context.
4511 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004512 if (event->attr.inherit) {
4513 ret = -EOPNOTSUPP;
4514 goto out;
4515 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004516
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004517 /* If this is a per-task event, it must be for current */
4518 if ((event->attach_state & PERF_ATTACH_TASK) &&
4519 event->hw.target != current) {
4520 ret = -EINVAL;
4521 goto out;
4522 }
4523
4524 /* If this is a per-CPU event, it must be for this CPU */
4525 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4526 event->cpu != smp_processor_id()) {
4527 ret = -EINVAL;
4528 goto out;
4529 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004530
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004531 /* If this is a pinned event it must be running on this CPU */
4532 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4533 ret = -EBUSY;
4534 goto out;
4535 }
4536
Kaixu Xiaffe86902015-08-06 07:02:32 +00004537 /*
4538 * If the event is currently on this CPU, its either a per-task event,
4539 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4540 * oncpu == -1).
4541 */
4542 if (event->oncpu == smp_processor_id())
4543 event->pmu->read(event);
4544
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004545 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004546 if (enabled || running) {
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004547 u64 __enabled, __running, __now;;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004548
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004549 calc_timer_values(event, &__now, &__enabled, &__running);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004550 if (enabled)
4551 *enabled = __enabled;
4552 if (running)
4553 *running = __running;
4554 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004555out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004556 local_irq_restore(flags);
4557
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004558 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004559}
4560
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004561static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004562{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004563 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004564 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004566 /*
4567 * If event is enabled and currently active on a CPU, update the
4568 * value in the event structure:
4569 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004570again:
4571 if (state == PERF_EVENT_STATE_ACTIVE) {
4572 struct perf_read_data data;
4573
4574 /*
4575 * Orders the ->state and ->oncpu loads such that if we see
4576 * ACTIVE we must also see the right ->oncpu.
4577 *
4578 * Matches the smp_wmb() from event_sched_in().
4579 */
4580 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004581
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004582 event_cpu = READ_ONCE(event->oncpu);
4583 if ((unsigned)event_cpu >= nr_cpu_ids)
4584 return 0;
4585
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004586 data = (struct perf_read_data){
4587 .event = event,
4588 .group = group,
4589 .ret = 0,
4590 };
4591
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004592 preempt_disable();
4593 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004594
Peter Zijlstra58763142016-08-30 10:15:03 +02004595 /*
4596 * Purposely ignore the smp_call_function_single() return
4597 * value.
4598 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004599 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004600 * scheduled out and that will have updated the event count.
4601 *
4602 * Therefore, either way, we'll have an up-to-date event count
4603 * after this.
4604 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004605 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4606 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004607 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004608
4609 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004610 struct perf_event_context *ctx = event->ctx;
4611 unsigned long flags;
4612
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004613 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004614 state = event->state;
4615 if (state != PERF_EVENT_STATE_INACTIVE) {
4616 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4617 goto again;
4618 }
4619
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004620 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004621 * May read while context is not active (e.g., thread is
4622 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004623 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004624 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004625 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004626 update_cgrp_time_from_event(event);
4627 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004628
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004629 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004630 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004631 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004632 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004633 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004634
4635 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004636}
4637
4638/*
4639 * Initialize the perf_event context in a task_struct:
4640 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004641static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004642{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004643 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004644 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004645 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004646 perf_event_groups_init(&ctx->pinned_groups);
4647 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004648 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004649 INIT_LIST_HEAD(&ctx->pinned_active);
4650 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004651 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004652}
4653
Peter Zijlstraeb184472010-09-07 15:55:13 +02004654static struct perf_event_context *
4655alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656{
4657 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004658
4659 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4660 if (!ctx)
4661 return NULL;
4662
4663 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004664 if (task)
4665 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004666 ctx->pmu = pmu;
4667
4668 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004669}
4670
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004671static struct task_struct *
4672find_lively_task_by_vpid(pid_t vpid)
4673{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004674 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004676 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004677 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004678 task = current;
4679 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004680 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004681 if (task)
4682 get_task_struct(task);
4683 rcu_read_unlock();
4684
4685 if (!task)
4686 return ERR_PTR(-ESRCH);
4687
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004688 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004689}
4690
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004691/*
4692 * Returns a matching context with refcount and pincount.
4693 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004694static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004695find_get_context(struct pmu *pmu, struct task_struct *task,
4696 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004697{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004698 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004699 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004700 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004701 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004702 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004703 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004704
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004705 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004706 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004707 err = perf_allow_cpu(&event->attr);
4708 if (err)
4709 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004710
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004711 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004712 ctx = &cpuctx->ctx;
4713 get_ctx(ctx);
Marco Elver6c605f82021-05-27 12:47:11 +02004714 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004715 ++ctx->pin_count;
Marco Elver6c605f82021-05-27 12:47:11 +02004716 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004717
4718 return ctx;
4719 }
4720
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004721 err = -EINVAL;
4722 ctxn = pmu->task_ctx_nr;
4723 if (ctxn < 0)
4724 goto errout;
4725
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004726 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
Kan Liangff9ff922020-07-03 05:49:21 -07004727 task_ctx_data = alloc_task_ctx_data(pmu);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004728 if (!task_ctx_data) {
4729 err = -ENOMEM;
4730 goto errout;
4731 }
4732 }
4733
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004734retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004735 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004736 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004737 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004738 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004739
4740 if (task_ctx_data && !ctx->task_ctx_data) {
4741 ctx->task_ctx_data = task_ctx_data;
4742 task_ctx_data = NULL;
4743 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004744 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004745
4746 if (clone_ctx)
4747 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004748 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004749 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004750 err = -ENOMEM;
4751 if (!ctx)
4752 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004753
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004754 if (task_ctx_data) {
4755 ctx->task_ctx_data = task_ctx_data;
4756 task_ctx_data = NULL;
4757 }
4758
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004759 err = 0;
4760 mutex_lock(&task->perf_event_mutex);
4761 /*
4762 * If it has already passed perf_event_exit_task().
4763 * we must see PF_EXITING, it takes this mutex too.
4764 */
4765 if (task->flags & PF_EXITING)
4766 err = -ESRCH;
4767 else if (task->perf_event_ctxp[ctxn])
4768 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004769 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004770 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004771 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004772 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004773 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004774 mutex_unlock(&task->perf_event_mutex);
4775
4776 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004777 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004778
4779 if (err == -EAGAIN)
4780 goto retry;
4781 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004782 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004783 }
4784
Kan Liangff9ff922020-07-03 05:49:21 -07004785 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004786 return ctx;
4787
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004788errout:
Kan Liangff9ff922020-07-03 05:49:21 -07004789 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004790 return ERR_PTR(err);
4791}
4792
Li Zefan6fb29152009-10-15 11:21:42 +08004793static void perf_event_free_filter(struct perf_event *event);
4794
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004795static void free_event_rcu(struct rcu_head *head)
4796{
4797 struct perf_event *event;
4798
4799 event = container_of(head, struct perf_event, rcu_head);
4800 if (event->ns)
4801 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004802 perf_event_free_filter(event);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +09004803 kmem_cache_free(perf_event_cache, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004804}
4805
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004806static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004807 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004808
Kan Liangf2fb6be2016-03-23 11:24:37 -07004809static void detach_sb_event(struct perf_event *event)
4810{
4811 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4812
4813 raw_spin_lock(&pel->lock);
4814 list_del_rcu(&event->sb_list);
4815 raw_spin_unlock(&pel->lock);
4816}
4817
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004818static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004819{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004820 struct perf_event_attr *attr = &event->attr;
4821
Kan Liangf2fb6be2016-03-23 11:24:37 -07004822 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004823 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004824
4825 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004826 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004827
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004828 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4829 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004830 attr->task || attr->ksymbol ||
Adrian Huntere17d43b2020-05-12 15:19:08 +03004831 attr->context_switch || attr->text_poke ||
Song Liu21038f22019-02-25 16:20:05 -08004832 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004833 return true;
4834 return false;
4835}
4836
4837static void unaccount_pmu_sb_event(struct perf_event *event)
4838{
4839 if (is_sb_event(event))
4840 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004841}
4842
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004843static void unaccount_event_cpu(struct perf_event *event, int cpu)
4844{
4845 if (event->parent)
4846 return;
4847
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004848 if (is_cgroup_event(event))
4849 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4850}
4851
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004852#ifdef CONFIG_NO_HZ_FULL
4853static DEFINE_SPINLOCK(nr_freq_lock);
4854#endif
4855
4856static void unaccount_freq_event_nohz(void)
4857{
4858#ifdef CONFIG_NO_HZ_FULL
4859 spin_lock(&nr_freq_lock);
4860 if (atomic_dec_and_test(&nr_freq_events))
4861 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4862 spin_unlock(&nr_freq_lock);
4863#endif
4864}
4865
4866static void unaccount_freq_event(void)
4867{
4868 if (tick_nohz_full_enabled())
4869 unaccount_freq_event_nohz();
4870 else
4871 atomic_dec(&nr_freq_events);
4872}
4873
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004874static void unaccount_event(struct perf_event *event)
4875{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004876 bool dec = false;
4877
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004878 if (event->parent)
4879 return;
4880
Kan Lianga5398bf2020-11-30 11:38:40 -08004881 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004882 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004883 if (event->attr.mmap || event->attr.mmap_data)
4884 atomic_dec(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +01004885 if (event->attr.build_id)
4886 atomic_dec(&nr_build_id_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004887 if (event->attr.comm)
4888 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304889 if (event->attr.namespaces)
4890 atomic_dec(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +09004891 if (event->attr.cgroup)
4892 atomic_dec(&nr_cgroup_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004893 if (event->attr.task)
4894 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004895 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004896 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004897 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004898 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004899 atomic_dec(&nr_switch_events);
4900 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004901 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004902 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004903 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004904 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004905 if (event->attr.ksymbol)
4906 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004907 if (event->attr.bpf_event)
4908 atomic_dec(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +03004909 if (event->attr.text_poke)
4910 atomic_dec(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004911
Peter Zijlstra9107c892016-02-24 18:45:45 +01004912 if (dec) {
4913 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4914 schedule_delayed_work(&perf_sched_work, HZ);
4915 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004916
4917 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004918
4919 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004920}
4921
Peter Zijlstra9107c892016-02-24 18:45:45 +01004922static void perf_sched_delayed(struct work_struct *work)
4923{
4924 mutex_lock(&perf_sched_mutex);
4925 if (atomic_dec_and_test(&perf_sched_count))
4926 static_branch_disable(&perf_sched_events);
4927 mutex_unlock(&perf_sched_mutex);
4928}
4929
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004930/*
4931 * The following implement mutual exclusion of events on "exclusive" pmus
4932 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4933 * at a time, so we disallow creating events that might conflict, namely:
4934 *
4935 * 1) cpu-wide events in the presence of per-task events,
4936 * 2) per-task events in the presence of cpu-wide events,
4937 * 3) two matching events on the same context.
4938 *
4939 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004940 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004941 */
4942static int exclusive_event_init(struct perf_event *event)
4943{
4944 struct pmu *pmu = event->pmu;
4945
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004946 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004947 return 0;
4948
4949 /*
4950 * Prevent co-existence of per-task and cpu-wide events on the
4951 * same exclusive pmu.
4952 *
4953 * Negative pmu::exclusive_cnt means there are cpu-wide
4954 * events on this "exclusive" pmu, positive means there are
4955 * per-task events.
4956 *
4957 * Since this is called in perf_event_alloc() path, event::ctx
4958 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4959 * to mean "per-task event", because unlike other attach states it
4960 * never gets cleared.
4961 */
4962 if (event->attach_state & PERF_ATTACH_TASK) {
4963 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4964 return -EBUSY;
4965 } else {
4966 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4967 return -EBUSY;
4968 }
4969
4970 return 0;
4971}
4972
4973static void exclusive_event_destroy(struct perf_event *event)
4974{
4975 struct pmu *pmu = event->pmu;
4976
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004977 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004978 return;
4979
4980 /* see comment in exclusive_event_init() */
4981 if (event->attach_state & PERF_ATTACH_TASK)
4982 atomic_dec(&pmu->exclusive_cnt);
4983 else
4984 atomic_inc(&pmu->exclusive_cnt);
4985}
4986
4987static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4988{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004989 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004990 (e1->cpu == e2->cpu ||
4991 e1->cpu == -1 ||
4992 e2->cpu == -1))
4993 return true;
4994 return false;
4995}
4996
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004997static bool exclusive_event_installable(struct perf_event *event,
4998 struct perf_event_context *ctx)
4999{
5000 struct perf_event *iter_event;
5001 struct pmu *pmu = event->pmu;
5002
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03005003 lockdep_assert_held(&ctx->mutex);
5004
5005 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02005006 return true;
5007
5008 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
5009 if (exclusive_event_match(iter_event, event))
5010 return false;
5011 }
5012
5013 return true;
5014}
5015
Alexander Shishkin375637b2016-04-27 18:44:46 +03005016static void perf_addr_filters_splice(struct perf_event *event,
5017 struct list_head *head);
5018
Peter Zijlstra683ede42014-05-05 12:11:24 +02005019static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005020{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005021 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005022
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02005023 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005024
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005025 security_perf_event_free(event);
5026
Frederic Weisbecker76369132011-05-19 19:55:04 +02005027 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005028 /*
5029 * Can happen when we close an event with re-directed output.
5030 *
5031 * Since we have a 0 refcount, perf_mmap_close() will skip
5032 * over us; possibly making our ring_buffer_put() the last.
5033 */
5034 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005035 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005036 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005037 }
5038
Stephane Eraniane5d13672011-02-14 11:20:01 +02005039 if (is_cgroup_event(event))
5040 perf_detach_cgroup(event);
5041
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005042 if (!event->parent) {
5043 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
5044 put_callchain_buffers();
5045 }
5046
5047 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03005048 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02005049 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005050
5051 if (event->destroy)
5052 event->destroy(event);
5053
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005054 /*
5055 * Must be after ->destroy(), due to uprobe_perf_close() using
5056 * hw.target.
5057 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09005058 if (event->hw.target)
5059 put_task_struct(event->hw.target);
5060
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005061 /*
5062 * perf_event_free_task() relies on put_ctx() being 'last', in particular
5063 * all task references must be cleaned up.
5064 */
5065 if (event->ctx)
5066 put_ctx(event->ctx);
5067
Alexander Shishkin62a92c82016-06-07 15:44:15 +03005068 exclusive_event_destroy(event);
5069 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005070
5071 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005072}
5073
Peter Zijlstra683ede42014-05-05 12:11:24 +02005074/*
5075 * Used to free events which have a known refcount of 1, such as in error paths
5076 * where the event isn't exposed yet and inherited events.
5077 */
5078static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005079{
Peter Zijlstra683ede42014-05-05 12:11:24 +02005080 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
5081 "unexpected event refcount: %ld; ptr=%p\n",
5082 atomic_long_read(&event->refcount), event)) {
5083 /* leak to avoid use-after-free */
5084 return;
5085 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005086
Peter Zijlstra683ede42014-05-05 12:11:24 +02005087 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005088}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005089
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005090/*
Jiri Olsaf8697762014-08-01 14:33:01 +02005091 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005092 */
Jiri Olsaf8697762014-08-01 14:33:01 +02005093static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005094{
Peter Zijlstra88821352010-11-09 19:01:43 +01005095 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005096
Peter Zijlstra88821352010-11-09 19:01:43 +01005097 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01005098 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005099 * Matches the smp_store_release() in perf_event_exit_task(). If we
5100 * observe !owner it means the list deletion is complete and we can
5101 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01005102 * owner->perf_event_mutex.
5103 */
Will Deacon506458e2017-10-24 11:22:48 +01005104 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01005105 if (owner) {
5106 /*
5107 * Since delayed_put_task_struct() also drops the last
5108 * task reference we can safely take a new reference
5109 * while holding the rcu_read_lock().
5110 */
5111 get_task_struct(owner);
5112 }
5113 rcu_read_unlock();
5114
5115 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005116 /*
5117 * If we're here through perf_event_exit_task() we're already
5118 * holding ctx->mutex which would be an inversion wrt. the
5119 * normal lock order.
5120 *
5121 * However we can safely take this lock because its the child
5122 * ctx->mutex.
5123 */
5124 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
5125
Peter Zijlstra88821352010-11-09 19:01:43 +01005126 /*
5127 * We have to re-check the event->owner field, if it is cleared
5128 * we raced with perf_event_exit_task(), acquiring the mutex
5129 * ensured they're done, and we can proceed with freeing the
5130 * event.
5131 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005132 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01005133 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005134 smp_store_release(&event->owner, NULL);
5135 }
Peter Zijlstra88821352010-11-09 19:01:43 +01005136 mutex_unlock(&owner->perf_event_mutex);
5137 put_task_struct(owner);
5138 }
Jiri Olsaf8697762014-08-01 14:33:01 +02005139}
5140
Jiri Olsaf8697762014-08-01 14:33:01 +02005141static void put_event(struct perf_event *event)
5142{
Jiri Olsaf8697762014-08-01 14:33:01 +02005143 if (!atomic_long_dec_and_test(&event->refcount))
5144 return;
5145
Peter Zijlstra683ede42014-05-05 12:11:24 +02005146 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01005147}
5148
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005149/*
5150 * Kill an event dead; while event:refcount will preserve the event
5151 * object, it will not preserve its functionality. Once the last 'user'
5152 * gives up the object, we'll destroy the thing.
5153 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005154int perf_event_release_kernel(struct perf_event *event)
5155{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005156 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005157 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01005158 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005159
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005160 /*
5161 * If we got here through err_file: fput(event_file); we will not have
5162 * attached to a context yet.
5163 */
5164 if (!ctx) {
5165 WARN_ON_ONCE(event->attach_state &
5166 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
5167 goto no_ctx;
5168 }
5169
Peter Zijlstra88821352010-11-09 19:01:43 +01005170 if (!is_kernel_event(event))
5171 perf_remove_from_owner(event);
5172
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01005173 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02005174 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005175 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01005176
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005177 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005178 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01005179 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005180 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005181 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005182 * Anybody acquiring event->child_mutex after the below loop _must_
5183 * also see this, most importantly inherit_event() which will avoid
5184 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005185 *
5186 * Thus this guarantees that we will in fact observe and kill _ALL_
5187 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01005188 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005189 event->state = PERF_EVENT_STATE_DEAD;
5190 raw_spin_unlock_irq(&ctx->lock);
5191
5192 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005193
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005194again:
5195 mutex_lock(&event->child_mutex);
5196 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01005197
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005198 /*
5199 * Cannot change, child events are not migrated, see the
5200 * comment with perf_event_ctx_lock_nested().
5201 */
Will Deacon506458e2017-10-24 11:22:48 +01005202 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005203 /*
5204 * Since child_mutex nests inside ctx::mutex, we must jump
5205 * through hoops. We start by grabbing a reference on the ctx.
5206 *
5207 * Since the event cannot get freed while we hold the
5208 * child_mutex, the context must also exist and have a !0
5209 * reference count.
5210 */
5211 get_ctx(ctx);
5212
5213 /*
5214 * Now that we have a ctx ref, we can drop child_mutex, and
5215 * acquire ctx::mutex without fear of it going away. Then we
5216 * can re-acquire child_mutex.
5217 */
5218 mutex_unlock(&event->child_mutex);
5219 mutex_lock(&ctx->mutex);
5220 mutex_lock(&event->child_mutex);
5221
5222 /*
5223 * Now that we hold ctx::mutex and child_mutex, revalidate our
5224 * state, if child is still the first entry, it didn't get freed
5225 * and we can continue doing so.
5226 */
5227 tmp = list_first_entry_or_null(&event->child_list,
5228 struct perf_event, child_list);
5229 if (tmp == child) {
5230 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005231 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005232 /*
5233 * This matches the refcount bump in inherit_event();
5234 * this can't be the last reference.
5235 */
5236 put_event(event);
5237 }
5238
5239 mutex_unlock(&event->child_mutex);
5240 mutex_unlock(&ctx->mutex);
5241 put_ctx(ctx);
5242 goto again;
5243 }
5244 mutex_unlock(&event->child_mutex);
5245
Peter Zijlstra82d94852018-01-09 13:10:30 +01005246 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005247 void *var = &child->ctx->refcount;
5248
Peter Zijlstra82d94852018-01-09 13:10:30 +01005249 list_del(&child->child_list);
5250 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005251
5252 /*
5253 * Wake any perf_event_free_task() waiting for this event to be
5254 * freed.
5255 */
5256 smp_mb(); /* pairs with wait_var_event() */
5257 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005258 }
5259
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005260no_ctx:
5261 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005262 return 0;
5263}
5264EXPORT_SYMBOL_GPL(perf_event_release_kernel);
5265
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02005266/*
5267 * Called when the last reference to the file is gone.
5268 */
Al Viroa6fa9412012-08-20 14:59:25 +01005269static int perf_release(struct inode *inode, struct file *file)
5270{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005271 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01005272 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005273}
5274
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005275static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005276{
5277 struct perf_event *child;
5278 u64 total = 0;
5279
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005280 *enabled = 0;
5281 *running = 0;
5282
Peter Zijlstra6f105812009-11-20 22:19:56 +01005283 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005284
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005285 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005286 total += perf_event_count(event);
5287
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005288 *enabled += event->total_time_enabled +
5289 atomic64_read(&event->child_total_time_enabled);
5290 *running += event->total_time_running +
5291 atomic64_read(&event->child_total_time_running);
5292
5293 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005294 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005295 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005296 *enabled += child->total_time_enabled;
5297 *running += child->total_time_running;
5298 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01005299 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005300
5301 return total;
5302}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005303
5304u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5305{
5306 struct perf_event_context *ctx;
5307 u64 count;
5308
5309 ctx = perf_event_ctx_lock(event);
5310 count = __perf_event_read_value(event, enabled, running);
5311 perf_event_ctx_unlock(event, ctx);
5312
5313 return count;
5314}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005315EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005316
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005317static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005318 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005319{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005320 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005321 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005322 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005323 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005324 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01005325
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005326 ret = perf_event_read(leader, true);
5327 if (ret)
5328 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005329
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02005330 raw_spin_lock_irqsave(&ctx->lock, flags);
5331
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005332 /*
5333 * Since we co-schedule groups, {enabled,running} times of siblings
5334 * will be identical to those of the leader, so we only publish one
5335 * set.
5336 */
5337 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5338 values[n++] += leader->total_time_enabled +
5339 atomic64_read(&leader->child_total_time_enabled);
5340 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005341
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005342 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5343 values[n++] += leader->total_time_running +
5344 atomic64_read(&leader->child_total_time_running);
5345 }
5346
5347 /*
5348 * Write {count,id} tuples for every sibling.
5349 */
5350 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005351 if (read_format & PERF_FORMAT_ID)
5352 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005353
Peter Zijlstraedb39592018-03-15 17:36:56 +01005354 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005355 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005356 if (read_format & PERF_FORMAT_ID)
5357 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005358 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005359
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005360 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005361 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005362}
5363
5364static int perf_read_group(struct perf_event *event,
5365 u64 read_format, char __user *buf)
5366{
5367 struct perf_event *leader = event->group_leader, *child;
5368 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005369 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005370 u64 *values;
5371
5372 lockdep_assert_held(&ctx->mutex);
5373
5374 values = kzalloc(event->read_size, GFP_KERNEL);
5375 if (!values)
5376 return -ENOMEM;
5377
5378 values[0] = 1 + leader->nr_siblings;
5379
5380 /*
5381 * By locking the child_mutex of the leader we effectively
5382 * lock the child list of all siblings.. XXX explain how.
5383 */
5384 mutex_lock(&leader->child_mutex);
5385
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005386 ret = __perf_read_group_add(leader, read_format, values);
5387 if (ret)
5388 goto unlock;
5389
5390 list_for_each_entry(child, &leader->child_list, child_list) {
5391 ret = __perf_read_group_add(child, read_format, values);
5392 if (ret)
5393 goto unlock;
5394 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005395
5396 mutex_unlock(&leader->child_mutex);
5397
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005398 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005399 if (copy_to_user(buf, values, event->read_size))
5400 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005401 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005402
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005403unlock:
5404 mutex_unlock(&leader->child_mutex);
5405out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005406 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005407 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408}
5409
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005410static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005411 u64 read_format, char __user *buf)
5412{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005413 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005414 u64 values[4];
5415 int n = 0;
5416
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005417 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005418 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5419 values[n++] = enabled;
5420 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5421 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005422 if (read_format & PERF_FORMAT_ID)
5423 values[n++] = primary_event_id(event);
5424
5425 if (copy_to_user(buf, values, n * sizeof(u64)))
5426 return -EFAULT;
5427
5428 return n * sizeof(u64);
5429}
5430
Jiri Olsadc633982014-09-12 13:18:26 +02005431static bool is_event_hup(struct perf_event *event)
5432{
5433 bool no_children;
5434
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005435 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005436 return false;
5437
5438 mutex_lock(&event->child_mutex);
5439 no_children = list_empty(&event->child_list);
5440 mutex_unlock(&event->child_mutex);
5441 return no_children;
5442}
5443
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005444/*
5445 * Read the performance event - simple non blocking version for now
5446 */
5447static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005448__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005449{
5450 u64 read_format = event->attr.read_format;
5451 int ret;
5452
5453 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005454 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005455 * error state (i.e. because it was pinned but it couldn't be
5456 * scheduled on to the CPU at some point).
5457 */
5458 if (event->state == PERF_EVENT_STATE_ERROR)
5459 return 0;
5460
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005461 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005462 return -ENOSPC;
5463
5464 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005465 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005466 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005467 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005468 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469
5470 return ret;
5471}
5472
5473static ssize_t
5474perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5475{
5476 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005477 struct perf_event_context *ctx;
5478 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005479
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005480 ret = security_perf_event_read(event);
5481 if (ret)
5482 return ret;
5483
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005484 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005485 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005486 perf_event_ctx_unlock(event, ctx);
5487
5488 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005489}
5490
Al Viro9dd95742017-07-03 00:42:43 -04005491static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005492{
5493 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005494 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005495 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005496
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005497 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005498
Jiri Olsadc633982014-09-12 13:18:26 +02005499 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005500 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005501
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005502 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005503 * Pin the event->rb by taking event->mmap_mutex; otherwise
5504 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005505 */
5506 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005507 rb = event->rb;
5508 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005509 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005510 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005511 return events;
5512}
5513
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005514static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005515{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005516 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005517 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005518 perf_event_update_userpage(event);
5519}
5520
Like Xu52ba4b02019-10-27 18:52:39 +08005521/* Assume it's not an event with inherit set. */
5522u64 perf_event_pause(struct perf_event *event, bool reset)
5523{
5524 struct perf_event_context *ctx;
5525 u64 count;
5526
5527 ctx = perf_event_ctx_lock(event);
5528 WARN_ON_ONCE(event->attr.inherit);
5529 _perf_event_disable(event);
5530 count = local64_read(&event->count);
5531 if (reset)
5532 local64_set(&event->count, 0);
5533 perf_event_ctx_unlock(event, ctx);
5534
5535 return count;
5536}
5537EXPORT_SYMBOL_GPL(perf_event_pause);
5538
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005539/*
5540 * Holding the top-level event's child_mutex means that any
5541 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005542 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005543 * task existence requirements of perf_event_enable/disable.
5544 */
5545static void perf_event_for_each_child(struct perf_event *event,
5546 void (*func)(struct perf_event *))
5547{
5548 struct perf_event *child;
5549
5550 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005551
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005552 mutex_lock(&event->child_mutex);
5553 func(event);
5554 list_for_each_entry(child, &event->child_list, child_list)
5555 func(child);
5556 mutex_unlock(&event->child_mutex);
5557}
5558
5559static void perf_event_for_each(struct perf_event *event,
5560 void (*func)(struct perf_event *))
5561{
5562 struct perf_event_context *ctx = event->ctx;
5563 struct perf_event *sibling;
5564
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005565 lockdep_assert_held(&ctx->mutex);
5566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005567 event = event->group_leader;
5568
5569 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005570 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005571 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005572}
5573
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005574static void __perf_event_period(struct perf_event *event,
5575 struct perf_cpu_context *cpuctx,
5576 struct perf_event_context *ctx,
5577 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005578{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005579 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005580 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005581
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005582 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583 event->attr.sample_freq = value;
5584 } else {
5585 event->attr.sample_period = value;
5586 event->hw.sample_period = value;
5587 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005588
5589 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5590 if (active) {
5591 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005592 /*
5593 * We could be throttled; unthrottle now to avoid the tick
5594 * trying to unthrottle while we already re-started the event.
5595 */
5596 if (event->hw.interrupts == MAX_INTERRUPTS) {
5597 event->hw.interrupts = 0;
5598 perf_log_throttle(event, 1);
5599 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005600 event->pmu->stop(event, PERF_EF_UPDATE);
5601 }
5602
5603 local64_set(&event->hw.period_left, 0);
5604
5605 if (active) {
5606 event->pmu->start(event, PERF_EF_RELOAD);
5607 perf_pmu_enable(ctx->pmu);
5608 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005609}
5610
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005611static int perf_event_check_period(struct perf_event *event, u64 value)
5612{
5613 return event->pmu->check_period(event, value);
5614}
5615
Like Xu3ca270f2019-10-27 18:52:38 +08005616static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005617{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005618 if (!is_sampling_event(event))
5619 return -EINVAL;
5620
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005621 if (!value)
5622 return -EINVAL;
5623
5624 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5625 return -EINVAL;
5626
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005627 if (perf_event_check_period(event, value))
5628 return -EINVAL;
5629
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305630 if (!event->attr.freq && (value & (1ULL << 63)))
5631 return -EINVAL;
5632
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005633 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005634
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005635 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005636}
5637
Like Xu3ca270f2019-10-27 18:52:38 +08005638int perf_event_period(struct perf_event *event, u64 value)
5639{
5640 struct perf_event_context *ctx;
5641 int ret;
5642
5643 ctx = perf_event_ctx_lock(event);
5644 ret = _perf_event_period(event, value);
5645 perf_event_ctx_unlock(event, ctx);
5646
5647 return ret;
5648}
5649EXPORT_SYMBOL_GPL(perf_event_period);
5650
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005651static const struct file_operations perf_fops;
5652
Al Viro2903ff02012-08-28 12:52:22 -04005653static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005654{
Al Viro2903ff02012-08-28 12:52:22 -04005655 struct fd f = fdget(fd);
5656 if (!f.file)
5657 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005658
Al Viro2903ff02012-08-28 12:52:22 -04005659 if (f.file->f_op != &perf_fops) {
5660 fdput(f);
5661 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005662 }
Al Viro2903ff02012-08-28 12:52:22 -04005663 *p = f;
5664 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005665}
5666
5667static int perf_event_set_output(struct perf_event *event,
5668 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005669static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005670static int perf_copy_attr(struct perf_event_attr __user *uattr,
5671 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005672
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005673static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005674{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005675 void (*func)(struct perf_event *);
5676 u32 flags = arg;
5677
5678 switch (cmd) {
5679 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005680 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005681 break;
5682 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005683 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005684 break;
5685 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005686 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005687 break;
5688
5689 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005690 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005691
5692 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005693 {
5694 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005695
Like Xu3ca270f2019-10-27 18:52:38 +08005696 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5697 return -EFAULT;
5698
5699 return _perf_event_period(event, value);
5700 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005701 case PERF_EVENT_IOC_ID:
5702 {
5703 u64 id = primary_event_id(event);
5704
5705 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5706 return -EFAULT;
5707 return 0;
5708 }
5709
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005710 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005711 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005712 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005713 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005714 struct perf_event *output_event;
5715 struct fd output;
5716 ret = perf_fget_light(arg, &output);
5717 if (ret)
5718 return ret;
5719 output_event = output.file->private_data;
5720 ret = perf_event_set_output(event, output_event);
5721 fdput(output);
5722 } else {
5723 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005724 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005725 return ret;
5726 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005727
Li Zefan6fb29152009-10-15 11:21:42 +08005728 case PERF_EVENT_IOC_SET_FILTER:
5729 return perf_event_set_filter(event, (void __user *)arg);
5730
Alexei Starovoitov25415172015-03-25 12:49:20 -07005731 case PERF_EVENT_IOC_SET_BPF:
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005732 {
5733 struct bpf_prog *prog;
5734 int err;
5735
5736 prog = bpf_prog_get(arg);
5737 if (IS_ERR(prog))
5738 return PTR_ERR(prog);
5739
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07005740 err = perf_event_set_bpf_prog(event, prog, 0);
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005741 if (err) {
5742 bpf_prog_put(prog);
5743 return err;
5744 }
5745
5746 return 0;
5747 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07005748
Wang Nan86e79722016-03-28 06:41:29 +00005749 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005750 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005751
5752 rcu_read_lock();
5753 rb = rcu_dereference(event->rb);
5754 if (!rb || !rb->nr_pages) {
5755 rcu_read_unlock();
5756 return -EINVAL;
5757 }
5758 rb_toggle_paused(rb, !!arg);
5759 rcu_read_unlock();
5760 return 0;
5761 }
Yonghong Songf371b302017-12-11 11:39:02 -08005762
5763 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005764 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005765
5766 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5767 struct perf_event_attr new_attr;
5768 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5769 &new_attr);
5770
5771 if (err)
5772 return err;
5773
5774 return perf_event_modify_attr(event, &new_attr);
5775 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005776 default:
5777 return -ENOTTY;
5778 }
5779
5780 if (flags & PERF_IOC_FLAG_GROUP)
5781 perf_event_for_each(event, func);
5782 else
5783 perf_event_for_each_child(event, func);
5784
5785 return 0;
5786}
5787
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005788static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5789{
5790 struct perf_event *event = file->private_data;
5791 struct perf_event_context *ctx;
5792 long ret;
5793
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005794 /* Treat ioctl like writes as it is likely a mutating operation. */
5795 ret = security_perf_event_write(event);
5796 if (ret)
5797 return ret;
5798
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005799 ctx = perf_event_ctx_lock(event);
5800 ret = _perf_ioctl(event, cmd, arg);
5801 perf_event_ctx_unlock(event, ctx);
5802
5803 return ret;
5804}
5805
Pawel Mollb3f20782014-06-13 16:03:32 +01005806#ifdef CONFIG_COMPAT
5807static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5808 unsigned long arg)
5809{
5810 switch (_IOC_NR(cmd)) {
5811 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5812 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005813 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5814 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005815 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5816 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5817 cmd &= ~IOCSIZE_MASK;
5818 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5819 }
5820 break;
5821 }
5822 return perf_ioctl(file, cmd, arg);
5823}
5824#else
5825# define perf_compat_ioctl NULL
5826#endif
5827
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005828int perf_event_task_enable(void)
5829{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005830 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005831 struct perf_event *event;
5832
5833 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005834 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5835 ctx = perf_event_ctx_lock(event);
5836 perf_event_for_each_child(event, _perf_event_enable);
5837 perf_event_ctx_unlock(event, ctx);
5838 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005839 mutex_unlock(&current->perf_event_mutex);
5840
5841 return 0;
5842}
5843
5844int perf_event_task_disable(void)
5845{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005846 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005847 struct perf_event *event;
5848
5849 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005850 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5851 ctx = perf_event_ctx_lock(event);
5852 perf_event_for_each_child(event, _perf_event_disable);
5853 perf_event_ctx_unlock(event, ctx);
5854 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005855 mutex_unlock(&current->perf_event_mutex);
5856
5857 return 0;
5858}
5859
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005860static int perf_event_index(struct perf_event *event)
5861{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005862 if (event->hw.state & PERF_HES_STOPPED)
5863 return 0;
5864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005865 if (event->state != PERF_EVENT_STATE_ACTIVE)
5866 return 0;
5867
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005868 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005869}
5870
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005871static void perf_event_init_userpage(struct perf_event *event)
5872{
5873 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005874 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005875
5876 rcu_read_lock();
5877 rb = rcu_dereference(event->rb);
5878 if (!rb)
5879 goto unlock;
5880
5881 userpg = rb->user_page;
5882
5883 /* Allow new userspace to detect that bit 0 is deprecated */
5884 userpg->cap_bit0_is_deprecated = 1;
5885 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005886 userpg->data_offset = PAGE_SIZE;
5887 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005888
5889unlock:
5890 rcu_read_unlock();
5891}
5892
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005893void __weak arch_perf_update_userpage(
5894 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005895{
5896}
5897
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005898/*
5899 * Callers need to ensure there can be no nesting of this function, otherwise
5900 * the seqlock logic goes bad. We can not serialize this because the arch
5901 * code calls this from NMI context.
5902 */
5903void perf_event_update_userpage(struct perf_event *event)
5904{
5905 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005906 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005907 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005908
5909 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005910 rb = rcu_dereference(event->rb);
5911 if (!rb)
5912 goto unlock;
5913
Eric B Munson0d641202011-06-24 12:26:26 -04005914 /*
5915 * compute total_time_enabled, total_time_running
5916 * based on snapshot values taken when the event
5917 * was last scheduled in.
5918 *
5919 * we cannot simply called update_context_time()
5920 * because of locking issue as we can be called in
5921 * NMI context
5922 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005923 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005924
Frederic Weisbecker76369132011-05-19 19:55:04 +02005925 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005926 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005927 * Disable preemption to guarantee consistent time stamps are stored to
5928 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005929 */
5930 preempt_disable();
5931 ++userpg->lock;
5932 barrier();
5933 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005934 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005935 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005936 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937
Eric B Munson0d641202011-06-24 12:26:26 -04005938 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005939 atomic64_read(&event->child_total_time_enabled);
5940
Eric B Munson0d641202011-06-24 12:26:26 -04005941 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005942 atomic64_read(&event->child_total_time_running);
5943
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005944 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005945
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005946 barrier();
5947 ++userpg->lock;
5948 preempt_enable();
5949unlock:
5950 rcu_read_unlock();
5951}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005952EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005953
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305954static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005955{
Dave Jiang11bac802017-02-24 14:56:41 -08005956 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005957 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305958 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005959
5960 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5961 if (vmf->pgoff == 0)
5962 ret = 0;
5963 return ret;
5964 }
5965
5966 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005967 rb = rcu_dereference(event->rb);
5968 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005969 goto unlock;
5970
5971 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5972 goto unlock;
5973
Frederic Weisbecker76369132011-05-19 19:55:04 +02005974 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005975 if (!vmf->page)
5976 goto unlock;
5977
5978 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005979 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005980 vmf->page->index = vmf->pgoff;
5981
5982 ret = 0;
5983unlock:
5984 rcu_read_unlock();
5985
5986 return ret;
5987}
5988
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005989static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005990 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005991{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005992 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005993 unsigned long flags;
5994
James Clark961c3912021-12-06 11:38:40 +00005995 WARN_ON_ONCE(event->parent);
5996
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005997 if (event->rb) {
5998 /*
5999 * Should be impossible, we set this when removing
6000 * event->rb_entry and wait/clear when adding event->rb_entry.
6001 */
6002 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006003
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006004 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006005 spin_lock_irqsave(&old_rb->event_lock, flags);
6006 list_del_rcu(&event->rb_entry);
6007 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006008
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02006009 event->rcu_batches = get_state_synchronize_rcu();
6010 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006011 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006012
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006013 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02006014 if (event->rcu_pending) {
6015 cond_synchronize_rcu(event->rcu_batches);
6016 event->rcu_pending = 0;
6017 }
6018
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006019 spin_lock_irqsave(&rb->event_lock, flags);
6020 list_add_rcu(&event->rb_entry, &rb->event_list);
6021 spin_unlock_irqrestore(&rb->event_lock, flags);
6022 }
6023
Alexander Shishkin767ae082016-09-06 16:23:49 +03006024 /*
6025 * Avoid racing with perf_mmap_close(AUX): stop the event
6026 * before swizzling the event::rb pointer; if it's getting
6027 * unmapped, its aux_mmap_count will be 0 and it won't
6028 * restart. See the comment in __perf_pmu_output_stop().
6029 *
6030 * Data will inevitably be lost when set_output is done in
6031 * mid-air, but then again, whoever does it like this is
6032 * not in for the data anyway.
6033 */
6034 if (has_aux(event))
6035 perf_event_stop(event, 0);
6036
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006037 rcu_assign_pointer(event->rb, rb);
6038
6039 if (old_rb) {
6040 ring_buffer_put(old_rb);
6041 /*
6042 * Since we detached before setting the new rb, so that we
6043 * could attach the new rb, we could have missed a wakeup.
6044 * Provide it now.
6045 */
6046 wake_up_all(&event->waitq);
6047 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006048}
6049
6050static void ring_buffer_wakeup(struct perf_event *event)
6051{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006052 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006053
James Clark961c3912021-12-06 11:38:40 +00006054 if (event->parent)
6055 event = event->parent;
6056
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006057 rcu_read_lock();
6058 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006059 if (rb) {
6060 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
6061 wake_up_all(&event->waitq);
6062 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006063 rcu_read_unlock();
6064}
6065
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006066struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006067{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006068 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006069
James Clark961c3912021-12-06 11:38:40 +00006070 if (event->parent)
6071 event = event->parent;
6072
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006073 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02006074 rb = rcu_dereference(event->rb);
6075 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006076 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02006077 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006078 }
6079 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006080
Frederic Weisbecker76369132011-05-19 19:55:04 +02006081 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006082}
6083
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006084void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006085{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006086 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006087 return;
6088
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006089 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006090
Frederic Weisbecker76369132011-05-19 19:55:04 +02006091 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006092}
6093
6094static void perf_mmap_open(struct vm_area_struct *vma)
6095{
6096 struct perf_event *event = vma->vm_file->private_data;
6097
6098 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006099 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006100
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006101 if (vma->vm_pgoff)
6102 atomic_inc(&event->rb->aux_mmap_count);
6103
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006104 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006105 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006106}
6107
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006108static void perf_pmu_output_stop(struct perf_event *event);
6109
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006110/*
6111 * A buffer can be mmap()ed multiple times; either directly through the same
6112 * event, or through other events by use of perf_event_set_output().
6113 *
6114 * In order to undo the VM accounting done by perf_mmap() we need to destroy
6115 * the buffer here, where we still have a VM context. This means we need
6116 * to detach all events redirecting to us.
6117 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006118static void perf_mmap_close(struct vm_area_struct *vma)
6119{
6120 struct perf_event *event = vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006121 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006122 struct user_struct *mmap_user = rb->mmap_user;
6123 int mmap_locked = rb->mmap_locked;
6124 unsigned long size = perf_data_size(rb);
Jiri Olsaf91072e2020-09-16 13:53:11 +02006125 bool detach_rest = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006126
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006127 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006128 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006129
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006130 /*
6131 * rb->aux_mmap_count will always drop before rb->mmap_count and
6132 * event->mmap_count, so it is ok to use event->mmap_mutex to
6133 * serialize with perf_mmap here.
6134 */
6135 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
6136 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006137 /*
6138 * Stop all AUX events that are writing to this buffer,
6139 * so that we can free its AUX pages and corresponding PMU
6140 * data. Note that after rb::aux_mmap_count dropped to zero,
6141 * they won't start any more (see perf_aux_output_begin()).
6142 */
6143 perf_pmu_output_stop(event);
6144
6145 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02006146 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
6147 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006148
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006149 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006150 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02006151 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006152
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006153 mutex_unlock(&event->mmap_mutex);
6154 }
6155
Jiri Olsaf91072e2020-09-16 13:53:11 +02006156 if (atomic_dec_and_test(&rb->mmap_count))
6157 detach_rest = true;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006158
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006159 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006160 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006161
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006162 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006163 mutex_unlock(&event->mmap_mutex);
6164
6165 /* If there's still other mmap()s of this buffer, we're done. */
Jiri Olsaf91072e2020-09-16 13:53:11 +02006166 if (!detach_rest)
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006167 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006168
6169 /*
6170 * No other mmap()s, detach from all other events that might redirect
6171 * into the now unreachable buffer. Somewhat complicated by the
6172 * fact that rb::event_lock otherwise nests inside mmap_mutex.
6173 */
6174again:
6175 rcu_read_lock();
6176 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
6177 if (!atomic_long_inc_not_zero(&event->refcount)) {
6178 /*
6179 * This event is en-route to free_event() which will
6180 * detach it and remove it from the list.
6181 */
6182 continue;
6183 }
6184 rcu_read_unlock();
6185
6186 mutex_lock(&event->mmap_mutex);
6187 /*
6188 * Check we didn't race with perf_event_set_output() which can
6189 * swizzle the rb from under us while we were waiting to
6190 * acquire mmap_mutex.
6191 *
6192 * If we find a different rb; ignore this event, a next
6193 * iteration will no longer find it on the list. We have to
6194 * still restart the iteration to make sure we're not now
6195 * iterating the wrong list.
6196 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006197 if (event->rb == rb)
6198 ring_buffer_attach(event, NULL);
6199
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006200 mutex_unlock(&event->mmap_mutex);
6201 put_event(event);
6202
6203 /*
6204 * Restart the iteration; either we're on the wrong list or
6205 * destroyed its integrity by doing a deletion.
6206 */
6207 goto again;
6208 }
6209 rcu_read_unlock();
6210
6211 /*
6212 * It could be there's still a few 0-ref events on the list; they'll
6213 * get cleaned up by free_event() -- they'll also still have their
6214 * ref on the rb and will free it whenever they are done with it.
6215 *
6216 * Aside from that, this buffer is 'fully' detached and unmapped,
6217 * undo the VM accounting.
6218 */
6219
Song Liud44248a2019-09-04 14:46:18 -07006220 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
6221 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006222 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006223 free_uid(mmap_user);
6224
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006225out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006226 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006227}
6228
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04006229static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006230 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01006231 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006232 .fault = perf_mmap_fault,
6233 .page_mkwrite = perf_mmap_fault,
6234};
6235
6236static int perf_mmap(struct file *file, struct vm_area_struct *vma)
6237{
6238 struct perf_event *event = file->private_data;
6239 unsigned long user_locked, user_lock_limit;
6240 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006241 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006242 unsigned long locked, lock_limit;
6243 unsigned long vma_size;
6244 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006245 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006246 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006247
Peter Zijlstrac7920612010-05-18 10:33:24 +02006248 /*
6249 * Don't allow mmap() of inherited per-task counters. This would
6250 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02006251 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02006252 */
6253 if (event->cpu == -1 && event->attr.inherit)
6254 return -EINVAL;
6255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006256 if (!(vma->vm_flags & VM_SHARED))
6257 return -EINVAL;
6258
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006259 ret = security_perf_event_read(event);
6260 if (ret)
6261 return ret;
6262
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006263 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006264
6265 if (vma->vm_pgoff == 0) {
6266 nr_pages = (vma_size / PAGE_SIZE) - 1;
6267 } else {
6268 /*
6269 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
6270 * mapped, all subsequent mappings should have the same size
6271 * and offset. Must be above the normal perf buffer.
6272 */
6273 u64 aux_offset, aux_size;
6274
6275 if (!event->rb)
6276 return -EINVAL;
6277
6278 nr_pages = vma_size / PAGE_SIZE;
6279
6280 mutex_lock(&event->mmap_mutex);
6281 ret = -EINVAL;
6282
6283 rb = event->rb;
6284 if (!rb)
6285 goto aux_unlock;
6286
Mark Rutland6aa7de02017-10-23 14:07:29 -07006287 aux_offset = READ_ONCE(rb->user_page->aux_offset);
6288 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006289
6290 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
6291 goto aux_unlock;
6292
6293 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
6294 goto aux_unlock;
6295
6296 /* already mapped with a different offset */
6297 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
6298 goto aux_unlock;
6299
6300 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
6301 goto aux_unlock;
6302
6303 /* already mapped with a different size */
6304 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6305 goto aux_unlock;
6306
6307 if (!is_power_of_2(nr_pages))
6308 goto aux_unlock;
6309
6310 if (!atomic_inc_not_zero(&rb->mmap_count))
6311 goto aux_unlock;
6312
6313 if (rb_has_aux(rb)) {
6314 atomic_inc(&rb->aux_mmap_count);
6315 ret = 0;
6316 goto unlock;
6317 }
6318
6319 atomic_set(&rb->aux_mmap_count, 1);
6320 user_extra = nr_pages;
6321
6322 goto accounting;
6323 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006324
6325 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006326 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006327 * can do bitmasks instead of modulo.
6328 */
Kan Liang2ed11312015-03-02 02:14:26 -05006329 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006330 return -EINVAL;
6331
6332 if (vma_size != PAGE_SIZE * (1 + nr_pages))
6333 return -EINVAL;
6334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006335 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006336again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006337 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006338 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006339 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006340 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006341 goto unlock;
6342 }
6343
6344 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6345 /*
6346 * Raced against perf_mmap_close() through
6347 * perf_event_set_output(). Try again, hope for better
6348 * luck.
6349 */
6350 mutex_unlock(&event->mmap_mutex);
6351 goto again;
6352 }
6353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006354 goto unlock;
6355 }
6356
6357 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006358
6359accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006360 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
6361
6362 /*
6363 * Increase the limit linearly with more CPUs:
6364 */
6365 user_lock_limit *= num_online_cpus();
6366
Song Liu00346152020-01-23 10:11:46 -08006367 user_locked = atomic_long_read(&user->locked_vm);
6368
6369 /*
6370 * sysctl_perf_event_mlock may have changed, so that
6371 * user->locked_vm > user_lock_limit
6372 */
6373 if (user_locked > user_lock_limit)
6374 user_locked = user_lock_limit;
6375 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376
Alexander Shishkinc4b75472019-11-20 19:06:40 +02006377 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07006378 /*
6379 * charge locked_vm until it hits user_lock_limit;
6380 * charge the rest from pinned_vm
6381 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006382 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07006383 user_extra -= extra;
6384 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006385
Jiri Slaby78d7d402010-03-05 13:42:54 -08006386 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006387 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006388 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006389
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006390 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006391 !capable(CAP_IPC_LOCK)) {
6392 ret = -EPERM;
6393 goto unlock;
6394 }
6395
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006396 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02006397
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006398 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02006399 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006400
Frederic Weisbecker76369132011-05-19 19:55:04 +02006401 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006402 rb = rb_alloc(nr_pages,
6403 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6404 event->cpu, flags);
6405
6406 if (!rb) {
6407 ret = -ENOMEM;
6408 goto unlock;
6409 }
6410
6411 atomic_set(&rb->mmap_count, 1);
6412 rb->mmap_user = get_current_user();
6413 rb->mmap_locked = extra;
6414
6415 ring_buffer_attach(event, rb);
6416
Song Liuf7925652021-09-29 12:43:13 -07006417 perf_event_update_time(event);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006418 perf_event_init_userpage(event);
6419 perf_event_update_userpage(event);
6420 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02006421 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6422 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006423 if (!ret)
6424 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006425 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006427unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006428 if (!ret) {
6429 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006430 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006431
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006432 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006433 } else if (rb) {
6434 atomic_dec(&rb->mmap_count);
6435 }
6436aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006437 mutex_unlock(&event->mmap_mutex);
6438
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006439 /*
6440 * Since pinned accounting is per vm we cannot allow fork() to copy our
6441 * vma.
6442 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006443 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006444 vma->vm_ops = &perf_mmap_vmops;
6445
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006446 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006447 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006448
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006449 return ret;
6450}
6451
6452static int perf_fasync(int fd, struct file *filp, int on)
6453{
Al Viro496ad9a2013-01-23 17:07:38 -05006454 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006455 struct perf_event *event = filp->private_data;
6456 int retval;
6457
Al Viro59551022016-01-22 15:40:57 -05006458 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006459 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006460 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006461
6462 if (retval < 0)
6463 return retval;
6464
6465 return 0;
6466}
6467
6468static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006469 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006470 .release = perf_release,
6471 .read = perf_read,
6472 .poll = perf_poll,
6473 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006474 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006475 .mmap = perf_mmap,
6476 .fasync = perf_fasync,
6477};
6478
6479/*
6480 * Perf event wakeup
6481 *
6482 * If there's data, ensure we set the poll() state and publish everything
6483 * to user-space before waking everybody up.
6484 */
6485
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006486static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6487{
6488 /* only the parent has fasync state */
6489 if (event->parent)
6490 event = event->parent;
6491 return &event->fasync;
6492}
6493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494void perf_event_wakeup(struct perf_event *event)
6495{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006496 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006497
6498 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006499 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006500 event->pending_kill = 0;
6501 }
6502}
6503
Marco Elver97ba62b2021-04-08 12:36:01 +02006504static void perf_sigtrap(struct perf_event *event)
6505{
Marco Elver97ba62b2021-04-08 12:36:01 +02006506 /*
6507 * We'd expect this to only occur if the irq_work is delayed and either
6508 * ctx->task or current has changed in the meantime. This can be the
6509 * case on architectures that do not implement arch_irq_work_raise().
6510 */
6511 if (WARN_ON_ONCE(event->ctx->task != current))
6512 return;
6513
6514 /*
6515 * perf_pending_event() can race with the task exiting.
6516 */
6517 if (current->flags & PF_EXITING)
6518 return;
6519
Eric W. Biedermanaf5eeab2021-05-02 14:27:24 -05006520 force_sig_perf((void __user *)event->pending_addr,
6521 event->attr.type, event->attr.sig_data);
Marco Elver97ba62b2021-04-08 12:36:01 +02006522}
6523
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006524static void perf_pending_event_disable(struct perf_event *event)
6525{
6526 int cpu = READ_ONCE(event->pending_disable);
6527
6528 if (cpu < 0)
6529 return;
6530
6531 if (cpu == smp_processor_id()) {
6532 WRITE_ONCE(event->pending_disable, -1);
Marco Elver97ba62b2021-04-08 12:36:01 +02006533
6534 if (event->attr.sigtrap) {
6535 perf_sigtrap(event);
6536 atomic_set_release(&event->event_limit, 1); /* rearm event */
6537 return;
6538 }
6539
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006540 perf_event_disable_local(event);
6541 return;
6542 }
6543
6544 /*
6545 * CPU-A CPU-B
6546 *
6547 * perf_event_disable_inatomic()
6548 * @pending_disable = CPU-A;
6549 * irq_work_queue();
6550 *
6551 * sched-out
6552 * @pending_disable = -1;
6553 *
6554 * sched-in
6555 * perf_event_disable_inatomic()
6556 * @pending_disable = CPU-B;
6557 * irq_work_queue(); // FAILS
6558 *
6559 * irq_work_run()
6560 * perf_pending_event()
6561 *
6562 * But the event runs on CPU-B and wants disabling there.
6563 */
6564 irq_work_queue_on(&event->pending, cpu);
6565}
6566
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006567static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006568{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006569 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006570 int rctx;
6571
6572 rctx = perf_swevent_get_recursion_context();
6573 /*
6574 * If we 'fail' here, that's OK, it means recursion is already disabled
6575 * and we won't recurse 'further'.
6576 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006577
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006578 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006579
6580 if (event->pending_wakeup) {
6581 event->pending_wakeup = 0;
6582 perf_event_wakeup(event);
6583 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006584
6585 if (rctx >= 0)
6586 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006587}
6588
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006589#ifdef CONFIG_GUEST_PERF_EVENTS
Sean Christophersonff083a22021-11-11 02:07:22 +00006590struct perf_guest_info_callbacks __rcu *perf_guest_cbs;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006591
Sean Christopherson87b940a2021-11-11 02:07:30 +00006592DEFINE_STATIC_CALL_RET0(__perf_guest_state, *perf_guest_cbs->state);
6593DEFINE_STATIC_CALL_RET0(__perf_guest_get_ip, *perf_guest_cbs->get_ip);
6594DEFINE_STATIC_CALL_RET0(__perf_guest_handle_intel_pt_intr, *perf_guest_cbs->handle_intel_pt_intr);
6595
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006596void perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006597{
Sean Christophersonff083a22021-11-11 02:07:22 +00006598 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs)))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006599 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006600
6601 rcu_assign_pointer(perf_guest_cbs, cbs);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006602 static_call_update(__perf_guest_state, cbs->state);
6603 static_call_update(__perf_guest_get_ip, cbs->get_ip);
6604
6605 /* Implementing ->handle_intel_pt_intr is optional. */
6606 if (cbs->handle_intel_pt_intr)
6607 static_call_update(__perf_guest_handle_intel_pt_intr,
6608 cbs->handle_intel_pt_intr);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006609}
6610EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6611
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006612void perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006613{
Sean Christophersonff083a22021-11-11 02:07:22 +00006614 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs) != cbs))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006615 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006616
6617 rcu_assign_pointer(perf_guest_cbs, NULL);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006618 static_call_update(__perf_guest_state, (void *)&__static_call_return0);
6619 static_call_update(__perf_guest_get_ip, (void *)&__static_call_return0);
6620 static_call_update(__perf_guest_handle_intel_pt_intr,
6621 (void *)&__static_call_return0);
Sean Christophersonff083a22021-11-11 02:07:22 +00006622 synchronize_rcu();
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006623}
6624EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006625#endif
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006626
Jiri Olsa40189942012-08-07 15:20:37 +02006627static void
6628perf_output_sample_regs(struct perf_output_handle *handle,
6629 struct pt_regs *regs, u64 mask)
6630{
6631 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306632 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006633
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306634 bitmap_from_u64(_mask, mask);
6635 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006636 u64 val;
6637
6638 val = perf_reg_value(regs, bit);
6639 perf_output_put(handle, val);
6640 }
6641}
6642
Stephane Eranian60e23642014-09-24 13:48:37 +02006643static void perf_sample_regs_user(struct perf_regs *regs_user,
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006644 struct pt_regs *regs)
Jiri Olsa40189942012-08-07 15:20:37 +02006645{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006646 if (user_mode(regs)) {
6647 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006648 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006649 } else if (!(current->flags & PF_KTHREAD)) {
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006650 perf_get_regs_user(regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02006651 } else {
6652 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6653 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006654 }
6655}
6656
Stephane Eranian60e23642014-09-24 13:48:37 +02006657static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6658 struct pt_regs *regs)
6659{
6660 regs_intr->regs = regs;
6661 regs_intr->abi = perf_reg_abi(current);
6662}
6663
6664
Jiri Olsac5ebced2012-08-07 15:20:40 +02006665/*
6666 * Get remaining task size from user stack pointer.
6667 *
6668 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006669 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006670 * so using TASK_SIZE as limit.
6671 */
6672static u64 perf_ustack_task_size(struct pt_regs *regs)
6673{
6674 unsigned long addr = perf_user_stack_pointer(regs);
6675
6676 if (!addr || addr >= TASK_SIZE)
6677 return 0;
6678
6679 return TASK_SIZE - addr;
6680}
6681
6682static u16
6683perf_sample_ustack_size(u16 stack_size, u16 header_size,
6684 struct pt_regs *regs)
6685{
6686 u64 task_size;
6687
6688 /* No regs, no stack pointer, no dump. */
6689 if (!regs)
6690 return 0;
6691
6692 /*
6693 * Check if we fit in with the requested stack size into the:
6694 * - TASK_SIZE
6695 * If we don't, we limit the size to the TASK_SIZE.
6696 *
6697 * - remaining sample size
6698 * If we don't, we customize the stack size to
6699 * fit in to the remaining sample size.
6700 */
6701
6702 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6703 stack_size = min(stack_size, (u16) task_size);
6704
6705 /* Current header size plus static size and dynamic size. */
6706 header_size += 2 * sizeof(u64);
6707
6708 /* Do we fit in with the current stack dump size? */
6709 if ((u16) (header_size + stack_size) < header_size) {
6710 /*
6711 * If we overflow the maximum size for the sample,
6712 * we customize the stack dump size to fit in.
6713 */
6714 stack_size = USHRT_MAX - header_size - sizeof(u64);
6715 stack_size = round_up(stack_size, sizeof(u64));
6716 }
6717
6718 return stack_size;
6719}
6720
6721static void
6722perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6723 struct pt_regs *regs)
6724{
6725 /* Case of a kernel thread, nothing to dump */
6726 if (!regs) {
6727 u64 size = 0;
6728 perf_output_put(handle, size);
6729 } else {
6730 unsigned long sp;
6731 unsigned int rem;
6732 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006733 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006734
6735 /*
6736 * We dump:
6737 * static size
6738 * - the size requested by user or the best one we can fit
6739 * in to the sample max size
6740 * data
6741 * - user stack dump data
6742 * dynamic size
6743 * - the actual dumped size
6744 */
6745
6746 /* Static size. */
6747 perf_output_put(handle, dump_size);
6748
6749 /* Data. */
6750 sp = perf_user_stack_pointer(regs);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006751 fs = force_uaccess_begin();
Jiri Olsac5ebced2012-08-07 15:20:40 +02006752 rem = __output_copy_user(handle, (void *) sp, dump_size);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006753 force_uaccess_end(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006754 dyn_size = dump_size - rem;
6755
6756 perf_output_skip(handle, rem);
6757
6758 /* Dynamic size. */
6759 perf_output_put(handle, dyn_size);
6760 }
6761}
6762
Alexander Shishkina4faf002019-10-25 17:08:33 +03006763static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6764 struct perf_sample_data *data,
6765 size_t size)
6766{
6767 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006768 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006769
6770 data->aux_size = 0;
6771
6772 if (!sampler)
6773 goto out;
6774
6775 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6776 goto out;
6777
6778 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6779 goto out;
6780
James Clark961c3912021-12-06 11:38:40 +00006781 rb = ring_buffer_get(sampler);
Alexander Shishkina4faf002019-10-25 17:08:33 +03006782 if (!rb)
6783 goto out;
6784
6785 /*
6786 * If this is an NMI hit inside sampling code, don't take
6787 * the sample. See also perf_aux_sample_output().
6788 */
6789 if (READ_ONCE(rb->aux_in_sampling)) {
6790 data->aux_size = 0;
6791 } else {
6792 size = min_t(size_t, size, perf_aux_size(rb));
6793 data->aux_size = ALIGN(size, sizeof(u64));
6794 }
6795 ring_buffer_put(rb);
6796
6797out:
6798 return data->aux_size;
6799}
6800
Haocheng Xie32961ae2021-05-27 11:19:45 +08006801static long perf_pmu_snapshot_aux(struct perf_buffer *rb,
6802 struct perf_event *event,
6803 struct perf_output_handle *handle,
6804 unsigned long size)
Alexander Shishkina4faf002019-10-25 17:08:33 +03006805{
6806 unsigned long flags;
6807 long ret;
6808
6809 /*
6810 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6811 * paths. If we start calling them in NMI context, they may race with
6812 * the IRQ ones, that is, for example, re-starting an event that's just
6813 * been stopped, which is why we're using a separate callback that
6814 * doesn't change the event state.
6815 *
6816 * IRQs need to be disabled to prevent IPIs from racing with us.
6817 */
6818 local_irq_save(flags);
6819 /*
6820 * Guard against NMI hits inside the critical section;
6821 * see also perf_prepare_sample_aux().
6822 */
6823 WRITE_ONCE(rb->aux_in_sampling, 1);
6824 barrier();
6825
6826 ret = event->pmu->snapshot_aux(event, handle, size);
6827
6828 barrier();
6829 WRITE_ONCE(rb->aux_in_sampling, 0);
6830 local_irq_restore(flags);
6831
6832 return ret;
6833}
6834
6835static void perf_aux_sample_output(struct perf_event *event,
6836 struct perf_output_handle *handle,
6837 struct perf_sample_data *data)
6838{
6839 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006840 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006841 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006842 long size;
6843
6844 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6845 return;
6846
James Clark961c3912021-12-06 11:38:40 +00006847 rb = ring_buffer_get(sampler);
Alexander Shishkina4faf002019-10-25 17:08:33 +03006848 if (!rb)
6849 return;
6850
6851 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6852
6853 /*
6854 * An error here means that perf_output_copy() failed (returned a
6855 * non-zero surplus that it didn't copy), which in its current
6856 * enlightened implementation is not possible. If that changes, we'd
6857 * like to know.
6858 */
6859 if (WARN_ON_ONCE(size < 0))
6860 goto out_put;
6861
6862 /*
6863 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6864 * perf_prepare_sample_aux(), so should not be more than that.
6865 */
6866 pad = data->aux_size - size;
6867 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6868 pad = 8;
6869
6870 if (pad) {
6871 u64 zero = 0;
6872 perf_output_copy(handle, &zero, pad);
6873 }
6874
6875out_put:
6876 ring_buffer_put(rb);
6877}
6878
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006879static void __perf_event_header__init_id(struct perf_event_header *header,
6880 struct perf_sample_data *data,
6881 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006882{
6883 u64 sample_type = event->attr.sample_type;
6884
6885 data->type = sample_type;
6886 header->size += event->id_header_size;
6887
6888 if (sample_type & PERF_SAMPLE_TID) {
6889 /* namespace issues */
6890 data->tid_entry.pid = perf_event_pid(event, current);
6891 data->tid_entry.tid = perf_event_tid(event, current);
6892 }
6893
6894 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006895 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006896
Adrian Hunterff3d5272013-08-27 11:23:07 +03006897 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006898 data->id = primary_event_id(event);
6899
6900 if (sample_type & PERF_SAMPLE_STREAM_ID)
6901 data->stream_id = event->id;
6902
6903 if (sample_type & PERF_SAMPLE_CPU) {
6904 data->cpu_entry.cpu = raw_smp_processor_id();
6905 data->cpu_entry.reserved = 0;
6906 }
6907}
6908
Frederic Weisbecker76369132011-05-19 19:55:04 +02006909void perf_event_header__init_id(struct perf_event_header *header,
6910 struct perf_sample_data *data,
6911 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006912{
6913 if (event->attr.sample_id_all)
6914 __perf_event_header__init_id(header, data, event);
6915}
6916
6917static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6918 struct perf_sample_data *data)
6919{
6920 u64 sample_type = data->type;
6921
6922 if (sample_type & PERF_SAMPLE_TID)
6923 perf_output_put(handle, data->tid_entry);
6924
6925 if (sample_type & PERF_SAMPLE_TIME)
6926 perf_output_put(handle, data->time);
6927
6928 if (sample_type & PERF_SAMPLE_ID)
6929 perf_output_put(handle, data->id);
6930
6931 if (sample_type & PERF_SAMPLE_STREAM_ID)
6932 perf_output_put(handle, data->stream_id);
6933
6934 if (sample_type & PERF_SAMPLE_CPU)
6935 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006936
6937 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6938 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006939}
6940
Frederic Weisbecker76369132011-05-19 19:55:04 +02006941void perf_event__output_id_sample(struct perf_event *event,
6942 struct perf_output_handle *handle,
6943 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006944{
6945 if (event->attr.sample_id_all)
6946 __perf_event__output_id_sample(handle, sample);
6947}
6948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006949static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006950 struct perf_event *event,
6951 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006952{
6953 u64 read_format = event->attr.read_format;
6954 u64 values[4];
6955 int n = 0;
6956
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006957 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006958 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006959 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006960 atomic64_read(&event->child_total_time_enabled);
6961 }
6962 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006963 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006964 atomic64_read(&event->child_total_time_running);
6965 }
6966 if (read_format & PERF_FORMAT_ID)
6967 values[n++] = primary_event_id(event);
6968
Frederic Weisbecker76369132011-05-19 19:55:04 +02006969 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006970}
6971
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006972static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006973 struct perf_event *event,
6974 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006975{
6976 struct perf_event *leader = event->group_leader, *sub;
6977 u64 read_format = event->attr.read_format;
6978 u64 values[5];
6979 int n = 0;
6980
6981 values[n++] = 1 + leader->nr_siblings;
6982
6983 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006984 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006985
6986 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006987 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006988
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006989 if ((leader != event) &&
6990 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006991 leader->pmu->read(leader);
6992
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006993 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006994 if (read_format & PERF_FORMAT_ID)
6995 values[n++] = primary_event_id(leader);
6996
Frederic Weisbecker76369132011-05-19 19:55:04 +02006997 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006998
Peter Zijlstraedb39592018-03-15 17:36:56 +01006999 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007000 n = 0;
7001
Jiri Olsa6f5ab002012-10-15 20:13:45 +02007002 if ((sub != event) &&
7003 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007004 sub->pmu->read(sub);
7005
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007006 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007007 if (read_format & PERF_FORMAT_ID)
7008 values[n++] = primary_event_id(sub);
7009
Frederic Weisbecker76369132011-05-19 19:55:04 +02007010 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007011 }
7012}
7013
Stephane Eranianeed01522010-10-26 16:08:01 +02007014#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
7015 PERF_FORMAT_TOTAL_TIME_RUNNING)
7016
Peter Zijlstraba5213a2017-05-30 11:45:12 +02007017/*
7018 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
7019 *
7020 * The problem is that its both hard and excessively expensive to iterate the
7021 * child list, not to mention that its impossible to IPI the children running
7022 * on another CPU, from interrupt/NMI context.
7023 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007024static void perf_output_read(struct perf_output_handle *handle,
7025 struct perf_event *event)
7026{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01007027 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02007028 u64 read_format = event->attr.read_format;
7029
7030 /*
7031 * compute total_time_enabled, total_time_running
7032 * based on snapshot values taken when the event
7033 * was last scheduled in.
7034 *
7035 * we cannot simply called update_context_time()
7036 * because of locking issue as we are called in
7037 * NMI context
7038 */
Eric B Munsonc4794292011-06-23 16:34:38 -04007039 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01007040 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02007041
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007042 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02007043 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044 else
Stephane Eranianeed01522010-10-26 16:08:01 +02007045 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007046}
7047
Kan Liangbbfd5e42020-01-27 08:53:54 -08007048static inline bool perf_sample_save_hw_index(struct perf_event *event)
7049{
7050 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
7051}
7052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007053void perf_output_sample(struct perf_output_handle *handle,
7054 struct perf_event_header *header,
7055 struct perf_sample_data *data,
7056 struct perf_event *event)
7057{
7058 u64 sample_type = data->type;
7059
7060 perf_output_put(handle, *header);
7061
Adrian Hunterff3d5272013-08-27 11:23:07 +03007062 if (sample_type & PERF_SAMPLE_IDENTIFIER)
7063 perf_output_put(handle, data->id);
7064
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007065 if (sample_type & PERF_SAMPLE_IP)
7066 perf_output_put(handle, data->ip);
7067
7068 if (sample_type & PERF_SAMPLE_TID)
7069 perf_output_put(handle, data->tid_entry);
7070
7071 if (sample_type & PERF_SAMPLE_TIME)
7072 perf_output_put(handle, data->time);
7073
7074 if (sample_type & PERF_SAMPLE_ADDR)
7075 perf_output_put(handle, data->addr);
7076
7077 if (sample_type & PERF_SAMPLE_ID)
7078 perf_output_put(handle, data->id);
7079
7080 if (sample_type & PERF_SAMPLE_STREAM_ID)
7081 perf_output_put(handle, data->stream_id);
7082
7083 if (sample_type & PERF_SAMPLE_CPU)
7084 perf_output_put(handle, data->cpu_entry);
7085
7086 if (sample_type & PERF_SAMPLE_PERIOD)
7087 perf_output_put(handle, data->period);
7088
7089 if (sample_type & PERF_SAMPLE_READ)
7090 perf_output_read(handle, event);
7091
7092 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01007093 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007094
Jiri Olsa99e818c2018-01-07 17:03:50 +01007095 size += data->callchain->nr;
7096 size *= sizeof(u64);
7097 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007098 }
7099
7100 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007101 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07007102
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007103 if (raw) {
7104 struct perf_raw_frag *frag = &raw->frag;
7105
7106 perf_output_put(handle, raw->size);
7107 do {
7108 if (frag->copy) {
7109 __output_custom(handle, frag->copy,
7110 frag->data, frag->size);
7111 } else {
7112 __output_copy(handle, frag->data,
7113 frag->size);
7114 }
7115 if (perf_raw_frag_last(frag))
7116 break;
7117 frag = frag->next;
7118 } while (1);
7119 if (frag->pad)
7120 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007121 } else {
7122 struct {
7123 u32 size;
7124 u32 data;
7125 } raw = {
7126 .size = sizeof(u32),
7127 .data = 0,
7128 };
7129 perf_output_put(handle, raw);
7130 }
7131 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007132
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007133 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7134 if (data->br_stack) {
7135 size_t size;
7136
7137 size = data->br_stack->nr
7138 * sizeof(struct perf_branch_entry);
7139
7140 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08007141 if (perf_sample_save_hw_index(event))
7142 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007143 perf_output_copy(handle, data->br_stack->entries, size);
7144 } else {
7145 /*
7146 * we always store at least the value of nr
7147 */
7148 u64 nr = 0;
7149 perf_output_put(handle, nr);
7150 }
7151 }
Jiri Olsa40189942012-08-07 15:20:37 +02007152
7153 if (sample_type & PERF_SAMPLE_REGS_USER) {
7154 u64 abi = data->regs_user.abi;
7155
7156 /*
7157 * If there are no regs to dump, notice it through
7158 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7159 */
7160 perf_output_put(handle, abi);
7161
7162 if (abi) {
7163 u64 mask = event->attr.sample_regs_user;
7164 perf_output_sample_regs(handle,
7165 data->regs_user.regs,
7166 mask);
7167 }
7168 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007169
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007170 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02007171 perf_output_sample_ustack(handle,
7172 data->stack_user_size,
7173 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007174 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01007175
Kan Liang2a6c6b72021-01-28 14:40:07 -08007176 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
7177 perf_output_put(handle, data->weight.full);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01007178
7179 if (sample_type & PERF_SAMPLE_DATA_SRC)
7180 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007181
Andi Kleenfdfbbd02013-09-20 07:40:39 -07007182 if (sample_type & PERF_SAMPLE_TRANSACTION)
7183 perf_output_put(handle, data->txn);
7184
Stephane Eranian60e23642014-09-24 13:48:37 +02007185 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7186 u64 abi = data->regs_intr.abi;
7187 /*
7188 * If there are no regs to dump, notice it through
7189 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7190 */
7191 perf_output_put(handle, abi);
7192
7193 if (abi) {
7194 u64 mask = event->attr.sample_regs_intr;
7195
7196 perf_output_sample_regs(handle,
7197 data->regs_intr.regs,
7198 mask);
7199 }
7200 }
7201
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007202 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7203 perf_output_put(handle, data->phys_addr);
7204
Namhyung Kim6546b192020-03-25 21:45:29 +09007205 if (sample_type & PERF_SAMPLE_CGROUP)
7206 perf_output_put(handle, data->cgroup);
7207
Kan Liang8d97e712020-10-01 06:57:46 -07007208 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7209 perf_output_put(handle, data->data_page_size);
7210
Stephane Eranian995f0882020-10-01 06:57:49 -07007211 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7212 perf_output_put(handle, data->code_page_size);
7213
Alexander Shishkina4faf002019-10-25 17:08:33 +03007214 if (sample_type & PERF_SAMPLE_AUX) {
7215 perf_output_put(handle, data->aux_size);
7216
7217 if (data->aux_size)
7218 perf_aux_sample_output(event, handle, data);
7219 }
7220
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007221 if (!event->attr.watermark) {
7222 int wakeup_events = event->attr.wakeup_events;
7223
7224 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007225 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007226 int events = local_inc_return(&rb->events);
7227
7228 if (events >= wakeup_events) {
7229 local_sub(wakeup_events, &rb->events);
7230 local_inc(&rb->wakeup);
7231 }
7232 }
7233 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007234}
7235
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007236static u64 perf_virt_to_phys(u64 virt)
7237{
7238 u64 phys_addr = 0;
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007239
7240 if (!virt)
7241 return 0;
7242
7243 if (virt >= TASK_SIZE) {
7244 /* If it's vmalloc()d memory, leave phys_addr as 0 */
7245 if (virt_addr_valid((void *)(uintptr_t)virt) &&
7246 !(virt >= VMALLOC_START && virt < VMALLOC_END))
7247 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
7248 } else {
7249 /*
7250 * Walking the pages tables for user address.
7251 * Interrupts are disabled, so it prevents any tear down
7252 * of the page tables.
Souptick Joarderdadbb612020-06-07 21:40:55 -07007253 * Try IRQ-safe get_user_page_fast_only first.
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007254 * If failed, leave phys_addr as 0.
7255 */
Jiri Olsad3296fb2020-04-07 16:14:27 +02007256 if (current->mm != NULL) {
Greg Thelen47160232021-11-10 18:18:14 -08007257 struct page *p;
7258
Jiri Olsad3296fb2020-04-07 16:14:27 +02007259 pagefault_disable();
Greg Thelen47160232021-11-10 18:18:14 -08007260 if (get_user_page_fast_only(virt, 0, &p)) {
Jiri Olsad3296fb2020-04-07 16:14:27 +02007261 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
Greg Thelen47160232021-11-10 18:18:14 -08007262 put_page(p);
7263 }
Jiri Olsad3296fb2020-04-07 16:14:27 +02007264 pagefault_enable();
7265 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007266 }
7267
7268 return phys_addr;
7269}
7270
Kan Liang8d97e712020-10-01 06:57:46 -07007271/*
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007272 * Return the pagetable size of a given virtual address.
Kan Liang8d97e712020-10-01 06:57:46 -07007273 */
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007274static u64 perf_get_pgtable_size(struct mm_struct *mm, unsigned long addr)
Kan Liang8d97e712020-10-01 06:57:46 -07007275{
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007276 u64 size = 0;
Kan Liang8d97e712020-10-01 06:57:46 -07007277
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007278#ifdef CONFIG_HAVE_FAST_GUP
7279 pgd_t *pgdp, pgd;
7280 p4d_t *p4dp, p4d;
7281 pud_t *pudp, pud;
7282 pmd_t *pmdp, pmd;
7283 pte_t *ptep, pte;
7284
7285 pgdp = pgd_offset(mm, addr);
7286 pgd = READ_ONCE(*pgdp);
7287 if (pgd_none(pgd))
Kan Liang8d97e712020-10-01 06:57:46 -07007288 return 0;
7289
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007290 if (pgd_leaf(pgd))
7291 return pgd_leaf_size(pgd);
7292
7293 p4dp = p4d_offset_lockless(pgdp, pgd, addr);
7294 p4d = READ_ONCE(*p4dp);
7295 if (!p4d_present(p4d))
Kan Liang8d97e712020-10-01 06:57:46 -07007296 return 0;
7297
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007298 if (p4d_leaf(p4d))
7299 return p4d_leaf_size(p4d);
Kan Liang8d97e712020-10-01 06:57:46 -07007300
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007301 pudp = pud_offset_lockless(p4dp, p4d, addr);
7302 pud = READ_ONCE(*pudp);
7303 if (!pud_present(pud))
Kan Liang8d97e712020-10-01 06:57:46 -07007304 return 0;
7305
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007306 if (pud_leaf(pud))
7307 return pud_leaf_size(pud);
Kan Liang8d97e712020-10-01 06:57:46 -07007308
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007309 pmdp = pmd_offset_lockless(pudp, pud, addr);
7310 pmd = READ_ONCE(*pmdp);
7311 if (!pmd_present(pmd))
Kan Liang8d97e712020-10-01 06:57:46 -07007312 return 0;
7313
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007314 if (pmd_leaf(pmd))
7315 return pmd_leaf_size(pmd);
Kan Liang8d97e712020-10-01 06:57:46 -07007316
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007317 ptep = pte_offset_map(&pmd, addr);
7318 pte = ptep_get_lockless(ptep);
7319 if (pte_present(pte))
7320 size = pte_leaf_size(pte);
7321 pte_unmap(ptep);
7322#endif /* CONFIG_HAVE_FAST_GUP */
Kan Liang8d97e712020-10-01 06:57:46 -07007323
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007324 return size;
Kan Liang8d97e712020-10-01 06:57:46 -07007325}
7326
Kan Liang8d97e712020-10-01 06:57:46 -07007327static u64 perf_get_page_size(unsigned long addr)
7328{
7329 struct mm_struct *mm;
7330 unsigned long flags;
7331 u64 size;
7332
7333 if (!addr)
7334 return 0;
7335
7336 /*
7337 * Software page-table walkers must disable IRQs,
7338 * which prevents any tear down of the page tables.
7339 */
7340 local_irq_save(flags);
7341
7342 mm = current->mm;
7343 if (!mm) {
7344 /*
7345 * For kernel threads and the like, use init_mm so that
7346 * we can find kernel memory.
7347 */
7348 mm = &init_mm;
7349 }
7350
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007351 size = perf_get_pgtable_size(mm, addr);
Kan Liang8d97e712020-10-01 06:57:46 -07007352
7353 local_irq_restore(flags);
7354
7355 return size;
7356}
7357
Jiri Olsa99e818c2018-01-07 17:03:50 +01007358static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
7359
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007360struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007361perf_callchain(struct perf_event *event, struct pt_regs *regs)
7362{
7363 bool kernel = !event->attr.exclude_callchain_kernel;
7364 bool user = !event->attr.exclude_callchain_user;
7365 /* Disallow cross-task user callchains. */
7366 bool crosstask = event->ctx->task && event->ctx->task != current;
7367 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01007368 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007369
7370 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01007371 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007372
Jiri Olsa99e818c2018-01-07 17:03:50 +01007373 callchain = get_perf_callchain(regs, 0, kernel, user,
7374 max_stack, crosstask, true);
7375 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007376}
7377
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007378void perf_prepare_sample(struct perf_event_header *header,
7379 struct perf_sample_data *data,
7380 struct perf_event *event,
7381 struct pt_regs *regs)
7382{
7383 u64 sample_type = event->attr.sample_type;
7384
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007385 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007386 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007387
7388 header->misc = 0;
7389 header->misc |= perf_misc_flags(regs);
7390
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007391 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007392
Stephane Eranian995f0882020-10-01 06:57:49 -07007393 if (sample_type & (PERF_SAMPLE_IP | PERF_SAMPLE_CODE_PAGE_SIZE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007394 data->ip = perf_instruction_pointer(regs);
7395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007396 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
7397 int size = 1;
7398
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007399 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
7400 data->callchain = perf_callchain(event, regs);
7401
Jiri Olsa99e818c2018-01-07 17:03:50 +01007402 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007403
7404 header->size += size * sizeof(u64);
7405 }
7406
7407 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007408 struct perf_raw_record *raw = data->raw;
7409 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007410
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007411 if (raw) {
7412 struct perf_raw_frag *frag = &raw->frag;
7413 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007414
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007415 do {
7416 sum += frag->size;
7417 if (perf_raw_frag_last(frag))
7418 break;
7419 frag = frag->next;
7420 } while (1);
7421
7422 size = round_up(sum + sizeof(u32), sizeof(u64));
7423 raw->size = size - sizeof(u32);
7424 frag->pad = raw->size - sum;
7425 } else {
7426 size = sizeof(u64);
7427 }
7428
7429 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007430 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007431
7432 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7433 int size = sizeof(u64); /* nr */
7434 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08007435 if (perf_sample_save_hw_index(event))
7436 size += sizeof(u64);
7437
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007438 size += data->br_stack->nr
7439 * sizeof(struct perf_branch_entry);
7440 }
7441 header->size += size;
7442 }
Jiri Olsa40189942012-08-07 15:20:37 +02007443
Peter Zijlstra25657112014-09-24 13:48:42 +02007444 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01007445 perf_sample_regs_user(&data->regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02007446
Jiri Olsa40189942012-08-07 15:20:37 +02007447 if (sample_type & PERF_SAMPLE_REGS_USER) {
7448 /* regs dump ABI info */
7449 int size = sizeof(u64);
7450
Jiri Olsa40189942012-08-07 15:20:37 +02007451 if (data->regs_user.regs) {
7452 u64 mask = event->attr.sample_regs_user;
7453 size += hweight64(mask) * sizeof(u64);
7454 }
7455
7456 header->size += size;
7457 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007458
7459 if (sample_type & PERF_SAMPLE_STACK_USER) {
7460 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03007461 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02007462 * processed as the last one or have additional check added
7463 * in case new sample type is added, because we could eat
7464 * up the rest of the sample size.
7465 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02007466 u16 stack_size = event->attr.sample_stack_user;
7467 u16 size = sizeof(u64);
7468
Jiri Olsac5ebced2012-08-07 15:20:40 +02007469 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02007470 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007471
7472 /*
7473 * If there is something to dump, add space for the dump
7474 * itself and for the field that tells the dynamic size,
7475 * which is how many have been actually dumped.
7476 */
7477 if (stack_size)
7478 size += sizeof(u64) + stack_size;
7479
7480 data->stack_user_size = stack_size;
7481 header->size += size;
7482 }
Stephane Eranian60e23642014-09-24 13:48:37 +02007483
7484 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7485 /* regs dump ABI info */
7486 int size = sizeof(u64);
7487
7488 perf_sample_regs_intr(&data->regs_intr, regs);
7489
7490 if (data->regs_intr.regs) {
7491 u64 mask = event->attr.sample_regs_intr;
7492
7493 size += hweight64(mask) * sizeof(u64);
7494 }
7495
7496 header->size += size;
7497 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007498
7499 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7500 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03007501
Namhyung Kim6546b192020-03-25 21:45:29 +09007502#ifdef CONFIG_CGROUP_PERF
7503 if (sample_type & PERF_SAMPLE_CGROUP) {
7504 struct cgroup *cgrp;
7505
7506 /* protected by RCU */
7507 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7508 data->cgroup = cgroup_id(cgrp);
7509 }
7510#endif
7511
Kan Liang8d97e712020-10-01 06:57:46 -07007512 /*
7513 * PERF_DATA_PAGE_SIZE requires PERF_SAMPLE_ADDR. If the user doesn't
7514 * require PERF_SAMPLE_ADDR, kernel implicitly retrieve the data->addr,
7515 * but the value will not dump to the userspace.
7516 */
7517 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7518 data->data_page_size = perf_get_page_size(data->addr);
7519
Stephane Eranian995f0882020-10-01 06:57:49 -07007520 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7521 data->code_page_size = perf_get_page_size(data->ip);
7522
Alexander Shishkina4faf002019-10-25 17:08:33 +03007523 if (sample_type & PERF_SAMPLE_AUX) {
7524 u64 size;
7525
7526 header->size += sizeof(u64); /* size */
7527
7528 /*
7529 * Given the 16bit nature of header::size, an AUX sample can
7530 * easily overflow it, what with all the preceding sample bits.
7531 * Make sure this doesn't happen by using up to U16_MAX bytes
7532 * per sample in total (rounded down to 8 byte boundary).
7533 */
7534 size = min_t(size_t, U16_MAX - header->size,
7535 event->attr.aux_sample_size);
7536 size = rounddown(size, 8);
7537 size = perf_prepare_sample_aux(event, data, size);
7538
7539 WARN_ON_ONCE(size + header->size > U16_MAX);
7540 header->size += size;
7541 }
7542 /*
7543 * If you're adding more sample types here, you likely need to do
7544 * something about the overflowing header::size, like repurpose the
7545 * lowest 3 bits of size, which should be always zero at the moment.
7546 * This raises a more important question, do we really need 512k sized
7547 * samples and why, so good argumentation is in order for whatever you
7548 * do here next.
7549 */
7550 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007551}
7552
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007553static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00007554__perf_event_output(struct perf_event *event,
7555 struct perf_sample_data *data,
7556 struct pt_regs *regs,
7557 int (*output_begin)(struct perf_output_handle *,
Peter Zijlstra267fb272020-10-30 15:50:32 +01007558 struct perf_sample_data *,
Wang Nan9ecda412016-04-05 14:11:18 +00007559 struct perf_event *,
7560 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007561{
7562 struct perf_output_handle handle;
7563 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007564 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007565
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007566 /* protect the callchain buffers */
7567 rcu_read_lock();
7568
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007569 perf_prepare_sample(&header, data, event, regs);
7570
Peter Zijlstra267fb272020-10-30 15:50:32 +01007571 err = output_begin(&handle, data, event, header.size);
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007572 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007573 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007574
7575 perf_output_sample(&handle, &header, data, event);
7576
7577 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007578
7579exit:
7580 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007581 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007582}
7583
Wang Nan9ecda412016-04-05 14:11:18 +00007584void
7585perf_event_output_forward(struct perf_event *event,
7586 struct perf_sample_data *data,
7587 struct pt_regs *regs)
7588{
7589 __perf_event_output(event, data, regs, perf_output_begin_forward);
7590}
7591
7592void
7593perf_event_output_backward(struct perf_event *event,
7594 struct perf_sample_data *data,
7595 struct pt_regs *regs)
7596{
7597 __perf_event_output(event, data, regs, perf_output_begin_backward);
7598}
7599
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007600int
Wang Nan9ecda412016-04-05 14:11:18 +00007601perf_event_output(struct perf_event *event,
7602 struct perf_sample_data *data,
7603 struct pt_regs *regs)
7604{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007605 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007606}
7607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007608/*
7609 * read event_id
7610 */
7611
7612struct perf_read_event {
7613 struct perf_event_header header;
7614
7615 u32 pid;
7616 u32 tid;
7617};
7618
7619static void
7620perf_event_read_event(struct perf_event *event,
7621 struct task_struct *task)
7622{
7623 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007624 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007625 struct perf_read_event read_event = {
7626 .header = {
7627 .type = PERF_RECORD_READ,
7628 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007629 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007630 },
7631 .pid = perf_event_pid(event, task),
7632 .tid = perf_event_tid(event, task),
7633 };
7634 int ret;
7635
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007636 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007637 ret = perf_output_begin(&handle, &sample, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007638 if (ret)
7639 return;
7640
7641 perf_output_put(&handle, read_event);
7642 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007643 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007644
7645 perf_output_end(&handle);
7646}
7647
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007648typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007649
7650static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007651perf_iterate_ctx(struct perf_event_context *ctx,
7652 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007653 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007654{
7655 struct perf_event *event;
7656
7657 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007658 if (!all) {
7659 if (event->state < PERF_EVENT_STATE_INACTIVE)
7660 continue;
7661 if (!event_filter_match(event))
7662 continue;
7663 }
7664
Jiri Olsa67516842013-07-09 18:56:31 +02007665 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007666 }
7667}
7668
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007669static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007670{
7671 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7672 struct perf_event *event;
7673
7674 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007675 /*
7676 * Skip events that are not fully formed yet; ensure that
7677 * if we observe event->ctx, both event and ctx will be
7678 * complete enough. See perf_install_in_context().
7679 */
7680 if (!smp_load_acquire(&event->ctx))
7681 continue;
7682
Kan Liangf2fb6be2016-03-23 11:24:37 -07007683 if (event->state < PERF_EVENT_STATE_INACTIVE)
7684 continue;
7685 if (!event_filter_match(event))
7686 continue;
7687 output(event, data);
7688 }
7689}
7690
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007691/*
7692 * Iterate all events that need to receive side-band events.
7693 *
7694 * For new callers; ensure that account_pmu_sb_event() includes
7695 * your event, otherwise it might not get delivered.
7696 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007697static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007698perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007699 struct perf_event_context *task_ctx)
7700{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007701 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007702 int ctxn;
7703
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007704 rcu_read_lock();
7705 preempt_disable();
7706
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007707 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007708 * If we have task_ctx != NULL we only notify the task context itself.
7709 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007710 * context.
7711 */
7712 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007713 perf_iterate_ctx(task_ctx, output, data, false);
7714 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007715 }
7716
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007717 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007718
7719 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007720 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7721 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007722 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007723 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007724done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007725 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007726 rcu_read_unlock();
7727}
7728
Alexander Shishkin375637b2016-04-27 18:44:46 +03007729/*
7730 * Clear all file-based filters at exec, they'll have to be
7731 * re-instated when/if these objects are mmapped again.
7732 */
7733static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7734{
7735 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7736 struct perf_addr_filter *filter;
7737 unsigned int restart = 0, count = 0;
7738 unsigned long flags;
7739
7740 if (!has_addr_filter(event))
7741 return;
7742
7743 raw_spin_lock_irqsave(&ifh->lock, flags);
7744 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007745 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007746 event->addr_filter_ranges[count].start = 0;
7747 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007748 restart++;
7749 }
7750
7751 count++;
7752 }
7753
7754 if (restart)
7755 event->addr_filters_gen++;
7756 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7757
7758 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007759 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007760}
7761
7762void perf_event_exec(void)
7763{
7764 struct perf_event_context *ctx;
7765 int ctxn;
7766
Alexander Shishkin375637b2016-04-27 18:44:46 +03007767 for_each_task_context_nr(ctxn) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03007768 perf_event_enable_on_exec(ctxn);
Marco Elver2e498d02021-04-08 12:35:59 +02007769 perf_event_remove_on_exec(ctxn);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007770
Marco Elver2e498d02021-04-08 12:35:59 +02007771 rcu_read_lock();
7772 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7773 if (ctx) {
7774 perf_iterate_ctx(ctx, perf_event_addr_filters_exec,
7775 NULL, true);
7776 }
7777 rcu_read_unlock();
Alexander Shishkin375637b2016-04-27 18:44:46 +03007778 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03007779}
7780
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007781struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007782 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007783 int err;
7784};
7785
7786static void __perf_event_output_stop(struct perf_event *event, void *data)
7787{
7788 struct perf_event *parent = event->parent;
7789 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007790 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007791 struct stop_event_data sd = {
7792 .event = event,
7793 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007794
7795 if (!has_aux(event))
7796 return;
7797
7798 if (!parent)
7799 parent = event;
7800
7801 /*
7802 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007803 * ring-buffer, but it will be the child that's actually using it.
7804 *
7805 * We are using event::rb to determine if the event should be stopped,
7806 * however this may race with ring_buffer_attach() (through set_output),
7807 * which will make us skip the event that actually needs to be stopped.
7808 * So ring_buffer_attach() has to stop an aux event before re-assigning
7809 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007810 */
7811 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007812 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007813}
7814
7815static int __perf_pmu_output_stop(void *info)
7816{
7817 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007818 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007819 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007820 struct remote_output ro = {
7821 .rb = event->rb,
7822 };
7823
7824 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007825 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007826 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007827 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007828 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007829 rcu_read_unlock();
7830
7831 return ro.err;
7832}
7833
7834static void perf_pmu_output_stop(struct perf_event *event)
7835{
7836 struct perf_event *iter;
7837 int err, cpu;
7838
7839restart:
7840 rcu_read_lock();
7841 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7842 /*
7843 * For per-CPU events, we need to make sure that neither they
7844 * nor their children are running; for cpu==-1 events it's
7845 * sufficient to stop the event itself if it's active, since
7846 * it can't have children.
7847 */
7848 cpu = iter->cpu;
7849 if (cpu == -1)
7850 cpu = READ_ONCE(iter->oncpu);
7851
7852 if (cpu == -1)
7853 continue;
7854
7855 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7856 if (err == -EAGAIN) {
7857 rcu_read_unlock();
7858 goto restart;
7859 }
7860 }
7861 rcu_read_unlock();
7862}
7863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007864/*
7865 * task tracking -- fork/exit
7866 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007867 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007868 */
7869
7870struct perf_task_event {
7871 struct task_struct *task;
7872 struct perf_event_context *task_ctx;
7873
7874 struct {
7875 struct perf_event_header header;
7876
7877 u32 pid;
7878 u32 ppid;
7879 u32 tid;
7880 u32 ptid;
7881 u64 time;
7882 } event_id;
7883};
7884
Jiri Olsa67516842013-07-09 18:56:31 +02007885static int perf_event_task_match(struct perf_event *event)
7886{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007887 return event->attr.comm || event->attr.mmap ||
7888 event->attr.mmap2 || event->attr.mmap_data ||
7889 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007890}
7891
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007892static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007893 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007894{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007895 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007896 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007897 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007898 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007899 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007900
Jiri Olsa67516842013-07-09 18:56:31 +02007901 if (!perf_event_task_match(event))
7902 return;
7903
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007904 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007905
Peter Zijlstra267fb272020-10-30 15:50:32 +01007906 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007907 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007908 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007909 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007910
7911 task_event->event_id.pid = perf_event_pid(event, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007912 task_event->event_id.tid = perf_event_tid(event, task);
Ian Rogersf3bed552020-04-17 11:28:42 -07007913
7914 if (task_event->event_id.header.type == PERF_RECORD_EXIT) {
7915 task_event->event_id.ppid = perf_event_pid(event,
7916 task->real_parent);
7917 task_event->event_id.ptid = perf_event_pid(event,
7918 task->real_parent);
7919 } else { /* PERF_RECORD_FORK */
7920 task_event->event_id.ppid = perf_event_pid(event, current);
7921 task_event->event_id.ptid = perf_event_tid(event, current);
7922 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007923
Peter Zijlstra34f43922015-02-20 14:05:38 +01007924 task_event->event_id.time = perf_event_clock(event);
7925
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007926 perf_output_put(&handle, task_event->event_id);
7927
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007928 perf_event__output_id_sample(event, &handle, &sample);
7929
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007930 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007931out:
7932 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007933}
7934
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007935static void perf_event_task(struct task_struct *task,
7936 struct perf_event_context *task_ctx,
7937 int new)
7938{
7939 struct perf_task_event task_event;
7940
7941 if (!atomic_read(&nr_comm_events) &&
7942 !atomic_read(&nr_mmap_events) &&
7943 !atomic_read(&nr_task_events))
7944 return;
7945
7946 task_event = (struct perf_task_event){
7947 .task = task,
7948 .task_ctx = task_ctx,
7949 .event_id = {
7950 .header = {
7951 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7952 .misc = 0,
7953 .size = sizeof(task_event.event_id),
7954 },
7955 /* .pid */
7956 /* .ppid */
7957 /* .tid */
7958 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007959 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007960 },
7961 };
7962
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007963 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007964 &task_event,
7965 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007966}
7967
7968void perf_event_fork(struct task_struct *task)
7969{
7970 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307971 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007972}
7973
7974/*
7975 * comm tracking
7976 */
7977
7978struct perf_comm_event {
7979 struct task_struct *task;
7980 char *comm;
7981 int comm_size;
7982
7983 struct {
7984 struct perf_event_header header;
7985
7986 u32 pid;
7987 u32 tid;
7988 } event_id;
7989};
7990
Jiri Olsa67516842013-07-09 18:56:31 +02007991static int perf_event_comm_match(struct perf_event *event)
7992{
7993 return event->attr.comm;
7994}
7995
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007996static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007997 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007998{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007999 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008000 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008001 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008002 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008003 int ret;
8004
Jiri Olsa67516842013-07-09 18:56:31 +02008005 if (!perf_event_comm_match(event))
8006 return;
8007
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008008 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008009 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008010 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008011
8012 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008013 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008014
8015 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
8016 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
8017
8018 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02008019 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008020 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008021
8022 perf_event__output_id_sample(event, &handle, &sample);
8023
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008024 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008025out:
8026 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008027}
8028
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008029static void perf_event_comm_event(struct perf_comm_event *comm_event)
8030{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008031 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008032 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008033
8034 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01008035 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008036 size = ALIGN(strlen(comm)+1, sizeof(u64));
8037
8038 comm_event->comm = comm;
8039 comm_event->comm_size = size;
8040
8041 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008042
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008043 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008044 comm_event,
8045 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008046}
8047
Adrian Hunter82b89772014-05-28 11:45:04 +03008048void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008049{
8050 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008051
8052 if (!atomic_read(&nr_comm_events))
8053 return;
8054
8055 comm_event = (struct perf_comm_event){
8056 .task = task,
8057 /* .comm */
8058 /* .comm_size */
8059 .event_id = {
8060 .header = {
8061 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03008062 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008063 /* .size */
8064 },
8065 /* .pid */
8066 /* .tid */
8067 },
8068 };
8069
8070 perf_event_comm_event(&comm_event);
8071}
8072
8073/*
Hari Bathinie4222672017-03-08 02:11:36 +05308074 * namespaces tracking
8075 */
8076
8077struct perf_namespaces_event {
8078 struct task_struct *task;
8079
8080 struct {
8081 struct perf_event_header header;
8082
8083 u32 pid;
8084 u32 tid;
8085 u64 nr_namespaces;
8086 struct perf_ns_link_info link_info[NR_NAMESPACES];
8087 } event_id;
8088};
8089
8090static int perf_event_namespaces_match(struct perf_event *event)
8091{
8092 return event->attr.namespaces;
8093}
8094
8095static void perf_event_namespaces_output(struct perf_event *event,
8096 void *data)
8097{
8098 struct perf_namespaces_event *namespaces_event = data;
8099 struct perf_output_handle handle;
8100 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02008101 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05308102 int ret;
8103
8104 if (!perf_event_namespaces_match(event))
8105 return;
8106
8107 perf_event_header__init_id(&namespaces_event->event_id.header,
8108 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008109 ret = perf_output_begin(&handle, &sample, event,
Hari Bathinie4222672017-03-08 02:11:36 +05308110 namespaces_event->event_id.header.size);
8111 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02008112 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05308113
8114 namespaces_event->event_id.pid = perf_event_pid(event,
8115 namespaces_event->task);
8116 namespaces_event->event_id.tid = perf_event_tid(event,
8117 namespaces_event->task);
8118
8119 perf_output_put(&handle, namespaces_event->event_id);
8120
8121 perf_event__output_id_sample(event, &handle, &sample);
8122
8123 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02008124out:
8125 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05308126}
8127
8128static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
8129 struct task_struct *task,
8130 const struct proc_ns_operations *ns_ops)
8131{
8132 struct path ns_path;
8133 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11008134 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05308135
8136 error = ns_get_path(&ns_path, task, ns_ops);
8137 if (!error) {
8138 ns_inode = ns_path.dentry->d_inode;
8139 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
8140 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03008141 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05308142 }
8143}
8144
8145void perf_event_namespaces(struct task_struct *task)
8146{
8147 struct perf_namespaces_event namespaces_event;
8148 struct perf_ns_link_info *ns_link_info;
8149
8150 if (!atomic_read(&nr_namespaces_events))
8151 return;
8152
8153 namespaces_event = (struct perf_namespaces_event){
8154 .task = task,
8155 .event_id = {
8156 .header = {
8157 .type = PERF_RECORD_NAMESPACES,
8158 .misc = 0,
8159 .size = sizeof(namespaces_event.event_id),
8160 },
8161 /* .pid */
8162 /* .tid */
8163 .nr_namespaces = NR_NAMESPACES,
8164 /* .link_info[NR_NAMESPACES] */
8165 },
8166 };
8167
8168 ns_link_info = namespaces_event.event_id.link_info;
8169
8170 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
8171 task, &mntns_operations);
8172
8173#ifdef CONFIG_USER_NS
8174 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
8175 task, &userns_operations);
8176#endif
8177#ifdef CONFIG_NET_NS
8178 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
8179 task, &netns_operations);
8180#endif
8181#ifdef CONFIG_UTS_NS
8182 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
8183 task, &utsns_operations);
8184#endif
8185#ifdef CONFIG_IPC_NS
8186 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
8187 task, &ipcns_operations);
8188#endif
8189#ifdef CONFIG_PID_NS
8190 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
8191 task, &pidns_operations);
8192#endif
8193#ifdef CONFIG_CGROUPS
8194 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
8195 task, &cgroupns_operations);
8196#endif
8197
8198 perf_iterate_sb(perf_event_namespaces_output,
8199 &namespaces_event,
8200 NULL);
8201}
8202
8203/*
Namhyung Kim96aaab62020-03-25 21:45:28 +09008204 * cgroup tracking
8205 */
8206#ifdef CONFIG_CGROUP_PERF
8207
8208struct perf_cgroup_event {
8209 char *path;
8210 int path_size;
8211 struct {
8212 struct perf_event_header header;
8213 u64 id;
8214 char path[];
8215 } event_id;
8216};
8217
8218static int perf_event_cgroup_match(struct perf_event *event)
8219{
8220 return event->attr.cgroup;
8221}
8222
8223static void perf_event_cgroup_output(struct perf_event *event, void *data)
8224{
8225 struct perf_cgroup_event *cgroup_event = data;
8226 struct perf_output_handle handle;
8227 struct perf_sample_data sample;
8228 u16 header_size = cgroup_event->event_id.header.size;
8229 int ret;
8230
8231 if (!perf_event_cgroup_match(event))
8232 return;
8233
8234 perf_event_header__init_id(&cgroup_event->event_id.header,
8235 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008236 ret = perf_output_begin(&handle, &sample, event,
Namhyung Kim96aaab62020-03-25 21:45:28 +09008237 cgroup_event->event_id.header.size);
8238 if (ret)
8239 goto out;
8240
8241 perf_output_put(&handle, cgroup_event->event_id);
8242 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
8243
8244 perf_event__output_id_sample(event, &handle, &sample);
8245
8246 perf_output_end(&handle);
8247out:
8248 cgroup_event->event_id.header.size = header_size;
8249}
8250
8251static void perf_event_cgroup(struct cgroup *cgrp)
8252{
8253 struct perf_cgroup_event cgroup_event;
8254 char path_enomem[16] = "//enomem";
8255 char *pathname;
8256 size_t size;
8257
8258 if (!atomic_read(&nr_cgroup_events))
8259 return;
8260
8261 cgroup_event = (struct perf_cgroup_event){
8262 .event_id = {
8263 .header = {
8264 .type = PERF_RECORD_CGROUP,
8265 .misc = 0,
8266 .size = sizeof(cgroup_event.event_id),
8267 },
8268 .id = cgroup_id(cgrp),
8269 },
8270 };
8271
8272 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
8273 if (pathname == NULL) {
8274 cgroup_event.path = path_enomem;
8275 } else {
8276 /* just to be sure to have enough space for alignment */
8277 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
8278 cgroup_event.path = pathname;
8279 }
8280
8281 /*
8282 * Since our buffer works in 8 byte units we need to align our string
8283 * size to a multiple of 8. However, we must guarantee the tail end is
8284 * zero'd out to avoid leaking random bits to userspace.
8285 */
8286 size = strlen(cgroup_event.path) + 1;
8287 while (!IS_ALIGNED(size, sizeof(u64)))
8288 cgroup_event.path[size++] = '\0';
8289
8290 cgroup_event.event_id.header.size += size;
8291 cgroup_event.path_size = size;
8292
8293 perf_iterate_sb(perf_event_cgroup_output,
8294 &cgroup_event,
8295 NULL);
8296
8297 kfree(pathname);
8298}
8299
8300#endif
8301
8302/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008303 * mmap tracking
8304 */
8305
8306struct perf_mmap_event {
8307 struct vm_area_struct *vma;
8308
8309 const char *file_name;
8310 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008311 int maj, min;
8312 u64 ino;
8313 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008314 u32 prot, flags;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008315 u8 build_id[BUILD_ID_SIZE_MAX];
8316 u32 build_id_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008317
8318 struct {
8319 struct perf_event_header header;
8320
8321 u32 pid;
8322 u32 tid;
8323 u64 start;
8324 u64 len;
8325 u64 pgoff;
8326 } event_id;
8327};
8328
Jiri Olsa67516842013-07-09 18:56:31 +02008329static int perf_event_mmap_match(struct perf_event *event,
8330 void *data)
8331{
8332 struct perf_mmap_event *mmap_event = data;
8333 struct vm_area_struct *vma = mmap_event->vma;
8334 int executable = vma->vm_flags & VM_EXEC;
8335
8336 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02008337 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02008338}
8339
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008340static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008341 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008342{
Jiri Olsa52d857a2013-05-06 18:27:18 +02008343 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008344 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008345 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008346 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008347 u32 type = mmap_event->event_id.header.type;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008348 bool use_build_id;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008349 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008350
Jiri Olsa67516842013-07-09 18:56:31 +02008351 if (!perf_event_mmap_match(event, data))
8352 return;
8353
Stephane Eranian13d7a242013-08-21 12:10:24 +02008354 if (event->attr.mmap2) {
8355 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
8356 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
8357 mmap_event->event_id.header.size += sizeof(mmap_event->min);
8358 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03008359 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008360 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
8361 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008362 }
8363
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008364 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008365 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008366 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008367 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008368 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008369
8370 mmap_event->event_id.pid = perf_event_pid(event, current);
8371 mmap_event->event_id.tid = perf_event_tid(event, current);
8372
Jiri Olsa88a16a12021-01-14 14:40:44 +01008373 use_build_id = event->attr.build_id && mmap_event->build_id_size;
8374
8375 if (event->attr.mmap2 && use_build_id)
8376 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_BUILD_ID;
8377
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008378 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008379
8380 if (event->attr.mmap2) {
Jiri Olsa88a16a12021-01-14 14:40:44 +01008381 if (use_build_id) {
8382 u8 size[4] = { (u8) mmap_event->build_id_size, 0, 0, 0 };
8383
8384 __output_copy(&handle, size, 4);
8385 __output_copy(&handle, mmap_event->build_id, BUILD_ID_SIZE_MAX);
8386 } else {
8387 perf_output_put(&handle, mmap_event->maj);
8388 perf_output_put(&handle, mmap_event->min);
8389 perf_output_put(&handle, mmap_event->ino);
8390 perf_output_put(&handle, mmap_event->ino_generation);
8391 }
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008392 perf_output_put(&handle, mmap_event->prot);
8393 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008394 }
8395
Frederic Weisbecker76369132011-05-19 19:55:04 +02008396 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008397 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008398
8399 perf_event__output_id_sample(event, &handle, &sample);
8400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008401 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008402out:
8403 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008404 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008405}
8406
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008407static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
8408{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008409 struct vm_area_struct *vma = mmap_event->vma;
8410 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008411 int maj = 0, min = 0;
8412 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008413 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008414 unsigned int size;
8415 char tmp[16];
8416 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008417 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008418
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008419 if (vma->vm_flags & VM_READ)
8420 prot |= PROT_READ;
8421 if (vma->vm_flags & VM_WRITE)
8422 prot |= PROT_WRITE;
8423 if (vma->vm_flags & VM_EXEC)
8424 prot |= PROT_EXEC;
8425
8426 if (vma->vm_flags & VM_MAYSHARE)
8427 flags = MAP_SHARED;
8428 else
8429 flags = MAP_PRIVATE;
8430
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008431 if (vma->vm_flags & VM_LOCKED)
8432 flags |= MAP_LOCKED;
Anshuman Khandual03911132020-04-06 20:03:51 -07008433 if (is_vm_hugetlb_page(vma))
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008434 flags |= MAP_HUGETLB;
8435
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008436 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02008437 struct inode *inode;
8438 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008439
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008440 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008441 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008442 name = "//enomem";
8443 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008444 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008445 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008446 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008447 * need to add enough zero bytes after the string to handle
8448 * the 64bit alignment we do later.
8449 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02008450 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008451 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008452 name = "//toolong";
8453 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008454 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02008455 inode = file_inode(vma->vm_file);
8456 dev = inode->i_sb->s_dev;
8457 ino = inode->i_ino;
8458 gen = inode->i_generation;
8459 maj = MAJOR(dev);
8460 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008461
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008462 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008463 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02008464 if (vma->vm_ops && vma->vm_ops->name) {
8465 name = (char *) vma->vm_ops->name(vma);
8466 if (name)
8467 goto cpy_name;
8468 }
8469
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008470 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008471 if (name)
8472 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008473
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008474 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008475 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008476 name = "[heap]";
8477 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008478 }
8479 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008480 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008481 name = "[stack]";
8482 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008483 }
8484
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008485 name = "//anon";
8486 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008487 }
8488
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008489cpy_name:
8490 strlcpy(tmp, name, sizeof(tmp));
8491 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008492got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008493 /*
8494 * Since our buffer works in 8 byte units we need to align our string
8495 * size to a multiple of 8. However, we must guarantee the tail end is
8496 * zero'd out to avoid leaking random bits to userspace.
8497 */
8498 size = strlen(name)+1;
8499 while (!IS_ALIGNED(size, sizeof(u64)))
8500 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008501
8502 mmap_event->file_name = name;
8503 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008504 mmap_event->maj = maj;
8505 mmap_event->min = min;
8506 mmap_event->ino = ino;
8507 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008508 mmap_event->prot = prot;
8509 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008510
Stephane Eranian2fe85422013-01-24 16:10:39 +01008511 if (!(vma->vm_flags & VM_EXEC))
8512 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8513
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008514 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
8515
Jiri Olsa88a16a12021-01-14 14:40:44 +01008516 if (atomic_read(&nr_build_id_events))
8517 build_id_parse(vma, mmap_event->build_id, &mmap_event->build_id_size);
8518
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008519 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008520 mmap_event,
8521 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008522
8523 kfree(buf);
8524}
8525
Alexander Shishkin375637b2016-04-27 18:44:46 +03008526/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03008527 * Check whether inode and address range match filter criteria.
8528 */
8529static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8530 struct file *file, unsigned long offset,
8531 unsigned long size)
8532{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06008533 /* d_inode(NULL) won't be equal to any mapped user-space file */
8534 if (!filter->path.dentry)
8535 return false;
8536
Song Liu9511bce2018-04-17 23:29:07 -07008537 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008538 return false;
8539
8540 if (filter->offset > offset + size)
8541 return false;
8542
8543 if (filter->offset + filter->size < offset)
8544 return false;
8545
8546 return true;
8547}
8548
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008549static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8550 struct vm_area_struct *vma,
8551 struct perf_addr_filter_range *fr)
8552{
8553 unsigned long vma_size = vma->vm_end - vma->vm_start;
8554 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8555 struct file *file = vma->vm_file;
8556
8557 if (!perf_addr_filter_match(filter, file, off, vma_size))
8558 return false;
8559
8560 if (filter->offset < off) {
8561 fr->start = vma->vm_start;
8562 fr->size = min(vma_size, filter->size - (off - filter->offset));
8563 } else {
8564 fr->start = vma->vm_start + filter->offset - off;
8565 fr->size = min(vma->vm_end - fr->start, filter->size);
8566 }
8567
8568 return true;
8569}
8570
Alexander Shishkin375637b2016-04-27 18:44:46 +03008571static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8572{
8573 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8574 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008575 struct perf_addr_filter *filter;
8576 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008577 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008578
8579 if (!has_addr_filter(event))
8580 return;
8581
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008582 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008583 return;
8584
8585 raw_spin_lock_irqsave(&ifh->lock, flags);
8586 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008587 if (perf_addr_filter_vma_adjust(filter, vma,
8588 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008589 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008590
8591 count++;
8592 }
8593
8594 if (restart)
8595 event->addr_filters_gen++;
8596 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8597
8598 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03008599 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008600}
8601
8602/*
8603 * Adjust all task's events' filters to the new vma
8604 */
8605static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8606{
8607 struct perf_event_context *ctx;
8608 int ctxn;
8609
Mathieu Poirier12b40a22016-07-18 10:43:06 -06008610 /*
8611 * Data tracing isn't supported yet and as such there is no need
8612 * to keep track of anything that isn't related to executable code:
8613 */
8614 if (!(vma->vm_flags & VM_EXEC))
8615 return;
8616
Alexander Shishkin375637b2016-04-27 18:44:46 +03008617 rcu_read_lock();
8618 for_each_task_context_nr(ctxn) {
8619 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8620 if (!ctx)
8621 continue;
8622
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008623 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008624 }
8625 rcu_read_unlock();
8626}
8627
Eric B Munson3af9e852010-05-18 15:30:49 +01008628void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008629{
8630 struct perf_mmap_event mmap_event;
8631
8632 if (!atomic_read(&nr_mmap_events))
8633 return;
8634
8635 mmap_event = (struct perf_mmap_event){
8636 .vma = vma,
8637 /* .file_name */
8638 /* .file_size */
8639 .event_id = {
8640 .header = {
8641 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08008642 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008643 /* .size */
8644 },
8645 /* .pid */
8646 /* .tid */
8647 .start = vma->vm_start,
8648 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01008649 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008650 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02008651 /* .maj (attr_mmap2 only) */
8652 /* .min (attr_mmap2 only) */
8653 /* .ino (attr_mmap2 only) */
8654 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008655 /* .prot (attr_mmap2 only) */
8656 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008657 };
8658
Alexander Shishkin375637b2016-04-27 18:44:46 +03008659 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008660 perf_event_mmap_event(&mmap_event);
8661}
8662
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008663void perf_event_aux_event(struct perf_event *event, unsigned long head,
8664 unsigned long size, u64 flags)
8665{
8666 struct perf_output_handle handle;
8667 struct perf_sample_data sample;
8668 struct perf_aux_event {
8669 struct perf_event_header header;
8670 u64 offset;
8671 u64 size;
8672 u64 flags;
8673 } rec = {
8674 .header = {
8675 .type = PERF_RECORD_AUX,
8676 .misc = 0,
8677 .size = sizeof(rec),
8678 },
8679 .offset = head,
8680 .size = size,
8681 .flags = flags,
8682 };
8683 int ret;
8684
8685 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008686 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008687
8688 if (ret)
8689 return;
8690
8691 perf_output_put(&handle, rec);
8692 perf_event__output_id_sample(event, &handle, &sample);
8693
8694 perf_output_end(&handle);
8695}
8696
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008697/*
Kan Liangf38b0db2015-05-10 15:13:14 -04008698 * Lost/dropped samples logging
8699 */
8700void perf_log_lost_samples(struct perf_event *event, u64 lost)
8701{
8702 struct perf_output_handle handle;
8703 struct perf_sample_data sample;
8704 int ret;
8705
8706 struct {
8707 struct perf_event_header header;
8708 u64 lost;
8709 } lost_samples_event = {
8710 .header = {
8711 .type = PERF_RECORD_LOST_SAMPLES,
8712 .misc = 0,
8713 .size = sizeof(lost_samples_event),
8714 },
8715 .lost = lost,
8716 };
8717
8718 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8719
Peter Zijlstra267fb272020-10-30 15:50:32 +01008720 ret = perf_output_begin(&handle, &sample, event,
Kan Liangf38b0db2015-05-10 15:13:14 -04008721 lost_samples_event.header.size);
8722 if (ret)
8723 return;
8724
8725 perf_output_put(&handle, lost_samples_event);
8726 perf_event__output_id_sample(event, &handle, &sample);
8727 perf_output_end(&handle);
8728}
8729
8730/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008731 * context_switch tracking
8732 */
8733
8734struct perf_switch_event {
8735 struct task_struct *task;
8736 struct task_struct *next_prev;
8737
8738 struct {
8739 struct perf_event_header header;
8740 u32 next_prev_pid;
8741 u32 next_prev_tid;
8742 } event_id;
8743};
8744
8745static int perf_event_switch_match(struct perf_event *event)
8746{
8747 return event->attr.context_switch;
8748}
8749
8750static void perf_event_switch_output(struct perf_event *event, void *data)
8751{
8752 struct perf_switch_event *se = data;
8753 struct perf_output_handle handle;
8754 struct perf_sample_data sample;
8755 int ret;
8756
8757 if (!perf_event_switch_match(event))
8758 return;
8759
8760 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8761 if (event->ctx->task) {
8762 se->event_id.header.type = PERF_RECORD_SWITCH;
8763 se->event_id.header.size = sizeof(se->event_id.header);
8764 } else {
8765 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8766 se->event_id.header.size = sizeof(se->event_id);
8767 se->event_id.next_prev_pid =
8768 perf_event_pid(event, se->next_prev);
8769 se->event_id.next_prev_tid =
8770 perf_event_tid(event, se->next_prev);
8771 }
8772
8773 perf_event_header__init_id(&se->event_id.header, &sample, event);
8774
Peter Zijlstra267fb272020-10-30 15:50:32 +01008775 ret = perf_output_begin(&handle, &sample, event, se->event_id.header.size);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008776 if (ret)
8777 return;
8778
8779 if (event->ctx->task)
8780 perf_output_put(&handle, se->event_id.header);
8781 else
8782 perf_output_put(&handle, se->event_id);
8783
8784 perf_event__output_id_sample(event, &handle, &sample);
8785
8786 perf_output_end(&handle);
8787}
8788
8789static void perf_event_switch(struct task_struct *task,
8790 struct task_struct *next_prev, bool sched_in)
8791{
8792 struct perf_switch_event switch_event;
8793
8794 /* N.B. caller checks nr_switch_events != 0 */
8795
8796 switch_event = (struct perf_switch_event){
8797 .task = task,
8798 .next_prev = next_prev,
8799 .event_id = {
8800 .header = {
8801 /* .type */
8802 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8803 /* .size */
8804 },
8805 /* .next_prev_pid */
8806 /* .next_prev_tid */
8807 },
8808 };
8809
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008810 if (!sched_in && task->on_rq) {
Alexey Budankov101592b2018-04-09 10:25:32 +03008811 switch_event.event_id.header.misc |=
8812 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008813 }
Alexey Budankov101592b2018-04-09 10:25:32 +03008814
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008815 perf_iterate_sb(perf_event_switch_output, &switch_event, NULL);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008816}
8817
8818/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008819 * IRQ throttle logging
8820 */
8821
8822static void perf_log_throttle(struct perf_event *event, int enable)
8823{
8824 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008825 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008826 int ret;
8827
8828 struct {
8829 struct perf_event_header header;
8830 u64 time;
8831 u64 id;
8832 u64 stream_id;
8833 } throttle_event = {
8834 .header = {
8835 .type = PERF_RECORD_THROTTLE,
8836 .misc = 0,
8837 .size = sizeof(throttle_event),
8838 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008839 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008840 .id = primary_event_id(event),
8841 .stream_id = event->id,
8842 };
8843
8844 if (enable)
8845 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8846
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008847 perf_event_header__init_id(&throttle_event.header, &sample, event);
8848
Peter Zijlstra267fb272020-10-30 15:50:32 +01008849 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008850 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008851 if (ret)
8852 return;
8853
8854 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008855 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008856 perf_output_end(&handle);
8857}
8858
Song Liu76193a92019-01-17 08:15:13 -08008859/*
8860 * ksymbol register/unregister tracking
8861 */
8862
8863struct perf_ksymbol_event {
8864 const char *name;
8865 int name_len;
8866 struct {
8867 struct perf_event_header header;
8868 u64 addr;
8869 u32 len;
8870 u16 ksym_type;
8871 u16 flags;
8872 } event_id;
8873};
8874
8875static int perf_event_ksymbol_match(struct perf_event *event)
8876{
8877 return event->attr.ksymbol;
8878}
8879
8880static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8881{
8882 struct perf_ksymbol_event *ksymbol_event = data;
8883 struct perf_output_handle handle;
8884 struct perf_sample_data sample;
8885 int ret;
8886
8887 if (!perf_event_ksymbol_match(event))
8888 return;
8889
8890 perf_event_header__init_id(&ksymbol_event->event_id.header,
8891 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008892 ret = perf_output_begin(&handle, &sample, event,
Song Liu76193a92019-01-17 08:15:13 -08008893 ksymbol_event->event_id.header.size);
8894 if (ret)
8895 return;
8896
8897 perf_output_put(&handle, ksymbol_event->event_id);
8898 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8899 perf_event__output_id_sample(event, &handle, &sample);
8900
8901 perf_output_end(&handle);
8902}
8903
8904void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8905 const char *sym)
8906{
8907 struct perf_ksymbol_event ksymbol_event;
8908 char name[KSYM_NAME_LEN];
8909 u16 flags = 0;
8910 int name_len;
8911
8912 if (!atomic_read(&nr_ksymbol_events))
8913 return;
8914
8915 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8916 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8917 goto err;
8918
8919 strlcpy(name, sym, KSYM_NAME_LEN);
8920 name_len = strlen(name) + 1;
8921 while (!IS_ALIGNED(name_len, sizeof(u64)))
8922 name[name_len++] = '\0';
8923 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8924
8925 if (unregister)
8926 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8927
8928 ksymbol_event = (struct perf_ksymbol_event){
8929 .name = name,
8930 .name_len = name_len,
8931 .event_id = {
8932 .header = {
8933 .type = PERF_RECORD_KSYMBOL,
8934 .size = sizeof(ksymbol_event.event_id) +
8935 name_len,
8936 },
8937 .addr = addr,
8938 .len = len,
8939 .ksym_type = ksym_type,
8940 .flags = flags,
8941 },
8942 };
8943
8944 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8945 return;
8946err:
8947 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8948}
8949
Song Liu6ee52e22019-01-17 08:15:15 -08008950/*
8951 * bpf program load/unload tracking
8952 */
8953
8954struct perf_bpf_event {
8955 struct bpf_prog *prog;
8956 struct {
8957 struct perf_event_header header;
8958 u16 type;
8959 u16 flags;
8960 u32 id;
8961 u8 tag[BPF_TAG_SIZE];
8962 } event_id;
8963};
8964
8965static int perf_event_bpf_match(struct perf_event *event)
8966{
8967 return event->attr.bpf_event;
8968}
8969
8970static void perf_event_bpf_output(struct perf_event *event, void *data)
8971{
8972 struct perf_bpf_event *bpf_event = data;
8973 struct perf_output_handle handle;
8974 struct perf_sample_data sample;
8975 int ret;
8976
8977 if (!perf_event_bpf_match(event))
8978 return;
8979
8980 perf_event_header__init_id(&bpf_event->event_id.header,
8981 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008982 ret = perf_output_begin(&handle, data, event,
Song Liu6ee52e22019-01-17 08:15:15 -08008983 bpf_event->event_id.header.size);
8984 if (ret)
8985 return;
8986
8987 perf_output_put(&handle, bpf_event->event_id);
8988 perf_event__output_id_sample(event, &handle, &sample);
8989
8990 perf_output_end(&handle);
8991}
8992
8993static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8994 enum perf_bpf_event_type type)
8995{
8996 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
Song Liu6ee52e22019-01-17 08:15:15 -08008997 int i;
8998
8999 if (prog->aux->func_cnt == 0) {
Song Liu6ee52e22019-01-17 08:15:15 -08009000 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
9001 (u64)(unsigned long)prog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01009002 prog->jited_len, unregister,
9003 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08009004 } else {
9005 for (i = 0; i < prog->aux->func_cnt; i++) {
9006 struct bpf_prog *subprog = prog->aux->func[i];
9007
Song Liu6ee52e22019-01-17 08:15:15 -08009008 perf_event_ksymbol(
9009 PERF_RECORD_KSYMBOL_TYPE_BPF,
9010 (u64)(unsigned long)subprog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01009011 subprog->jited_len, unregister,
9012 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08009013 }
9014 }
9015}
9016
9017void perf_event_bpf_event(struct bpf_prog *prog,
9018 enum perf_bpf_event_type type,
9019 u16 flags)
9020{
9021 struct perf_bpf_event bpf_event;
9022
9023 if (type <= PERF_BPF_EVENT_UNKNOWN ||
9024 type >= PERF_BPF_EVENT_MAX)
9025 return;
9026
9027 switch (type) {
9028 case PERF_BPF_EVENT_PROG_LOAD:
9029 case PERF_BPF_EVENT_PROG_UNLOAD:
9030 if (atomic_read(&nr_ksymbol_events))
9031 perf_event_bpf_emit_ksymbols(prog, type);
9032 break;
9033 default:
9034 break;
9035 }
9036
9037 if (!atomic_read(&nr_bpf_events))
9038 return;
9039
9040 bpf_event = (struct perf_bpf_event){
9041 .prog = prog,
9042 .event_id = {
9043 .header = {
9044 .type = PERF_RECORD_BPF_EVENT,
9045 .size = sizeof(bpf_event.event_id),
9046 },
9047 .type = type,
9048 .flags = flags,
9049 .id = prog->aux->id,
9050 },
9051 };
9052
9053 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
9054
9055 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
9056 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
9057}
9058
Adrian Huntere17d43b2020-05-12 15:19:08 +03009059struct perf_text_poke_event {
9060 const void *old_bytes;
9061 const void *new_bytes;
9062 size_t pad;
9063 u16 old_len;
9064 u16 new_len;
9065
9066 struct {
9067 struct perf_event_header header;
9068
9069 u64 addr;
9070 } event_id;
9071};
9072
9073static int perf_event_text_poke_match(struct perf_event *event)
9074{
9075 return event->attr.text_poke;
9076}
9077
9078static void perf_event_text_poke_output(struct perf_event *event, void *data)
9079{
9080 struct perf_text_poke_event *text_poke_event = data;
9081 struct perf_output_handle handle;
9082 struct perf_sample_data sample;
9083 u64 padding = 0;
9084 int ret;
9085
9086 if (!perf_event_text_poke_match(event))
9087 return;
9088
9089 perf_event_header__init_id(&text_poke_event->event_id.header, &sample, event);
9090
Peter Zijlstra267fb272020-10-30 15:50:32 +01009091 ret = perf_output_begin(&handle, &sample, event,
9092 text_poke_event->event_id.header.size);
Adrian Huntere17d43b2020-05-12 15:19:08 +03009093 if (ret)
9094 return;
9095
9096 perf_output_put(&handle, text_poke_event->event_id);
9097 perf_output_put(&handle, text_poke_event->old_len);
9098 perf_output_put(&handle, text_poke_event->new_len);
9099
9100 __output_copy(&handle, text_poke_event->old_bytes, text_poke_event->old_len);
9101 __output_copy(&handle, text_poke_event->new_bytes, text_poke_event->new_len);
9102
9103 if (text_poke_event->pad)
9104 __output_copy(&handle, &padding, text_poke_event->pad);
9105
9106 perf_event__output_id_sample(event, &handle, &sample);
9107
9108 perf_output_end(&handle);
9109}
9110
9111void perf_event_text_poke(const void *addr, const void *old_bytes,
9112 size_t old_len, const void *new_bytes, size_t new_len)
9113{
9114 struct perf_text_poke_event text_poke_event;
9115 size_t tot, pad;
9116
9117 if (!atomic_read(&nr_text_poke_events))
9118 return;
9119
9120 tot = sizeof(text_poke_event.old_len) + old_len;
9121 tot += sizeof(text_poke_event.new_len) + new_len;
9122 pad = ALIGN(tot, sizeof(u64)) - tot;
9123
9124 text_poke_event = (struct perf_text_poke_event){
9125 .old_bytes = old_bytes,
9126 .new_bytes = new_bytes,
9127 .pad = pad,
9128 .old_len = old_len,
9129 .new_len = new_len,
9130 .event_id = {
9131 .header = {
9132 .type = PERF_RECORD_TEXT_POKE,
9133 .misc = PERF_RECORD_MISC_KERNEL,
9134 .size = sizeof(text_poke_event.event_id) + tot + pad,
9135 },
9136 .addr = (unsigned long)addr,
9137 },
9138 };
9139
9140 perf_iterate_sb(perf_event_text_poke_output, &text_poke_event, NULL);
9141}
9142
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009143void perf_event_itrace_started(struct perf_event *event)
9144{
9145 event->attach_state |= PERF_ATTACH_ITRACE;
9146}
9147
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009148static void perf_log_itrace_start(struct perf_event *event)
9149{
9150 struct perf_output_handle handle;
9151 struct perf_sample_data sample;
9152 struct perf_aux_event {
9153 struct perf_event_header header;
9154 u32 pid;
9155 u32 tid;
9156 } rec;
9157 int ret;
9158
9159 if (event->parent)
9160 event = event->parent;
9161
9162 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009163 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009164 return;
9165
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009166 rec.header.type = PERF_RECORD_ITRACE_START;
9167 rec.header.misc = 0;
9168 rec.header.size = sizeof(rec);
9169 rec.pid = perf_event_pid(event, current);
9170 rec.tid = perf_event_tid(event, current);
9171
9172 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01009173 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009174
9175 if (ret)
9176 return;
9177
9178 perf_output_put(&handle, rec);
9179 perf_event__output_id_sample(event, &handle, &sample);
9180
9181 perf_output_end(&handle);
9182}
9183
Adrian Hunter8b8ff8c2021-09-07 19:39:01 +03009184void perf_report_aux_output_id(struct perf_event *event, u64 hw_id)
9185{
9186 struct perf_output_handle handle;
9187 struct perf_sample_data sample;
9188 struct perf_aux_event {
9189 struct perf_event_header header;
9190 u64 hw_id;
9191 } rec;
9192 int ret;
9193
9194 if (event->parent)
9195 event = event->parent;
9196
9197 rec.header.type = PERF_RECORD_AUX_OUTPUT_HW_ID;
9198 rec.header.misc = 0;
9199 rec.header.size = sizeof(rec);
9200 rec.hw_id = hw_id;
9201
9202 perf_event_header__init_id(&rec.header, &sample, event);
9203 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
9204
9205 if (ret)
9206 return;
9207
9208 perf_output_put(&handle, rec);
9209 perf_event__output_id_sample(event, &handle, &sample);
9210
9211 perf_output_end(&handle);
9212}
9213
Jiri Olsa475113d2016-12-28 14:31:03 +01009214static int
9215__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009216{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009217 struct hw_perf_event *hwc = &event->hw;
9218 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01009219 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01009220
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009221 seq = __this_cpu_read(perf_throttled_seq);
9222 if (seq != hwc->interrupts_seq) {
9223 hwc->interrupts_seq = seq;
9224 hwc->interrupts = 1;
9225 } else {
9226 hwc->interrupts++;
9227 if (unlikely(throttle
9228 && hwc->interrupts >= max_samples_per_tick)) {
9229 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009230 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01009231 hwc->interrupts = MAX_INTERRUPTS;
9232 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009233 ret = 1;
9234 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009235 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009236
9237 if (event->attr.freq) {
9238 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01009239 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009240
Peter Zijlstraabd50712010-01-26 18:50:16 +01009241 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009242
Peter Zijlstraabd50712010-01-26 18:50:16 +01009243 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01009244 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009245 }
9246
Jiri Olsa475113d2016-12-28 14:31:03 +01009247 return ret;
9248}
9249
9250int perf_event_account_interrupt(struct perf_event *event)
9251{
9252 return __perf_event_account_interrupt(event, 1);
9253}
9254
9255/*
9256 * Generic event overflow handling, sampling.
9257 */
9258
9259static int __perf_event_overflow(struct perf_event *event,
9260 int throttle, struct perf_sample_data *data,
9261 struct pt_regs *regs)
9262{
9263 int events = atomic_read(&event->event_limit);
9264 int ret = 0;
9265
9266 /*
9267 * Non-sampling counters might still use the PMI to fold short
9268 * hardware counters, ignore those.
9269 */
9270 if (unlikely(!is_sampling_event(event)))
9271 return 0;
9272
9273 ret = __perf_event_account_interrupt(event, throttle);
9274
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009275 /*
9276 * XXX event_limit might not quite work as expected on inherited
9277 * events
9278 */
9279
9280 event->pending_kill = POLL_IN;
9281 if (events && atomic_dec_and_test(&event->event_limit)) {
9282 ret = 1;
9283 event->pending_kill = POLL_HUP;
Marco Elver97ba62b2021-04-08 12:36:01 +02009284 event->pending_addr = data->addr;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02009285
9286 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009287 }
9288
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009289 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01009290
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02009291 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009292 event->pending_wakeup = 1;
9293 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02009294 }
9295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009296 return ret;
9297}
9298
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009299int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009300 struct perf_sample_data *data,
9301 struct pt_regs *regs)
9302{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009303 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009304}
9305
9306/*
9307 * Generic software event infrastructure
9308 */
9309
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009310struct swevent_htable {
9311 struct swevent_hlist *swevent_hlist;
9312 struct mutex hlist_mutex;
9313 int hlist_refcount;
9314
9315 /* Recursion avoidance in each contexts */
9316 int recursion[PERF_NR_CONTEXTS];
9317};
9318
9319static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
9320
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009321/*
9322 * We directly increment event->count and keep a second value in
9323 * event->hw.period_left to count intervals. This period event
9324 * is kept in the range [-sample_period, 0] so that we can use the
9325 * sign as trigger.
9326 */
9327
Jiri Olsaab573842013-05-01 17:25:44 +02009328u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009329{
9330 struct hw_perf_event *hwc = &event->hw;
9331 u64 period = hwc->last_period;
9332 u64 nr, offset;
9333 s64 old, val;
9334
9335 hwc->last_period = hwc->sample_period;
9336
9337again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02009338 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009339 if (val < 0)
9340 return 0;
9341
9342 nr = div64_u64(period + val, period);
9343 offset = nr * period;
9344 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02009345 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009346 goto again;
9347
9348 return nr;
9349}
9350
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009351static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009352 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009353 struct pt_regs *regs)
9354{
9355 struct hw_perf_event *hwc = &event->hw;
9356 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009357
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009358 if (!overflow)
9359 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009360
9361 if (hwc->interrupts == MAX_INTERRUPTS)
9362 return;
9363
9364 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009365 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009366 data, regs)) {
9367 /*
9368 * We inhibit the overflow from happening when
9369 * hwc->interrupts == MAX_INTERRUPTS.
9370 */
9371 break;
9372 }
9373 throttle = 1;
9374 }
9375}
9376
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009377static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009378 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009379 struct pt_regs *regs)
9380{
9381 struct hw_perf_event *hwc = &event->hw;
9382
Peter Zijlstrae7850592010-05-21 14:43:08 +02009383 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009384
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009385 if (!regs)
9386 return;
9387
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009388 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009389 return;
9390
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03009391 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
9392 data->period = nr;
9393 return perf_swevent_overflow(event, 1, data, regs);
9394 } else
9395 data->period = event->hw.last_period;
9396
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009397 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009398 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009399
Peter Zijlstrae7850592010-05-21 14:43:08 +02009400 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009401 return;
9402
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009403 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009404}
9405
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009406static int perf_exclude_event(struct perf_event *event,
9407 struct pt_regs *regs)
9408{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009409 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01009410 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009411
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009412 if (regs) {
9413 if (event->attr.exclude_user && user_mode(regs))
9414 return 1;
9415
9416 if (event->attr.exclude_kernel && !user_mode(regs))
9417 return 1;
9418 }
9419
9420 return 0;
9421}
9422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009423static int perf_swevent_match(struct perf_event *event,
9424 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08009425 u32 event_id,
9426 struct perf_sample_data *data,
9427 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009428{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009429 if (event->attr.type != type)
9430 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009431
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009432 if (event->attr.config != event_id)
9433 return 0;
9434
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009435 if (perf_exclude_event(event, regs))
9436 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009437
9438 return 1;
9439}
9440
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009441static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009442{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009443 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009444
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009445 return hash_64(val, SWEVENT_HLIST_BITS);
9446}
9447
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009448static inline struct hlist_head *
9449__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009450{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009451 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009452
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009453 return &hlist->heads[hash];
9454}
9455
9456/* For the read side: events when they trigger */
9457static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009458find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009459{
9460 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009461
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009462 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009463 if (!hlist)
9464 return NULL;
9465
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009466 return __find_swevent_head(hlist, type, event_id);
9467}
9468
9469/* For the event head insertion and removal in the hlist */
9470static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009471find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009472{
9473 struct swevent_hlist *hlist;
9474 u32 event_id = event->attr.config;
9475 u64 type = event->attr.type;
9476
9477 /*
9478 * Event scheduling is always serialized against hlist allocation
9479 * and release. Which makes the protected version suitable here.
9480 * The context lock guarantees that.
9481 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009482 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009483 lockdep_is_held(&event->ctx->lock));
9484 if (!hlist)
9485 return NULL;
9486
9487 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009488}
9489
9490static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009491 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009492 struct perf_sample_data *data,
9493 struct pt_regs *regs)
9494{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009495 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009496 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009497 struct hlist_head *head;
9498
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009499 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009500 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009501 if (!head)
9502 goto end;
9503
Sasha Levinb67bfe02013-02-27 17:06:00 -08009504 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08009505 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009506 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009507 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009508end:
9509 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009510}
9511
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009512DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
9513
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009514int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009515{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009516 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009517
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009518 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009519}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01009520EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009521
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009522void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009523{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009524 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009525
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009526 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009527}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009528
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009529void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009530{
Ingo Molnara4234bf2009-11-23 10:57:59 +01009531 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009532
9533 if (WARN_ON_ONCE(!regs))
9534 return;
9535
9536 perf_sample_data_init(&data, addr, 0);
9537 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
9538}
9539
9540void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
9541{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009542 int rctx;
9543
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009544 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009545 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009546 if (unlikely(rctx < 0))
9547 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009548
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009549 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009550
9551 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009552fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009553 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009554}
9555
9556static void perf_swevent_read(struct perf_event *event)
9557{
9558}
9559
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009560static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009561{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009562 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009563 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009564 struct hlist_head *head;
9565
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009566 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009567 hwc->last_period = hwc->sample_period;
9568 perf_swevent_set_period(event);
9569 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009570
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009571 hwc->state = !(flags & PERF_EF_START);
9572
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009573 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01009574 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009575 return -EINVAL;
9576
9577 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08009578 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009579
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009580 return 0;
9581}
9582
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009583static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009584{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009585 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009586}
9587
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009588static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009589{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009590 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009591}
9592
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009593static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009594{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009595 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009596}
9597
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009598/* Deref the hlist from the update side */
9599static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009600swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009601{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009602 return rcu_dereference_protected(swhash->swevent_hlist,
9603 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009604}
9605
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009606static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009607{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009608 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009609
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009610 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009611 return;
9612
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03009613 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08009614 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009615}
9616
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009617static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009618{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009619 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009620
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009621 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009622
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009623 if (!--swhash->hlist_refcount)
9624 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009625
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009626 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009627}
9628
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009629static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009630{
9631 int cpu;
9632
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009633 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009634 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009635}
9636
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009637static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009638{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009639 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009640 int err = 0;
9641
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009642 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009643 if (!swevent_hlist_deref(swhash) &&
9644 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009645 struct swevent_hlist *hlist;
9646
9647 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9648 if (!hlist) {
9649 err = -ENOMEM;
9650 goto exit;
9651 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009652 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009653 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009654 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009655exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009656 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009657
9658 return err;
9659}
9660
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009661static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009662{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009663 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009664
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009665 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009666 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009667 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009668 if (err) {
9669 failed_cpu = cpu;
9670 goto fail;
9671 }
9672 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009673 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009674 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009675fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009676 for_each_possible_cpu(cpu) {
9677 if (cpu == failed_cpu)
9678 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009679 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009680 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009681 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009682 return err;
9683}
9684
Ingo Molnarc5905af2012-02-24 08:31:31 +01009685struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009686
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009687static void sw_perf_event_destroy(struct perf_event *event)
9688{
9689 u64 event_id = event->attr.config;
9690
9691 WARN_ON(event->parent);
9692
Ingo Molnarc5905af2012-02-24 08:31:31 +01009693 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009694 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009695}
9696
9697static int perf_swevent_init(struct perf_event *event)
9698{
Tommi Rantala8176cce2013-04-13 22:49:14 +03009699 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009700
9701 if (event->attr.type != PERF_TYPE_SOFTWARE)
9702 return -ENOENT;
9703
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009704 /*
9705 * no branch sampling for software events
9706 */
9707 if (has_branch_stack(event))
9708 return -EOPNOTSUPP;
9709
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009710 switch (event_id) {
9711 case PERF_COUNT_SW_CPU_CLOCK:
9712 case PERF_COUNT_SW_TASK_CLOCK:
9713 return -ENOENT;
9714
9715 default:
9716 break;
9717 }
9718
Dan Carpenterce677832010-10-24 21:50:42 +02009719 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009720 return -ENOENT;
9721
9722 if (!event->parent) {
9723 int err;
9724
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009725 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009726 if (err)
9727 return err;
9728
Ingo Molnarc5905af2012-02-24 08:31:31 +01009729 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009730 event->destroy = sw_perf_event_destroy;
9731 }
9732
9733 return 0;
9734}
9735
9736static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009737 .task_ctx_nr = perf_sw_context,
9738
Peter Zijlstra34f43922015-02-20 14:05:38 +01009739 .capabilities = PERF_PMU_CAP_NO_NMI,
9740
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009741 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009742 .add = perf_swevent_add,
9743 .del = perf_swevent_del,
9744 .start = perf_swevent_start,
9745 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009746 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009747};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009748
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009749#ifdef CONFIG_EVENT_TRACING
9750
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009751static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009752 struct perf_sample_data *data)
9753{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009754 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009755
Peter Zijlstrab71b4372015-11-02 10:50:51 +01009756 /* only top level events have filters set */
9757 if (event->parent)
9758 event = event->parent;
9759
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009760 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9761 return 1;
9762 return 0;
9763}
9764
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009765static int perf_tp_event_match(struct perf_event *event,
9766 struct perf_sample_data *data,
9767 struct pt_regs *regs)
9768{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01009769 if (event->hw.state & PERF_HES_STOPPED)
9770 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02009771 /*
Song Liu9fd2e482019-05-07 09:15:45 -07009772 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02009773 */
Song Liu9fd2e482019-05-07 09:15:45 -07009774 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009775 return 0;
9776
9777 if (!perf_tp_filter_match(event, data))
9778 return 0;
9779
9780 return 1;
9781}
9782
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009783void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9784 struct trace_event_call *call, u64 count,
9785 struct pt_regs *regs, struct hlist_head *head,
9786 struct task_struct *task)
9787{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009788 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009789 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009790 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009791 perf_swevent_put_recursion_context(rctx);
9792 return;
9793 }
9794 }
9795 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009796 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009797}
9798EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9799
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009800void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009801 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009802 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009803{
9804 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009805 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009806
9807 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009808 .frag = {
9809 .size = entry_size,
9810 .data = record,
9811 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009812 };
9813
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009814 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009815 data.raw = &raw;
9816
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009817 perf_trace_buf_update(record, event_type);
9818
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009819 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009820 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009821 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009822 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009823
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009824 /*
9825 * If we got specified a target task, also iterate its context and
9826 * deliver this event there too.
9827 */
9828 if (task && task != current) {
9829 struct perf_event_context *ctx;
9830 struct trace_entry *entry = record;
9831
9832 rcu_read_lock();
9833 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9834 if (!ctx)
9835 goto unlock;
9836
9837 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009838 if (event->cpu != smp_processor_id())
9839 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009840 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9841 continue;
9842 if (event->attr.config != entry->type)
9843 continue;
Marco Elver73743c32021-11-09 13:22:32 +01009844 /* Cannot deliver synchronous signal to other task. */
9845 if (event->attr.sigtrap)
9846 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009847 if (perf_tp_event_match(event, &data, regs))
9848 perf_swevent_event(event, count, &data, regs);
9849 }
9850unlock:
9851 rcu_read_unlock();
9852 }
9853
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009854 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009855}
9856EXPORT_SYMBOL_GPL(perf_tp_event);
9857
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009858static void tp_perf_event_destroy(struct perf_event *event)
9859{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009860 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009861}
9862
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009863static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009864{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009865 int err;
9866
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009867 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9868 return -ENOENT;
9869
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009870 /*
9871 * no branch sampling for tracepoint events
9872 */
9873 if (has_branch_stack(event))
9874 return -EOPNOTSUPP;
9875
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009876 err = perf_trace_init(event);
9877 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009878 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009879
9880 event->destroy = tp_perf_event_destroy;
9881
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009882 return 0;
9883}
9884
9885static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009886 .task_ctx_nr = perf_sw_context,
9887
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009888 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009889 .add = perf_trace_add,
9890 .del = perf_trace_del,
9891 .start = perf_swevent_start,
9892 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009893 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009894};
9895
Song Liu33ea4b22017-12-06 14:45:16 -08009896#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009897/*
9898 * Flags in config, used by dynamic PMU kprobe and uprobe
9899 * The flags should match following PMU_FORMAT_ATTR().
9900 *
9901 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9902 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009903 *
9904 * The following values specify a reference counter (or semaphore in the
9905 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9906 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9907 *
9908 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9909 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009910 */
9911enum perf_probe_config {
9912 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009913 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9914 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009915};
9916
9917PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009918#endif
Song Liue12f03d2017-12-06 14:45:15 -08009919
Song Liua6ca88b2018-10-01 22:36:36 -07009920#ifdef CONFIG_KPROBE_EVENTS
9921static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009922 &format_attr_retprobe.attr,
9923 NULL,
9924};
9925
Song Liua6ca88b2018-10-01 22:36:36 -07009926static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009927 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009928 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009929};
9930
Song Liua6ca88b2018-10-01 22:36:36 -07009931static const struct attribute_group *kprobe_attr_groups[] = {
9932 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009933 NULL,
9934};
9935
9936static int perf_kprobe_event_init(struct perf_event *event);
9937static struct pmu perf_kprobe = {
9938 .task_ctx_nr = perf_sw_context,
9939 .event_init = perf_kprobe_event_init,
9940 .add = perf_trace_add,
9941 .del = perf_trace_del,
9942 .start = perf_swevent_start,
9943 .stop = perf_swevent_stop,
9944 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009945 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009946};
9947
9948static int perf_kprobe_event_init(struct perf_event *event)
9949{
9950 int err;
9951 bool is_retprobe;
9952
9953 if (event->attr.type != perf_kprobe.type)
9954 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009955
Alexey Budankovc9e09242020-04-02 11:47:01 +03009956 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009957 return -EACCES;
9958
Song Liue12f03d2017-12-06 14:45:15 -08009959 /*
9960 * no branch sampling for probe events
9961 */
9962 if (has_branch_stack(event))
9963 return -EOPNOTSUPP;
9964
9965 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9966 err = perf_kprobe_init(event, is_retprobe);
9967 if (err)
9968 return err;
9969
9970 event->destroy = perf_kprobe_destroy;
9971
9972 return 0;
9973}
9974#endif /* CONFIG_KPROBE_EVENTS */
9975
Song Liu33ea4b22017-12-06 14:45:16 -08009976#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009977PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9978
9979static struct attribute *uprobe_attrs[] = {
9980 &format_attr_retprobe.attr,
9981 &format_attr_ref_ctr_offset.attr,
9982 NULL,
9983};
9984
9985static struct attribute_group uprobe_format_group = {
9986 .name = "format",
9987 .attrs = uprobe_attrs,
9988};
9989
9990static const struct attribute_group *uprobe_attr_groups[] = {
9991 &uprobe_format_group,
9992 NULL,
9993};
9994
Song Liu33ea4b22017-12-06 14:45:16 -08009995static int perf_uprobe_event_init(struct perf_event *event);
9996static struct pmu perf_uprobe = {
9997 .task_ctx_nr = perf_sw_context,
9998 .event_init = perf_uprobe_event_init,
9999 .add = perf_trace_add,
10000 .del = perf_trace_del,
10001 .start = perf_swevent_start,
10002 .stop = perf_swevent_stop,
10003 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -070010004 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -080010005};
10006
10007static int perf_uprobe_event_init(struct perf_event *event)
10008{
10009 int err;
Song Liua6ca88b2018-10-01 22:36:36 -070010010 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -080010011 bool is_retprobe;
10012
10013 if (event->attr.type != perf_uprobe.type)
10014 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +000010015
Alexey Budankovc9e09242020-04-02 11:47:01 +030010016 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +000010017 return -EACCES;
10018
Song Liu33ea4b22017-12-06 14:45:16 -080010019 /*
10020 * no branch sampling for probe events
10021 */
10022 if (has_branch_stack(event))
10023 return -EOPNOTSUPP;
10024
10025 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -070010026 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
10027 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -080010028 if (err)
10029 return err;
10030
10031 event->destroy = perf_uprobe_destroy;
10032
10033 return 0;
10034}
10035#endif /* CONFIG_UPROBE_EVENTS */
10036
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010037static inline void perf_tp_register(void)
10038{
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010039 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -080010040#ifdef CONFIG_KPROBE_EVENTS
10041 perf_pmu_register(&perf_kprobe, "kprobe", -1);
10042#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010043#ifdef CONFIG_UPROBE_EVENTS
10044 perf_pmu_register(&perf_uprobe, "uprobe", -1);
10045#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010046}
Li Zefan6fb29152009-10-15 11:21:42 +080010047
Li Zefan6fb29152009-10-15 11:21:42 +080010048static void perf_event_free_filter(struct perf_event *event)
10049{
10050 ftrace_profile_free_filter(event);
10051}
10052
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010053#ifdef CONFIG_BPF_SYSCALL
10054static void bpf_overflow_handler(struct perf_event *event,
10055 struct perf_sample_data *data,
10056 struct pt_regs *regs)
10057{
10058 struct bpf_perf_event_data_kern ctx = {
10059 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -070010060 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010061 };
Yonghong Song594286b2021-08-19 08:52:09 -070010062 struct bpf_prog *prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010063 int ret = 0;
10064
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +010010065 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010066 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
10067 goto out;
10068 rcu_read_lock();
Yonghong Song594286b2021-08-19 08:52:09 -070010069 prog = READ_ONCE(event->prog);
10070 if (prog)
10071 ret = bpf_prog_run(prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010072 rcu_read_unlock();
10073out:
10074 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010075 if (!ret)
10076 return;
10077
10078 event->orig_overflow_handler(event, data, regs);
10079}
10080
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010081static int perf_event_set_bpf_handler(struct perf_event *event,
10082 struct bpf_prog *prog,
10083 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010084{
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010085 if (event->overflow_handler_context)
10086 /* hw breakpoint or kernel counter */
10087 return -EINVAL;
10088
10089 if (event->prog)
10090 return -EEXIST;
10091
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010092 if (prog->type != BPF_PROG_TYPE_PERF_EVENT)
10093 return -EINVAL;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010094
Song Liu5d99cb2c2020-07-23 11:06:45 -070010095 if (event->attr.precise_ip &&
10096 prog->call_get_stack &&
10097 (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY) ||
10098 event->attr.exclude_callchain_kernel ||
10099 event->attr.exclude_callchain_user)) {
10100 /*
10101 * On perf_event with precise_ip, calling bpf_get_stack()
10102 * may trigger unwinder warnings and occasional crashes.
10103 * bpf_get_[stack|stackid] works around this issue by using
10104 * callchain attached to perf_sample_data. If the
10105 * perf_event does not full (kernel and user) callchain
10106 * attached to perf_sample_data, do not allow attaching BPF
10107 * program that calls bpf_get_[stack|stackid].
10108 */
Song Liu5d99cb2c2020-07-23 11:06:45 -070010109 return -EPROTO;
10110 }
10111
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010112 event->prog = prog;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010113 event->bpf_cookie = bpf_cookie;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010114 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
10115 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
10116 return 0;
10117}
10118
10119static void perf_event_free_bpf_handler(struct perf_event *event)
10120{
10121 struct bpf_prog *prog = event->prog;
10122
10123 if (!prog)
10124 return;
10125
10126 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
10127 event->prog = NULL;
10128 bpf_prog_put(prog);
10129}
10130#else
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010131static int perf_event_set_bpf_handler(struct perf_event *event,
10132 struct bpf_prog *prog,
10133 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010134{
10135 return -EOPNOTSUPP;
10136}
10137static void perf_event_free_bpf_handler(struct perf_event *event)
10138{
10139}
10140#endif
10141
Song Liue12f03d2017-12-06 14:45:15 -080010142/*
10143 * returns true if the event is a tracepoint, or a kprobe/upprobe created
10144 * with perf_event_open()
10145 */
10146static inline bool perf_event_is_tracing(struct perf_event *event)
10147{
10148 if (event->pmu == &perf_tracepoint)
10149 return true;
10150#ifdef CONFIG_KPROBE_EVENTS
10151 if (event->pmu == &perf_kprobe)
10152 return true;
10153#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010154#ifdef CONFIG_UPROBE_EVENTS
10155 if (event->pmu == &perf_uprobe)
10156 return true;
10157#endif
Song Liue12f03d2017-12-06 14:45:15 -080010158 return false;
10159}
10160
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010161int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10162 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010163{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010164 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010165
Song Liue12f03d2017-12-06 14:45:15 -080010166 if (!perf_event_is_tracing(event))
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010167 return perf_event_set_bpf_handler(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010168
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010169 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
10170 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010171 is_syscall_tp = is_syscall_trace_event(event->tp_event);
10172 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010173 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -070010174 return -EINVAL;
10175
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010176 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010177 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010178 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT))
Alexei Starovoitov25415172015-03-25 12:49:20 -070010179 return -EINVAL;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010180
Josef Bacik9802d862017-12-11 11:36:48 -050010181 /* Kprobe override only works for kprobes, not uprobes. */
10182 if (prog->kprobe_override &&
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010183 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE))
Josef Bacik9802d862017-12-11 11:36:48 -050010184 return -EINVAL;
Josef Bacik9802d862017-12-11 11:36:48 -050010185
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010186 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010187 int off = trace_event_get_offsets(event->tp_event);
10188
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010189 if (prog->aux->max_ctx_offset > off)
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010190 return -EACCES;
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010191 }
Alexei Starovoitov25415172015-03-25 12:49:20 -070010192
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010193 return perf_event_attach_bpf_prog(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010194}
10195
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010196void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010197{
Song Liue12f03d2017-12-06 14:45:15 -080010198 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -070010199 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010200 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010201 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -070010202 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010203}
10204
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010205#else
Li Zefan6fb29152009-10-15 11:21:42 +080010206
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010207static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010208{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010209}
Li Zefan6fb29152009-10-15 11:21:42 +080010210
Li Zefan6fb29152009-10-15 11:21:42 +080010211static void perf_event_free_filter(struct perf_event *event)
10212{
10213}
10214
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010215int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10216 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010217{
10218 return -ENOENT;
10219}
10220
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010221void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010222{
10223}
Li Zefan07b139c2009-12-21 14:27:35 +080010224#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010225
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010226#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010227void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010228{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010229 struct perf_sample_data sample;
10230 struct pt_regs *regs = data;
10231
Robert Richterfd0d0002012-04-02 20:19:08 +020010232 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010233
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010234 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020010235 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010236}
10237#endif
10238
Alexander Shishkin375637b2016-04-27 18:44:46 +030010239/*
10240 * Allocate a new address filter
10241 */
10242static struct perf_addr_filter *
10243perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
10244{
10245 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
10246 struct perf_addr_filter *filter;
10247
10248 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
10249 if (!filter)
10250 return NULL;
10251
10252 INIT_LIST_HEAD(&filter->entry);
10253 list_add_tail(&filter->entry, filters);
10254
10255 return filter;
10256}
10257
10258static void free_filters_list(struct list_head *filters)
10259{
10260 struct perf_addr_filter *filter, *iter;
10261
10262 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -070010263 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010264 list_del(&filter->entry);
10265 kfree(filter);
10266 }
10267}
10268
10269/*
10270 * Free existing address filters and optionally install new ones
10271 */
10272static void perf_addr_filters_splice(struct perf_event *event,
10273 struct list_head *head)
10274{
10275 unsigned long flags;
10276 LIST_HEAD(list);
10277
10278 if (!has_addr_filter(event))
10279 return;
10280
10281 /* don't bother with children, they don't have their own filters */
10282 if (event->parent)
10283 return;
10284
10285 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
10286
10287 list_splice_init(&event->addr_filters.list, &list);
10288 if (head)
10289 list_splice(head, &event->addr_filters.list);
10290
10291 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
10292
10293 free_filters_list(&list);
10294}
10295
10296/*
10297 * Scan through mm's vmas and see if one of them matches the
10298 * @filter; if so, adjust filter's address range.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070010299 * Called with mm::mmap_lock down for reading.
Alexander Shishkin375637b2016-04-27 18:44:46 +030010300 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010301static void perf_addr_filter_apply(struct perf_addr_filter *filter,
10302 struct mm_struct *mm,
10303 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010304{
10305 struct vm_area_struct *vma;
10306
10307 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010308 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010309 continue;
10310
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010311 if (perf_addr_filter_vma_adjust(filter, vma, fr))
10312 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010313 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010314}
10315
10316/*
10317 * Update event's address range filters based on the
10318 * task's existing mappings, if any.
10319 */
10320static void perf_event_addr_filters_apply(struct perf_event *event)
10321{
10322 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10323 struct task_struct *task = READ_ONCE(event->ctx->task);
10324 struct perf_addr_filter *filter;
10325 struct mm_struct *mm = NULL;
10326 unsigned int count = 0;
10327 unsigned long flags;
10328
10329 /*
10330 * We may observe TASK_TOMBSTONE, which means that the event tear-down
10331 * will stop on the parent's child_mutex that our caller is also holding
10332 */
10333 if (task == TASK_TOMBSTONE)
10334 return;
10335
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010336 if (ifh->nr_file_filters) {
Baptiste Lepersb89a05b2021-09-06 11:53:10 +100010337 mm = get_task_mm(task);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010338 if (!mm)
10339 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010340
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010341 mmap_read_lock(mm);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010342 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010343
10344 raw_spin_lock_irqsave(&ifh->lock, flags);
10345 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010346 if (filter->path.dentry) {
10347 /*
10348 * Adjust base offset if the filter is associated to a
10349 * binary that needs to be mapped:
10350 */
10351 event->addr_filter_ranges[count].start = 0;
10352 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010353
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010354 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010355 } else {
10356 event->addr_filter_ranges[count].start = filter->offset;
10357 event->addr_filter_ranges[count].size = filter->size;
10358 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010359
10360 count++;
10361 }
10362
10363 event->addr_filters_gen++;
10364 raw_spin_unlock_irqrestore(&ifh->lock, flags);
10365
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010366 if (ifh->nr_file_filters) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010367 mmap_read_unlock(mm);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010368
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010369 mmput(mm);
10370 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010371
10372restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +030010373 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010374}
10375
10376/*
10377 * Address range filtering: limiting the data to certain
10378 * instruction address ranges. Filters are ioctl()ed to us from
10379 * userspace as ascii strings.
10380 *
10381 * Filter string format:
10382 *
10383 * ACTION RANGE_SPEC
10384 * where ACTION is one of the
10385 * * "filter": limit the trace to this region
10386 * * "start": start tracing from this address
10387 * * "stop": stop tracing at this address/region;
10388 * RANGE_SPEC is
10389 * * for kernel addresses: <start address>[/<size>]
10390 * * for object files: <start address>[/<size>]@</path/to/object/file>
10391 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010392 * if <size> is not specified or is zero, the range is treated as a single
10393 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +030010394 */
10395enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +020010396 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +030010397 IF_ACT_FILTER,
10398 IF_ACT_START,
10399 IF_ACT_STOP,
10400 IF_SRC_FILE,
10401 IF_SRC_KERNEL,
10402 IF_SRC_FILEADDR,
10403 IF_SRC_KERNELADDR,
10404};
10405
10406enum {
10407 IF_STATE_ACTION = 0,
10408 IF_STATE_SOURCE,
10409 IF_STATE_END,
10410};
10411
10412static const match_table_t if_tokens = {
10413 { IF_ACT_FILTER, "filter" },
10414 { IF_ACT_START, "start" },
10415 { IF_ACT_STOP, "stop" },
10416 { IF_SRC_FILE, "%u/%u@%s" },
10417 { IF_SRC_KERNEL, "%u/%u" },
10418 { IF_SRC_FILEADDR, "%u@%s" },
10419 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +020010420 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +030010421};
10422
10423/*
10424 * Address filter string parser
10425 */
10426static int
10427perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
10428 struct list_head *filters)
10429{
10430 struct perf_addr_filter *filter = NULL;
10431 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010432 substring_t args[MAX_OPT_ARGS];
10433 int state = IF_STATE_ACTION, token;
10434 unsigned int kernel = 0;
10435 int ret = -EINVAL;
10436
10437 orig = fstr = kstrdup(fstr, GFP_KERNEL);
10438 if (!fstr)
10439 return -ENOMEM;
10440
10441 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010442 static const enum perf_addr_filter_action_t actions[] = {
10443 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
10444 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
10445 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
10446 };
Alexander Shishkin375637b2016-04-27 18:44:46 +030010447 ret = -EINVAL;
10448
10449 if (!*start)
10450 continue;
10451
10452 /* filter definition begins */
10453 if (state == IF_STATE_ACTION) {
10454 filter = perf_addr_filter_new(event, filters);
10455 if (!filter)
10456 goto fail;
10457 }
10458
10459 token = match_token(start, if_tokens, args);
10460 switch (token) {
10461 case IF_ACT_FILTER:
10462 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +030010463 case IF_ACT_STOP:
10464 if (state != IF_STATE_ACTION)
10465 goto fail;
10466
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010467 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +030010468 state = IF_STATE_SOURCE;
10469 break;
10470
10471 case IF_SRC_KERNELADDR:
10472 case IF_SRC_KERNEL:
10473 kernel = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010474 fallthrough;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010475
10476 case IF_SRC_FILEADDR:
10477 case IF_SRC_FILE:
10478 if (state != IF_STATE_SOURCE)
10479 goto fail;
10480
Alexander Shishkin375637b2016-04-27 18:44:46 +030010481 *args[0].to = 0;
10482 ret = kstrtoul(args[0].from, 0, &filter->offset);
10483 if (ret)
10484 goto fail;
10485
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010486 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +030010487 *args[1].to = 0;
10488 ret = kstrtoul(args[1].from, 0, &filter->size);
10489 if (ret)
10490 goto fail;
10491 }
10492
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010493 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010494 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010495
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010496 kfree(filename);
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010497 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010498 if (!filename) {
10499 ret = -ENOMEM;
10500 goto fail;
10501 }
10502 }
10503
10504 state = IF_STATE_END;
10505 break;
10506
10507 default:
10508 goto fail;
10509 }
10510
10511 /*
10512 * Filter definition is fully parsed, validate and install it.
10513 * Make sure that it doesn't contradict itself or the event's
10514 * attribute.
10515 */
10516 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +020010517 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010518 if (kernel && event->attr.exclude_kernel)
10519 goto fail;
10520
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010521 /*
10522 * ACTION "filter" must have a non-zero length region
10523 * specified.
10524 */
10525 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
10526 !filter->size)
10527 goto fail;
10528
Alexander Shishkin375637b2016-04-27 18:44:46 +030010529 if (!kernel) {
10530 if (!filename)
10531 goto fail;
10532
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010533 /*
10534 * For now, we only support file-based filters
10535 * in per-task events; doing so for CPU-wide
10536 * events requires additional context switching
10537 * trickery, since same object code will be
10538 * mapped at different virtual addresses in
10539 * different processes.
10540 */
10541 ret = -EOPNOTSUPP;
10542 if (!event->ctx->task)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010543 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010544
Alexander Shishkin375637b2016-04-27 18:44:46 +030010545 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -070010546 ret = kern_path(filename, LOOKUP_FOLLOW,
10547 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010548 if (ret)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010549 goto fail;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010550
10551 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -070010552 if (!filter->path.dentry ||
10553 !S_ISREG(d_inode(filter->path.dentry)
10554 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010555 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010556
10557 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010558 }
10559
10560 /* ready to consume more filters */
10561 state = IF_STATE_ACTION;
10562 filter = NULL;
10563 }
10564 }
10565
10566 if (state != IF_STATE_ACTION)
10567 goto fail;
10568
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010569 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010570 kfree(orig);
10571
10572 return 0;
10573
Alexander Shishkin375637b2016-04-27 18:44:46 +030010574fail:
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010575 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010576 free_filters_list(filters);
10577 kfree(orig);
10578
10579 return ret;
10580}
10581
10582static int
10583perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10584{
10585 LIST_HEAD(filters);
10586 int ret;
10587
10588 /*
10589 * Since this is called in perf_ioctl() path, we're already holding
10590 * ctx::mutex.
10591 */
10592 lockdep_assert_held(&event->ctx->mutex);
10593
10594 if (WARN_ON_ONCE(event->parent))
10595 return -EINVAL;
10596
Alexander Shishkin375637b2016-04-27 18:44:46 +030010597 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10598 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010599 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010600
10601 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010602 if (ret)
10603 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010604
10605 /* remove existing filters, if any */
10606 perf_addr_filters_splice(event, &filters);
10607
10608 /* install new filters */
10609 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10610
10611 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010612
10613fail_free_filters:
10614 free_filters_list(&filters);
10615
10616fail_clear_files:
10617 event->addr_filters.nr_file_filters = 0;
10618
10619 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010620}
10621
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010622static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10623{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010624 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -080010625 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010626
10627 filter_str = strndup_user(arg, PAGE_SIZE);
10628 if (IS_ERR(filter_str))
10629 return PTR_ERR(filter_str);
10630
Song Liue12f03d2017-12-06 14:45:15 -080010631#ifdef CONFIG_EVENT_TRACING
10632 if (perf_event_is_tracing(event)) {
10633 struct perf_event_context *ctx = event->ctx;
10634
10635 /*
10636 * Beware, here be dragons!!
10637 *
10638 * the tracepoint muck will deadlock against ctx->mutex, but
10639 * the tracepoint stuff does not actually need it. So
10640 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10641 * already have a reference on ctx.
10642 *
10643 * This can result in event getting moved to a different ctx,
10644 * but that does not affect the tracepoint state.
10645 */
10646 mutex_unlock(&ctx->mutex);
10647 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10648 mutex_lock(&ctx->mutex);
10649 } else
10650#endif
10651 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010652 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010653
10654 kfree(filter_str);
10655 return ret;
10656}
10657
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010658/*
10659 * hrtimer based swevent callback
10660 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010661
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010662static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010663{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010664 enum hrtimer_restart ret = HRTIMER_RESTART;
10665 struct perf_sample_data data;
10666 struct pt_regs *regs;
10667 struct perf_event *event;
10668 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010669
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010670 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010671
10672 if (event->state != PERF_EVENT_STATE_ACTIVE)
10673 return HRTIMER_NORESTART;
10674
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010675 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010676
Robert Richterfd0d0002012-04-02 20:19:08 +020010677 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010678 regs = get_irq_regs();
10679
10680 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -080010681 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +020010682 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010683 ret = HRTIMER_NORESTART;
10684 }
10685
10686 period = max_t(u64, 10000, event->hw.sample_period);
10687 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
10688
10689 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010690}
10691
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010692static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010693{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010694 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010695 s64 period;
10696
10697 if (!is_sampling_event(event))
10698 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010699
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010700 period = local64_read(&hwc->period_left);
10701 if (period) {
10702 if (period < 0)
10703 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010704
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010705 local64_set(&hwc->period_left, 0);
10706 } else {
10707 period = max_t(u64, 10000, hwc->sample_period);
10708 }
Thomas Gleixner3497d202015-04-14 21:09:03 +000010709 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010710 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010711}
10712
10713static void perf_swevent_cancel_hrtimer(struct perf_event *event)
10714{
10715 struct hw_perf_event *hwc = &event->hw;
10716
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +010010717 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010718 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010719 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010720
10721 hrtimer_cancel(&hwc->hrtimer);
10722 }
10723}
10724
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010725static void perf_swevent_init_hrtimer(struct perf_event *event)
10726{
10727 struct hw_perf_event *hwc = &event->hw;
10728
10729 if (!is_sampling_event(event))
10730 return;
10731
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010732 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010733 hwc->hrtimer.function = perf_swevent_hrtimer;
10734
10735 /*
10736 * Since hrtimers have a fixed rate, we can do a static freq->period
10737 * mapping and avoid the whole period adjust feedback stuff.
10738 */
10739 if (event->attr.freq) {
10740 long freq = event->attr.sample_freq;
10741
10742 event->attr.sample_period = NSEC_PER_SEC / freq;
10743 hwc->sample_period = event->attr.sample_period;
10744 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +090010745 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010746 event->attr.freq = 0;
10747 }
10748}
10749
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010750/*
10751 * Software event: cpu wall time clock
10752 */
10753
10754static void cpu_clock_event_update(struct perf_event *event)
10755{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010756 s64 prev;
10757 u64 now;
10758
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010759 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010760 prev = local64_xchg(&event->hw.prev_count, now);
10761 local64_add(now - prev, &event->count);
10762}
10763
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010764static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010765{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010766 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010767 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010768}
10769
10770static void cpu_clock_event_stop(struct perf_event *event, int flags)
10771{
10772 perf_swevent_cancel_hrtimer(event);
10773 cpu_clock_event_update(event);
10774}
10775
10776static int cpu_clock_event_add(struct perf_event *event, int flags)
10777{
10778 if (flags & PERF_EF_START)
10779 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010780 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010781
10782 return 0;
10783}
10784
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010785static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010786{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010787 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010788}
10789
10790static void cpu_clock_event_read(struct perf_event *event)
10791{
10792 cpu_clock_event_update(event);
10793}
10794
10795static int cpu_clock_event_init(struct perf_event *event)
10796{
10797 if (event->attr.type != PERF_TYPE_SOFTWARE)
10798 return -ENOENT;
10799
10800 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10801 return -ENOENT;
10802
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010803 /*
10804 * no branch sampling for software events
10805 */
10806 if (has_branch_stack(event))
10807 return -EOPNOTSUPP;
10808
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010809 perf_swevent_init_hrtimer(event);
10810
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010811 return 0;
10812}
10813
10814static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010815 .task_ctx_nr = perf_sw_context,
10816
Peter Zijlstra34f43922015-02-20 14:05:38 +010010817 .capabilities = PERF_PMU_CAP_NO_NMI,
10818
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010819 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010820 .add = cpu_clock_event_add,
10821 .del = cpu_clock_event_del,
10822 .start = cpu_clock_event_start,
10823 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010824 .read = cpu_clock_event_read,
10825};
10826
10827/*
10828 * Software event: task time clock
10829 */
10830
10831static void task_clock_event_update(struct perf_event *event, u64 now)
10832{
10833 u64 prev;
10834 s64 delta;
10835
10836 prev = local64_xchg(&event->hw.prev_count, now);
10837 delta = now - prev;
10838 local64_add(delta, &event->count);
10839}
10840
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010841static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010842{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010843 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010844 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010845}
10846
10847static void task_clock_event_stop(struct perf_event *event, int flags)
10848{
10849 perf_swevent_cancel_hrtimer(event);
10850 task_clock_event_update(event, event->ctx->time);
10851}
10852
10853static int task_clock_event_add(struct perf_event *event, int flags)
10854{
10855 if (flags & PERF_EF_START)
10856 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010857 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010858
10859 return 0;
10860}
10861
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010862static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010863{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010864 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010865}
10866
10867static void task_clock_event_read(struct perf_event *event)
10868{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010869 u64 now = perf_clock();
10870 u64 delta = now - event->ctx->timestamp;
10871 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010872
10873 task_clock_event_update(event, time);
10874}
10875
10876static int task_clock_event_init(struct perf_event *event)
10877{
10878 if (event->attr.type != PERF_TYPE_SOFTWARE)
10879 return -ENOENT;
10880
10881 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10882 return -ENOENT;
10883
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010884 /*
10885 * no branch sampling for software events
10886 */
10887 if (has_branch_stack(event))
10888 return -EOPNOTSUPP;
10889
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010890 perf_swevent_init_hrtimer(event);
10891
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010892 return 0;
10893}
10894
10895static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010896 .task_ctx_nr = perf_sw_context,
10897
Peter Zijlstra34f43922015-02-20 14:05:38 +010010898 .capabilities = PERF_PMU_CAP_NO_NMI,
10899
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010900 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010901 .add = task_clock_event_add,
10902 .del = task_clock_event_del,
10903 .start = task_clock_event_start,
10904 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010905 .read = task_clock_event_read,
10906};
10907
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010908static void perf_pmu_nop_void(struct pmu *pmu)
10909{
10910}
10911
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010912static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10913{
10914}
10915
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010916static int perf_pmu_nop_int(struct pmu *pmu)
10917{
10918 return 0;
10919}
10920
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010921static int perf_event_nop_int(struct perf_event *event, u64 value)
10922{
10923 return 0;
10924}
10925
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010926static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010927
10928static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010929{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010930 __this_cpu_write(nop_txn_flags, flags);
10931
10932 if (flags & ~PERF_PMU_TXN_ADD)
10933 return;
10934
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010935 perf_pmu_disable(pmu);
10936}
10937
10938static int perf_pmu_commit_txn(struct pmu *pmu)
10939{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010940 unsigned int flags = __this_cpu_read(nop_txn_flags);
10941
10942 __this_cpu_write(nop_txn_flags, 0);
10943
10944 if (flags & ~PERF_PMU_TXN_ADD)
10945 return 0;
10946
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010947 perf_pmu_enable(pmu);
10948 return 0;
10949}
10950
10951static void perf_pmu_cancel_txn(struct pmu *pmu)
10952{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010953 unsigned int flags = __this_cpu_read(nop_txn_flags);
10954
10955 __this_cpu_write(nop_txn_flags, 0);
10956
10957 if (flags & ~PERF_PMU_TXN_ADD)
10958 return;
10959
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010960 perf_pmu_enable(pmu);
10961}
10962
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010963static int perf_event_idx_default(struct perf_event *event)
10964{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010965 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010966}
10967
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010968/*
10969 * Ensures all contexts with the same task_ctx_nr have the same
10970 * pmu_cpu_context too.
10971 */
Mark Rutland9e317042014-02-10 17:44:18 +000010972static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010973{
10974 struct pmu *pmu;
10975
10976 if (ctxn < 0)
10977 return NULL;
10978
10979 list_for_each_entry(pmu, &pmus, entry) {
10980 if (pmu->task_ctx_nr == ctxn)
10981 return pmu->pmu_cpu_context;
10982 }
10983
10984 return NULL;
10985}
10986
Peter Zijlstra51676952010-12-07 14:18:20 +010010987static void free_pmu_context(struct pmu *pmu)
10988{
Will Deacondf0062b2017-10-03 15:20:50 +010010989 /*
10990 * Static contexts such as perf_sw_context have a global lifetime
10991 * and may be shared between different PMUs. Avoid freeing them
10992 * when a single PMU is going away.
10993 */
10994 if (pmu->task_ctx_nr > perf_invalid_context)
10995 return;
10996
Peter Zijlstra51676952010-12-07 14:18:20 +010010997 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010998}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010999
11000/*
11001 * Let userspace know that this PMU supports address range filtering:
11002 */
11003static ssize_t nr_addr_filters_show(struct device *dev,
11004 struct device_attribute *attr,
11005 char *page)
11006{
11007 struct pmu *pmu = dev_get_drvdata(dev);
11008
11009 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
11010}
11011DEVICE_ATTR_RO(nr_addr_filters);
11012
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011013static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011014
Peter Zijlstraabe43402010-11-17 23:17:37 +010011015static ssize_t
11016type_show(struct device *dev, struct device_attribute *attr, char *page)
11017{
11018 struct pmu *pmu = dev_get_drvdata(dev);
11019
11020 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
11021}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011022static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010011023
Stephane Eranian62b85632013-04-03 14:21:34 +020011024static ssize_t
11025perf_event_mux_interval_ms_show(struct device *dev,
11026 struct device_attribute *attr,
11027 char *page)
11028{
11029 struct pmu *pmu = dev_get_drvdata(dev);
11030
11031 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
11032}
11033
Peter Zijlstra272325c2015-04-15 11:41:58 +020011034static DEFINE_MUTEX(mux_interval_mutex);
11035
Stephane Eranian62b85632013-04-03 14:21:34 +020011036static ssize_t
11037perf_event_mux_interval_ms_store(struct device *dev,
11038 struct device_attribute *attr,
11039 const char *buf, size_t count)
11040{
11041 struct pmu *pmu = dev_get_drvdata(dev);
11042 int timer, cpu, ret;
11043
11044 ret = kstrtoint(buf, 0, &timer);
11045 if (ret)
11046 return ret;
11047
11048 if (timer < 1)
11049 return -EINVAL;
11050
11051 /* same value, noting to do */
11052 if (timer == pmu->hrtimer_interval_ms)
11053 return count;
11054
Peter Zijlstra272325c2015-04-15 11:41:58 +020011055 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020011056 pmu->hrtimer_interval_ms = timer;
11057
11058 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011059 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020011060 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020011061 struct perf_cpu_context *cpuctx;
11062 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11063 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
11064
Peter Zijlstra272325c2015-04-15 11:41:58 +020011065 cpu_function_call(cpu,
11066 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020011067 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011068 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020011069 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020011070
11071 return count;
11072}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011073static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020011074
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011075static struct attribute *pmu_dev_attrs[] = {
11076 &dev_attr_type.attr,
11077 &dev_attr_perf_event_mux_interval_ms.attr,
11078 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011079};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011080ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010011081
11082static int pmu_bus_running;
11083static struct bus_type pmu_bus = {
11084 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011085 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011086};
11087
11088static void pmu_dev_release(struct device *dev)
11089{
11090 kfree(dev);
11091}
11092
11093static int pmu_dev_alloc(struct pmu *pmu)
11094{
11095 int ret = -ENOMEM;
11096
11097 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
11098 if (!pmu->dev)
11099 goto out;
11100
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010011101 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010011102 device_initialize(pmu->dev);
11103 ret = dev_set_name(pmu->dev, "%s", pmu->name);
11104 if (ret)
11105 goto free_dev;
11106
11107 dev_set_drvdata(pmu->dev, pmu);
11108 pmu->dev->bus = &pmu_bus;
11109 pmu->dev->release = pmu_dev_release;
11110 ret = device_add(pmu->dev);
11111 if (ret)
11112 goto free_dev;
11113
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011114 /* For PMUs with address filters, throw in an extra attribute: */
11115 if (pmu->nr_addr_filters)
11116 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
11117
11118 if (ret)
11119 goto del_dev;
11120
Jiri Olsaf3a3a822019-05-12 17:55:11 +020011121 if (pmu->attr_update)
11122 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
11123
11124 if (ret)
11125 goto del_dev;
11126
Peter Zijlstraabe43402010-11-17 23:17:37 +010011127out:
11128 return ret;
11129
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011130del_dev:
11131 device_del(pmu->dev);
11132
Peter Zijlstraabe43402010-11-17 23:17:37 +010011133free_dev:
11134 put_device(pmu->dev);
11135 goto out;
11136}
11137
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011138static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011139static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011140
Mischa Jonker03d8e802013-06-04 11:45:48 +020011141int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011142{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011143 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011144
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011145 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011146 ret = -ENOMEM;
11147 pmu->pmu_disable_count = alloc_percpu(int);
11148 if (!pmu->pmu_disable_count)
11149 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011150
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011151 pmu->type = -1;
11152 if (!name)
11153 goto skip_type;
11154 pmu->name = name;
11155
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011156 if (type != PERF_TYPE_SOFTWARE) {
11157 if (type >= 0)
11158 max = type;
11159
11160 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
11161 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011162 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011163
11164 WARN_ON(type >= 0 && ret != type);
11165
11166 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011167 }
11168 pmu->type = type;
11169
Peter Zijlstraabe43402010-11-17 23:17:37 +010011170 if (pmu_bus_running) {
11171 ret = pmu_dev_alloc(pmu);
11172 if (ret)
11173 goto free_idr;
11174 }
11175
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011176skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010011177 if (pmu->task_ctx_nr == perf_hw_context) {
11178 static int hw_context_taken = 0;
11179
Mark Rutland5101ef22016-04-26 11:33:46 +010011180 /*
11181 * Other than systems with heterogeneous CPUs, it never makes
11182 * sense for two PMUs to share perf_hw_context. PMUs which are
11183 * uncore must use perf_invalid_context.
11184 */
11185 if (WARN_ON_ONCE(hw_context_taken &&
11186 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010011187 pmu->task_ctx_nr = perf_invalid_context;
11188
11189 hw_context_taken = 1;
11190 }
11191
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011192 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
11193 if (pmu->pmu_cpu_context)
11194 goto got_cpu_context;
11195
Wei Yongjunc4814202013-04-12 11:05:54 +080011196 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011197 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
11198 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010011199 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011200
11201 for_each_possible_cpu(cpu) {
11202 struct perf_cpu_context *cpuctx;
11203
11204 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020011205 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011206 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011207 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011208 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011209 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020011210
Peter Zijlstra272325c2015-04-15 11:41:58 +020011211 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080011212
11213 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
11214 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011215 }
11216
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011217got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011218 if (!pmu->start_txn) {
11219 if (pmu->pmu_enable) {
11220 /*
11221 * If we have pmu_enable/pmu_disable calls, install
11222 * transaction stubs that use that to try and batch
11223 * hardware accesses.
11224 */
11225 pmu->start_txn = perf_pmu_start_txn;
11226 pmu->commit_txn = perf_pmu_commit_txn;
11227 pmu->cancel_txn = perf_pmu_cancel_txn;
11228 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070011229 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011230 pmu->commit_txn = perf_pmu_nop_int;
11231 pmu->cancel_txn = perf_pmu_nop_void;
11232 }
11233 }
11234
11235 if (!pmu->pmu_enable) {
11236 pmu->pmu_enable = perf_pmu_nop_void;
11237 pmu->pmu_disable = perf_pmu_nop_void;
11238 }
11239
Jiri Olsa81ec3f32019-02-04 13:35:32 +010011240 if (!pmu->check_period)
11241 pmu->check_period = perf_event_nop_int;
11242
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010011243 if (!pmu->event_idx)
11244 pmu->event_idx = perf_event_idx_default;
11245
Liang, Kand44f8212019-10-22 11:13:09 +020011246 /*
11247 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
11248 * since these cannot be in the IDR. This way the linear search
11249 * is fast, provided a valid software event is provided.
11250 */
11251 if (type == PERF_TYPE_SOFTWARE || !name)
11252 list_add_rcu(&pmu->entry, &pmus);
11253 else
11254 list_add_tail_rcu(&pmu->entry, &pmus);
11255
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011256 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011257 ret = 0;
11258unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011259 mutex_unlock(&pmus_lock);
11260
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011261 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011262
Peter Zijlstraabe43402010-11-17 23:17:37 +010011263free_dev:
11264 device_del(pmu->dev);
11265 put_device(pmu->dev);
11266
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011267free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011268 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011269 idr_remove(&pmu_idr, pmu->type);
11270
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011271free_pdc:
11272 free_percpu(pmu->pmu_disable_count);
11273 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011274}
Yan, Zhengc464c762014-03-18 16:56:41 +080011275EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011276
11277void perf_pmu_unregister(struct pmu *pmu)
11278{
11279 mutex_lock(&pmus_lock);
11280 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011281
11282 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020011283 * We dereference the pmu list under both SRCU and regular RCU, so
11284 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011285 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011286 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020011287 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011288
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011289 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011290 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011291 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011292 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020011293 if (pmu->nr_addr_filters)
11294 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
11295 device_del(pmu->dev);
11296 put_device(pmu->dev);
11297 }
Peter Zijlstra51676952010-12-07 14:18:20 +010011298 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011299 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011300}
Yan, Zhengc464c762014-03-18 16:56:41 +080011301EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011302
Kan Liange321d022019-05-28 15:08:30 -070011303static inline bool has_extended_regs(struct perf_event *event)
11304{
11305 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
11306 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
11307}
11308
Mark Rutlandcc34b982015-01-07 14:56:51 +000011309static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
11310{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011311 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000011312 int ret;
11313
11314 if (!try_module_get(pmu->module))
11315 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011316
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010011317 /*
11318 * A number of pmu->event_init() methods iterate the sibling_list to,
11319 * for example, validate if the group fits on the PMU. Therefore,
11320 * if this is a sibling event, acquire the ctx->mutex to protect
11321 * the sibling_list.
11322 */
11323 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020011324 /*
11325 * This ctx->mutex can nest when we're called through
11326 * inheritance. See the perf_event_ctx_lock_nested() comment.
11327 */
11328 ctx = perf_event_ctx_lock_nested(event->group_leader,
11329 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011330 BUG_ON(!ctx);
11331 }
11332
Mark Rutlandcc34b982015-01-07 14:56:51 +000011333 event->pmu = pmu;
11334 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011335
11336 if (ctx)
11337 perf_event_ctx_unlock(event->group_leader, ctx);
11338
Andrew Murraycc6795a2019-01-10 13:53:25 +000011339 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070011340 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
11341 has_extended_regs(event))
11342 ret = -EOPNOTSUPP;
11343
Andrew Murraycc6795a2019-01-10 13:53:25 +000011344 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070011345 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000011346 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070011347
11348 if (ret && event->destroy)
11349 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000011350 }
11351
Mark Rutlandcc34b982015-01-07 14:56:51 +000011352 if (ret)
11353 module_put(pmu->module);
11354
11355 return ret;
11356}
11357
Geliang Tang18ab2cd2015-09-27 23:25:50 +080011358static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011359{
Kan Liang55bcf6e2021-04-12 07:31:01 -070011360 bool extended_type = false;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011361 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030011362 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011363
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011364 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011365
Kan Liang40999312017-01-18 08:21:01 -050011366 /* Try parent's PMU first: */
11367 if (event->parent && event->parent->pmu) {
11368 pmu = event->parent->pmu;
11369 ret = perf_try_init_event(pmu, event);
11370 if (!ret)
11371 goto unlock;
11372 }
11373
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011374 /*
11375 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
11376 * are often aliases for PERF_TYPE_RAW.
11377 */
11378 type = event->attr.type;
Kan Liang55bcf6e2021-04-12 07:31:01 -070011379 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE) {
11380 type = event->attr.config >> PERF_PMU_TYPE_SHIFT;
11381 if (!type) {
11382 type = PERF_TYPE_RAW;
11383 } else {
11384 extended_type = true;
11385 event->attr.config &= PERF_HW_EVENT_MASK;
11386 }
11387 }
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011388
11389again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011390 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011391 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011392 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080011393 if (pmu) {
Kan Liang55bcf6e2021-04-12 07:31:01 -070011394 if (event->attr.type != type && type != PERF_TYPE_RAW &&
11395 !(pmu->capabilities & PERF_PMU_CAP_EXTENDED_HW_TYPE))
11396 goto fail;
11397
Mark Rutlandcc34b982015-01-07 14:56:51 +000011398 ret = perf_try_init_event(pmu, event);
Kan Liang55bcf6e2021-04-12 07:31:01 -070011399 if (ret == -ENOENT && event->attr.type != type && !extended_type) {
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011400 type = event->attr.type;
11401 goto again;
11402 }
11403
Lin Ming940c5b22011-02-27 21:13:31 +080011404 if (ret)
11405 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011406
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011407 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080011408 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011409
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010011410 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000011411 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011412 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011413 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011414
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011415 if (ret != -ENOENT) {
11416 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011417 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011418 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011419 }
Kan Liang55bcf6e2021-04-12 07:31:01 -070011420fail:
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011421 pmu = ERR_PTR(-ENOENT);
11422unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011423 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011424
11425 return pmu;
11426}
11427
Kan Liangf2fb6be2016-03-23 11:24:37 -070011428static void attach_sb_event(struct perf_event *event)
11429{
11430 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
11431
11432 raw_spin_lock(&pel->lock);
11433 list_add_rcu(&event->sb_list, &pel->list);
11434 raw_spin_unlock(&pel->lock);
11435}
11436
Peter Zijlstraaab5b712016-05-12 17:26:46 +020011437/*
11438 * We keep a list of all !task (and therefore per-cpu) events
11439 * that need to receive side-band records.
11440 *
11441 * This avoids having to scan all the various PMU per-cpu contexts
11442 * looking for them.
11443 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070011444static void account_pmu_sb_event(struct perf_event *event)
11445{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070011446 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070011447 attach_sb_event(event);
11448}
11449
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011450static void account_event_cpu(struct perf_event *event, int cpu)
11451{
11452 if (event->parent)
11453 return;
11454
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011455 if (is_cgroup_event(event))
11456 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
11457}
11458
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011459/* Freq events need the tick to stay alive (see perf_event_task_tick). */
11460static void account_freq_event_nohz(void)
11461{
11462#ifdef CONFIG_NO_HZ_FULL
11463 /* Lock so we don't race with concurrent unaccount */
11464 spin_lock(&nr_freq_lock);
11465 if (atomic_inc_return(&nr_freq_events) == 1)
11466 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
11467 spin_unlock(&nr_freq_lock);
11468#endif
11469}
11470
11471static void account_freq_event(void)
11472{
11473 if (tick_nohz_full_enabled())
11474 account_freq_event_nohz();
11475 else
11476 atomic_inc(&nr_freq_events);
11477}
11478
11479
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011480static void account_event(struct perf_event *event)
11481{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011482 bool inc = false;
11483
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011484 if (event->parent)
11485 return;
11486
Kan Lianga5398bf2020-11-30 11:38:40 -080011487 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011488 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011489 if (event->attr.mmap || event->attr.mmap_data)
11490 atomic_inc(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +010011491 if (event->attr.build_id)
11492 atomic_inc(&nr_build_id_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011493 if (event->attr.comm)
11494 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053011495 if (event->attr.namespaces)
11496 atomic_inc(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +090011497 if (event->attr.cgroup)
11498 atomic_inc(&nr_cgroup_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011499 if (event->attr.task)
11500 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011501 if (event->attr.freq)
11502 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030011503 if (event->attr.context_switch) {
11504 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011505 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030011506 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011507 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011508 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011509 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011510 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080011511 if (event->attr.ksymbol)
11512 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080011513 if (event->attr.bpf_event)
11514 atomic_inc(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +030011515 if (event->attr.text_poke)
11516 atomic_inc(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011517
Peter Zijlstra9107c892016-02-24 18:45:45 +010011518 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030011519 /*
11520 * We need the mutex here because static_branch_enable()
11521 * must complete *before* the perf_sched_count increment
11522 * becomes visible.
11523 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010011524 if (atomic_inc_not_zero(&perf_sched_count))
11525 goto enabled;
11526
11527 mutex_lock(&perf_sched_mutex);
11528 if (!atomic_read(&perf_sched_count)) {
11529 static_branch_enable(&perf_sched_events);
11530 /*
11531 * Guarantee that all CPUs observe they key change and
11532 * call the perf scheduling hooks before proceeding to
11533 * install events that need them.
11534 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080011535 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010011536 }
11537 /*
11538 * Now that we have waited for the sync_sched(), allow further
11539 * increments to by-pass the mutex.
11540 */
11541 atomic_inc(&perf_sched_count);
11542 mutex_unlock(&perf_sched_mutex);
11543 }
11544enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011545
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011546 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070011547
11548 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011549}
11550
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011551/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011552 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011553 */
11554static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011555perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011556 struct task_struct *task,
11557 struct perf_event *group_leader,
11558 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011559 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000011560 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011561{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020011562 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011563 struct perf_event *event;
11564 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011565 long err = -EINVAL;
Namhyung Kimff653382021-03-11 20:54:13 +090011566 int node;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011567
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011568 if ((unsigned)cpu >= nr_cpu_ids) {
11569 if (!task || cpu != -1)
11570 return ERR_PTR(-EINVAL);
11571 }
Marco Elver97ba62b2021-04-08 12:36:01 +020011572 if (attr->sigtrap && !task) {
11573 /* Requires a task: avoid signalling random tasks. */
11574 return ERR_PTR(-EINVAL);
11575 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011576
Namhyung Kimff653382021-03-11 20:54:13 +090011577 node = (cpu >= 0) ? cpu_to_node(cpu) : -1;
11578 event = kmem_cache_alloc_node(perf_event_cache, GFP_KERNEL | __GFP_ZERO,
11579 node);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011580 if (!event)
11581 return ERR_PTR(-ENOMEM);
11582
11583 /*
11584 * Single events are their own group leaders, with an
11585 * empty sibling list:
11586 */
11587 if (!group_leader)
11588 group_leader = event;
11589
11590 mutex_init(&event->child_mutex);
11591 INIT_LIST_HEAD(&event->child_list);
11592
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011593 INIT_LIST_HEAD(&event->event_entry);
11594 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010011595 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030011596 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011597 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010011598 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011599 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010011600 INIT_HLIST_NODE(&event->hlist_entry);
11601
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011602
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011603 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020011604 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080011605 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011606
11607 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011608 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011609
Al Viroa6fa9412012-08-20 14:59:25 +010011610 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011611 event->cpu = cpu;
11612 event->attr = *attr;
11613 event->group_leader = group_leader;
11614 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011615 event->oncpu = -1;
11616
11617 event->parent = parent_event;
11618
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080011619 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011620 event->id = atomic64_inc_return(&perf_event_id);
11621
11622 event->state = PERF_EVENT_STATE_INACTIVE;
11623
Marco Elver97ba62b2021-04-08 12:36:01 +020011624 if (event->attr.sigtrap)
11625 atomic_set(&event->event_limit, 1);
11626
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011627 if (task) {
11628 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011629 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010011630 * XXX pmu::event_init needs to know what task to account to
11631 * and we cannot use the ctx information because we need the
11632 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011633 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070011634 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011635 }
11636
Peter Zijlstra34f43922015-02-20 14:05:38 +010011637 event->clock = &local_clock;
11638 if (parent_event)
11639 event->clock = parent_event->clock;
11640
Avi Kivity4dc0da82011-06-29 18:42:35 +030011641 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010011642 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011643 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020011644#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011645 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011646 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011647
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011648 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011649 event->prog = prog;
11650 event->orig_overflow_handler =
11651 parent_event->orig_overflow_handler;
11652 }
11653#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030011654 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011655
Wang Nan18794452016-03-28 06:41:30 +000011656 if (overflow_handler) {
11657 event->overflow_handler = overflow_handler;
11658 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000011659 } else if (is_write_backward(event)){
11660 event->overflow_handler = perf_event_output_backward;
11661 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000011662 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000011663 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000011664 event->overflow_handler_context = NULL;
11665 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020011666
Jiri Olsa0231bb52013-02-01 11:23:45 +010011667 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011668
11669 pmu = NULL;
11670
11671 hwc = &event->hw;
11672 hwc->sample_period = attr->sample_period;
11673 if (attr->freq && attr->sample_freq)
11674 hwc->sample_period = 1;
11675 hwc->last_period = hwc->sample_period;
11676
Peter Zijlstrae7850592010-05-21 14:43:08 +020011677 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011678
11679 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011680 * We currently do not support PERF_SAMPLE_READ on inherited events.
11681 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011682 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011683 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011684 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011685
Yan, Zhenga46a2302014-11-04 21:56:06 -050011686 if (!has_branch_stack(event))
11687 event->attr.branch_sample_type = 0;
11688
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011689 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030011690 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011691 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011692 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011693 }
11694
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010011695 /*
11696 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11697 * be different on other CPUs in the uncore mask.
11698 */
11699 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11700 err = -EINVAL;
11701 goto err_pmu;
11702 }
11703
Alexander Shishkinab437622019-08-06 11:46:00 +030011704 if (event->attr.aux_output &&
11705 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11706 err = -EOPNOTSUPP;
11707 goto err_pmu;
11708 }
11709
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011710 if (cgroup_fd != -1) {
11711 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11712 if (err)
11713 goto err_pmu;
11714 }
11715
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011716 err = exclusive_event_init(event);
11717 if (err)
11718 goto err_pmu;
11719
Alexander Shishkin375637b2016-04-27 18:44:46 +030011720 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011721 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11722 sizeof(struct perf_addr_filter_range),
11723 GFP_KERNEL);
11724 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011725 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030011726 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011727 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011728
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011729 /*
11730 * Clone the parent's vma offsets: they are valid until exec()
11731 * even if the mm is not shared with the parent.
11732 */
11733 if (event->parent) {
11734 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11735
11736 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011737 memcpy(event->addr_filter_ranges,
11738 event->parent->addr_filter_ranges,
11739 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011740 raw_spin_unlock_irq(&ifh->lock);
11741 }
11742
Alexander Shishkin375637b2016-04-27 18:44:46 +030011743 /* force hw sync on the address filters */
11744 event->addr_filters_gen = 1;
11745 }
11746
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011747 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020011748 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030011749 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011750 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030011751 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010011752 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011753 }
11754
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011755 err = security_perf_event_alloc(event);
11756 if (err)
11757 goto err_callchain_buffer;
11758
Alexander Shishkin927a5572016-03-02 13:24:14 +020011759 /* symmetric to unaccount_event() in _free_event() */
11760 account_event(event);
11761
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011762 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011763
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011764err_callchain_buffer:
11765 if (!event->parent) {
11766 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11767 put_callchain_buffers();
11768 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011769err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011770 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011771
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011772err_per_task:
11773 exclusive_event_destroy(event);
11774
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011775err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011776 if (is_cgroup_event(event))
11777 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011778 if (event->destroy)
11779 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080011780 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011781err_ns:
11782 if (event->ns)
11783 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090011784 if (event->hw.target)
11785 put_task_struct(event->hw.target);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090011786 kmem_cache_free(perf_event_cache, event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011787
11788 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011789}
11790
11791static int perf_copy_attr(struct perf_event_attr __user *uattr,
11792 struct perf_event_attr *attr)
11793{
11794 u32 size;
11795 int ret;
11796
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011797 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011798 memset(attr, 0, sizeof(*attr));
11799
11800 ret = get_user(size, &uattr->size);
11801 if (ret)
11802 return ret;
11803
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011804 /* ABI compatibility quirk: */
11805 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011806 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011807 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011808 goto err_size;
11809
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011810 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11811 if (ret) {
11812 if (ret == -E2BIG)
11813 goto err_size;
11814 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011815 }
11816
Meng Xuf12f42a2017-08-23 17:07:50 -040011817 attr->size = size;
11818
Alexander Shishkina4faf002019-10-25 17:08:33 +030011819 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011820 return -EINVAL;
11821
11822 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11823 return -EINVAL;
11824
11825 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11826 return -EINVAL;
11827
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011828 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11829 u64 mask = attr->branch_sample_type;
11830
11831 /* only using defined bits */
11832 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11833 return -EINVAL;
11834
11835 /* at least one branch bit must be set */
11836 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11837 return -EINVAL;
11838
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011839 /* propagate priv level, when not set for branch */
11840 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11841
11842 /* exclude_kernel checked on syscall entry */
11843 if (!attr->exclude_kernel)
11844 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11845
11846 if (!attr->exclude_user)
11847 mask |= PERF_SAMPLE_BRANCH_USER;
11848
11849 if (!attr->exclude_hv)
11850 mask |= PERF_SAMPLE_BRANCH_HV;
11851 /*
11852 * adjust user setting (for HW filter setup)
11853 */
11854 attr->branch_sample_type = mask;
11855 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011856 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011857 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11858 ret = perf_allow_kernel(attr);
11859 if (ret)
11860 return ret;
11861 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011862 }
Jiri Olsa40189942012-08-07 15:20:37 +020011863
Jiri Olsac5ebced2012-08-07 15:20:40 +020011864 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011865 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011866 if (ret)
11867 return ret;
11868 }
11869
11870 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11871 if (!arch_perf_have_user_stack_dump())
11872 return -ENOSYS;
11873
11874 /*
11875 * We have __u32 type for the size, but so far
11876 * we can only use __u16 as maximum due to the
11877 * __u16 sample size limit.
11878 */
11879 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011880 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011881 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011882 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011883 }
Jiri Olsa40189942012-08-07 15:20:37 +020011884
Jiri Olsa5f970522018-03-12 14:45:46 +010011885 if (!attr->sample_max_stack)
11886 attr->sample_max_stack = sysctl_perf_event_max_stack;
11887
Stephane Eranian60e23642014-09-24 13:48:37 +020011888 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11889 ret = perf_reg_validate(attr->sample_regs_intr);
Namhyung Kim6546b192020-03-25 21:45:29 +090011890
11891#ifndef CONFIG_CGROUP_PERF
11892 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11893 return -EINVAL;
11894#endif
Kan Liang2a6c6b72021-01-28 14:40:07 -080011895 if ((attr->sample_type & PERF_SAMPLE_WEIGHT) &&
11896 (attr->sample_type & PERF_SAMPLE_WEIGHT_STRUCT))
11897 return -EINVAL;
Namhyung Kim6546b192020-03-25 21:45:29 +090011898
Marco Elver2b26f0a2021-04-08 12:35:58 +020011899 if (!attr->inherit && attr->inherit_thread)
11900 return -EINVAL;
11901
Marco Elver2e498d02021-04-08 12:35:59 +020011902 if (attr->remove_on_exec && attr->enable_on_exec)
11903 return -EINVAL;
11904
Marco Elver97ba62b2021-04-08 12:36:01 +020011905 if (attr->sigtrap && !attr->remove_on_exec)
11906 return -EINVAL;
11907
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011908out:
11909 return ret;
11910
11911err_size:
11912 put_user(sizeof(*attr), &uattr->size);
11913 ret = -E2BIG;
11914 goto out;
11915}
11916
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011917static int
11918perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011919{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011920 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011921 int ret = -EINVAL;
11922
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011923 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011924 goto set;
11925
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011926 /* don't allow circular references */
11927 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011928 goto out;
11929
Peter Zijlstra0f139302010-05-20 14:35:15 +020011930 /*
11931 * Don't allow cross-cpu buffers
11932 */
11933 if (output_event->cpu != event->cpu)
11934 goto out;
11935
11936 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011937 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011938 */
11939 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11940 goto out;
11941
Peter Zijlstra34f43922015-02-20 14:05:38 +010011942 /*
11943 * Mixing clocks in the same buffer is trouble you don't need.
11944 */
11945 if (output_event->clock != event->clock)
11946 goto out;
11947
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011948 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011949 * Either writing ring buffer from beginning or from end.
11950 * Mixing is not allowed.
11951 */
11952 if (is_write_backward(output_event) != is_write_backward(event))
11953 goto out;
11954
11955 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011956 * If both events generate aux data, they must be on the same PMU
11957 */
11958 if (has_aux(event) && has_aux(output_event) &&
11959 event->pmu != output_event->pmu)
11960 goto out;
11961
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011962set:
11963 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011964 /* Can't redirect output if we've got an active mmap() */
11965 if (atomic_read(&event->mmap_count))
11966 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011967
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011968 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011969 /* get the rb we want to redirect to */
11970 rb = ring_buffer_get(output_event);
11971 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011972 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011973 }
11974
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011975 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011976
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011977 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011978unlock:
11979 mutex_unlock(&event->mmap_mutex);
11980
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011981out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011982 return ret;
11983}
11984
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011985static void mutex_lock_double(struct mutex *a, struct mutex *b)
11986{
11987 if (b < a)
11988 swap(a, b);
11989
11990 mutex_lock(a);
11991 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11992}
11993
Peter Zijlstra34f43922015-02-20 14:05:38 +010011994static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11995{
11996 bool nmi_safe = false;
11997
11998 switch (clk_id) {
11999 case CLOCK_MONOTONIC:
12000 event->clock = &ktime_get_mono_fast_ns;
12001 nmi_safe = true;
12002 break;
12003
12004 case CLOCK_MONOTONIC_RAW:
12005 event->clock = &ktime_get_raw_fast_ns;
12006 nmi_safe = true;
12007 break;
12008
12009 case CLOCK_REALTIME:
12010 event->clock = &ktime_get_real_ns;
12011 break;
12012
12013 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020012014 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012015 break;
12016
12017 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020012018 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012019 break;
12020
12021 default:
12022 return -EINVAL;
12023 }
12024
12025 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
12026 return -EINVAL;
12027
12028 return 0;
12029}
12030
Peter Zijlstra321027c2017-01-11 21:09:50 +010012031/*
12032 * Variation on perf_event_ctx_lock_nested(), except we take two context
12033 * mutexes.
12034 */
12035static struct perf_event_context *
12036__perf_event_ctx_lock_double(struct perf_event *group_leader,
12037 struct perf_event_context *ctx)
12038{
12039 struct perf_event_context *gctx;
12040
12041again:
12042 rcu_read_lock();
12043 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020012044 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012045 rcu_read_unlock();
12046 goto again;
12047 }
12048 rcu_read_unlock();
12049
12050 mutex_lock_double(&gctx->mutex, &ctx->mutex);
12051
12052 if (group_leader->ctx != gctx) {
12053 mutex_unlock(&ctx->mutex);
12054 mutex_unlock(&gctx->mutex);
12055 put_ctx(gctx);
12056 goto again;
12057 }
12058
12059 return gctx;
12060}
12061
Marco Elverb068fc02021-07-05 10:44:53 +020012062static bool
12063perf_check_permission(struct perf_event_attr *attr, struct task_struct *task)
12064{
12065 unsigned int ptrace_mode = PTRACE_MODE_READ_REALCREDS;
12066 bool is_capable = perfmon_capable();
12067
12068 if (attr->sigtrap) {
12069 /*
12070 * perf_event_attr::sigtrap sends signals to the other task.
12071 * Require the current task to also have CAP_KILL.
12072 */
12073 rcu_read_lock();
12074 is_capable &= ns_capable(__task_cred(task)->user_ns, CAP_KILL);
12075 rcu_read_unlock();
12076
12077 /*
12078 * If the required capabilities aren't available, checks for
12079 * ptrace permissions: upgrade to ATTACH, since sending signals
12080 * can effectively change the target task.
12081 */
12082 ptrace_mode = PTRACE_MODE_ATTACH_REALCREDS;
12083 }
12084
12085 /*
12086 * Preserve ptrace permission check for backwards compatibility. The
12087 * ptrace check also includes checks that the current task and other
12088 * task have matching uids, and is therefore not done here explicitly.
12089 */
12090 return is_capable || ptrace_may_access(task, ptrace_mode);
12091}
12092
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012093/**
12094 * sys_perf_event_open - open a performance event, associate it to a task/cpu
12095 *
12096 * @attr_uptr: event_id type attributes for monitoring/sampling
12097 * @pid: target pid
12098 * @cpu: target cpu
12099 * @group_fd: group leader event fd
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012100 * @flags: perf event open flags
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012101 */
12102SYSCALL_DEFINE5(perf_event_open,
12103 struct perf_event_attr __user *, attr_uptr,
12104 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
12105{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012106 struct perf_event *group_leader = NULL, *output_event = NULL;
12107 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012108 struct perf_event_attr attr;
Kees Cook3f649ab2020-06-03 13:09:38 -070012109 struct perf_event_context *ctx, *gctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012110 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040012111 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070012112 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012113 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040012114 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012115 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012116 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010012117 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000012118 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012119
12120 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020012121 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012122 return -EINVAL;
12123
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012124 /* Do we allow access to perf_event_open(2) ? */
12125 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
12126 if (err)
12127 return err;
12128
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012129 err = perf_copy_attr(attr_uptr, &attr);
12130 if (err)
12131 return err;
12132
12133 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012134 err = perf_allow_kernel(&attr);
12135 if (err)
12136 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012137 }
12138
Hari Bathinie4222672017-03-08 02:11:36 +053012139 if (attr.namespaces) {
Alexey Budankov18aa1852020-04-02 11:46:24 +030012140 if (!perfmon_capable())
Hari Bathinie4222672017-03-08 02:11:36 +053012141 return -EACCES;
12142 }
12143
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012144 if (attr.freq) {
12145 if (attr.sample_freq > sysctl_perf_event_sample_rate)
12146 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020012147 } else {
12148 if (attr.sample_period & (1ULL << 63))
12149 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012150 }
12151
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012152 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012153 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
12154 err = perf_allow_kernel(&attr);
12155 if (err)
12156 return err;
12157 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012158
Ondrej Mosnacek08ef1af2021-02-24 22:56:28 +010012159 /* REGS_INTR can leak data, lockdown must prevent this */
12160 if (attr.sample_type & PERF_SAMPLE_REGS_INTR) {
12161 err = security_locked_down(LOCKDOWN_PERF);
12162 if (err)
12163 return err;
12164 }
David Howellsb0c8fdc2019-08-19 17:18:00 -070012165
Stephane Eraniane5d13672011-02-14 11:20:01 +020012166 /*
12167 * In cgroup mode, the pid argument is used to pass the fd
12168 * opened to the cgroup directory in cgroupfs. The cpu argument
12169 * designates the cpu on which to monitor threads from that
12170 * cgroup.
12171 */
12172 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
12173 return -EINVAL;
12174
Yann Droneauda21b0b32014-01-05 21:36:33 +010012175 if (flags & PERF_FLAG_FD_CLOEXEC)
12176 f_flags |= O_CLOEXEC;
12177
12178 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012179 if (event_fd < 0)
12180 return event_fd;
12181
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012182 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040012183 err = perf_fget_light(group_fd, &group);
12184 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012185 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040012186 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012187 if (flags & PERF_FLAG_FD_OUTPUT)
12188 output_event = group_leader;
12189 if (flags & PERF_FLAG_FD_NO_GROUP)
12190 group_leader = NULL;
12191 }
12192
Stephane Eraniane5d13672011-02-14 11:20:01 +020012193 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012194 task = find_lively_task_by_vpid(pid);
12195 if (IS_ERR(task)) {
12196 err = PTR_ERR(task);
12197 goto err_group_fd;
12198 }
12199 }
12200
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012201 if (task && group_leader &&
12202 group_leader->attr.inherit != attr.inherit) {
12203 err = -EINVAL;
12204 goto err_task;
12205 }
12206
Matt Fleming79dff512015-01-23 18:45:42 +000012207 if (flags & PERF_FLAG_PID_CGROUP)
12208 cgroup_fd = pid;
12209
Avi Kivity4dc0da82011-06-29 18:42:35 +030012210 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012211 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012212 if (IS_ERR(event)) {
12213 err = PTR_ERR(event);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012214 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012215 }
12216
Vince Weaver53b25332014-05-16 17:12:12 -040012217 if (is_sampling_event(event)) {
12218 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053012219 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040012220 goto err_alloc;
12221 }
12222 }
12223
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012224 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012225 * Special case software events and allow them to be part of
12226 * any hardware group.
12227 */
12228 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012229
Peter Zijlstra34f43922015-02-20 14:05:38 +010012230 if (attr.use_clockid) {
12231 err = perf_event_set_clock(event, attr.clockid);
12232 if (err)
12233 goto err_alloc;
12234 }
12235
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012236 if (pmu->task_ctx_nr == perf_sw_context)
12237 event->event_caps |= PERF_EV_CAP_SOFTWARE;
12238
Song Liua1150c22018-05-03 12:47:16 -070012239 if (group_leader) {
12240 if (is_software_event(event) &&
12241 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012242 /*
Song Liua1150c22018-05-03 12:47:16 -070012243 * If the event is a sw event, but the group_leader
12244 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012245 *
Song Liua1150c22018-05-03 12:47:16 -070012246 * Allow the addition of software events to hw
12247 * groups, this is safe because software events
12248 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012249 */
Song Liua1150c22018-05-03 12:47:16 -070012250 pmu = group_leader->ctx->pmu;
12251 } else if (!is_software_event(event) &&
12252 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012253 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012254 /*
12255 * In case the group is a pure software group, and we
12256 * try to add a hardware event, move the whole group to
12257 * the hardware context.
12258 */
12259 move_group = 1;
12260 }
12261 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012262
12263 /*
12264 * Get the target context (task or percpu):
12265 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012266 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012267 if (IS_ERR(ctx)) {
12268 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012269 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012270 }
12271
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012272 /*
12273 * Look up the group leader (we will attach this event to it):
12274 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012275 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012276 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012277
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012278 /*
12279 * Do not allow a recursive hierarchy (this new sibling
12280 * becoming part of another group-sibling):
12281 */
12282 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012283 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012284
12285 /* All events in a group should have the same clock */
12286 if (group_leader->clock != event->clock)
12287 goto err_context;
12288
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012289 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010012290 * Make sure we're both events for the same CPU;
12291 * grouping events for different CPUs is broken; since
12292 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012293 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010012294 if (group_leader->cpu != event->cpu)
12295 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010012296
Mark Rutland64aee2a2017-06-22 15:41:38 +010012297 /*
12298 * Make sure we're both on the same task, or both
12299 * per-CPU events.
12300 */
12301 if (group_leader->ctx->task != ctx->task)
12302 goto err_context;
12303
12304 /*
12305 * Do not allow to attach to a group in a different task
12306 * or CPU context. If we're moving SW events, we'll fix
12307 * this up later, so allow that.
12308 */
12309 if (!move_group && group_leader->ctx != ctx)
12310 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012311
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012312 /*
12313 * Only a group leader can be exclusive or pinned
12314 */
12315 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012316 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012317 }
12318
12319 if (output_event) {
12320 err = perf_event_set_output(event, output_event);
12321 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012322 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012323 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012324
Yann Droneauda21b0b32014-01-05 21:36:33 +010012325 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
12326 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012327 if (IS_ERR(event_file)) {
12328 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020012329 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012330 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040012331 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012332
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012333 if (task) {
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012334 err = down_read_interruptible(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012335 if (err)
12336 goto err_file;
12337
12338 /*
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012339 * We must hold exec_update_lock across this and any potential
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012340 * perf_install_in_context() call for this new event to
12341 * serialize against exec() altering our credentials (and the
12342 * perf_event_exit_task() that could imply).
12343 */
12344 err = -EACCES;
Marco Elverb068fc02021-07-05 10:44:53 +020012345 if (!perf_check_permission(&attr, task))
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012346 goto err_cred;
12347 }
12348
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012349 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012350 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
12351
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012352 if (gctx->task == TASK_TOMBSTONE) {
12353 err = -ESRCH;
12354 goto err_locked;
12355 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010012356
12357 /*
12358 * Check if we raced against another sys_perf_event_open() call
12359 * moving the software group underneath us.
12360 */
12361 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
12362 /*
12363 * If someone moved the group out from under us, check
12364 * if this new event wound up on the same ctx, if so
12365 * its the regular !move_group case, otherwise fail.
12366 */
12367 if (gctx != ctx) {
12368 err = -EINVAL;
12369 goto err_locked;
12370 } else {
12371 perf_event_ctx_unlock(group_leader, gctx);
12372 move_group = 0;
12373 }
12374 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030012375
12376 /*
12377 * Failure to create exclusive events returns -EBUSY.
12378 */
12379 err = -EBUSY;
12380 if (!exclusive_event_installable(group_leader, ctx))
12381 goto err_locked;
12382
12383 for_each_sibling_event(sibling, group_leader) {
12384 if (!exclusive_event_installable(sibling, ctx))
12385 goto err_locked;
12386 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012387 } else {
12388 mutex_lock(&ctx->mutex);
12389 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012390
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012391 if (ctx->task == TASK_TOMBSTONE) {
12392 err = -ESRCH;
12393 goto err_locked;
12394 }
12395
Peter Zijlstraa7239682015-09-09 19:06:33 +020012396 if (!perf_event_validate_size(event)) {
12397 err = -E2BIG;
12398 goto err_locked;
12399 }
12400
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012401 if (!task) {
12402 /*
12403 * Check if the @cpu we're creating an event for is online.
12404 *
12405 * We use the perf_cpu_context::ctx::mutex to serialize against
12406 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12407 */
12408 struct perf_cpu_context *cpuctx =
12409 container_of(ctx, struct perf_cpu_context, ctx);
12410
12411 if (!cpuctx->online) {
12412 err = -ENODEV;
12413 goto err_locked;
12414 }
12415 }
12416
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012417 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
12418 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030012419 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012420 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012421
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012422 /*
12423 * Must be under the same ctx::mutex as perf_install_in_context(),
12424 * because we need to serialize with concurrent event creation.
12425 */
12426 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012427 err = -EBUSY;
12428 goto err_locked;
12429 }
12430
12431 WARN_ON_ONCE(ctx->parent_ctx);
12432
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012433 /*
12434 * This is the point on no return; we cannot fail hereafter. This is
12435 * where we start modifying current state.
12436 */
12437
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012438 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012439 /*
12440 * See perf_event_ctx_lock() for comments on the details
12441 * of swizzling perf_event::ctx.
12442 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012443 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010012444 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010012445
Peter Zijlstraedb39592018-03-15 17:36:56 +010012446 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012447 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012448 put_ctx(gctx);
12449 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012450
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012451 /*
12452 * Wait for everybody to stop referencing the events through
12453 * the old lists, before installing it on new lists.
12454 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012455 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012456
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012457 /*
12458 * Install the group siblings before the group leader.
12459 *
12460 * Because a group leader will try and install the entire group
12461 * (through the sibling list, which is still in-tact), we can
12462 * end up with siblings installed in the wrong context.
12463 *
12464 * By installing siblings first we NO-OP because they're not
12465 * reachable through the group lists.
12466 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012467 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012468 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010012469 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012470 get_ctx(ctx);
12471 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012472
12473 /*
12474 * Removing from the context ends up with disabled
12475 * event. What we want here is event in the initial
12476 * startup state, ready to be add into new context.
12477 */
12478 perf_event__state_init(group_leader);
12479 perf_install_in_context(ctx, group_leader, group_leader->cpu);
12480 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012481 }
12482
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020012483 /*
12484 * Precalculate sample_data sizes; do while holding ctx::mutex such
12485 * that we're serialized against further additions and before
12486 * perf_install_in_context() which is the point the event is active and
12487 * can use these values.
12488 */
12489 perf_event__header_size(event);
12490 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012491
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010012492 event->owner = current;
12493
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080012494 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012495 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012496
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012497 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012498 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012499 mutex_unlock(&ctx->mutex);
12500
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012501 if (task) {
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012502 up_read(&task->signal->exec_update_lock);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012503 put_task_struct(task);
12504 }
12505
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012506 mutex_lock(&current->perf_event_mutex);
12507 list_add_tail(&event->owner_entry, &current->perf_event_list);
12508 mutex_unlock(&current->perf_event_mutex);
12509
Peter Zijlstra8a495422010-05-27 15:47:49 +020012510 /*
12511 * Drop the reference on the group_event after placing the
12512 * new event on the sibling_list. This ensures destruction
12513 * of the group leader will find the pointer to itself in
12514 * perf_group_detach().
12515 */
Al Viro2903ff02012-08-28 12:52:22 -040012516 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012517 fd_install(event_fd, event_file);
12518 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012519
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012520err_locked:
12521 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012522 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012523 mutex_unlock(&ctx->mutex);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012524err_cred:
12525 if (task)
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012526 up_read(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012527err_file:
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012528 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012529err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012530 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040012531 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012532err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010012533 /*
12534 * If event_file is set, the fput() above will have called ->release()
12535 * and that will take care of freeing the event.
12536 */
12537 if (!event_file)
12538 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012539err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020012540 if (task)
12541 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012542err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040012543 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012544err_fd:
12545 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012546 return err;
12547}
12548
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012549/**
12550 * perf_event_create_kernel_counter
12551 *
12552 * @attr: attributes of the counter to create
12553 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070012554 * @task: task to profile (NULL for percpu)
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012555 * @overflow_handler: callback to trigger when we hit the event
12556 * @context: context data could be used in overflow_handler callback
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012557 */
12558struct perf_event *
12559perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070012560 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030012561 perf_overflow_handler_t overflow_handler,
12562 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012563{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012564 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012565 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012566 int err;
12567
Alexander Shishkindce5aff2019-10-30 15:47:31 +020012568 /*
12569 * Grouping is not supported for kernel events, neither is 'AUX',
12570 * make sure the caller's intentions are adjusted.
12571 */
12572 if (attr->aux_output)
12573 return ERR_PTR(-EINVAL);
12574
Avi Kivity4dc0da82011-06-29 18:42:35 +030012575 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012576 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012577 if (IS_ERR(event)) {
12578 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012579 goto err;
12580 }
12581
Jiri Olsaf8697762014-08-01 14:33:01 +020012582 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012583 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020012584
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020012585 /*
12586 * Get the target context (task or percpu):
12587 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012588 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012589 if (IS_ERR(ctx)) {
12590 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012591 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012592 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012593
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012594 WARN_ON_ONCE(ctx->parent_ctx);
12595 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012596 if (ctx->task == TASK_TOMBSTONE) {
12597 err = -ESRCH;
12598 goto err_unlock;
12599 }
12600
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012601 if (!task) {
12602 /*
12603 * Check if the @cpu we're creating an event for is online.
12604 *
12605 * We use the perf_cpu_context::ctx::mutex to serialize against
12606 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12607 */
12608 struct perf_cpu_context *cpuctx =
12609 container_of(ctx, struct perf_cpu_context, ctx);
12610 if (!cpuctx->online) {
12611 err = -ENODEV;
12612 goto err_unlock;
12613 }
12614 }
12615
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012616 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012617 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012618 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012619 }
12620
Leonard Crestez4ce54af2019-07-24 15:53:24 +030012621 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012622 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012623 mutex_unlock(&ctx->mutex);
12624
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012625 return event;
12626
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012627err_unlock:
12628 mutex_unlock(&ctx->mutex);
12629 perf_unpin_context(ctx);
12630 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012631err_free:
12632 free_event(event);
12633err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012634 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012635}
12636EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
12637
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012638void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12639{
12640 struct perf_event_context *src_ctx;
12641 struct perf_event_context *dst_ctx;
12642 struct perf_event *event, *tmp;
12643 LIST_HEAD(events);
12644
12645 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12646 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12647
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012648 /*
12649 * See perf_event_ctx_lock() for comments on the details
12650 * of swizzling perf_event::ctx.
12651 */
12652 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012653 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12654 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012655 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012656 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012657 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020012658 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012659 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012660
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012661 /*
12662 * Wait for the events to quiesce before re-instating them.
12663 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012664 synchronize_rcu();
12665
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012666 /*
12667 * Re-instate events in 2 passes.
12668 *
12669 * Skip over group leaders and only install siblings on this first
12670 * pass, siblings will not get enabled without a leader, however a
12671 * leader will enable its siblings, even if those are still on the old
12672 * context.
12673 */
12674 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12675 if (event->group_leader == event)
12676 continue;
12677
12678 list_del(&event->migrate_entry);
12679 if (event->state >= PERF_EVENT_STATE_OFF)
12680 event->state = PERF_EVENT_STATE_INACTIVE;
12681 account_event_cpu(event, dst_cpu);
12682 perf_install_in_context(dst_ctx, event, dst_cpu);
12683 get_ctx(dst_ctx);
12684 }
12685
12686 /*
12687 * Once all the siblings are setup properly, install the group leaders
12688 * to make it go.
12689 */
Peter Zijlstra98861672013-10-03 16:02:23 +020012690 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12691 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012692 if (event->state >= PERF_EVENT_STATE_OFF)
12693 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012694 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012695 perf_install_in_context(dst_ctx, event, dst_cpu);
12696 get_ctx(dst_ctx);
12697 }
12698 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012699 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012700}
12701EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12702
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012703static void sync_child_event(struct perf_event *child_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012704{
12705 struct perf_event *parent_event = child_event->parent;
12706 u64 child_val;
12707
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012708 if (child_event->attr.inherit_stat) {
12709 struct task_struct *task = child_event->ctx->task;
12710
12711 if (task && task != TASK_TOMBSTONE)
12712 perf_event_read_event(child_event, task);
12713 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012714
Peter Zijlstrab5e58792010-05-21 14:43:12 +020012715 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012716
12717 /*
12718 * Add back the child's count to the parent's count:
12719 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020012720 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012721 atomic64_add(child_event->total_time_enabled,
12722 &parent_event->child_total_time_enabled);
12723 atomic64_add(child_event->total_time_running,
12724 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012725}
12726
12727static void
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012728perf_event_exit_event(struct perf_event *event, struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012729{
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012730 struct perf_event *parent_event = event->parent;
12731 unsigned long detach_flags = 0;
12732
12733 if (parent_event) {
12734 /*
12735 * Do not destroy the 'original' grouping; because of the
12736 * context switch optimization the original events could've
12737 * ended up in a random child task.
12738 *
12739 * If we were to destroy the original group, all group related
12740 * operations would cease to function properly after this
12741 * random child dies.
12742 *
12743 * Do destroy all inherited groups, we don't care about those
12744 * and being thorough is better.
12745 */
12746 detach_flags = DETACH_GROUP | DETACH_CHILD;
12747 mutex_lock(&parent_event->child_mutex);
12748 }
12749
12750 perf_remove_from_context(event, detach_flags);
12751
12752 raw_spin_lock_irq(&ctx->lock);
12753 if (event->state > PERF_EVENT_STATE_EXIT)
12754 perf_event_set_state(event, PERF_EVENT_STATE_EXIT);
12755 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012756
Peter Zijlstra1903d502014-07-15 17:27:27 +020012757 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012758 * Child events can be freed.
Peter Zijlstra1903d502014-07-15 17:27:27 +020012759 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012760 if (parent_event) {
12761 mutex_unlock(&parent_event->child_mutex);
12762 /*
12763 * Kick perf_poll() for is_event_hup();
12764 */
12765 perf_event_wakeup(parent_event);
12766 free_event(event);
12767 put_event(parent_event);
12768 return;
12769 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012770
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012771 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012772 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012773 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012774 perf_event_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012775}
12776
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012777static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012778{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012779 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012780 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012781
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012782 WARN_ON_ONCE(child != current);
12783
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012784 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012785 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012786 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012787
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012788 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012789 * In order to reduce the amount of tricky in ctx tear-down, we hold
12790 * ctx::mutex over the entire thing. This serializes against almost
12791 * everything that wants to access the ctx.
12792 *
12793 * The exception is sys_perf_event_open() /
12794 * perf_event_create_kernel_count() which does find_get_context()
12795 * without ctx::mutex (it cannot because of the move_group double mutex
12796 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012797 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012798 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012799
12800 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012801 * In a single ctx::lock section, de-schedule the events and detach the
12802 * context from the task such that we cannot ever get it scheduled back
12803 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012804 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012805 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020012806 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012807
12808 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012809 * Now that the context is inactive, destroy the task <-> ctx relation
12810 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012811 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012812 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12813 put_ctx(child_ctx); /* cannot be last */
12814 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12815 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012816
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012817 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012818 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012819
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012820 if (clone_ctx)
12821 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012822
12823 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012824 * Report the task dead after unscheduling the events so that we
12825 * won't get any samples after PERF_RECORD_EXIT. We can however still
12826 * get a few PERF_RECORD_READ events.
12827 */
12828 perf_event_task(child, child_ctx, 0);
12829
Peter Zijlstraebf905f2014-05-29 19:00:24 +020012830 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012831 perf_event_exit_event(child_event, child_ctx);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012832
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012833 mutex_unlock(&child_ctx->mutex);
12834
12835 put_ctx(child_ctx);
12836}
12837
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012838/*
12839 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012840 *
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012841 * Can be called with exec_update_lock held when called from
Eric W. Biederman96ecee22020-05-03 06:48:17 -050012842 * setup_new_exec().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012843 */
12844void perf_event_exit_task(struct task_struct *child)
12845{
Peter Zijlstra88821352010-11-09 19:01:43 +010012846 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012847 int ctxn;
12848
Peter Zijlstra88821352010-11-09 19:01:43 +010012849 mutex_lock(&child->perf_event_mutex);
12850 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12851 owner_entry) {
12852 list_del_init(&event->owner_entry);
12853
12854 /*
12855 * Ensure the list deletion is visible before we clear
12856 * the owner, closes a race against perf_release() where
12857 * we need to serialize on the owner->perf_event_mutex.
12858 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010012859 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010012860 }
12861 mutex_unlock(&child->perf_event_mutex);
12862
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012863 for_each_task_context_nr(ctxn)
12864 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010012865
12866 /*
12867 * The perf_event_exit_task_context calls perf_event_task
12868 * with child's task_ctx, which generates EXIT events for
12869 * child contexts and sets child->perf_event_ctxp[] to NULL.
12870 * At this point we need to send EXIT events to cpu contexts.
12871 */
12872 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012873}
12874
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012875static void perf_free_event(struct perf_event *event,
12876 struct perf_event_context *ctx)
12877{
12878 struct perf_event *parent = event->parent;
12879
12880 if (WARN_ON_ONCE(!parent))
12881 return;
12882
12883 mutex_lock(&parent->child_mutex);
12884 list_del_init(&event->child_list);
12885 mutex_unlock(&parent->child_mutex);
12886
Al Viroa6fa9412012-08-20 14:59:25 +010012887 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012888
Peter Zijlstra652884f2015-01-23 11:20:10 +010012889 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020012890 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012891 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010012892 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012893 free_event(event);
12894}
12895
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012896/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012897 * Free a context as created by inheritance by perf_event_init_task() below,
12898 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010012899 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012900 * Even though the task has never lived, the context and events have been
12901 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012902 */
12903void perf_event_free_task(struct task_struct *task)
12904{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012905 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012906 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012907 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012908
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012909 for_each_task_context_nr(ctxn) {
12910 ctx = task->perf_event_ctxp[ctxn];
12911 if (!ctx)
12912 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012913
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012914 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012915 raw_spin_lock_irq(&ctx->lock);
12916 /*
12917 * Destroy the task <-> ctx relation and mark the context dead.
12918 *
12919 * This is important because even though the task hasn't been
12920 * exposed yet the context has been (through child_list).
12921 */
12922 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12923 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12924 put_task_struct(task); /* cannot be last */
12925 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012926
Peter Zijlstra15121c72017-03-16 13:47:50 +010012927 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012928 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012929
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012930 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012931
12932 /*
12933 * perf_event_release_kernel() could've stolen some of our
12934 * child events and still have them on its free_list. In that
12935 * case we must wait for these events to have been freed (in
12936 * particular all their references to this task must've been
12937 * dropped).
12938 *
12939 * Without this copy_process() will unconditionally free this
12940 * task (irrespective of its reference count) and
12941 * _free_event()'s put_task_struct(event->hw.target) will be a
12942 * use-after-free.
12943 *
12944 * Wait for all events to drop their context reference.
12945 */
12946 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12947 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012948 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012949}
12950
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012951void perf_event_delayed_put(struct task_struct *task)
12952{
12953 int ctxn;
12954
12955 for_each_task_context_nr(ctxn)
12956 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12957}
12958
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012959struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012960{
Al Viro02e5ad92019-06-26 20:43:53 -040012961 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012962 if (!file)
12963 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012964
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012965 if (file->f_op != &perf_fops) {
12966 fput(file);
12967 return ERR_PTR(-EBADF);
12968 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012969
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012970 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012971}
12972
Yonghong Songf8d959a2018-05-24 11:21:08 -070012973const struct perf_event *perf_get_event(struct file *file)
12974{
12975 if (file->f_op != &perf_fops)
12976 return ERR_PTR(-EINVAL);
12977
12978 return file->private_data;
12979}
12980
Kaixu Xiaffe86902015-08-06 07:02:32 +000012981const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12982{
12983 if (!event)
12984 return ERR_PTR(-EINVAL);
12985
12986 return &event->attr;
12987}
12988
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012989/*
Tobias Tefke788faab2018-07-09 12:57:15 +020012990 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012991 *
12992 * Returns:
12993 * - valid pointer on success
12994 * - NULL for orphaned events
12995 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012996 */
12997static struct perf_event *
12998inherit_event(struct perf_event *parent_event,
12999 struct task_struct *parent,
13000 struct perf_event_context *parent_ctx,
13001 struct task_struct *child,
13002 struct perf_event *group_leader,
13003 struct perf_event_context *child_ctx)
13004{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020013005 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013006 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020013007 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013008
13009 /*
13010 * Instead of creating recursive hierarchies of events,
13011 * we link inherited events back to the original parent,
13012 * which has a filp for sure, which we use as the reference
13013 * count:
13014 */
13015 if (parent_event->parent)
13016 parent_event = parent_event->parent;
13017
13018 child_event = perf_event_alloc(&parent_event->attr,
13019 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020013020 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013021 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000013022 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013023 if (IS_ERR(child_event))
13024 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010013025
Jiri Olsa313ccb92018-01-07 17:03:47 +010013026
13027 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
13028 !child_ctx->task_ctx_data) {
13029 struct pmu *pmu = child_event->pmu;
13030
Kan Liangff9ff922020-07-03 05:49:21 -070013031 child_ctx->task_ctx_data = alloc_task_ctx_data(pmu);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013032 if (!child_ctx->task_ctx_data) {
13033 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020013034 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013035 }
13036 }
13037
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020013038 /*
13039 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
13040 * must be under the same lock in order to serialize against
13041 * perf_event_release_kernel(), such that either we must observe
13042 * is_orphaned_event() or they will observe us on the child_list.
13043 */
13044 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020013045 if (is_orphaned_event(parent_event) ||
13046 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020013047 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013048 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010013049 free_event(child_event);
13050 return NULL;
13051 }
13052
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013053 get_ctx(child_ctx);
13054
13055 /*
13056 * Make the child state follow the state of the parent event,
13057 * not its attr.disabled bit. We hold the parent's mutex,
13058 * so we won't race with perf_event_{en, dis}able_family.
13059 */
Jiri Olsa1929def2014-09-12 13:18:27 +020013060 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013061 child_event->state = PERF_EVENT_STATE_INACTIVE;
13062 else
13063 child_event->state = PERF_EVENT_STATE_OFF;
13064
13065 if (parent_event->attr.freq) {
13066 u64 sample_period = parent_event->hw.sample_period;
13067 struct hw_perf_event *hwc = &child_event->hw;
13068
13069 hwc->sample_period = sample_period;
13070 hwc->last_period = sample_period;
13071
13072 local64_set(&hwc->period_left, sample_period);
13073 }
13074
13075 child_event->ctx = child_ctx;
13076 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030013077 child_event->overflow_handler_context
13078 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013079
13080 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020013081 * Precalculate sample_data sizes
13082 */
13083 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020013084 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020013085
13086 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013087 * Link it up in the child's context:
13088 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020013089 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013090 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020013091 child_event->attach_state |= PERF_ATTACH_CHILD;
Peter Zijlstracee010e2010-09-10 12:51:54 +020013092 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013093
13094 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013095 * Link this into the parent event's child list
13096 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013097 list_add_tail(&child_event->child_list, &parent_event->child_list);
13098 mutex_unlock(&parent_event->child_mutex);
13099
13100 return child_event;
13101}
13102
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013103/*
13104 * Inherits an event group.
13105 *
13106 * This will quietly suppress orphaned events; !inherit_event() is not an error.
13107 * This matches with perf_event_release_kernel() removing all child events.
13108 *
13109 * Returns:
13110 * - 0 on success
13111 * - <0 on error
13112 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013113static int inherit_group(struct perf_event *parent_event,
13114 struct task_struct *parent,
13115 struct perf_event_context *parent_ctx,
13116 struct task_struct *child,
13117 struct perf_event_context *child_ctx)
13118{
13119 struct perf_event *leader;
13120 struct perf_event *sub;
13121 struct perf_event *child_ctr;
13122
13123 leader = inherit_event(parent_event, parent, parent_ctx,
13124 child, NULL, child_ctx);
13125 if (IS_ERR(leader))
13126 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013127 /*
13128 * @leader can be NULL here because of is_orphaned_event(). In this
13129 * case inherit_event() will create individual events, similar to what
13130 * perf_group_detach() would do anyway.
13131 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010013132 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013133 child_ctr = inherit_event(sub, parent, parent_ctx,
13134 child, leader, child_ctx);
13135 if (IS_ERR(child_ctr))
13136 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013137
Alexander Shishkin00496fe2019-11-01 17:12:48 +020013138 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013139 !perf_get_aux_event(child_ctr, leader))
13140 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013141 }
13142 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013143}
13144
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013145/*
13146 * Creates the child task context and tries to inherit the event-group.
13147 *
13148 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
13149 * inherited_all set when we 'fail' to inherit an orphaned event; this is
13150 * consistent with perf_event_release_kernel() removing all child events.
13151 *
13152 * Returns:
13153 * - 0 on success
13154 * - <0 on error
13155 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013156static int
13157inherit_task_group(struct perf_event *event, struct task_struct *parent,
13158 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013159 struct task_struct *child, int ctxn,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013160 u64 clone_flags, int *inherited_all)
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013161{
13162 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013163 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013164
Marco Elver2b26f0a2021-04-08 12:35:58 +020013165 if (!event->attr.inherit ||
Marco Elver97ba62b2021-04-08 12:36:01 +020013166 (event->attr.inherit_thread && !(clone_flags & CLONE_THREAD)) ||
13167 /* Do not inherit if sigtrap and signal handlers were cleared. */
13168 (event->attr.sigtrap && (clone_flags & CLONE_CLEAR_SIGHAND))) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013169 *inherited_all = 0;
13170 return 0;
13171 }
13172
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013173 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013174 if (!child_ctx) {
13175 /*
13176 * This is executed from the parent task context, so
13177 * inherit events that have been marked for cloning.
13178 * First allocate and initialize a context for the
13179 * child.
13180 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020013181 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013182 if (!child_ctx)
13183 return -ENOMEM;
13184
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013185 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013186 }
13187
13188 ret = inherit_group(event, parent, parent_ctx,
13189 child, child_ctx);
13190
13191 if (ret)
13192 *inherited_all = 0;
13193
13194 return ret;
13195}
13196
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013197/*
13198 * Initialize the perf_event context in task_struct
13199 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013200static int perf_event_init_context(struct task_struct *child, int ctxn,
13201 u64 clone_flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013202{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013203 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013204 struct perf_event_context *cloned_ctx;
13205 struct perf_event *event;
13206 struct task_struct *parent = current;
13207 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013208 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013209 int ret = 0;
13210
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013211 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013212 return 0;
13213
13214 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013215 * If the parent's context is a clone, pin it so it won't get
13216 * swapped under us.
13217 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013218 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020013219 if (!parent_ctx)
13220 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013221
13222 /*
13223 * No need to check if parent_ctx != NULL here; since we saw
13224 * it non-NULL earlier, the only reason for it to become NULL
13225 * is if we exit, and since we're currently in the middle of
13226 * a fork we can't be exiting at the same time.
13227 */
13228
13229 /*
13230 * Lock the parent list. No need to lock the child - not PID
13231 * hashed yet and not running, so nobody can access it.
13232 */
13233 mutex_lock(&parent_ctx->mutex);
13234
13235 /*
13236 * We dont have to disable NMIs - we are only looking at
13237 * the list, not manipulating it:
13238 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013239 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013240 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013241 child, ctxn, clone_flags,
13242 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013243 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013244 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013245 }
13246
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013247 /*
13248 * We can't hold ctx->lock when iterating the ->flexible_group list due
13249 * to allocations, but we need to prevent rotation because
13250 * rotate_ctx() will change the list from interrupt context.
13251 */
13252 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13253 parent_ctx->rotate_disable = 1;
13254 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
13255
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013256 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013257 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013258 child, ctxn, clone_flags,
13259 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013260 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013261 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013262 }
13263
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013264 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13265 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013266
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013267 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013268
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010013269 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013270 /*
13271 * Mark the child context as a clone of the parent
13272 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013273 *
13274 * Note that if the parent is a clone, the holding of
13275 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013276 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013277 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013278 if (cloned_ctx) {
13279 child_ctx->parent_ctx = cloned_ctx;
13280 child_ctx->parent_gen = parent_ctx->parent_gen;
13281 } else {
13282 child_ctx->parent_ctx = parent_ctx;
13283 child_ctx->parent_gen = parent_ctx->generation;
13284 }
13285 get_ctx(child_ctx->parent_ctx);
13286 }
13287
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013288 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013289out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013290 mutex_unlock(&parent_ctx->mutex);
13291
13292 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013293 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013294
13295 return ret;
13296}
13297
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013298/*
13299 * Initialize the perf_event context in task_struct
13300 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013301int perf_event_init_task(struct task_struct *child, u64 clone_flags)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013302{
13303 int ctxn, ret;
13304
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010013305 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
13306 mutex_init(&child->perf_event_mutex);
13307 INIT_LIST_HEAD(&child->perf_event_list);
13308
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013309 for_each_task_context_nr(ctxn) {
Marco Elver2b26f0a2021-04-08 12:35:58 +020013310 ret = perf_event_init_context(child, ctxn, clone_flags);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013311 if (ret) {
13312 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013313 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013314 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013315 }
13316
13317 return 0;
13318}
13319
Paul Mackerras220b1402010-03-10 20:45:52 +110013320static void __init perf_event_init_all_cpus(void)
13321{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013322 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110013323 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110013324
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013325 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
13326
Paul Mackerras220b1402010-03-10 20:45:52 +110013327 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013328 swhash = &per_cpu(swevent_htable, cpu);
13329 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000013330 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070013331
13332 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
13333 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020013334
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080013335#ifdef CONFIG_CGROUP_PERF
13336 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
13337#endif
Kan Lianga5398bf2020-11-30 11:38:40 -080013338 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110013339 }
13340}
13341
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040013342static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013343{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013344 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013345
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013346 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000013347 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013348 struct swevent_hlist *hlist;
13349
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013350 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
13351 WARN_ON(!hlist);
13352 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013353 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013354 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013355}
13356
Dave Young2965faa2015-09-09 15:38:55 -070013357#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013358static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013359{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013360 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013361 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
13362 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013363
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013364 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020013365 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013366 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010013367 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013368 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013369}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013370
13371static void perf_event_exit_cpu_context(int cpu)
13372{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013373 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013374 struct perf_event_context *ctx;
13375 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013376
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013377 mutex_lock(&pmus_lock);
13378 list_for_each_entry(pmu, &pmus, entry) {
13379 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13380 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013381
13382 mutex_lock(&ctx->mutex);
13383 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013384 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013385 mutex_unlock(&ctx->mutex);
13386 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013387 cpumask_clear_cpu(cpu, perf_online_mask);
13388 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013389}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013390#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013391
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013392static void perf_event_exit_cpu_context(int cpu) { }
13393
13394#endif
13395
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013396int perf_event_init_cpu(unsigned int cpu)
13397{
13398 struct perf_cpu_context *cpuctx;
13399 struct perf_event_context *ctx;
13400 struct pmu *pmu;
13401
13402 perf_swevent_init_cpu(cpu);
13403
13404 mutex_lock(&pmus_lock);
13405 cpumask_set_cpu(cpu, perf_online_mask);
13406 list_for_each_entry(pmu, &pmus, entry) {
13407 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13408 ctx = &cpuctx->ctx;
13409
13410 mutex_lock(&ctx->mutex);
13411 cpuctx->online = 1;
13412 mutex_unlock(&ctx->mutex);
13413 }
13414 mutex_unlock(&pmus_lock);
13415
13416 return 0;
13417}
13418
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013419int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013420{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010013421 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013422 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013423}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013424
Peter Zijlstrac2774432010-12-08 15:29:02 +010013425static int
13426perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
13427{
13428 int cpu;
13429
13430 for_each_online_cpu(cpu)
13431 perf_event_exit_cpu(cpu);
13432
13433 return NOTIFY_OK;
13434}
13435
13436/*
13437 * Run the perf reboot notifier at the very last possible moment so that
13438 * the generic watchdog code runs as long as possible.
13439 */
13440static struct notifier_block perf_reboot_notifier = {
13441 .notifier_call = perf_reboot,
13442 .priority = INT_MIN,
13443};
13444
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013445void __init perf_event_init(void)
13446{
Jason Wessel3c502e72010-11-04 17:33:01 -050013447 int ret;
13448
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013449 idr_init(&pmu_idr);
13450
Paul Mackerras220b1402010-03-10 20:45:52 +110013451 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013452 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013453 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
13454 perf_pmu_register(&perf_cpu_clock, NULL, -1);
13455 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013456 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013457 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010013458 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050013459
13460 ret = init_hw_breakpoint();
13461 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020013462
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090013463 perf_event_cache = KMEM_CACHE(perf_event, SLAB_PANIC);
13464
Jiri Olsab01c3a02012-03-23 15:41:20 +010013465 /*
13466 * Build time assertion that we keep the data_head at the intended
13467 * location. IOW, validation we got the __reserved[] size right.
13468 */
13469 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
13470 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013471}
Peter Zijlstraabe43402010-11-17 23:17:37 +010013472
Cody P Schaferfd979c02015-01-30 13:45:57 -080013473ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
13474 char *page)
13475{
13476 struct perf_pmu_events_attr *pmu_attr =
13477 container_of(attr, struct perf_pmu_events_attr, attr);
13478
13479 if (pmu_attr->event_str)
13480 return sprintf(page, "%s\n", pmu_attr->event_str);
13481
13482 return 0;
13483}
Thomas Gleixner675965b2016-02-22 22:19:27 +000013484EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080013485
Peter Zijlstraabe43402010-11-17 23:17:37 +010013486static int __init perf_event_sysfs_init(void)
13487{
13488 struct pmu *pmu;
13489 int ret;
13490
13491 mutex_lock(&pmus_lock);
13492
13493 ret = bus_register(&pmu_bus);
13494 if (ret)
13495 goto unlock;
13496
13497 list_for_each_entry(pmu, &pmus, entry) {
13498 if (!pmu->name || pmu->type < 0)
13499 continue;
13500
13501 ret = pmu_dev_alloc(pmu);
13502 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
13503 }
13504 pmu_bus_running = 1;
13505 ret = 0;
13506
13507unlock:
13508 mutex_unlock(&pmus_lock);
13509
13510 return ret;
13511}
13512device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013513
13514#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040013515static struct cgroup_subsys_state *
13516perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013517{
13518 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020013519
Li Zefan1b15d052011-03-03 14:26:06 +080013520 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013521 if (!jc)
13522 return ERR_PTR(-ENOMEM);
13523
Stephane Eraniane5d13672011-02-14 11:20:01 +020013524 jc->info = alloc_percpu(struct perf_cgroup_info);
13525 if (!jc->info) {
13526 kfree(jc);
13527 return ERR_PTR(-ENOMEM);
13528 }
13529
Stephane Eraniane5d13672011-02-14 11:20:01 +020013530 return &jc->css;
13531}
13532
Tejun Heoeb954192013-08-08 20:11:23 -040013533static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013534{
Tejun Heoeb954192013-08-08 20:11:23 -040013535 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
13536
Stephane Eraniane5d13672011-02-14 11:20:01 +020013537 free_percpu(jc->info);
13538 kfree(jc);
13539}
13540
Namhyung Kim96aaab62020-03-25 21:45:28 +090013541static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
13542{
13543 perf_event_cgroup(css->cgroup);
13544 return 0;
13545}
13546
Stephane Eraniane5d13672011-02-14 11:20:01 +020013547static int __perf_cgroup_move(void *info)
13548{
13549 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013550 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013551 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013552 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013553 return 0;
13554}
13555
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013556static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013557{
Tejun Heobb9d97b2011-12-12 18:12:21 -080013558 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013559 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080013560
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013561 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080013562 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013563}
13564
Tejun Heo073219e2014-02-08 10:36:58 -050013565struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080013566 .css_alloc = perf_cgroup_css_alloc,
13567 .css_free = perf_cgroup_css_free,
Namhyung Kim96aaab62020-03-25 21:45:28 +090013568 .css_online = perf_cgroup_css_online,
Tejun Heobb9d97b2011-12-12 18:12:21 -080013569 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050013570 /*
13571 * Implicitly enable on dfl hierarchy so that perf events can
13572 * always be filtered by cgroup2 path as long as perf_event
13573 * controller is not mounted on a legacy hierarchy.
13574 */
13575 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040013576 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020013577};
13578#endif /* CONFIG_CGROUP_PERF */
Song Liuc22ac2a2021-09-10 11:33:50 -070013579
13580DEFINE_STATIC_CALL_RET0(perf_snapshot_branch_stack, perf_snapshot_branch_stack_t);