blob: 6859229497b1544594659d40ed301d41425da035 [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{
Song Liu5f4e5ce2022-02-03 16:40:57 -0800842 struct perf_cpu_context *cpuctx, *tmp;
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);
Song Liu5f4e5ce2022-02-03 16:40:57 -0800853 list_for_each_entry_safe(cpuctx, tmp, list, cgrp_cpuctx_entry) {
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800854 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
Marco Elver3c25fc92022-01-31 11:34:05 +01003241/*
3242 * Copy event-type-independent attributes that may be modified.
3243 */
3244static void perf_event_modify_copy_attr(struct perf_event_attr *to,
3245 const struct perf_event_attr *from)
3246{
3247 to->sig_data = from->sig_data;
3248}
3249
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003250static int perf_event_modify_attr(struct perf_event *event,
3251 struct perf_event_attr *attr)
3252{
Marco Elver47f661e2021-04-08 12:35:57 +02003253 int (*func)(struct perf_event *, struct perf_event_attr *);
3254 struct perf_event *child;
3255 int err;
3256
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003257 if (event->attr.type != attr->type)
3258 return -EINVAL;
3259
3260 switch (event->attr.type) {
3261 case PERF_TYPE_BREAKPOINT:
Marco Elver47f661e2021-04-08 12:35:57 +02003262 func = perf_event_modify_breakpoint;
3263 break;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003264 default:
3265 /* Place holder for future additions. */
3266 return -EOPNOTSUPP;
3267 }
Marco Elver47f661e2021-04-08 12:35:57 +02003268
3269 WARN_ON_ONCE(event->ctx->parent_ctx);
3270
3271 mutex_lock(&event->child_mutex);
Marco Elver3c25fc92022-01-31 11:34:05 +01003272 /*
3273 * Event-type-independent attributes must be copied before event-type
3274 * modification, which will validate that final attributes match the
3275 * source attributes after all relevant attributes have been copied.
3276 */
3277 perf_event_modify_copy_attr(&event->attr, attr);
Marco Elver47f661e2021-04-08 12:35:57 +02003278 err = func(event, attr);
3279 if (err)
3280 goto out;
3281 list_for_each_entry(child, &event->child_list, child_list) {
Marco Elver3c25fc92022-01-31 11:34:05 +01003282 perf_event_modify_copy_attr(&child->attr, attr);
Marco Elver47f661e2021-04-08 12:35:57 +02003283 err = func(child, attr);
3284 if (err)
3285 goto out;
3286 }
3287out:
3288 mutex_unlock(&event->child_mutex);
3289 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003290}
3291
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003292static void ctx_sched_out(struct perf_event_context *ctx,
3293 struct perf_cpu_context *cpuctx,
3294 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003295{
Peter Zijlstra66681282017-11-13 14:28:38 +01003296 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003297 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003298
3299 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003300
Peter Zijlstra39a43642016-01-11 12:46:35 +01003301 if (likely(!ctx->nr_events)) {
3302 /*
3303 * See __perf_remove_from_context().
3304 */
3305 WARN_ON_ONCE(ctx->is_active);
3306 if (ctx->task)
3307 WARN_ON_ONCE(cpuctx->task_ctx);
3308 return;
3309 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003311 /*
3312 * Always update time if it was set; not only when it changes.
3313 * Otherwise we can 'forget' to update time for any but the last
3314 * context we sched out. For example:
3315 *
3316 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3317 * ctx_sched_out(.event_type = EVENT_PINNED)
3318 *
3319 * would only update time for the pinned events.
3320 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003321 if (is_active & EVENT_TIME) {
3322 /* update (and stop) ctx time */
3323 update_context_time(ctx);
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003324 update_cgrp_time_from_cpuctx(cpuctx, ctx == &cpuctx->ctx);
3325 /*
3326 * CPU-release for the below ->is_active store,
3327 * see __load_acquire() in perf_event_time_now()
3328 */
3329 barrier();
3330 }
3331
3332 ctx->is_active &= ~event_type;
3333 if (!(ctx->is_active & EVENT_ALL))
3334 ctx->is_active = 0;
3335
3336 if (ctx->task) {
3337 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3338 if (!ctx->is_active)
3339 cpuctx->task_ctx = NULL;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003340 }
3341
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003342 is_active ^= ctx->is_active; /* changed bits */
3343
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003344 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003345 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003346
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003347 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003348 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003349 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003350 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003351 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003352
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003353 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003354 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003355 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra90c91df2020-03-05 13:38:51 +01003356
3357 /*
3358 * Since we cleared EVENT_FLEXIBLE, also clear
3359 * rotate_necessary, is will be reset by
3360 * ctx_flexible_sched_in() when needed.
3361 */
3362 ctx->rotate_necessary = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003363 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003364 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365}
3366
3367/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003368 * Test whether two contexts are equivalent, i.e. whether they have both been
3369 * cloned from the same version of the same context.
3370 *
3371 * Equivalence is measured using a generation number in the context that is
3372 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3373 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374 */
3375static int context_equiv(struct perf_event_context *ctx1,
3376 struct perf_event_context *ctx2)
3377{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003378 lockdep_assert_held(&ctx1->lock);
3379 lockdep_assert_held(&ctx2->lock);
3380
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003381 /* Pinning disables the swap optimization */
3382 if (ctx1->pin_count || ctx2->pin_count)
3383 return 0;
3384
3385 /* If ctx1 is the parent of ctx2 */
3386 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3387 return 1;
3388
3389 /* If ctx2 is the parent of ctx1 */
3390 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3391 return 1;
3392
3393 /*
3394 * If ctx1 and ctx2 have the same parent; we flatten the parent
3395 * hierarchy, see perf_event_init_context().
3396 */
3397 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3398 ctx1->parent_gen == ctx2->parent_gen)
3399 return 1;
3400
3401 /* Unmatched */
3402 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003403}
3404
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405static void __perf_event_sync_stat(struct perf_event *event,
3406 struct perf_event *next_event)
3407{
3408 u64 value;
3409
3410 if (!event->attr.inherit_stat)
3411 return;
3412
3413 /*
3414 * Update the event value, we cannot use perf_event_read()
3415 * because we're in the middle of a context switch and have IRQs
3416 * disabled, which upsets smp_call_function_single(), however
3417 * we know the event must be on the current CPU, therefore we
3418 * don't need to use it.
3419 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003420 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003421 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003422
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003423 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003424
3425 /*
3426 * In order to keep per-task stats reliable we need to flip the event
3427 * values when we flip the contexts.
3428 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003429 value = local64_read(&next_event->count);
3430 value = local64_xchg(&event->count, value);
3431 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003432
3433 swap(event->total_time_enabled, next_event->total_time_enabled);
3434 swap(event->total_time_running, next_event->total_time_running);
3435
3436 /*
3437 * Since we swizzled the values, update the user visible data too.
3438 */
3439 perf_event_update_userpage(event);
3440 perf_event_update_userpage(next_event);
3441}
3442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003443static void perf_event_sync_stat(struct perf_event_context *ctx,
3444 struct perf_event_context *next_ctx)
3445{
3446 struct perf_event *event, *next_event;
3447
3448 if (!ctx->nr_stat)
3449 return;
3450
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003451 update_context_time(ctx);
3452
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003453 event = list_first_entry(&ctx->event_list,
3454 struct perf_event, event_entry);
3455
3456 next_event = list_first_entry(&next_ctx->event_list,
3457 struct perf_event, event_entry);
3458
3459 while (&event->event_entry != &ctx->event_list &&
3460 &next_event->event_entry != &next_ctx->event_list) {
3461
3462 __perf_event_sync_stat(event, next_event);
3463
3464 event = list_next_entry(event, event_entry);
3465 next_event = list_next_entry(next_event, event_entry);
3466 }
3467}
3468
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003469static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3470 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003471{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003472 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003473 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003474 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003475 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003476 int do_switch = 1;
Kan Liang44fae1792020-08-21 12:57:53 -07003477 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003479 if (likely(!ctx))
3480 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003481
Kan Liang44fae1792020-08-21 12:57:53 -07003482 pmu = ctx->pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003483 cpuctx = __get_cpu_context(ctx);
3484 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003485 return;
3486
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003487 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003488 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003489 if (!next_ctx)
3490 goto unlock;
3491
3492 parent = rcu_dereference(ctx->parent_ctx);
3493 next_parent = rcu_dereference(next_ctx->parent_ctx);
3494
3495 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003496 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003497 goto unlock;
3498
3499 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500 /*
3501 * Looks like the two contexts are clones, so we might be
3502 * able to optimize the context switch. We lock both
3503 * contexts and check that they are clones under the
3504 * lock (including re-checking that neither has been
3505 * uncloned in the meantime). It doesn't matter which
3506 * order we take the locks because no other cpu could
3507 * be trying to lock both of these tasks.
3508 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003509 raw_spin_lock(&ctx->lock);
3510 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003511 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003512
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003513 WRITE_ONCE(ctx->task, next);
3514 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003515
Kan Liang44fae1792020-08-21 12:57:53 -07003516 perf_pmu_disable(pmu);
3517
3518 if (cpuctx->sched_cb_usage && pmu->sched_task)
3519 pmu->sched_task(ctx, false);
3520
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003521 /*
3522 * PMU specific parts of task perf context can require
3523 * additional synchronization. As an example of such
3524 * synchronization see implementation details of Intel
3525 * LBR call stack data profiling;
3526 */
3527 if (pmu->swap_task_ctx)
3528 pmu->swap_task_ctx(ctx, next_ctx);
3529 else
3530 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003531
Kan Liang44fae1792020-08-21 12:57:53 -07003532 perf_pmu_enable(pmu);
3533
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003534 /*
3535 * RCU_INIT_POINTER here is safe because we've not
3536 * modified the ctx and the above modification of
3537 * ctx->task and ctx->task_ctx_data are immaterial
3538 * since those values are always verified under
3539 * ctx->lock which we're now holding.
3540 */
3541 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3542 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3543
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003544 do_switch = 0;
3545
3546 perf_event_sync_stat(ctx, next_ctx);
3547 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003548 raw_spin_unlock(&next_ctx->lock);
3549 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003550 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003551unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003552 rcu_read_unlock();
3553
3554 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003555 raw_spin_lock(&ctx->lock);
Kan Liang44fae1792020-08-21 12:57:53 -07003556 perf_pmu_disable(pmu);
3557
3558 if (cpuctx->sched_cb_usage && pmu->sched_task)
3559 pmu->sched_task(ctx, false);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003560 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Kan Liang44fae1792020-08-21 12:57:53 -07003561
3562 perf_pmu_enable(pmu);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003563 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003564 }
3565}
3566
Kan Lianga5398bf2020-11-30 11:38:40 -08003567static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3568
Yan, Zhengba532502014-11-04 21:55:58 -05003569void perf_sched_cb_dec(struct pmu *pmu)
3570{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003571 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3572
Kan Lianga5398bf2020-11-30 11:38:40 -08003573 this_cpu_dec(perf_sched_cb_usages);
3574
3575 if (!--cpuctx->sched_cb_usage)
3576 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003577}
3578
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003579
Yan, Zhengba532502014-11-04 21:55:58 -05003580void perf_sched_cb_inc(struct pmu *pmu)
3581{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003582 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3583
Kan Lianga5398bf2020-11-30 11:38:40 -08003584 if (!cpuctx->sched_cb_usage++)
3585 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3586
3587 this_cpu_inc(perf_sched_cb_usages);
Yan, Zhengba532502014-11-04 21:55:58 -05003588}
3589
3590/*
3591 * This function provides the context switch callback to the lower code
3592 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003593 *
3594 * This callback is relevant even to per-cpu events; for example multi event
3595 * PEBS requires this to provide PID/TID information. This requires we flush
3596 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003597 */
Kan Liang556ccca2020-08-21 12:57:52 -07003598static void __perf_pmu_sched_task(struct perf_cpu_context *cpuctx, bool sched_in)
3599{
3600 struct pmu *pmu;
3601
3602 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
3603
3604 if (WARN_ON_ONCE(!pmu->sched_task))
3605 return;
3606
3607 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3608 perf_pmu_disable(pmu);
3609
3610 pmu->sched_task(cpuctx->task_ctx, sched_in);
3611
3612 perf_pmu_enable(pmu);
3613 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
3614}
3615
Kan Lianga5398bf2020-11-30 11:38:40 -08003616static void perf_pmu_sched_task(struct task_struct *prev,
3617 struct task_struct *next,
3618 bool sched_in)
3619{
3620 struct perf_cpu_context *cpuctx;
3621
3622 if (prev == next)
3623 return;
3624
3625 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3626 /* will be handled in perf_event_context_sched_in/out */
3627 if (cpuctx->task_ctx)
3628 continue;
3629
3630 __perf_pmu_sched_task(cpuctx, sched_in);
3631 }
3632}
3633
Adrian Hunter45ac1402015-07-21 12:44:02 +03003634static void perf_event_switch(struct task_struct *task,
3635 struct task_struct *next_prev, bool sched_in);
3636
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003637#define for_each_task_context_nr(ctxn) \
3638 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3639
3640/*
3641 * Called from scheduler to remove the events of the current task,
3642 * with interrupts disabled.
3643 *
3644 * We stop each event and update the event value in event->count.
3645 *
3646 * This does not protect us against NMI, but disable()
3647 * sets the disabled bit in the control field of event _before_
3648 * accessing the event control register. If a NMI hits, then it will
3649 * not restart the event.
3650 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003651void __perf_event_task_sched_out(struct task_struct *task,
3652 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003653{
3654 int ctxn;
3655
Kan Lianga5398bf2020-11-30 11:38:40 -08003656 if (__this_cpu_read(perf_sched_cb_usages))
3657 perf_pmu_sched_task(task, next, false);
3658
Adrian Hunter45ac1402015-07-21 12:44:02 +03003659 if (atomic_read(&nr_switch_events))
3660 perf_event_switch(task, next, false);
3661
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003662 for_each_task_context_nr(ctxn)
3663 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003664
3665 /*
3666 * if cgroup events exist on this CPU, then we need
3667 * to check if we have to switch out PMU state.
3668 * cgroup event are system-wide mode only
3669 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003670 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003671 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003672}
3673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003674/*
3675 * Called with IRQs disabled
3676 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003677static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3678 enum event_type_t event_type)
3679{
3680 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003681}
3682
Ian Rogers6eef8a712020-02-13 23:51:30 -08003683static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003684{
Ian Rogers24fb6b82020-03-21 09:43:31 -07003685 const struct perf_event *le = *(const struct perf_event **)l;
3686 const struct perf_event *re = *(const struct perf_event **)r;
Ian Rogers6eef8a712020-02-13 23:51:30 -08003687
3688 return le->group_index < re->group_index;
3689}
3690
3691static void swap_ptr(void *l, void *r)
3692{
3693 void **lp = l, **rp = r;
3694
3695 swap(*lp, *rp);
3696}
3697
3698static const struct min_heap_callbacks perf_min_heap = {
3699 .elem_size = sizeof(struct perf_event *),
3700 .less = perf_less_group_idx,
3701 .swp = swap_ptr,
3702};
3703
3704static void __heap_add(struct min_heap *heap, struct perf_event *event)
3705{
3706 struct perf_event **itrs = heap->data;
3707
3708 if (event) {
3709 itrs[heap->nr] = event;
3710 heap->nr++;
3711 }
3712}
3713
Ian Rogers836196be2020-02-13 23:51:31 -08003714static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3715 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003716 int (*func)(struct perf_event *, void *),
3717 void *data)
3718{
Ian Rogers95ed6c72020-02-13 23:51:33 -08003719#ifdef CONFIG_CGROUP_PERF
3720 struct cgroup_subsys_state *css = NULL;
3721#endif
Ian Rogers6eef8a712020-02-13 23:51:30 -08003722 /* Space for per CPU and/or any CPU event iterators. */
3723 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003724 struct min_heap event_heap;
3725 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003726 int ret;
3727
Ian Rogers836196be2020-02-13 23:51:31 -08003728 if (cpuctx) {
3729 event_heap = (struct min_heap){
3730 .data = cpuctx->heap,
3731 .nr = 0,
3732 .size = cpuctx->heap_size,
3733 };
Ian Rogersc2283c92020-02-13 23:51:32 -08003734
3735 lockdep_assert_held(&cpuctx->ctx.lock);
Ian Rogers95ed6c72020-02-13 23:51:33 -08003736
3737#ifdef CONFIG_CGROUP_PERF
3738 if (cpuctx->cgrp)
3739 css = &cpuctx->cgrp->css;
3740#endif
Ian Rogers836196be2020-02-13 23:51:31 -08003741 } else {
3742 event_heap = (struct min_heap){
3743 .data = itrs,
3744 .nr = 0,
3745 .size = ARRAY_SIZE(itrs),
3746 };
3747 /* Events not within a CPU context may be on any CPU. */
Ian Rogers95ed6c72020-02-13 23:51:33 -08003748 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
Ian Rogers836196be2020-02-13 23:51:31 -08003749 }
3750 evt = event_heap.data;
3751
Ian Rogers95ed6c72020-02-13 23:51:33 -08003752 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3753
3754#ifdef CONFIG_CGROUP_PERF
3755 for (; css; css = css->parent)
3756 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3757#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003758
Ian Rogers6eef8a712020-02-13 23:51:30 -08003759 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003760
Ian Rogers6eef8a712020-02-13 23:51:30 -08003761 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003762 ret = func(*evt, data);
3763 if (ret)
3764 return ret;
3765
3766 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003767 if (*evt)
3768 min_heapify(&event_heap, 0, &perf_min_heap);
3769 else
3770 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003771 }
3772
3773 return 0;
3774}
3775
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003776/*
3777 * Because the userpage is strictly per-event (there is no concept of context,
3778 * so there cannot be a context indirection), every userpage must be updated
3779 * when context time starts :-(
3780 *
3781 * IOW, we must not miss EVENT_TIME edges.
3782 */
Song Liuf7925652021-09-29 12:43:13 -07003783static inline bool event_update_userpage(struct perf_event *event)
3784{
3785 if (likely(!atomic_read(&event->mmap_count)))
3786 return false;
3787
3788 perf_event_update_time(event);
Song Liuf7925652021-09-29 12:43:13 -07003789 perf_event_update_userpage(event);
3790
3791 return true;
3792}
3793
3794static inline void group_update_userpage(struct perf_event *group_event)
3795{
3796 struct perf_event *event;
3797
3798 if (!event_update_userpage(group_event))
3799 return;
3800
3801 for_each_sibling_event(event, group_event)
3802 event_update_userpage(event);
3803}
3804
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003805static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003806{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003807 struct perf_event_context *ctx = event->ctx;
3808 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3809 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003810
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003811 if (event->state <= PERF_EVENT_STATE_OFF)
3812 return 0;
3813
3814 if (!event_filter_match(event))
3815 return 0;
3816
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003817 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3818 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003819 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003820 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003821
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003822 if (event->state == PERF_EVENT_STATE_INACTIVE) {
Song Liuf7925652021-09-29 12:43:13 -07003823 *can_add_hw = 0;
Peter Zijlstra33238c52020-03-18 20:33:37 +01003824 if (event->attr.pinned) {
3825 perf_cgroup_event_disable(event, ctx);
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003826 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Song Liuf7925652021-09-29 12:43:13 -07003827 } else {
3828 ctx->rotate_necessary = 1;
3829 perf_mux_hrtimer_restart(cpuctx);
3830 group_update_userpage(event);
Peter Zijlstra33238c52020-03-18 20:33:37 +01003831 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003832 }
3833
3834 return 0;
3835}
3836
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003837static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003838ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003839 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003840{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003841 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003842
Ian Rogers836196be2020-02-13 23:51:31 -08003843 if (ctx != &cpuctx->ctx)
3844 cpuctx = NULL;
3845
3846 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003847 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003848 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003849}
3850
3851static void
3852ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003853 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003854{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003855 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003856
Ian Rogers836196be2020-02-13 23:51:31 -08003857 if (ctx != &cpuctx->ctx)
3858 cpuctx = NULL;
3859
3860 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003861 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003862 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003863}
3864
3865static void
3866ctx_sched_in(struct perf_event_context *ctx,
3867 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003868 enum event_type_t event_type,
3869 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003870{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003871 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003872
Peter Zijlstrac994d612016-01-08 09:20:23 +01003873 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003874
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003875 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003876 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003877
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01003878 if (is_active ^ EVENT_TIME) {
3879 /* start ctx time */
3880 __update_context_time(ctx, false);
3881 perf_cgroup_set_timestamp(task, ctx);
3882 /*
3883 * CPU-release for the below ->is_active store,
3884 * see __load_acquire() in perf_event_time_now()
3885 */
3886 barrier();
3887 }
3888
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003889 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003890 if (ctx->task) {
3891 if (!is_active)
3892 cpuctx->task_ctx = ctx;
3893 else
3894 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3895 }
3896
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003897 is_active ^= ctx->is_active; /* changed bits */
3898
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003899 /*
3900 * First go through the list and put on any pinned groups
3901 * in order to give them the best chance of going on.
3902 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003903 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003904 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003905
3906 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003907 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003908 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909}
3910
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003911static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003912 enum event_type_t event_type,
3913 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003914{
3915 struct perf_event_context *ctx = &cpuctx->ctx;
3916
Stephane Eraniane5d13672011-02-14 11:20:01 +02003917 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003918}
3919
Stephane Eraniane5d13672011-02-14 11:20:01 +02003920static void perf_event_context_sched_in(struct perf_event_context *ctx,
3921 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003922{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003923 struct perf_cpu_context *cpuctx;
Peter Zijlstra012669c2021-06-22 16:21:01 +02003924 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003925
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003926 cpuctx = __get_cpu_context(ctx);
Peter Zijlstra012669c2021-06-22 16:21:01 +02003927
3928 /*
3929 * HACK: for HETEROGENEOUS the task context might have switched to a
3930 * different PMU, force (re)set the context,
3931 */
3932 pmu = ctx->pmu = cpuctx->ctx.pmu;
3933
Kan Liang556ccca2020-08-21 12:57:52 -07003934 if (cpuctx->task_ctx == ctx) {
3935 if (cpuctx->sched_cb_usage)
3936 __perf_pmu_sched_task(cpuctx, true);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003937 return;
Kan Liang556ccca2020-08-21 12:57:52 -07003938 }
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003939
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003940 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003941 /*
3942 * We must check ctx->nr_events while holding ctx->lock, such
3943 * that we serialize against perf_install_in_context().
3944 */
3945 if (!ctx->nr_events)
3946 goto unlock;
3947
Kan Liang556ccca2020-08-21 12:57:52 -07003948 perf_pmu_disable(pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003949 /*
3950 * We want to keep the following priority order:
3951 * cpu pinned (that don't need to move), task pinned,
3952 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003953 *
3954 * However, if task's ctx is not carrying any pinned
3955 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003956 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003957 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003958 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003959 perf_event_sched_in(cpuctx, ctx, task);
Kan Liang556ccca2020-08-21 12:57:52 -07003960
3961 if (cpuctx->sched_cb_usage && pmu->sched_task)
3962 pmu->sched_task(cpuctx->task_ctx, true);
3963
3964 perf_pmu_enable(pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003965
3966unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003967 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003968}
3969
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003970/*
3971 * Called from scheduler to add the events of the current task
3972 * with interrupts disabled.
3973 *
3974 * We restore the event value and then enable it.
3975 *
3976 * This does not protect us against NMI, but enable()
3977 * sets the enabled bit in the control field of event _before_
3978 * accessing the event control register. If a NMI hits, then it will
3979 * keep the event running.
3980 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003981void __perf_event_task_sched_in(struct task_struct *prev,
3982 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003983{
3984 struct perf_event_context *ctx;
3985 int ctxn;
3986
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003987 /*
3988 * If cgroup events exist on this CPU, then we need to check if we have
3989 * to switch in PMU state; cgroup event are system-wide mode only.
3990 *
3991 * Since cgroup events are CPU events, we must schedule these in before
3992 * we schedule in the task events.
3993 */
3994 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3995 perf_cgroup_sched_in(prev, task);
3996
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003997 for_each_task_context_nr(ctxn) {
3998 ctx = task->perf_event_ctxp[ctxn];
3999 if (likely(!ctx))
4000 continue;
4001
Stephane Eraniane5d13672011-02-14 11:20:01 +02004002 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004003 }
Stephane Eraniand010b332012-02-09 23:21:00 +01004004
Adrian Hunter45ac1402015-07-21 12:44:02 +03004005 if (atomic_read(&nr_switch_events))
4006 perf_event_switch(task, prev, true);
Kan Lianga5398bf2020-11-30 11:38:40 -08004007
4008 if (__this_cpu_read(perf_sched_cb_usages))
4009 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004010}
4011
Peter Zijlstraabd50712010-01-26 18:50:16 +01004012static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
4013{
4014 u64 frequency = event->attr.sample_freq;
4015 u64 sec = NSEC_PER_SEC;
4016 u64 divisor, dividend;
4017
4018 int count_fls, nsec_fls, frequency_fls, sec_fls;
4019
4020 count_fls = fls64(count);
4021 nsec_fls = fls64(nsec);
4022 frequency_fls = fls64(frequency);
4023 sec_fls = 30;
4024
4025 /*
4026 * We got @count in @nsec, with a target of sample_freq HZ
4027 * the target period becomes:
4028 *
4029 * @count * 10^9
4030 * period = -------------------
4031 * @nsec * sample_freq
4032 *
4033 */
4034
4035 /*
4036 * Reduce accuracy by one bit such that @a and @b converge
4037 * to a similar magnitude.
4038 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004039#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01004040do { \
4041 if (a##_fls > b##_fls) { \
4042 a >>= 1; \
4043 a##_fls--; \
4044 } else { \
4045 b >>= 1; \
4046 b##_fls--; \
4047 } \
4048} while (0)
4049
4050 /*
4051 * Reduce accuracy until either term fits in a u64, then proceed with
4052 * the other, so that finally we can do a u64/u64 division.
4053 */
4054 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
4055 REDUCE_FLS(nsec, frequency);
4056 REDUCE_FLS(sec, count);
4057 }
4058
4059 if (count_fls + sec_fls > 64) {
4060 divisor = nsec * frequency;
4061
4062 while (count_fls + sec_fls > 64) {
4063 REDUCE_FLS(count, sec);
4064 divisor >>= 1;
4065 }
4066
4067 dividend = count * sec;
4068 } else {
4069 dividend = count * sec;
4070
4071 while (nsec_fls + frequency_fls > 64) {
4072 REDUCE_FLS(nsec, frequency);
4073 dividend >>= 1;
4074 }
4075
4076 divisor = nsec * frequency;
4077 }
4078
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004079 if (!divisor)
4080 return dividend;
4081
Peter Zijlstraabd50712010-01-26 18:50:16 +01004082 return div64_u64(dividend, divisor);
4083}
4084
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004085static DEFINE_PER_CPU(int, perf_throttled_count);
4086static DEFINE_PER_CPU(u64, perf_throttled_seq);
4087
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004088static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004089{
4090 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02004091 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004092 s64 delta;
4093
Peter Zijlstraabd50712010-01-26 18:50:16 +01004094 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004095
4096 delta = (s64)(period - hwc->sample_period);
4097 delta = (delta + 7) / 8; /* low pass filter */
4098
4099 sample_period = hwc->sample_period + delta;
4100
4101 if (!sample_period)
4102 sample_period = 1;
4103
4104 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004105
Peter Zijlstrae7850592010-05-21 14:43:08 +02004106 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004107 if (disable)
4108 event->pmu->stop(event, PERF_EF_UPDATE);
4109
Peter Zijlstrae7850592010-05-21 14:43:08 +02004110 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004111
4112 if (disable)
4113 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004114 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004115}
4116
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004117/*
4118 * combine freq adjustment with unthrottling to avoid two passes over the
4119 * events. At the same time, make sure, having freq events does not change
4120 * the rate of unthrottling as that would introduce bias.
4121 */
4122static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
4123 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004124{
4125 struct perf_event *event;
4126 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004127 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01004128 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004129
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004130 /*
4131 * only need to iterate over all events iff:
4132 * - context have events in frequency mode (needs freq adjust)
4133 * - there are events to unthrottle on this cpu
4134 */
4135 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004136 return;
4137
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004138 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004139 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004140
Paul Mackerras03541f82009-10-14 16:58:03 +11004141 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004142 if (event->state != PERF_EVENT_STATE_ACTIVE)
4143 continue;
4144
Stephane Eranian5632ab12011-01-03 18:20:01 +02004145 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004146 continue;
4147
Alexander Shishkin44377272013-12-16 14:17:36 +02004148 perf_pmu_disable(event->pmu);
4149
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004150 hwc = &event->hw;
4151
Jiri Olsaae23bff2013-08-24 16:45:54 +02004152 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004153 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004154 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004155 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004156 }
4157
4158 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02004159 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004160
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004161 /*
4162 * stop the event and update event->count
4163 */
4164 event->pmu->stop(event, PERF_EF_UPDATE);
4165
Peter Zijlstrae7850592010-05-21 14:43:08 +02004166 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01004167 delta = now - hwc->freq_count_stamp;
4168 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004169
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004170 /*
4171 * restart the event
4172 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004173 * we have stopped the event so tell that
4174 * to perf_adjust_period() to avoid stopping it
4175 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004176 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01004177 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004178 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004179
4180 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02004181 next:
4182 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004183 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004184
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004185 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004186 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004187}
4188
4189/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004190 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004191 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004192static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004193{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01004194 /*
4195 * Rotate the first entry last of non-pinned groups. Rotation might be
4196 * disabled by the inheritance code.
4197 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004198 if (ctx->rotate_disable)
4199 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004200
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004201 perf_event_groups_delete(&ctx->flexible_groups, event);
4202 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004203}
4204
Song Liu7fa343b72019-10-08 09:59:49 -07004205/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004206static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07004207ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004208{
Song Liu7fa343b72019-10-08 09:59:49 -07004209 struct perf_event *event;
4210
4211 /* pick the first active flexible event */
4212 event = list_first_entry_or_null(&ctx->flexible_active,
4213 struct perf_event, active_list);
4214
4215 /* if no active flexible event, pick the first event */
4216 if (!event) {
4217 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
4218 typeof(*event), group_node);
4219 }
4220
Peter Zijlstra90c91df2020-03-05 13:38:51 +01004221 /*
4222 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in()
4223 * finds there are unschedulable events, it will set it again.
4224 */
4225 ctx->rotate_necessary = 0;
4226
Song Liu7fa343b72019-10-08 09:59:49 -07004227 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004228}
4229
4230static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
4231{
4232 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07004233 struct perf_event_context *task_ctx = NULL;
4234 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004235
4236 /*
4237 * Since we run this from IRQ context, nobody can install new
4238 * events, thus the event count values are stable.
4239 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004240
Ian Rogersfd7d5512019-06-01 01:27:22 -07004241 cpu_rotate = cpuctx->ctx.rotate_necessary;
4242 task_ctx = cpuctx->task_ctx;
4243 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004244
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004245 if (!(cpu_rotate || task_rotate))
4246 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004247
Peter Zijlstrafacc4302011-04-09 21:17:42 +02004248 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02004249 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004250
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004251 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004252 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004253 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004254 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004255
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004256 /*
4257 * As per the order given at ctx_resched() first 'pop' task flexible
4258 * and then, if needed CPU flexible.
4259 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07004260 if (task_event || (task_ctx && cpu_event))
4261 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004262 if (cpu_event)
4263 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01004264
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004265 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07004266 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004267 if (cpu_event)
4268 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269
Ian Rogersfd7d5512019-06-01 01:27:22 -07004270 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004271
4272 perf_pmu_enable(cpuctx->ctx.pmu);
4273 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02004274
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004275 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004276}
4277
4278void perf_event_task_tick(void)
4279{
Mark Rutland2fde4f92015-01-07 15:01:54 +00004280 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4281 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004282 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004283
Frederic Weisbecker16444642017-11-06 16:01:24 +01004284 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004285
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004286 __this_cpu_inc(perf_throttled_seq);
4287 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004288 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004289
Mark Rutland2fde4f92015-01-07 15:01:54 +00004290 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004291 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004292}
4293
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004294static int event_enable_on_exec(struct perf_event *event,
4295 struct perf_event_context *ctx)
4296{
4297 if (!event->attr.enable_on_exec)
4298 return 0;
4299
4300 event->attr.enable_on_exec = 0;
4301 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4302 return 0;
4303
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004304 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004305
4306 return 1;
4307}
4308
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004309/*
4310 * Enable all of a task's events that have been marked enable-on-exec.
4311 * This expects task == current.
4312 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01004313static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004314{
Peter Zijlstrac1274492015-12-10 20:57:40 +01004315 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004316 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01004317 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004318 struct perf_event *event;
4319 unsigned long flags;
4320 int enabled = 0;
4321
4322 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01004323 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004324 if (!ctx || !ctx->nr_events)
4325 goto out;
4326
Peter Zijlstra3e349502016-01-08 10:01:18 +01004327 cpuctx = __get_cpu_context(ctx);
4328 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01004329 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004330 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01004331 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004332 event_type |= get_event_type(event);
4333 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004334
4335 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01004336 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004337 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01004338 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004339 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004340 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01004341 } else {
4342 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01004343 }
4344 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004345
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004346out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004347 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004348
4349 if (clone_ctx)
4350 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004351}
4352
Marco Elver2e498d02021-04-08 12:35:59 +02004353static void perf_remove_from_owner(struct perf_event *event);
4354static void perf_event_exit_event(struct perf_event *event,
4355 struct perf_event_context *ctx);
4356
4357/*
4358 * Removes all events from the current task that have been marked
4359 * remove-on-exec, and feeds their values back to parent events.
4360 */
4361static void perf_event_remove_on_exec(int ctxn)
4362{
4363 struct perf_event_context *ctx, *clone_ctx = NULL;
4364 struct perf_event *event, *next;
4365 LIST_HEAD(free_list);
4366 unsigned long flags;
4367 bool modified = false;
4368
4369 ctx = perf_pin_task_context(current, ctxn);
4370 if (!ctx)
4371 return;
4372
4373 mutex_lock(&ctx->mutex);
4374
4375 if (WARN_ON_ONCE(ctx->task != current))
4376 goto unlock;
4377
4378 list_for_each_entry_safe(event, next, &ctx->event_list, event_entry) {
4379 if (!event->attr.remove_on_exec)
4380 continue;
4381
4382 if (!is_kernel_event(event))
4383 perf_remove_from_owner(event);
4384
4385 modified = true;
4386
4387 perf_event_exit_event(event, ctx);
4388 }
4389
4390 raw_spin_lock_irqsave(&ctx->lock, flags);
4391 if (modified)
4392 clone_ctx = unclone_ctx(ctx);
4393 --ctx->pin_count;
4394 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4395
4396unlock:
4397 mutex_unlock(&ctx->mutex);
4398
4399 put_ctx(ctx);
4400 if (clone_ctx)
4401 put_ctx(clone_ctx);
4402}
4403
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004404struct perf_read_data {
4405 struct perf_event *event;
4406 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004407 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004408};
4409
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004410static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004411{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004412 u16 local_pkg, event_pkg;
4413
4414 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004415 int local_cpu = smp_processor_id();
4416
4417 event_pkg = topology_physical_package_id(event_cpu);
4418 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004419
4420 if (event_pkg == local_pkg)
4421 return local_cpu;
4422 }
4423
4424 return event_cpu;
4425}
4426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004427/*
4428 * Cross CPU call to read the hardware event
4429 */
4430static void __perf_event_read(void *info)
4431{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004432 struct perf_read_data *data = info;
4433 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004434 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004435 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004436 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004437
4438 /*
4439 * If this is a task context, we need to check whether it is
4440 * the current task context of this cpu. If not it has been
4441 * scheduled out before the smp call arrived. In that case
4442 * event->count would have been updated to a recent sample
4443 * when the event was scheduled out.
4444 */
4445 if (ctx->task && cpuctx->task_ctx != ctx)
4446 return;
4447
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004448 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004449 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004450 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004451 update_cgrp_time_from_event(event);
4452 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004453
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004454 perf_event_update_time(event);
4455 if (data->group)
4456 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004457
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004458 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004459 goto unlock;
4460
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004461 if (!data->group) {
4462 pmu->read(event);
4463 data->ret = 0;
4464 goto unlock;
4465 }
4466
4467 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4468
4469 pmu->read(event);
4470
Peter Zijlstraedb39592018-03-15 17:36:56 +01004471 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004472 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4473 /*
4474 * Use sibling's PMU rather than @event's since
4475 * sibling could be on different (eg: software) PMU.
4476 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004477 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004478 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004479 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004480
4481 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004482
4483unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004484 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004485}
4486
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004487static inline u64 perf_event_count(struct perf_event *event)
4488{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004489 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004490}
4491
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004492static void calc_timer_values(struct perf_event *event,
4493 u64 *now,
4494 u64 *enabled,
4495 u64 *running)
4496{
4497 u64 ctx_time;
4498
4499 *now = perf_clock();
4500 ctx_time = perf_event_time_now(event, *now);
4501 __perf_update_times(event, ctx_time, enabled, running);
4502}
4503
Kaixu Xiaffe86902015-08-06 07:02:32 +00004504/*
4505 * NMI-safe method to read a local event, that is an event that
4506 * is:
4507 * - either for the current task, or for this CPU
4508 * - does not have inherit set, for inherited task events
4509 * will not be local and we cannot read them atomically
4510 * - must not have a pmu::count method
4511 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004512int perf_event_read_local(struct perf_event *event, u64 *value,
4513 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004514{
4515 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004516 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004517
4518 /*
4519 * Disabling interrupts avoids all counter scheduling (context
4520 * switches, timer based rotation and IPIs).
4521 */
4522 local_irq_save(flags);
4523
Kaixu Xiaffe86902015-08-06 07:02:32 +00004524 /*
4525 * It must not be an event with inherit set, we cannot read
4526 * all child counters from atomic context.
4527 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004528 if (event->attr.inherit) {
4529 ret = -EOPNOTSUPP;
4530 goto out;
4531 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004532
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004533 /* If this is a per-task event, it must be for current */
4534 if ((event->attach_state & PERF_ATTACH_TASK) &&
4535 event->hw.target != current) {
4536 ret = -EINVAL;
4537 goto out;
4538 }
4539
4540 /* If this is a per-CPU event, it must be for this CPU */
4541 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4542 event->cpu != smp_processor_id()) {
4543 ret = -EINVAL;
4544 goto out;
4545 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004546
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004547 /* If this is a pinned event it must be running on this CPU */
4548 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4549 ret = -EBUSY;
4550 goto out;
4551 }
4552
Kaixu Xiaffe86902015-08-06 07:02:32 +00004553 /*
4554 * If the event is currently on this CPU, its either a per-task event,
4555 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4556 * oncpu == -1).
4557 */
4558 if (event->oncpu == smp_processor_id())
4559 event->pmu->read(event);
4560
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004561 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004562 if (enabled || running) {
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004563 u64 __enabled, __running, __now;;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004564
Peter Zijlstra09f5e7d2021-12-20 13:19:52 +01004565 calc_timer_values(event, &__now, &__enabled, &__running);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004566 if (enabled)
4567 *enabled = __enabled;
4568 if (running)
4569 *running = __running;
4570 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004571out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004572 local_irq_restore(flags);
4573
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004574 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004575}
4576
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004577static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004578{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004579 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004580 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004581
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004582 /*
4583 * If event is enabled and currently active on a CPU, update the
4584 * value in the event structure:
4585 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004586again:
4587 if (state == PERF_EVENT_STATE_ACTIVE) {
4588 struct perf_read_data data;
4589
4590 /*
4591 * Orders the ->state and ->oncpu loads such that if we see
4592 * ACTIVE we must also see the right ->oncpu.
4593 *
4594 * Matches the smp_wmb() from event_sched_in().
4595 */
4596 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004597
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004598 event_cpu = READ_ONCE(event->oncpu);
4599 if ((unsigned)event_cpu >= nr_cpu_ids)
4600 return 0;
4601
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004602 data = (struct perf_read_data){
4603 .event = event,
4604 .group = group,
4605 .ret = 0,
4606 };
4607
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004608 preempt_disable();
4609 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004610
Peter Zijlstra58763142016-08-30 10:15:03 +02004611 /*
4612 * Purposely ignore the smp_call_function_single() return
4613 * value.
4614 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004615 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004616 * scheduled out and that will have updated the event count.
4617 *
4618 * Therefore, either way, we'll have an up-to-date event count
4619 * after this.
4620 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004621 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4622 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004623 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004624
4625 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004626 struct perf_event_context *ctx = event->ctx;
4627 unsigned long flags;
4628
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004629 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004630 state = event->state;
4631 if (state != PERF_EVENT_STATE_INACTIVE) {
4632 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4633 goto again;
4634 }
4635
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004636 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004637 * May read while context is not active (e.g., thread is
4638 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004639 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004640 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004641 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004642 update_cgrp_time_from_event(event);
4643 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004644
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004645 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004646 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004647 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004648 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004649 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004650
4651 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004652}
4653
4654/*
4655 * Initialize the perf_event context in a task_struct:
4656 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004657static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004658{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004659 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004660 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004661 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004662 perf_event_groups_init(&ctx->pinned_groups);
4663 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004664 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004665 INIT_LIST_HEAD(&ctx->pinned_active);
4666 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004667 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004668}
4669
Peter Zijlstraeb184472010-09-07 15:55:13 +02004670static struct perf_event_context *
4671alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004672{
4673 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004674
4675 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4676 if (!ctx)
4677 return NULL;
4678
4679 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004680 if (task)
4681 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004682 ctx->pmu = pmu;
4683
4684 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004685}
4686
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004687static struct task_struct *
4688find_lively_task_by_vpid(pid_t vpid)
4689{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004690 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004691
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004692 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004693 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004694 task = current;
4695 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004696 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004697 if (task)
4698 get_task_struct(task);
4699 rcu_read_unlock();
4700
4701 if (!task)
4702 return ERR_PTR(-ESRCH);
4703
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004704 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004705}
4706
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004707/*
4708 * Returns a matching context with refcount and pincount.
4709 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004710static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004711find_get_context(struct pmu *pmu, struct task_struct *task,
4712 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004713{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004714 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004715 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004716 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004717 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004718 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004719 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004720
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004721 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004722 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004723 err = perf_allow_cpu(&event->attr);
4724 if (err)
4725 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004726
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004727 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004728 ctx = &cpuctx->ctx;
4729 get_ctx(ctx);
Marco Elver6c605f82021-05-27 12:47:11 +02004730 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004731 ++ctx->pin_count;
Marco Elver6c605f82021-05-27 12:47:11 +02004732 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004733
4734 return ctx;
4735 }
4736
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004737 err = -EINVAL;
4738 ctxn = pmu->task_ctx_nr;
4739 if (ctxn < 0)
4740 goto errout;
4741
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004742 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
Kan Liangff9ff922020-07-03 05:49:21 -07004743 task_ctx_data = alloc_task_ctx_data(pmu);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004744 if (!task_ctx_data) {
4745 err = -ENOMEM;
4746 goto errout;
4747 }
4748 }
4749
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004750retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004751 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004752 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004753 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004754 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004755
4756 if (task_ctx_data && !ctx->task_ctx_data) {
4757 ctx->task_ctx_data = task_ctx_data;
4758 task_ctx_data = NULL;
4759 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004760 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004761
4762 if (clone_ctx)
4763 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004764 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004765 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004766 err = -ENOMEM;
4767 if (!ctx)
4768 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004769
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004770 if (task_ctx_data) {
4771 ctx->task_ctx_data = task_ctx_data;
4772 task_ctx_data = NULL;
4773 }
4774
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004775 err = 0;
4776 mutex_lock(&task->perf_event_mutex);
4777 /*
4778 * If it has already passed perf_event_exit_task().
4779 * we must see PF_EXITING, it takes this mutex too.
4780 */
4781 if (task->flags & PF_EXITING)
4782 err = -ESRCH;
4783 else if (task->perf_event_ctxp[ctxn])
4784 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004785 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004786 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004787 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004788 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004789 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004790 mutex_unlock(&task->perf_event_mutex);
4791
4792 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004793 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004794
4795 if (err == -EAGAIN)
4796 goto retry;
4797 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004798 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004799 }
4800
Kan Liangff9ff922020-07-03 05:49:21 -07004801 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004802 return ctx;
4803
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004804errout:
Kan Liangff9ff922020-07-03 05:49:21 -07004805 free_task_ctx_data(pmu, task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004806 return ERR_PTR(err);
4807}
4808
Li Zefan6fb29152009-10-15 11:21:42 +08004809static void perf_event_free_filter(struct perf_event *event);
4810
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004811static void free_event_rcu(struct rcu_head *head)
4812{
4813 struct perf_event *event;
4814
4815 event = container_of(head, struct perf_event, rcu_head);
4816 if (event->ns)
4817 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004818 perf_event_free_filter(event);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +09004819 kmem_cache_free(perf_event_cache, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004820}
4821
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004822static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004823 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824
Kan Liangf2fb6be2016-03-23 11:24:37 -07004825static void detach_sb_event(struct perf_event *event)
4826{
4827 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4828
4829 raw_spin_lock(&pel->lock);
4830 list_del_rcu(&event->sb_list);
4831 raw_spin_unlock(&pel->lock);
4832}
4833
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004834static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004835{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004836 struct perf_event_attr *attr = &event->attr;
4837
Kan Liangf2fb6be2016-03-23 11:24:37 -07004838 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004839 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004840
4841 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004842 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004843
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004844 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4845 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004846 attr->task || attr->ksymbol ||
Adrian Huntere17d43b2020-05-12 15:19:08 +03004847 attr->context_switch || attr->text_poke ||
Song Liu21038f22019-02-25 16:20:05 -08004848 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004849 return true;
4850 return false;
4851}
4852
4853static void unaccount_pmu_sb_event(struct perf_event *event)
4854{
4855 if (is_sb_event(event))
4856 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004857}
4858
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004859static void unaccount_event_cpu(struct perf_event *event, int cpu)
4860{
4861 if (event->parent)
4862 return;
4863
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004864 if (is_cgroup_event(event))
4865 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4866}
4867
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004868#ifdef CONFIG_NO_HZ_FULL
4869static DEFINE_SPINLOCK(nr_freq_lock);
4870#endif
4871
4872static void unaccount_freq_event_nohz(void)
4873{
4874#ifdef CONFIG_NO_HZ_FULL
4875 spin_lock(&nr_freq_lock);
4876 if (atomic_dec_and_test(&nr_freq_events))
4877 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4878 spin_unlock(&nr_freq_lock);
4879#endif
4880}
4881
4882static void unaccount_freq_event(void)
4883{
4884 if (tick_nohz_full_enabled())
4885 unaccount_freq_event_nohz();
4886 else
4887 atomic_dec(&nr_freq_events);
4888}
4889
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004890static void unaccount_event(struct perf_event *event)
4891{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004892 bool dec = false;
4893
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004894 if (event->parent)
4895 return;
4896
Kan Lianga5398bf2020-11-30 11:38:40 -08004897 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004898 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004899 if (event->attr.mmap || event->attr.mmap_data)
4900 atomic_dec(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +01004901 if (event->attr.build_id)
4902 atomic_dec(&nr_build_id_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004903 if (event->attr.comm)
4904 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304905 if (event->attr.namespaces)
4906 atomic_dec(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +09004907 if (event->attr.cgroup)
4908 atomic_dec(&nr_cgroup_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004909 if (event->attr.task)
4910 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004911 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004912 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004913 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004914 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004915 atomic_dec(&nr_switch_events);
4916 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004917 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004918 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004919 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004920 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004921 if (event->attr.ksymbol)
4922 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004923 if (event->attr.bpf_event)
4924 atomic_dec(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +03004925 if (event->attr.text_poke)
4926 atomic_dec(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004927
Peter Zijlstra9107c892016-02-24 18:45:45 +01004928 if (dec) {
4929 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4930 schedule_delayed_work(&perf_sched_work, HZ);
4931 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004932
4933 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004934
4935 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004936}
4937
Peter Zijlstra9107c892016-02-24 18:45:45 +01004938static void perf_sched_delayed(struct work_struct *work)
4939{
4940 mutex_lock(&perf_sched_mutex);
4941 if (atomic_dec_and_test(&perf_sched_count))
4942 static_branch_disable(&perf_sched_events);
4943 mutex_unlock(&perf_sched_mutex);
4944}
4945
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004946/*
4947 * The following implement mutual exclusion of events on "exclusive" pmus
4948 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4949 * at a time, so we disallow creating events that might conflict, namely:
4950 *
4951 * 1) cpu-wide events in the presence of per-task events,
4952 * 2) per-task events in the presence of cpu-wide events,
4953 * 3) two matching events on the same context.
4954 *
4955 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004956 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004957 */
4958static int exclusive_event_init(struct perf_event *event)
4959{
4960 struct pmu *pmu = event->pmu;
4961
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004962 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004963 return 0;
4964
4965 /*
4966 * Prevent co-existence of per-task and cpu-wide events on the
4967 * same exclusive pmu.
4968 *
4969 * Negative pmu::exclusive_cnt means there are cpu-wide
4970 * events on this "exclusive" pmu, positive means there are
4971 * per-task events.
4972 *
4973 * Since this is called in perf_event_alloc() path, event::ctx
4974 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4975 * to mean "per-task event", because unlike other attach states it
4976 * never gets cleared.
4977 */
4978 if (event->attach_state & PERF_ATTACH_TASK) {
4979 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4980 return -EBUSY;
4981 } else {
4982 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4983 return -EBUSY;
4984 }
4985
4986 return 0;
4987}
4988
4989static void exclusive_event_destroy(struct perf_event *event)
4990{
4991 struct pmu *pmu = event->pmu;
4992
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004993 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004994 return;
4995
4996 /* see comment in exclusive_event_init() */
4997 if (event->attach_state & PERF_ATTACH_TASK)
4998 atomic_dec(&pmu->exclusive_cnt);
4999 else
5000 atomic_inc(&pmu->exclusive_cnt);
5001}
5002
5003static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
5004{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03005005 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02005006 (e1->cpu == e2->cpu ||
5007 e1->cpu == -1 ||
5008 e2->cpu == -1))
5009 return true;
5010 return false;
5011}
5012
Alexander Shishkinbed5b252015-01-30 12:31:06 +02005013static bool exclusive_event_installable(struct perf_event *event,
5014 struct perf_event_context *ctx)
5015{
5016 struct perf_event *iter_event;
5017 struct pmu *pmu = event->pmu;
5018
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03005019 lockdep_assert_held(&ctx->mutex);
5020
5021 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02005022 return true;
5023
5024 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
5025 if (exclusive_event_match(iter_event, event))
5026 return false;
5027 }
5028
5029 return true;
5030}
5031
Alexander Shishkin375637b2016-04-27 18:44:46 +03005032static void perf_addr_filters_splice(struct perf_event *event,
5033 struct list_head *head);
5034
Peter Zijlstra683ede42014-05-05 12:11:24 +02005035static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005036{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005037 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005038
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02005039 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005040
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005041 security_perf_event_free(event);
5042
Frederic Weisbecker76369132011-05-19 19:55:04 +02005043 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005044 /*
5045 * Can happen when we close an event with re-directed output.
5046 *
5047 * Since we have a 0 refcount, perf_mmap_close() will skip
5048 * over us; possibly making our ring_buffer_put() the last.
5049 */
5050 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005051 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005052 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005053 }
5054
Stephane Eraniane5d13672011-02-14 11:20:01 +02005055 if (is_cgroup_event(event))
5056 perf_detach_cgroup(event);
5057
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005058 if (!event->parent) {
5059 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
5060 put_callchain_buffers();
5061 }
5062
5063 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03005064 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02005065 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005066
5067 if (event->destroy)
5068 event->destroy(event);
5069
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005070 /*
5071 * Must be after ->destroy(), due to uprobe_perf_close() using
5072 * hw.target.
5073 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09005074 if (event->hw.target)
5075 put_task_struct(event->hw.target);
5076
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005077 /*
5078 * perf_event_free_task() relies on put_ctx() being 'last', in particular
5079 * all task references must be cleaned up.
5080 */
5081 if (event->ctx)
5082 put_ctx(event->ctx);
5083
Alexander Shishkin62a92c82016-06-07 15:44:15 +03005084 exclusive_event_destroy(event);
5085 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01005086
5087 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005088}
5089
Peter Zijlstra683ede42014-05-05 12:11:24 +02005090/*
5091 * Used to free events which have a known refcount of 1, such as in error paths
5092 * where the event isn't exposed yet and inherited events.
5093 */
5094static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005095{
Peter Zijlstra683ede42014-05-05 12:11:24 +02005096 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
5097 "unexpected event refcount: %ld; ptr=%p\n",
5098 atomic_long_read(&event->refcount), event)) {
5099 /* leak to avoid use-after-free */
5100 return;
5101 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005102
Peter Zijlstra683ede42014-05-05 12:11:24 +02005103 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005104}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005105
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005106/*
Jiri Olsaf8697762014-08-01 14:33:01 +02005107 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005108 */
Jiri Olsaf8697762014-08-01 14:33:01 +02005109static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005110{
Peter Zijlstra88821352010-11-09 19:01:43 +01005111 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005112
Peter Zijlstra88821352010-11-09 19:01:43 +01005113 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01005114 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005115 * Matches the smp_store_release() in perf_event_exit_task(). If we
5116 * observe !owner it means the list deletion is complete and we can
5117 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01005118 * owner->perf_event_mutex.
5119 */
Will Deacon506458e2017-10-24 11:22:48 +01005120 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01005121 if (owner) {
5122 /*
5123 * Since delayed_put_task_struct() also drops the last
5124 * task reference we can safely take a new reference
5125 * while holding the rcu_read_lock().
5126 */
5127 get_task_struct(owner);
5128 }
5129 rcu_read_unlock();
5130
5131 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005132 /*
5133 * If we're here through perf_event_exit_task() we're already
5134 * holding ctx->mutex which would be an inversion wrt. the
5135 * normal lock order.
5136 *
5137 * However we can safely take this lock because its the child
5138 * ctx->mutex.
5139 */
5140 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
5141
Peter Zijlstra88821352010-11-09 19:01:43 +01005142 /*
5143 * We have to re-check the event->owner field, if it is cleared
5144 * we raced with perf_event_exit_task(), acquiring the mutex
5145 * ensured they're done, and we can proceed with freeing the
5146 * event.
5147 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005148 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01005149 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01005150 smp_store_release(&event->owner, NULL);
5151 }
Peter Zijlstra88821352010-11-09 19:01:43 +01005152 mutex_unlock(&owner->perf_event_mutex);
5153 put_task_struct(owner);
5154 }
Jiri Olsaf8697762014-08-01 14:33:01 +02005155}
5156
Jiri Olsaf8697762014-08-01 14:33:01 +02005157static void put_event(struct perf_event *event)
5158{
Jiri Olsaf8697762014-08-01 14:33:01 +02005159 if (!atomic_long_dec_and_test(&event->refcount))
5160 return;
5161
Peter Zijlstra683ede42014-05-05 12:11:24 +02005162 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01005163}
5164
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005165/*
5166 * Kill an event dead; while event:refcount will preserve the event
5167 * object, it will not preserve its functionality. Once the last 'user'
5168 * gives up the object, we'll destroy the thing.
5169 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005170int perf_event_release_kernel(struct perf_event *event)
5171{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005172 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005173 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01005174 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005175
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005176 /*
5177 * If we got here through err_file: fput(event_file); we will not have
5178 * attached to a context yet.
5179 */
5180 if (!ctx) {
5181 WARN_ON_ONCE(event->attach_state &
5182 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
5183 goto no_ctx;
5184 }
5185
Peter Zijlstra88821352010-11-09 19:01:43 +01005186 if (!is_kernel_event(event))
5187 perf_remove_from_owner(event);
5188
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01005189 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02005190 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005191 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01005192
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005193 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005194 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01005195 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005196 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005197 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005198 * Anybody acquiring event->child_mutex after the below loop _must_
5199 * also see this, most importantly inherit_event() which will avoid
5200 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005201 *
5202 * Thus this guarantees that we will in fact observe and kill _ALL_
5203 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01005204 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005205 event->state = PERF_EVENT_STATE_DEAD;
5206 raw_spin_unlock_irq(&ctx->lock);
5207
5208 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01005209
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005210again:
5211 mutex_lock(&event->child_mutex);
5212 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01005213
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005214 /*
5215 * Cannot change, child events are not migrated, see the
5216 * comment with perf_event_ctx_lock_nested().
5217 */
Will Deacon506458e2017-10-24 11:22:48 +01005218 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005219 /*
5220 * Since child_mutex nests inside ctx::mutex, we must jump
5221 * through hoops. We start by grabbing a reference on the ctx.
5222 *
5223 * Since the event cannot get freed while we hold the
5224 * child_mutex, the context must also exist and have a !0
5225 * reference count.
5226 */
5227 get_ctx(ctx);
5228
5229 /*
5230 * Now that we have a ctx ref, we can drop child_mutex, and
5231 * acquire ctx::mutex without fear of it going away. Then we
5232 * can re-acquire child_mutex.
5233 */
5234 mutex_unlock(&event->child_mutex);
5235 mutex_lock(&ctx->mutex);
5236 mutex_lock(&event->child_mutex);
5237
5238 /*
5239 * Now that we hold ctx::mutex and child_mutex, revalidate our
5240 * state, if child is still the first entry, it didn't get freed
5241 * and we can continue doing so.
5242 */
5243 tmp = list_first_entry_or_null(&event->child_list,
5244 struct perf_event, child_list);
5245 if (tmp == child) {
5246 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005247 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005248 /*
5249 * This matches the refcount bump in inherit_event();
5250 * this can't be the last reference.
5251 */
5252 put_event(event);
5253 }
5254
5255 mutex_unlock(&event->child_mutex);
5256 mutex_unlock(&ctx->mutex);
5257 put_ctx(ctx);
5258 goto again;
5259 }
5260 mutex_unlock(&event->child_mutex);
5261
Peter Zijlstra82d94852018-01-09 13:10:30 +01005262 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005263 void *var = &child->ctx->refcount;
5264
Peter Zijlstra82d94852018-01-09 13:10:30 +01005265 list_del(&child->child_list);
5266 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02005267
5268 /*
5269 * Wake any perf_event_free_task() waiting for this event to be
5270 * freed.
5271 */
5272 smp_mb(); /* pairs with wait_var_event() */
5273 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01005274 }
5275
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01005276no_ctx:
5277 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02005278 return 0;
5279}
5280EXPORT_SYMBOL_GPL(perf_event_release_kernel);
5281
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02005282/*
5283 * Called when the last reference to the file is gone.
5284 */
Al Viroa6fa9412012-08-20 14:59:25 +01005285static int perf_release(struct inode *inode, struct file *file)
5286{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02005287 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01005288 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01005289}
5290
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005291static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005292{
5293 struct perf_event *child;
5294 u64 total = 0;
5295
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005296 *enabled = 0;
5297 *running = 0;
5298
Peter Zijlstra6f105812009-11-20 22:19:56 +01005299 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005300
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005301 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005302 total += perf_event_count(event);
5303
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005304 *enabled += event->total_time_enabled +
5305 atomic64_read(&event->child_total_time_enabled);
5306 *running += event->total_time_running +
5307 atomic64_read(&event->child_total_time_running);
5308
5309 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005310 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005311 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005312 *enabled += child->total_time_enabled;
5313 *running += child->total_time_running;
5314 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01005315 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005316
5317 return total;
5318}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005319
5320u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5321{
5322 struct perf_event_context *ctx;
5323 u64 count;
5324
5325 ctx = perf_event_ctx_lock(event);
5326 count = __perf_event_read_value(event, enabled, running);
5327 perf_event_ctx_unlock(event, ctx);
5328
5329 return count;
5330}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005331EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005332
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005333static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005334 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005335{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005336 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005337 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005338 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005339 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005340 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01005341
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005342 ret = perf_event_read(leader, true);
5343 if (ret)
5344 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005345
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02005346 raw_spin_lock_irqsave(&ctx->lock, flags);
5347
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005348 /*
5349 * Since we co-schedule groups, {enabled,running} times of siblings
5350 * will be identical to those of the leader, so we only publish one
5351 * set.
5352 */
5353 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5354 values[n++] += leader->total_time_enabled +
5355 atomic64_read(&leader->child_total_time_enabled);
5356 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005357
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005358 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5359 values[n++] += leader->total_time_running +
5360 atomic64_read(&leader->child_total_time_running);
5361 }
5362
5363 /*
5364 * Write {count,id} tuples for every sibling.
5365 */
5366 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005367 if (read_format & PERF_FORMAT_ID)
5368 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005369
Peter Zijlstraedb39592018-03-15 17:36:56 +01005370 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005371 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005372 if (read_format & PERF_FORMAT_ID)
5373 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005374 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005375
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005376 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005377 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005378}
5379
5380static int perf_read_group(struct perf_event *event,
5381 u64 read_format, char __user *buf)
5382{
5383 struct perf_event *leader = event->group_leader, *child;
5384 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005385 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005386 u64 *values;
5387
5388 lockdep_assert_held(&ctx->mutex);
5389
5390 values = kzalloc(event->read_size, GFP_KERNEL);
5391 if (!values)
5392 return -ENOMEM;
5393
5394 values[0] = 1 + leader->nr_siblings;
5395
5396 /*
5397 * By locking the child_mutex of the leader we effectively
5398 * lock the child list of all siblings.. XXX explain how.
5399 */
5400 mutex_lock(&leader->child_mutex);
5401
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005402 ret = __perf_read_group_add(leader, read_format, values);
5403 if (ret)
5404 goto unlock;
5405
5406 list_for_each_entry(child, &leader->child_list, child_list) {
5407 ret = __perf_read_group_add(child, read_format, values);
5408 if (ret)
5409 goto unlock;
5410 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005411
5412 mutex_unlock(&leader->child_mutex);
5413
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005414 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005415 if (copy_to_user(buf, values, event->read_size))
5416 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005417 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005418
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005419unlock:
5420 mutex_unlock(&leader->child_mutex);
5421out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005422 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005423 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005424}
5425
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005426static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005427 u64 read_format, char __user *buf)
5428{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005429 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430 u64 values[4];
5431 int n = 0;
5432
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005433 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005434 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5435 values[n++] = enabled;
5436 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5437 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005438 if (read_format & PERF_FORMAT_ID)
5439 values[n++] = primary_event_id(event);
5440
5441 if (copy_to_user(buf, values, n * sizeof(u64)))
5442 return -EFAULT;
5443
5444 return n * sizeof(u64);
5445}
5446
Jiri Olsadc633982014-09-12 13:18:26 +02005447static bool is_event_hup(struct perf_event *event)
5448{
5449 bool no_children;
5450
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005451 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005452 return false;
5453
5454 mutex_lock(&event->child_mutex);
5455 no_children = list_empty(&event->child_list);
5456 mutex_unlock(&event->child_mutex);
5457 return no_children;
5458}
5459
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005460/*
5461 * Read the performance event - simple non blocking version for now
5462 */
5463static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005464__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005465{
5466 u64 read_format = event->attr.read_format;
5467 int ret;
5468
5469 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005470 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005471 * error state (i.e. because it was pinned but it couldn't be
5472 * scheduled on to the CPU at some point).
5473 */
5474 if (event->state == PERF_EVENT_STATE_ERROR)
5475 return 0;
5476
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005477 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005478 return -ENOSPC;
5479
5480 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005481 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005482 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005483 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005484 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005485
5486 return ret;
5487}
5488
5489static ssize_t
5490perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5491{
5492 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005493 struct perf_event_context *ctx;
5494 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005495
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005496 ret = security_perf_event_read(event);
5497 if (ret)
5498 return ret;
5499
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005500 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005501 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005502 perf_event_ctx_unlock(event, ctx);
5503
5504 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005505}
5506
Al Viro9dd95742017-07-03 00:42:43 -04005507static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005508{
5509 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005510 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005511 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005512
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005513 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005514
Jiri Olsadc633982014-09-12 13:18:26 +02005515 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005516 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005517
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005518 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005519 * Pin the event->rb by taking event->mmap_mutex; otherwise
5520 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005521 */
5522 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005523 rb = event->rb;
5524 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005525 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005526 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005527 return events;
5528}
5529
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005530static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005531{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005532 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005533 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005534 perf_event_update_userpage(event);
5535}
5536
Like Xu52ba4b02019-10-27 18:52:39 +08005537/* Assume it's not an event with inherit set. */
5538u64 perf_event_pause(struct perf_event *event, bool reset)
5539{
5540 struct perf_event_context *ctx;
5541 u64 count;
5542
5543 ctx = perf_event_ctx_lock(event);
5544 WARN_ON_ONCE(event->attr.inherit);
5545 _perf_event_disable(event);
5546 count = local64_read(&event->count);
5547 if (reset)
5548 local64_set(&event->count, 0);
5549 perf_event_ctx_unlock(event, ctx);
5550
5551 return count;
5552}
5553EXPORT_SYMBOL_GPL(perf_event_pause);
5554
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005555/*
5556 * Holding the top-level event's child_mutex means that any
5557 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005558 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005559 * task existence requirements of perf_event_enable/disable.
5560 */
5561static void perf_event_for_each_child(struct perf_event *event,
5562 void (*func)(struct perf_event *))
5563{
5564 struct perf_event *child;
5565
5566 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005568 mutex_lock(&event->child_mutex);
5569 func(event);
5570 list_for_each_entry(child, &event->child_list, child_list)
5571 func(child);
5572 mutex_unlock(&event->child_mutex);
5573}
5574
5575static void perf_event_for_each(struct perf_event *event,
5576 void (*func)(struct perf_event *))
5577{
5578 struct perf_event_context *ctx = event->ctx;
5579 struct perf_event *sibling;
5580
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005581 lockdep_assert_held(&ctx->mutex);
5582
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583 event = event->group_leader;
5584
5585 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005586 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005587 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005588}
5589
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005590static void __perf_event_period(struct perf_event *event,
5591 struct perf_cpu_context *cpuctx,
5592 struct perf_event_context *ctx,
5593 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005594{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005595 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005596 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005598 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005599 event->attr.sample_freq = value;
5600 } else {
5601 event->attr.sample_period = value;
5602 event->hw.sample_period = value;
5603 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005604
5605 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5606 if (active) {
5607 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005608 /*
5609 * We could be throttled; unthrottle now to avoid the tick
5610 * trying to unthrottle while we already re-started the event.
5611 */
5612 if (event->hw.interrupts == MAX_INTERRUPTS) {
5613 event->hw.interrupts = 0;
5614 perf_log_throttle(event, 1);
5615 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005616 event->pmu->stop(event, PERF_EF_UPDATE);
5617 }
5618
5619 local64_set(&event->hw.period_left, 0);
5620
5621 if (active) {
5622 event->pmu->start(event, PERF_EF_RELOAD);
5623 perf_pmu_enable(ctx->pmu);
5624 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005625}
5626
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005627static int perf_event_check_period(struct perf_event *event, u64 value)
5628{
5629 return event->pmu->check_period(event, value);
5630}
5631
Like Xu3ca270f2019-10-27 18:52:38 +08005632static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005633{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005634 if (!is_sampling_event(event))
5635 return -EINVAL;
5636
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005637 if (!value)
5638 return -EINVAL;
5639
5640 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5641 return -EINVAL;
5642
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005643 if (perf_event_check_period(event, value))
5644 return -EINVAL;
5645
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305646 if (!event->attr.freq && (value & (1ULL << 63)))
5647 return -EINVAL;
5648
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005649 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005650
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005651 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005652}
5653
Like Xu3ca270f2019-10-27 18:52:38 +08005654int perf_event_period(struct perf_event *event, u64 value)
5655{
5656 struct perf_event_context *ctx;
5657 int ret;
5658
5659 ctx = perf_event_ctx_lock(event);
5660 ret = _perf_event_period(event, value);
5661 perf_event_ctx_unlock(event, ctx);
5662
5663 return ret;
5664}
5665EXPORT_SYMBOL_GPL(perf_event_period);
5666
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005667static const struct file_operations perf_fops;
5668
Al Viro2903ff02012-08-28 12:52:22 -04005669static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005670{
Al Viro2903ff02012-08-28 12:52:22 -04005671 struct fd f = fdget(fd);
5672 if (!f.file)
5673 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005674
Al Viro2903ff02012-08-28 12:52:22 -04005675 if (f.file->f_op != &perf_fops) {
5676 fdput(f);
5677 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005678 }
Al Viro2903ff02012-08-28 12:52:22 -04005679 *p = f;
5680 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005681}
5682
5683static int perf_event_set_output(struct perf_event *event,
5684 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005685static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005686static int perf_copy_attr(struct perf_event_attr __user *uattr,
5687 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005688
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005689static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005690{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005691 void (*func)(struct perf_event *);
5692 u32 flags = arg;
5693
5694 switch (cmd) {
5695 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005696 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005697 break;
5698 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005699 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005700 break;
5701 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005702 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005703 break;
5704
5705 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005706 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707
5708 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005709 {
5710 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005711
Like Xu3ca270f2019-10-27 18:52:38 +08005712 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5713 return -EFAULT;
5714
5715 return _perf_event_period(event, value);
5716 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005717 case PERF_EVENT_IOC_ID:
5718 {
5719 u64 id = primary_event_id(event);
5720
5721 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5722 return -EFAULT;
5723 return 0;
5724 }
5725
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005726 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005727 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005728 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005729 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005730 struct perf_event *output_event;
5731 struct fd output;
5732 ret = perf_fget_light(arg, &output);
5733 if (ret)
5734 return ret;
5735 output_event = output.file->private_data;
5736 ret = perf_event_set_output(event, output_event);
5737 fdput(output);
5738 } else {
5739 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005740 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005741 return ret;
5742 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005743
Li Zefan6fb29152009-10-15 11:21:42 +08005744 case PERF_EVENT_IOC_SET_FILTER:
5745 return perf_event_set_filter(event, (void __user *)arg);
5746
Alexei Starovoitov25415172015-03-25 12:49:20 -07005747 case PERF_EVENT_IOC_SET_BPF:
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005748 {
5749 struct bpf_prog *prog;
5750 int err;
5751
5752 prog = bpf_prog_get(arg);
5753 if (IS_ERR(prog))
5754 return PTR_ERR(prog);
5755
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07005756 err = perf_event_set_bpf_prog(event, prog, 0);
Andrii Nakryiko652c1b12021-08-15 00:05:56 -07005757 if (err) {
5758 bpf_prog_put(prog);
5759 return err;
5760 }
5761
5762 return 0;
5763 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07005764
Wang Nan86e79722016-03-28 06:41:29 +00005765 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005766 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005767
5768 rcu_read_lock();
5769 rb = rcu_dereference(event->rb);
5770 if (!rb || !rb->nr_pages) {
5771 rcu_read_unlock();
5772 return -EINVAL;
5773 }
5774 rb_toggle_paused(rb, !!arg);
5775 rcu_read_unlock();
5776 return 0;
5777 }
Yonghong Songf371b302017-12-11 11:39:02 -08005778
5779 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005780 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005781
5782 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5783 struct perf_event_attr new_attr;
5784 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5785 &new_attr);
5786
5787 if (err)
5788 return err;
5789
5790 return perf_event_modify_attr(event, &new_attr);
5791 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005792 default:
5793 return -ENOTTY;
5794 }
5795
5796 if (flags & PERF_IOC_FLAG_GROUP)
5797 perf_event_for_each(event, func);
5798 else
5799 perf_event_for_each_child(event, func);
5800
5801 return 0;
5802}
5803
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005804static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5805{
5806 struct perf_event *event = file->private_data;
5807 struct perf_event_context *ctx;
5808 long ret;
5809
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005810 /* Treat ioctl like writes as it is likely a mutating operation. */
5811 ret = security_perf_event_write(event);
5812 if (ret)
5813 return ret;
5814
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005815 ctx = perf_event_ctx_lock(event);
5816 ret = _perf_ioctl(event, cmd, arg);
5817 perf_event_ctx_unlock(event, ctx);
5818
5819 return ret;
5820}
5821
Pawel Mollb3f20782014-06-13 16:03:32 +01005822#ifdef CONFIG_COMPAT
5823static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5824 unsigned long arg)
5825{
5826 switch (_IOC_NR(cmd)) {
5827 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5828 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005829 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5830 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005831 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5832 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5833 cmd &= ~IOCSIZE_MASK;
5834 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5835 }
5836 break;
5837 }
5838 return perf_ioctl(file, cmd, arg);
5839}
5840#else
5841# define perf_compat_ioctl NULL
5842#endif
5843
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005844int perf_event_task_enable(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_enable);
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
5860int perf_event_task_disable(void)
5861{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005862 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005863 struct perf_event *event;
5864
5865 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005866 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5867 ctx = perf_event_ctx_lock(event);
5868 perf_event_for_each_child(event, _perf_event_disable);
5869 perf_event_ctx_unlock(event, ctx);
5870 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005871 mutex_unlock(&current->perf_event_mutex);
5872
5873 return 0;
5874}
5875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005876static int perf_event_index(struct perf_event *event)
5877{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005878 if (event->hw.state & PERF_HES_STOPPED)
5879 return 0;
5880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005881 if (event->state != PERF_EVENT_STATE_ACTIVE)
5882 return 0;
5883
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005884 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005885}
5886
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005887static void perf_event_init_userpage(struct perf_event *event)
5888{
5889 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005890 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005891
5892 rcu_read_lock();
5893 rb = rcu_dereference(event->rb);
5894 if (!rb)
5895 goto unlock;
5896
5897 userpg = rb->user_page;
5898
5899 /* Allow new userspace to detect that bit 0 is deprecated */
5900 userpg->cap_bit0_is_deprecated = 1;
5901 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005902 userpg->data_offset = PAGE_SIZE;
5903 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005904
5905unlock:
5906 rcu_read_unlock();
5907}
5908
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005909void __weak arch_perf_update_userpage(
5910 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005911{
5912}
5913
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005914/*
5915 * Callers need to ensure there can be no nesting of this function, otherwise
5916 * the seqlock logic goes bad. We can not serialize this because the arch
5917 * code calls this from NMI context.
5918 */
5919void perf_event_update_userpage(struct perf_event *event)
5920{
5921 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005922 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005923 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005924
5925 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005926 rb = rcu_dereference(event->rb);
5927 if (!rb)
5928 goto unlock;
5929
Eric B Munson0d641202011-06-24 12:26:26 -04005930 /*
5931 * compute total_time_enabled, total_time_running
5932 * based on snapshot values taken when the event
5933 * was last scheduled in.
5934 *
5935 * we cannot simply called update_context_time()
5936 * because of locking issue as we can be called in
5937 * NMI context
5938 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005939 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005940
Frederic Weisbecker76369132011-05-19 19:55:04 +02005941 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005942 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005943 * Disable preemption to guarantee consistent time stamps are stored to
5944 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005945 */
5946 preempt_disable();
5947 ++userpg->lock;
5948 barrier();
5949 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005950 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005951 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005952 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005953
Eric B Munson0d641202011-06-24 12:26:26 -04005954 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005955 atomic64_read(&event->child_total_time_enabled);
5956
Eric B Munson0d641202011-06-24 12:26:26 -04005957 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005958 atomic64_read(&event->child_total_time_running);
5959
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005960 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005962 barrier();
5963 ++userpg->lock;
5964 preempt_enable();
5965unlock:
5966 rcu_read_unlock();
5967}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005968EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005969
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305970static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005971{
Dave Jiang11bac802017-02-24 14:56:41 -08005972 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005973 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305974 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005975
5976 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5977 if (vmf->pgoff == 0)
5978 ret = 0;
5979 return ret;
5980 }
5981
5982 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005983 rb = rcu_dereference(event->rb);
5984 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005985 goto unlock;
5986
5987 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5988 goto unlock;
5989
Frederic Weisbecker76369132011-05-19 19:55:04 +02005990 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005991 if (!vmf->page)
5992 goto unlock;
5993
5994 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005995 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005996 vmf->page->index = vmf->pgoff;
5997
5998 ret = 0;
5999unlock:
6000 rcu_read_unlock();
6001
6002 return ret;
6003}
6004
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006005static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006006 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006007{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006008 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006009 unsigned long flags;
6010
James Clark961c3912021-12-06 11:38:40 +00006011 WARN_ON_ONCE(event->parent);
6012
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006013 if (event->rb) {
6014 /*
6015 * Should be impossible, we set this when removing
6016 * event->rb_entry and wait/clear when adding event->rb_entry.
6017 */
6018 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006019
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006020 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006021 spin_lock_irqsave(&old_rb->event_lock, flags);
6022 list_del_rcu(&event->rb_entry);
6023 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006024
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02006025 event->rcu_batches = get_state_synchronize_rcu();
6026 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006027 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006028
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006029 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02006030 if (event->rcu_pending) {
6031 cond_synchronize_rcu(event->rcu_batches);
6032 event->rcu_pending = 0;
6033 }
6034
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006035 spin_lock_irqsave(&rb->event_lock, flags);
6036 list_add_rcu(&event->rb_entry, &rb->event_list);
6037 spin_unlock_irqrestore(&rb->event_lock, flags);
6038 }
6039
Alexander Shishkin767ae082016-09-06 16:23:49 +03006040 /*
6041 * Avoid racing with perf_mmap_close(AUX): stop the event
6042 * before swizzling the event::rb pointer; if it's getting
6043 * unmapped, its aux_mmap_count will be 0 and it won't
6044 * restart. See the comment in __perf_pmu_output_stop().
6045 *
6046 * Data will inevitably be lost when set_output is done in
6047 * mid-air, but then again, whoever does it like this is
6048 * not in for the data anyway.
6049 */
6050 if (has_aux(event))
6051 perf_event_stop(event, 0);
6052
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006053 rcu_assign_pointer(event->rb, rb);
6054
6055 if (old_rb) {
6056 ring_buffer_put(old_rb);
6057 /*
6058 * Since we detached before setting the new rb, so that we
6059 * could attach the new rb, we could have missed a wakeup.
6060 * Provide it now.
6061 */
6062 wake_up_all(&event->waitq);
6063 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006064}
6065
6066static void ring_buffer_wakeup(struct perf_event *event)
6067{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006068 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006069
James Clark961c3912021-12-06 11:38:40 +00006070 if (event->parent)
6071 event = event->parent;
6072
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006073 rcu_read_lock();
6074 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006075 if (rb) {
6076 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
6077 wake_up_all(&event->waitq);
6078 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006079 rcu_read_unlock();
6080}
6081
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006082struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006083{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006084 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006085
James Clark961c3912021-12-06 11:38:40 +00006086 if (event->parent)
6087 event = event->parent;
6088
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006089 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02006090 rb = rcu_dereference(event->rb);
6091 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006092 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02006093 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006094 }
6095 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006096
Frederic Weisbecker76369132011-05-19 19:55:04 +02006097 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006098}
6099
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006100void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006101{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02006102 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006103 return;
6104
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006105 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006106
Frederic Weisbecker76369132011-05-19 19:55:04 +02006107 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006108}
6109
6110static void perf_mmap_open(struct vm_area_struct *vma)
6111{
6112 struct perf_event *event = vma->vm_file->private_data;
6113
6114 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006115 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006116
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006117 if (vma->vm_pgoff)
6118 atomic_inc(&event->rb->aux_mmap_count);
6119
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006120 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006121 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006122}
6123
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006124static void perf_pmu_output_stop(struct perf_event *event);
6125
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006126/*
6127 * A buffer can be mmap()ed multiple times; either directly through the same
6128 * event, or through other events by use of perf_event_set_output().
6129 *
6130 * In order to undo the VM accounting done by perf_mmap() we need to destroy
6131 * the buffer here, where we still have a VM context. This means we need
6132 * to detach all events redirecting to us.
6133 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006134static void perf_mmap_close(struct vm_area_struct *vma)
6135{
6136 struct perf_event *event = vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006137 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006138 struct user_struct *mmap_user = rb->mmap_user;
6139 int mmap_locked = rb->mmap_locked;
6140 unsigned long size = perf_data_size(rb);
Jiri Olsaf91072e2020-09-16 13:53:11 +02006141 bool detach_rest = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006142
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006143 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006144 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006145
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006146 /*
6147 * rb->aux_mmap_count will always drop before rb->mmap_count and
6148 * event->mmap_count, so it is ok to use event->mmap_mutex to
6149 * serialize with perf_mmap here.
6150 */
6151 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
6152 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006153 /*
6154 * Stop all AUX events that are writing to this buffer,
6155 * so that we can free its AUX pages and corresponding PMU
6156 * data. Note that after rb::aux_mmap_count dropped to zero,
6157 * they won't start any more (see perf_aux_output_begin()).
6158 */
6159 perf_pmu_output_stop(event);
6160
6161 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02006162 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
6163 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006164
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006165 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006166 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02006167 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006168
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006169 mutex_unlock(&event->mmap_mutex);
6170 }
6171
Jiri Olsaf91072e2020-09-16 13:53:11 +02006172 if (atomic_dec_and_test(&rb->mmap_count))
6173 detach_rest = true;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006174
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006175 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006176 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006177
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006178 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006179 mutex_unlock(&event->mmap_mutex);
6180
6181 /* If there's still other mmap()s of this buffer, we're done. */
Jiri Olsaf91072e2020-09-16 13:53:11 +02006182 if (!detach_rest)
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006183 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006184
6185 /*
6186 * No other mmap()s, detach from all other events that might redirect
6187 * into the now unreachable buffer. Somewhat complicated by the
6188 * fact that rb::event_lock otherwise nests inside mmap_mutex.
6189 */
6190again:
6191 rcu_read_lock();
6192 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
6193 if (!atomic_long_inc_not_zero(&event->refcount)) {
6194 /*
6195 * This event is en-route to free_event() which will
6196 * detach it and remove it from the list.
6197 */
6198 continue;
6199 }
6200 rcu_read_unlock();
6201
6202 mutex_lock(&event->mmap_mutex);
6203 /*
6204 * Check we didn't race with perf_event_set_output() which can
6205 * swizzle the rb from under us while we were waiting to
6206 * acquire mmap_mutex.
6207 *
6208 * If we find a different rb; ignore this event, a next
6209 * iteration will no longer find it on the list. We have to
6210 * still restart the iteration to make sure we're not now
6211 * iterating the wrong list.
6212 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006213 if (event->rb == rb)
6214 ring_buffer_attach(event, NULL);
6215
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006216 mutex_unlock(&event->mmap_mutex);
6217 put_event(event);
6218
6219 /*
6220 * Restart the iteration; either we're on the wrong list or
6221 * destroyed its integrity by doing a deletion.
6222 */
6223 goto again;
6224 }
6225 rcu_read_unlock();
6226
6227 /*
6228 * It could be there's still a few 0-ref events on the list; they'll
6229 * get cleaned up by free_event() -- they'll also still have their
6230 * ref on the rb and will free it whenever they are done with it.
6231 *
6232 * Aside from that, this buffer is 'fully' detached and unmapped,
6233 * undo the VM accounting.
6234 */
6235
Song Liud44248a2019-09-04 14:46:18 -07006236 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
6237 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006238 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006239 free_uid(mmap_user);
6240
Peter Zijlstrab69cf532014-03-14 10:50:33 +01006241out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006242 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006243}
6244
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04006245static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006246 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01006247 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006248 .fault = perf_mmap_fault,
6249 .page_mkwrite = perf_mmap_fault,
6250};
6251
6252static int perf_mmap(struct file *file, struct vm_area_struct *vma)
6253{
6254 struct perf_event *event = file->private_data;
6255 unsigned long user_locked, user_lock_limit;
6256 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006257 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006258 unsigned long locked, lock_limit;
6259 unsigned long vma_size;
6260 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006261 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006262 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006263
Peter Zijlstrac7920612010-05-18 10:33:24 +02006264 /*
6265 * Don't allow mmap() of inherited per-task counters. This would
6266 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02006267 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02006268 */
6269 if (event->cpu == -1 && event->attr.inherit)
6270 return -EINVAL;
6271
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006272 if (!(vma->vm_flags & VM_SHARED))
6273 return -EINVAL;
6274
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006275 ret = security_perf_event_read(event);
6276 if (ret)
6277 return ret;
6278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006279 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006280
6281 if (vma->vm_pgoff == 0) {
6282 nr_pages = (vma_size / PAGE_SIZE) - 1;
6283 } else {
6284 /*
6285 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
6286 * mapped, all subsequent mappings should have the same size
6287 * and offset. Must be above the normal perf buffer.
6288 */
6289 u64 aux_offset, aux_size;
6290
6291 if (!event->rb)
6292 return -EINVAL;
6293
6294 nr_pages = vma_size / PAGE_SIZE;
6295
6296 mutex_lock(&event->mmap_mutex);
6297 ret = -EINVAL;
6298
6299 rb = event->rb;
6300 if (!rb)
6301 goto aux_unlock;
6302
Mark Rutland6aa7de02017-10-23 14:07:29 -07006303 aux_offset = READ_ONCE(rb->user_page->aux_offset);
6304 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006305
6306 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
6307 goto aux_unlock;
6308
6309 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
6310 goto aux_unlock;
6311
6312 /* already mapped with a different offset */
6313 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
6314 goto aux_unlock;
6315
6316 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
6317 goto aux_unlock;
6318
6319 /* already mapped with a different size */
6320 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6321 goto aux_unlock;
6322
6323 if (!is_power_of_2(nr_pages))
6324 goto aux_unlock;
6325
6326 if (!atomic_inc_not_zero(&rb->mmap_count))
6327 goto aux_unlock;
6328
6329 if (rb_has_aux(rb)) {
6330 atomic_inc(&rb->aux_mmap_count);
6331 ret = 0;
6332 goto unlock;
6333 }
6334
6335 atomic_set(&rb->aux_mmap_count, 1);
6336 user_extra = nr_pages;
6337
6338 goto accounting;
6339 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006340
6341 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006342 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006343 * can do bitmasks instead of modulo.
6344 */
Kan Liang2ed11312015-03-02 02:14:26 -05006345 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006346 return -EINVAL;
6347
6348 if (vma_size != PAGE_SIZE * (1 + nr_pages))
6349 return -EINVAL;
6350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006351 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006352again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006353 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006354 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006355 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006356 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006357 goto unlock;
6358 }
6359
6360 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6361 /*
6362 * Raced against perf_mmap_close() through
6363 * perf_event_set_output(). Try again, hope for better
6364 * luck.
6365 */
6366 mutex_unlock(&event->mmap_mutex);
6367 goto again;
6368 }
6369
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006370 goto unlock;
6371 }
6372
6373 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006374
6375accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
6377
6378 /*
6379 * Increase the limit linearly with more CPUs:
6380 */
6381 user_lock_limit *= num_online_cpus();
6382
Song Liu00346152020-01-23 10:11:46 -08006383 user_locked = atomic_long_read(&user->locked_vm);
6384
6385 /*
6386 * sysctl_perf_event_mlock may have changed, so that
6387 * user->locked_vm > user_lock_limit
6388 */
6389 if (user_locked > user_lock_limit)
6390 user_locked = user_lock_limit;
6391 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392
Alexander Shishkinc4b75472019-11-20 19:06:40 +02006393 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07006394 /*
6395 * charge locked_vm until it hits user_lock_limit;
6396 * charge the rest from pinned_vm
6397 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006398 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07006399 user_extra -= extra;
6400 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006401
Jiri Slaby78d7d402010-03-05 13:42:54 -08006402 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006403 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006404 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006405
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006406 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006407 !capable(CAP_IPC_LOCK)) {
6408 ret = -EPERM;
6409 goto unlock;
6410 }
6411
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006412 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02006413
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006414 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02006415 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006416
Frederic Weisbecker76369132011-05-19 19:55:04 +02006417 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006418 rb = rb_alloc(nr_pages,
6419 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6420 event->cpu, flags);
6421
6422 if (!rb) {
6423 ret = -ENOMEM;
6424 goto unlock;
6425 }
6426
6427 atomic_set(&rb->mmap_count, 1);
6428 rb->mmap_user = get_current_user();
6429 rb->mmap_locked = extra;
6430
6431 ring_buffer_attach(event, rb);
6432
Song Liuf7925652021-09-29 12:43:13 -07006433 perf_event_update_time(event);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006434 perf_event_init_userpage(event);
6435 perf_event_update_userpage(event);
6436 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02006437 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6438 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006439 if (!ret)
6440 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006441 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006443unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006444 if (!ret) {
6445 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006446 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006447
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006448 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006449 } else if (rb) {
6450 atomic_dec(&rb->mmap_count);
6451 }
6452aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006453 mutex_unlock(&event->mmap_mutex);
6454
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006455 /*
6456 * Since pinned accounting is per vm we cannot allow fork() to copy our
6457 * vma.
6458 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006459 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006460 vma->vm_ops = &perf_mmap_vmops;
6461
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006462 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006463 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006464
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006465 return ret;
6466}
6467
6468static int perf_fasync(int fd, struct file *filp, int on)
6469{
Al Viro496ad9a2013-01-23 17:07:38 -05006470 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006471 struct perf_event *event = filp->private_data;
6472 int retval;
6473
Al Viro59551022016-01-22 15:40:57 -05006474 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006475 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006476 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006477
6478 if (retval < 0)
6479 return retval;
6480
6481 return 0;
6482}
6483
6484static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006485 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006486 .release = perf_release,
6487 .read = perf_read,
6488 .poll = perf_poll,
6489 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006490 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006491 .mmap = perf_mmap,
6492 .fasync = perf_fasync,
6493};
6494
6495/*
6496 * Perf event wakeup
6497 *
6498 * If there's data, ensure we set the poll() state and publish everything
6499 * to user-space before waking everybody up.
6500 */
6501
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006502static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6503{
6504 /* only the parent has fasync state */
6505 if (event->parent)
6506 event = event->parent;
6507 return &event->fasync;
6508}
6509
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006510void perf_event_wakeup(struct perf_event *event)
6511{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006512 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006513
6514 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006515 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006516 event->pending_kill = 0;
6517 }
6518}
6519
Marco Elver97ba62b2021-04-08 12:36:01 +02006520static void perf_sigtrap(struct perf_event *event)
6521{
Marco Elver97ba62b2021-04-08 12:36:01 +02006522 /*
6523 * We'd expect this to only occur if the irq_work is delayed and either
6524 * ctx->task or current has changed in the meantime. This can be the
6525 * case on architectures that do not implement arch_irq_work_raise().
6526 */
6527 if (WARN_ON_ONCE(event->ctx->task != current))
6528 return;
6529
6530 /*
6531 * perf_pending_event() can race with the task exiting.
6532 */
6533 if (current->flags & PF_EXITING)
6534 return;
6535
Eric W. Biedermanaf5eeab2021-05-02 14:27:24 -05006536 force_sig_perf((void __user *)event->pending_addr,
6537 event->attr.type, event->attr.sig_data);
Marco Elver97ba62b2021-04-08 12:36:01 +02006538}
6539
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006540static void perf_pending_event_disable(struct perf_event *event)
6541{
6542 int cpu = READ_ONCE(event->pending_disable);
6543
6544 if (cpu < 0)
6545 return;
6546
6547 if (cpu == smp_processor_id()) {
6548 WRITE_ONCE(event->pending_disable, -1);
Marco Elver97ba62b2021-04-08 12:36:01 +02006549
6550 if (event->attr.sigtrap) {
6551 perf_sigtrap(event);
6552 atomic_set_release(&event->event_limit, 1); /* rearm event */
6553 return;
6554 }
6555
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006556 perf_event_disable_local(event);
6557 return;
6558 }
6559
6560 /*
6561 * CPU-A CPU-B
6562 *
6563 * perf_event_disable_inatomic()
6564 * @pending_disable = CPU-A;
6565 * irq_work_queue();
6566 *
6567 * sched-out
6568 * @pending_disable = -1;
6569 *
6570 * sched-in
6571 * perf_event_disable_inatomic()
6572 * @pending_disable = CPU-B;
6573 * irq_work_queue(); // FAILS
6574 *
6575 * irq_work_run()
6576 * perf_pending_event()
6577 *
6578 * But the event runs on CPU-B and wants disabling there.
6579 */
6580 irq_work_queue_on(&event->pending, cpu);
6581}
6582
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006583static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006584{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006585 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006586 int rctx;
6587
6588 rctx = perf_swevent_get_recursion_context();
6589 /*
6590 * If we 'fail' here, that's OK, it means recursion is already disabled
6591 * and we won't recurse 'further'.
6592 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006593
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006594 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595
6596 if (event->pending_wakeup) {
6597 event->pending_wakeup = 0;
6598 perf_event_wakeup(event);
6599 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006600
6601 if (rctx >= 0)
6602 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006603}
6604
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006605#ifdef CONFIG_GUEST_PERF_EVENTS
Sean Christophersonff083a22021-11-11 02:07:22 +00006606struct perf_guest_info_callbacks __rcu *perf_guest_cbs;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006607
Sean Christopherson87b940a2021-11-11 02:07:30 +00006608DEFINE_STATIC_CALL_RET0(__perf_guest_state, *perf_guest_cbs->state);
6609DEFINE_STATIC_CALL_RET0(__perf_guest_get_ip, *perf_guest_cbs->get_ip);
6610DEFINE_STATIC_CALL_RET0(__perf_guest_handle_intel_pt_intr, *perf_guest_cbs->handle_intel_pt_intr);
6611
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006612void perf_register_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)))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006615 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006616
6617 rcu_assign_pointer(perf_guest_cbs, cbs);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006618 static_call_update(__perf_guest_state, cbs->state);
6619 static_call_update(__perf_guest_get_ip, cbs->get_ip);
6620
6621 /* Implementing ->handle_intel_pt_intr is optional. */
6622 if (cbs->handle_intel_pt_intr)
6623 static_call_update(__perf_guest_handle_intel_pt_intr,
6624 cbs->handle_intel_pt_intr);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006625}
6626EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6627
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006628void perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006629{
Sean Christophersonff083a22021-11-11 02:07:22 +00006630 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs) != cbs))
Sean Christopherson2934e3d02021-11-11 02:07:25 +00006631 return;
Sean Christophersonff083a22021-11-11 02:07:22 +00006632
6633 rcu_assign_pointer(perf_guest_cbs, NULL);
Sean Christopherson87b940a2021-11-11 02:07:30 +00006634 static_call_update(__perf_guest_state, (void *)&__static_call_return0);
6635 static_call_update(__perf_guest_get_ip, (void *)&__static_call_return0);
6636 static_call_update(__perf_guest_handle_intel_pt_intr,
6637 (void *)&__static_call_return0);
Sean Christophersonff083a22021-11-11 02:07:22 +00006638 synchronize_rcu();
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006639}
6640EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
Sean Christopherson2aef6f32021-11-11 02:07:29 +00006641#endif
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006642
Jiri Olsa40189942012-08-07 15:20:37 +02006643static void
6644perf_output_sample_regs(struct perf_output_handle *handle,
6645 struct pt_regs *regs, u64 mask)
6646{
6647 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306648 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006649
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306650 bitmap_from_u64(_mask, mask);
6651 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006652 u64 val;
6653
6654 val = perf_reg_value(regs, bit);
6655 perf_output_put(handle, val);
6656 }
6657}
6658
Stephane Eranian60e23642014-09-24 13:48:37 +02006659static void perf_sample_regs_user(struct perf_regs *regs_user,
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006660 struct pt_regs *regs)
Jiri Olsa40189942012-08-07 15:20:37 +02006661{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006662 if (user_mode(regs)) {
6663 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006664 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006665 } else if (!(current->flags & PF_KTHREAD)) {
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01006666 perf_get_regs_user(regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02006667 } else {
6668 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6669 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006670 }
6671}
6672
Stephane Eranian60e23642014-09-24 13:48:37 +02006673static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6674 struct pt_regs *regs)
6675{
6676 regs_intr->regs = regs;
6677 regs_intr->abi = perf_reg_abi(current);
6678}
6679
6680
Jiri Olsac5ebced2012-08-07 15:20:40 +02006681/*
6682 * Get remaining task size from user stack pointer.
6683 *
6684 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006685 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006686 * so using TASK_SIZE as limit.
6687 */
6688static u64 perf_ustack_task_size(struct pt_regs *regs)
6689{
6690 unsigned long addr = perf_user_stack_pointer(regs);
6691
6692 if (!addr || addr >= TASK_SIZE)
6693 return 0;
6694
6695 return TASK_SIZE - addr;
6696}
6697
6698static u16
6699perf_sample_ustack_size(u16 stack_size, u16 header_size,
6700 struct pt_regs *regs)
6701{
6702 u64 task_size;
6703
6704 /* No regs, no stack pointer, no dump. */
6705 if (!regs)
6706 return 0;
6707
6708 /*
6709 * Check if we fit in with the requested stack size into the:
6710 * - TASK_SIZE
6711 * If we don't, we limit the size to the TASK_SIZE.
6712 *
6713 * - remaining sample size
6714 * If we don't, we customize the stack size to
6715 * fit in to the remaining sample size.
6716 */
6717
6718 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6719 stack_size = min(stack_size, (u16) task_size);
6720
6721 /* Current header size plus static size and dynamic size. */
6722 header_size += 2 * sizeof(u64);
6723
6724 /* Do we fit in with the current stack dump size? */
6725 if ((u16) (header_size + stack_size) < header_size) {
6726 /*
6727 * If we overflow the maximum size for the sample,
6728 * we customize the stack dump size to fit in.
6729 */
6730 stack_size = USHRT_MAX - header_size - sizeof(u64);
6731 stack_size = round_up(stack_size, sizeof(u64));
6732 }
6733
6734 return stack_size;
6735}
6736
6737static void
6738perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6739 struct pt_regs *regs)
6740{
6741 /* Case of a kernel thread, nothing to dump */
6742 if (!regs) {
6743 u64 size = 0;
6744 perf_output_put(handle, size);
6745 } else {
6746 unsigned long sp;
6747 unsigned int rem;
6748 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006749 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006750
6751 /*
6752 * We dump:
6753 * static size
6754 * - the size requested by user or the best one we can fit
6755 * in to the sample max size
6756 * data
6757 * - user stack dump data
6758 * dynamic size
6759 * - the actual dumped size
6760 */
6761
6762 /* Static size. */
6763 perf_output_put(handle, dump_size);
6764
6765 /* Data. */
6766 sp = perf_user_stack_pointer(regs);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006767 fs = force_uaccess_begin();
Jiri Olsac5ebced2012-08-07 15:20:40 +02006768 rem = __output_copy_user(handle, (void *) sp, dump_size);
Christoph Hellwig3d13f312020-08-11 18:33:47 -07006769 force_uaccess_end(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006770 dyn_size = dump_size - rem;
6771
6772 perf_output_skip(handle, rem);
6773
6774 /* Dynamic size. */
6775 perf_output_put(handle, dyn_size);
6776 }
6777}
6778
Alexander Shishkina4faf002019-10-25 17:08:33 +03006779static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6780 struct perf_sample_data *data,
6781 size_t size)
6782{
6783 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006784 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006785
6786 data->aux_size = 0;
6787
6788 if (!sampler)
6789 goto out;
6790
6791 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6792 goto out;
6793
6794 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6795 goto out;
6796
James Clark961c3912021-12-06 11:38:40 +00006797 rb = ring_buffer_get(sampler);
Alexander Shishkina4faf002019-10-25 17:08:33 +03006798 if (!rb)
6799 goto out;
6800
6801 /*
6802 * If this is an NMI hit inside sampling code, don't take
6803 * the sample. See also perf_aux_sample_output().
6804 */
6805 if (READ_ONCE(rb->aux_in_sampling)) {
6806 data->aux_size = 0;
6807 } else {
6808 size = min_t(size_t, size, perf_aux_size(rb));
6809 data->aux_size = ALIGN(size, sizeof(u64));
6810 }
6811 ring_buffer_put(rb);
6812
6813out:
6814 return data->aux_size;
6815}
6816
Haocheng Xie32961ae2021-05-27 11:19:45 +08006817static long perf_pmu_snapshot_aux(struct perf_buffer *rb,
6818 struct perf_event *event,
6819 struct perf_output_handle *handle,
6820 unsigned long size)
Alexander Shishkina4faf002019-10-25 17:08:33 +03006821{
6822 unsigned long flags;
6823 long ret;
6824
6825 /*
6826 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6827 * paths. If we start calling them in NMI context, they may race with
6828 * the IRQ ones, that is, for example, re-starting an event that's just
6829 * been stopped, which is why we're using a separate callback that
6830 * doesn't change the event state.
6831 *
6832 * IRQs need to be disabled to prevent IPIs from racing with us.
6833 */
6834 local_irq_save(flags);
6835 /*
6836 * Guard against NMI hits inside the critical section;
6837 * see also perf_prepare_sample_aux().
6838 */
6839 WRITE_ONCE(rb->aux_in_sampling, 1);
6840 barrier();
6841
6842 ret = event->pmu->snapshot_aux(event, handle, size);
6843
6844 barrier();
6845 WRITE_ONCE(rb->aux_in_sampling, 0);
6846 local_irq_restore(flags);
6847
6848 return ret;
6849}
6850
6851static void perf_aux_sample_output(struct perf_event *event,
6852 struct perf_output_handle *handle,
6853 struct perf_sample_data *data)
6854{
6855 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006856 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006857 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006858 long size;
6859
6860 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6861 return;
6862
James Clark961c3912021-12-06 11:38:40 +00006863 rb = ring_buffer_get(sampler);
Alexander Shishkina4faf002019-10-25 17:08:33 +03006864 if (!rb)
6865 return;
6866
6867 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6868
6869 /*
6870 * An error here means that perf_output_copy() failed (returned a
6871 * non-zero surplus that it didn't copy), which in its current
6872 * enlightened implementation is not possible. If that changes, we'd
6873 * like to know.
6874 */
6875 if (WARN_ON_ONCE(size < 0))
6876 goto out_put;
6877
6878 /*
6879 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6880 * perf_prepare_sample_aux(), so should not be more than that.
6881 */
6882 pad = data->aux_size - size;
6883 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6884 pad = 8;
6885
6886 if (pad) {
6887 u64 zero = 0;
6888 perf_output_copy(handle, &zero, pad);
6889 }
6890
6891out_put:
6892 ring_buffer_put(rb);
6893}
6894
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006895static void __perf_event_header__init_id(struct perf_event_header *header,
6896 struct perf_sample_data *data,
6897 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006898{
6899 u64 sample_type = event->attr.sample_type;
6900
6901 data->type = sample_type;
6902 header->size += event->id_header_size;
6903
6904 if (sample_type & PERF_SAMPLE_TID) {
6905 /* namespace issues */
6906 data->tid_entry.pid = perf_event_pid(event, current);
6907 data->tid_entry.tid = perf_event_tid(event, current);
6908 }
6909
6910 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006911 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006912
Adrian Hunterff3d5272013-08-27 11:23:07 +03006913 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006914 data->id = primary_event_id(event);
6915
6916 if (sample_type & PERF_SAMPLE_STREAM_ID)
6917 data->stream_id = event->id;
6918
6919 if (sample_type & PERF_SAMPLE_CPU) {
6920 data->cpu_entry.cpu = raw_smp_processor_id();
6921 data->cpu_entry.reserved = 0;
6922 }
6923}
6924
Frederic Weisbecker76369132011-05-19 19:55:04 +02006925void perf_event_header__init_id(struct perf_event_header *header,
6926 struct perf_sample_data *data,
6927 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006928{
6929 if (event->attr.sample_id_all)
6930 __perf_event_header__init_id(header, data, event);
6931}
6932
6933static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6934 struct perf_sample_data *data)
6935{
6936 u64 sample_type = data->type;
6937
6938 if (sample_type & PERF_SAMPLE_TID)
6939 perf_output_put(handle, data->tid_entry);
6940
6941 if (sample_type & PERF_SAMPLE_TIME)
6942 perf_output_put(handle, data->time);
6943
6944 if (sample_type & PERF_SAMPLE_ID)
6945 perf_output_put(handle, data->id);
6946
6947 if (sample_type & PERF_SAMPLE_STREAM_ID)
6948 perf_output_put(handle, data->stream_id);
6949
6950 if (sample_type & PERF_SAMPLE_CPU)
6951 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006952
6953 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6954 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006955}
6956
Frederic Weisbecker76369132011-05-19 19:55:04 +02006957void perf_event__output_id_sample(struct perf_event *event,
6958 struct perf_output_handle *handle,
6959 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006960{
6961 if (event->attr.sample_id_all)
6962 __perf_event__output_id_sample(handle, sample);
6963}
6964
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006965static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006966 struct perf_event *event,
6967 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006968{
6969 u64 read_format = event->attr.read_format;
6970 u64 values[4];
6971 int n = 0;
6972
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006973 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006974 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006975 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006976 atomic64_read(&event->child_total_time_enabled);
6977 }
6978 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006979 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006980 atomic64_read(&event->child_total_time_running);
6981 }
6982 if (read_format & PERF_FORMAT_ID)
6983 values[n++] = primary_event_id(event);
6984
Frederic Weisbecker76369132011-05-19 19:55:04 +02006985 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986}
6987
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006988static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006989 struct perf_event *event,
6990 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006991{
6992 struct perf_event *leader = event->group_leader, *sub;
6993 u64 read_format = event->attr.read_format;
6994 u64 values[5];
6995 int n = 0;
6996
6997 values[n++] = 1 + leader->nr_siblings;
6998
6999 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02007000 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007001
7002 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02007003 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007004
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01007005 if ((leader != event) &&
7006 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007007 leader->pmu->read(leader);
7008
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007009 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007010 if (read_format & PERF_FORMAT_ID)
7011 values[n++] = primary_event_id(leader);
7012
Frederic Weisbecker76369132011-05-19 19:55:04 +02007013 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007014
Peter Zijlstraedb39592018-03-15 17:36:56 +01007015 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007016 n = 0;
7017
Jiri Olsa6f5ab002012-10-15 20:13:45 +02007018 if ((sub != event) &&
7019 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007020 sub->pmu->read(sub);
7021
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007022 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007023 if (read_format & PERF_FORMAT_ID)
7024 values[n++] = primary_event_id(sub);
7025
Frederic Weisbecker76369132011-05-19 19:55:04 +02007026 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007027 }
7028}
7029
Stephane Eranianeed01522010-10-26 16:08:01 +02007030#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
7031 PERF_FORMAT_TOTAL_TIME_RUNNING)
7032
Peter Zijlstraba5213a2017-05-30 11:45:12 +02007033/*
7034 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
7035 *
7036 * The problem is that its both hard and excessively expensive to iterate the
7037 * child list, not to mention that its impossible to IPI the children running
7038 * on another CPU, from interrupt/NMI context.
7039 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007040static void perf_output_read(struct perf_output_handle *handle,
7041 struct perf_event *event)
7042{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01007043 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02007044 u64 read_format = event->attr.read_format;
7045
7046 /*
7047 * compute total_time_enabled, total_time_running
7048 * based on snapshot values taken when the event
7049 * was last scheduled in.
7050 *
7051 * we cannot simply called update_context_time()
7052 * because of locking issue as we are called in
7053 * NMI context
7054 */
Eric B Munsonc4794292011-06-23 16:34:38 -04007055 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01007056 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02007057
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007058 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02007059 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007060 else
Stephane Eranianeed01522010-10-26 16:08:01 +02007061 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007062}
7063
Kan Liangbbfd5e42020-01-27 08:53:54 -08007064static inline bool perf_sample_save_hw_index(struct perf_event *event)
7065{
7066 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
7067}
7068
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007069void perf_output_sample(struct perf_output_handle *handle,
7070 struct perf_event_header *header,
7071 struct perf_sample_data *data,
7072 struct perf_event *event)
7073{
7074 u64 sample_type = data->type;
7075
7076 perf_output_put(handle, *header);
7077
Adrian Hunterff3d5272013-08-27 11:23:07 +03007078 if (sample_type & PERF_SAMPLE_IDENTIFIER)
7079 perf_output_put(handle, data->id);
7080
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007081 if (sample_type & PERF_SAMPLE_IP)
7082 perf_output_put(handle, data->ip);
7083
7084 if (sample_type & PERF_SAMPLE_TID)
7085 perf_output_put(handle, data->tid_entry);
7086
7087 if (sample_type & PERF_SAMPLE_TIME)
7088 perf_output_put(handle, data->time);
7089
7090 if (sample_type & PERF_SAMPLE_ADDR)
7091 perf_output_put(handle, data->addr);
7092
7093 if (sample_type & PERF_SAMPLE_ID)
7094 perf_output_put(handle, data->id);
7095
7096 if (sample_type & PERF_SAMPLE_STREAM_ID)
7097 perf_output_put(handle, data->stream_id);
7098
7099 if (sample_type & PERF_SAMPLE_CPU)
7100 perf_output_put(handle, data->cpu_entry);
7101
7102 if (sample_type & PERF_SAMPLE_PERIOD)
7103 perf_output_put(handle, data->period);
7104
7105 if (sample_type & PERF_SAMPLE_READ)
7106 perf_output_read(handle, event);
7107
7108 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01007109 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007110
Jiri Olsa99e818c2018-01-07 17:03:50 +01007111 size += data->callchain->nr;
7112 size *= sizeof(u64);
7113 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007114 }
7115
7116 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007117 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07007118
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007119 if (raw) {
7120 struct perf_raw_frag *frag = &raw->frag;
7121
7122 perf_output_put(handle, raw->size);
7123 do {
7124 if (frag->copy) {
7125 __output_custom(handle, frag->copy,
7126 frag->data, frag->size);
7127 } else {
7128 __output_copy(handle, frag->data,
7129 frag->size);
7130 }
7131 if (perf_raw_frag_last(frag))
7132 break;
7133 frag = frag->next;
7134 } while (1);
7135 if (frag->pad)
7136 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007137 } else {
7138 struct {
7139 u32 size;
7140 u32 data;
7141 } raw = {
7142 .size = sizeof(u32),
7143 .data = 0,
7144 };
7145 perf_output_put(handle, raw);
7146 }
7147 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007148
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007149 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7150 if (data->br_stack) {
7151 size_t size;
7152
7153 size = data->br_stack->nr
7154 * sizeof(struct perf_branch_entry);
7155
7156 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08007157 if (perf_sample_save_hw_index(event))
7158 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007159 perf_output_copy(handle, data->br_stack->entries, size);
7160 } else {
7161 /*
7162 * we always store at least the value of nr
7163 */
7164 u64 nr = 0;
7165 perf_output_put(handle, nr);
7166 }
7167 }
Jiri Olsa40189942012-08-07 15:20:37 +02007168
7169 if (sample_type & PERF_SAMPLE_REGS_USER) {
7170 u64 abi = data->regs_user.abi;
7171
7172 /*
7173 * If there are no regs to dump, notice it through
7174 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7175 */
7176 perf_output_put(handle, abi);
7177
7178 if (abi) {
7179 u64 mask = event->attr.sample_regs_user;
7180 perf_output_sample_regs(handle,
7181 data->regs_user.regs,
7182 mask);
7183 }
7184 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007185
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007186 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02007187 perf_output_sample_ustack(handle,
7188 data->stack_user_size,
7189 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007190 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01007191
Kan Liang2a6c6b72021-01-28 14:40:07 -08007192 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE)
7193 perf_output_put(handle, data->weight.full);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01007194
7195 if (sample_type & PERF_SAMPLE_DATA_SRC)
7196 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007197
Andi Kleenfdfbbd02013-09-20 07:40:39 -07007198 if (sample_type & PERF_SAMPLE_TRANSACTION)
7199 perf_output_put(handle, data->txn);
7200
Stephane Eranian60e23642014-09-24 13:48:37 +02007201 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7202 u64 abi = data->regs_intr.abi;
7203 /*
7204 * If there are no regs to dump, notice it through
7205 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
7206 */
7207 perf_output_put(handle, abi);
7208
7209 if (abi) {
7210 u64 mask = event->attr.sample_regs_intr;
7211
7212 perf_output_sample_regs(handle,
7213 data->regs_intr.regs,
7214 mask);
7215 }
7216 }
7217
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007218 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7219 perf_output_put(handle, data->phys_addr);
7220
Namhyung Kim6546b192020-03-25 21:45:29 +09007221 if (sample_type & PERF_SAMPLE_CGROUP)
7222 perf_output_put(handle, data->cgroup);
7223
Kan Liang8d97e712020-10-01 06:57:46 -07007224 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7225 perf_output_put(handle, data->data_page_size);
7226
Stephane Eranian995f0882020-10-01 06:57:49 -07007227 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7228 perf_output_put(handle, data->code_page_size);
7229
Alexander Shishkina4faf002019-10-25 17:08:33 +03007230 if (sample_type & PERF_SAMPLE_AUX) {
7231 perf_output_put(handle, data->aux_size);
7232
7233 if (data->aux_size)
7234 perf_aux_sample_output(event, handle, data);
7235 }
7236
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007237 if (!event->attr.watermark) {
7238 int wakeup_events = event->attr.wakeup_events;
7239
7240 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007241 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02007242 int events = local_inc_return(&rb->events);
7243
7244 if (events >= wakeup_events) {
7245 local_sub(wakeup_events, &rb->events);
7246 local_inc(&rb->wakeup);
7247 }
7248 }
7249 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007250}
7251
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007252static u64 perf_virt_to_phys(u64 virt)
7253{
7254 u64 phys_addr = 0;
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007255
7256 if (!virt)
7257 return 0;
7258
7259 if (virt >= TASK_SIZE) {
7260 /* If it's vmalloc()d memory, leave phys_addr as 0 */
7261 if (virt_addr_valid((void *)(uintptr_t)virt) &&
7262 !(virt >= VMALLOC_START && virt < VMALLOC_END))
7263 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
7264 } else {
7265 /*
7266 * Walking the pages tables for user address.
7267 * Interrupts are disabled, so it prevents any tear down
7268 * of the page tables.
Souptick Joarderdadbb612020-06-07 21:40:55 -07007269 * Try IRQ-safe get_user_page_fast_only first.
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007270 * If failed, leave phys_addr as 0.
7271 */
Jiri Olsad3296fb2020-04-07 16:14:27 +02007272 if (current->mm != NULL) {
Greg Thelen47160232021-11-10 18:18:14 -08007273 struct page *p;
7274
Jiri Olsad3296fb2020-04-07 16:14:27 +02007275 pagefault_disable();
Greg Thelen47160232021-11-10 18:18:14 -08007276 if (get_user_page_fast_only(virt, 0, &p)) {
Jiri Olsad3296fb2020-04-07 16:14:27 +02007277 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
Greg Thelen47160232021-11-10 18:18:14 -08007278 put_page(p);
7279 }
Jiri Olsad3296fb2020-04-07 16:14:27 +02007280 pagefault_enable();
7281 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007282 }
7283
7284 return phys_addr;
7285}
7286
Kan Liang8d97e712020-10-01 06:57:46 -07007287/*
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007288 * Return the pagetable size of a given virtual address.
Kan Liang8d97e712020-10-01 06:57:46 -07007289 */
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007290static u64 perf_get_pgtable_size(struct mm_struct *mm, unsigned long addr)
Kan Liang8d97e712020-10-01 06:57:46 -07007291{
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007292 u64 size = 0;
Kan Liang8d97e712020-10-01 06:57:46 -07007293
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007294#ifdef CONFIG_HAVE_FAST_GUP
7295 pgd_t *pgdp, pgd;
7296 p4d_t *p4dp, p4d;
7297 pud_t *pudp, pud;
7298 pmd_t *pmdp, pmd;
7299 pte_t *ptep, pte;
7300
7301 pgdp = pgd_offset(mm, addr);
7302 pgd = READ_ONCE(*pgdp);
7303 if (pgd_none(pgd))
Kan Liang8d97e712020-10-01 06:57:46 -07007304 return 0;
7305
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007306 if (pgd_leaf(pgd))
7307 return pgd_leaf_size(pgd);
7308
7309 p4dp = p4d_offset_lockless(pgdp, pgd, addr);
7310 p4d = READ_ONCE(*p4dp);
7311 if (!p4d_present(p4d))
Kan Liang8d97e712020-10-01 06:57:46 -07007312 return 0;
7313
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007314 if (p4d_leaf(p4d))
7315 return p4d_leaf_size(p4d);
Kan Liang8d97e712020-10-01 06:57:46 -07007316
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007317 pudp = pud_offset_lockless(p4dp, p4d, addr);
7318 pud = READ_ONCE(*pudp);
7319 if (!pud_present(pud))
Kan Liang8d97e712020-10-01 06:57:46 -07007320 return 0;
7321
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007322 if (pud_leaf(pud))
7323 return pud_leaf_size(pud);
Kan Liang8d97e712020-10-01 06:57:46 -07007324
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007325 pmdp = pmd_offset_lockless(pudp, pud, addr);
7326 pmd = READ_ONCE(*pmdp);
7327 if (!pmd_present(pmd))
Kan Liang8d97e712020-10-01 06:57:46 -07007328 return 0;
7329
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007330 if (pmd_leaf(pmd))
7331 return pmd_leaf_size(pmd);
Kan Liang8d97e712020-10-01 06:57:46 -07007332
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007333 ptep = pte_offset_map(&pmd, addr);
7334 pte = ptep_get_lockless(ptep);
7335 if (pte_present(pte))
7336 size = pte_leaf_size(pte);
7337 pte_unmap(ptep);
7338#endif /* CONFIG_HAVE_FAST_GUP */
Kan Liang8d97e712020-10-01 06:57:46 -07007339
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007340 return size;
Kan Liang8d97e712020-10-01 06:57:46 -07007341}
7342
Kan Liang8d97e712020-10-01 06:57:46 -07007343static u64 perf_get_page_size(unsigned long addr)
7344{
7345 struct mm_struct *mm;
7346 unsigned long flags;
7347 u64 size;
7348
7349 if (!addr)
7350 return 0;
7351
7352 /*
7353 * Software page-table walkers must disable IRQs,
7354 * which prevents any tear down of the page tables.
7355 */
7356 local_irq_save(flags);
7357
7358 mm = current->mm;
7359 if (!mm) {
7360 /*
7361 * For kernel threads and the like, use init_mm so that
7362 * we can find kernel memory.
7363 */
7364 mm = &init_mm;
7365 }
7366
Peter Zijlstra8af26be2020-11-11 13:43:57 +01007367 size = perf_get_pgtable_size(mm, addr);
Kan Liang8d97e712020-10-01 06:57:46 -07007368
7369 local_irq_restore(flags);
7370
7371 return size;
7372}
7373
Jiri Olsa99e818c2018-01-07 17:03:50 +01007374static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
7375
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007376struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007377perf_callchain(struct perf_event *event, struct pt_regs *regs)
7378{
7379 bool kernel = !event->attr.exclude_callchain_kernel;
7380 bool user = !event->attr.exclude_callchain_user;
7381 /* Disallow cross-task user callchains. */
7382 bool crosstask = event->ctx->task && event->ctx->task != current;
7383 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01007384 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007385
7386 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01007387 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007388
Jiri Olsa99e818c2018-01-07 17:03:50 +01007389 callchain = get_perf_callchain(regs, 0, kernel, user,
7390 max_stack, crosstask, true);
7391 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01007392}
7393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007394void perf_prepare_sample(struct perf_event_header *header,
7395 struct perf_sample_data *data,
7396 struct perf_event *event,
7397 struct pt_regs *regs)
7398{
7399 u64 sample_type = event->attr.sample_type;
7400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007401 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007402 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007403
7404 header->misc = 0;
7405 header->misc |= perf_misc_flags(regs);
7406
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007407 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007408
Stephane Eranian995f0882020-10-01 06:57:49 -07007409 if (sample_type & (PERF_SAMPLE_IP | PERF_SAMPLE_CODE_PAGE_SIZE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007410 data->ip = perf_instruction_pointer(regs);
7411
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007412 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
7413 int size = 1;
7414
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02007415 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
7416 data->callchain = perf_callchain(event, regs);
7417
Jiri Olsa99e818c2018-01-07 17:03:50 +01007418 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007419
7420 header->size += size * sizeof(u64);
7421 }
7422
7423 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007424 struct perf_raw_record *raw = data->raw;
7425 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007426
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007427 if (raw) {
7428 struct perf_raw_frag *frag = &raw->frag;
7429 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007430
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007431 do {
7432 sum += frag->size;
7433 if (perf_raw_frag_last(frag))
7434 break;
7435 frag = frag->next;
7436 } while (1);
7437
7438 size = round_up(sum + sizeof(u32), sizeof(u64));
7439 raw->size = size - sizeof(u32);
7440 frag->pad = raw->size - sum;
7441 } else {
7442 size = sizeof(u64);
7443 }
7444
7445 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007446 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007447
7448 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7449 int size = sizeof(u64); /* nr */
7450 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08007451 if (perf_sample_save_hw_index(event))
7452 size += sizeof(u64);
7453
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007454 size += data->br_stack->nr
7455 * sizeof(struct perf_branch_entry);
7456 }
7457 header->size += size;
7458 }
Jiri Olsa40189942012-08-07 15:20:37 +02007459
Peter Zijlstra25657112014-09-24 13:48:42 +02007460 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Peter Zijlstra76a4efa2020-10-30 12:14:21 +01007461 perf_sample_regs_user(&data->regs_user, regs);
Peter Zijlstra25657112014-09-24 13:48:42 +02007462
Jiri Olsa40189942012-08-07 15:20:37 +02007463 if (sample_type & PERF_SAMPLE_REGS_USER) {
7464 /* regs dump ABI info */
7465 int size = sizeof(u64);
7466
Jiri Olsa40189942012-08-07 15:20:37 +02007467 if (data->regs_user.regs) {
7468 u64 mask = event->attr.sample_regs_user;
7469 size += hweight64(mask) * sizeof(u64);
7470 }
7471
7472 header->size += size;
7473 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007474
7475 if (sample_type & PERF_SAMPLE_STACK_USER) {
7476 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03007477 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02007478 * processed as the last one or have additional check added
7479 * in case new sample type is added, because we could eat
7480 * up the rest of the sample size.
7481 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02007482 u16 stack_size = event->attr.sample_stack_user;
7483 u16 size = sizeof(u64);
7484
Jiri Olsac5ebced2012-08-07 15:20:40 +02007485 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02007486 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007487
7488 /*
7489 * If there is something to dump, add space for the dump
7490 * itself and for the field that tells the dynamic size,
7491 * which is how many have been actually dumped.
7492 */
7493 if (stack_size)
7494 size += sizeof(u64) + stack_size;
7495
7496 data->stack_user_size = stack_size;
7497 header->size += size;
7498 }
Stephane Eranian60e23642014-09-24 13:48:37 +02007499
7500 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7501 /* regs dump ABI info */
7502 int size = sizeof(u64);
7503
7504 perf_sample_regs_intr(&data->regs_intr, regs);
7505
7506 if (data->regs_intr.regs) {
7507 u64 mask = event->attr.sample_regs_intr;
7508
7509 size += hweight64(mask) * sizeof(u64);
7510 }
7511
7512 header->size += size;
7513 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007514
7515 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7516 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03007517
Namhyung Kim6546b192020-03-25 21:45:29 +09007518#ifdef CONFIG_CGROUP_PERF
7519 if (sample_type & PERF_SAMPLE_CGROUP) {
7520 struct cgroup *cgrp;
7521
7522 /* protected by RCU */
7523 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7524 data->cgroup = cgroup_id(cgrp);
7525 }
7526#endif
7527
Kan Liang8d97e712020-10-01 06:57:46 -07007528 /*
7529 * PERF_DATA_PAGE_SIZE requires PERF_SAMPLE_ADDR. If the user doesn't
7530 * require PERF_SAMPLE_ADDR, kernel implicitly retrieve the data->addr,
7531 * but the value will not dump to the userspace.
7532 */
7533 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
7534 data->data_page_size = perf_get_page_size(data->addr);
7535
Stephane Eranian995f0882020-10-01 06:57:49 -07007536 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
7537 data->code_page_size = perf_get_page_size(data->ip);
7538
Alexander Shishkina4faf002019-10-25 17:08:33 +03007539 if (sample_type & PERF_SAMPLE_AUX) {
7540 u64 size;
7541
7542 header->size += sizeof(u64); /* size */
7543
7544 /*
7545 * Given the 16bit nature of header::size, an AUX sample can
7546 * easily overflow it, what with all the preceding sample bits.
7547 * Make sure this doesn't happen by using up to U16_MAX bytes
7548 * per sample in total (rounded down to 8 byte boundary).
7549 */
7550 size = min_t(size_t, U16_MAX - header->size,
7551 event->attr.aux_sample_size);
7552 size = rounddown(size, 8);
7553 size = perf_prepare_sample_aux(event, data, size);
7554
7555 WARN_ON_ONCE(size + header->size > U16_MAX);
7556 header->size += size;
7557 }
7558 /*
7559 * If you're adding more sample types here, you likely need to do
7560 * something about the overflowing header::size, like repurpose the
7561 * lowest 3 bits of size, which should be always zero at the moment.
7562 * This raises a more important question, do we really need 512k sized
7563 * samples and why, so good argumentation is in order for whatever you
7564 * do here next.
7565 */
7566 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007567}
7568
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007569static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00007570__perf_event_output(struct perf_event *event,
7571 struct perf_sample_data *data,
7572 struct pt_regs *regs,
7573 int (*output_begin)(struct perf_output_handle *,
Peter Zijlstra267fb272020-10-30 15:50:32 +01007574 struct perf_sample_data *,
Wang Nan9ecda412016-04-05 14:11:18 +00007575 struct perf_event *,
7576 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007577{
7578 struct perf_output_handle handle;
7579 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007580 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007581
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007582 /* protect the callchain buffers */
7583 rcu_read_lock();
7584
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007585 perf_prepare_sample(&header, data, event, regs);
7586
Peter Zijlstra267fb272020-10-30 15:50:32 +01007587 err = output_begin(&handle, data, event, header.size);
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007588 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007589 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007590
7591 perf_output_sample(&handle, &header, data, event);
7592
7593 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007594
7595exit:
7596 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007597 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007598}
7599
Wang Nan9ecda412016-04-05 14:11:18 +00007600void
7601perf_event_output_forward(struct perf_event *event,
7602 struct perf_sample_data *data,
7603 struct pt_regs *regs)
7604{
7605 __perf_event_output(event, data, regs, perf_output_begin_forward);
7606}
7607
7608void
7609perf_event_output_backward(struct perf_event *event,
7610 struct perf_sample_data *data,
7611 struct pt_regs *regs)
7612{
7613 __perf_event_output(event, data, regs, perf_output_begin_backward);
7614}
7615
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007616int
Wang Nan9ecda412016-04-05 14:11:18 +00007617perf_event_output(struct perf_event *event,
7618 struct perf_sample_data *data,
7619 struct pt_regs *regs)
7620{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007621 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007622}
7623
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007624/*
7625 * read event_id
7626 */
7627
7628struct perf_read_event {
7629 struct perf_event_header header;
7630
7631 u32 pid;
7632 u32 tid;
7633};
7634
7635static void
7636perf_event_read_event(struct perf_event *event,
7637 struct task_struct *task)
7638{
7639 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007640 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007641 struct perf_read_event read_event = {
7642 .header = {
7643 .type = PERF_RECORD_READ,
7644 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007645 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007646 },
7647 .pid = perf_event_pid(event, task),
7648 .tid = perf_event_tid(event, task),
7649 };
7650 int ret;
7651
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007652 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01007653 ret = perf_output_begin(&handle, &sample, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007654 if (ret)
7655 return;
7656
7657 perf_output_put(&handle, read_event);
7658 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007659 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007660
7661 perf_output_end(&handle);
7662}
7663
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007664typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007665
7666static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007667perf_iterate_ctx(struct perf_event_context *ctx,
7668 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007669 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007670{
7671 struct perf_event *event;
7672
7673 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007674 if (!all) {
7675 if (event->state < PERF_EVENT_STATE_INACTIVE)
7676 continue;
7677 if (!event_filter_match(event))
7678 continue;
7679 }
7680
Jiri Olsa67516842013-07-09 18:56:31 +02007681 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007682 }
7683}
7684
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007685static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007686{
7687 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7688 struct perf_event *event;
7689
7690 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007691 /*
7692 * Skip events that are not fully formed yet; ensure that
7693 * if we observe event->ctx, both event and ctx will be
7694 * complete enough. See perf_install_in_context().
7695 */
7696 if (!smp_load_acquire(&event->ctx))
7697 continue;
7698
Kan Liangf2fb6be2016-03-23 11:24:37 -07007699 if (event->state < PERF_EVENT_STATE_INACTIVE)
7700 continue;
7701 if (!event_filter_match(event))
7702 continue;
7703 output(event, data);
7704 }
7705}
7706
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007707/*
7708 * Iterate all events that need to receive side-band events.
7709 *
7710 * For new callers; ensure that account_pmu_sb_event() includes
7711 * your event, otherwise it might not get delivered.
7712 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007713static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007714perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007715 struct perf_event_context *task_ctx)
7716{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007717 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007718 int ctxn;
7719
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007720 rcu_read_lock();
7721 preempt_disable();
7722
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007723 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007724 * If we have task_ctx != NULL we only notify the task context itself.
7725 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007726 * context.
7727 */
7728 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007729 perf_iterate_ctx(task_ctx, output, data, false);
7730 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007731 }
7732
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007733 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007734
7735 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007736 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7737 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007738 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007739 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007740done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007741 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007742 rcu_read_unlock();
7743}
7744
Alexander Shishkin375637b2016-04-27 18:44:46 +03007745/*
7746 * Clear all file-based filters at exec, they'll have to be
7747 * re-instated when/if these objects are mmapped again.
7748 */
7749static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7750{
7751 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7752 struct perf_addr_filter *filter;
7753 unsigned int restart = 0, count = 0;
7754 unsigned long flags;
7755
7756 if (!has_addr_filter(event))
7757 return;
7758
7759 raw_spin_lock_irqsave(&ifh->lock, flags);
7760 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007761 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007762 event->addr_filter_ranges[count].start = 0;
7763 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007764 restart++;
7765 }
7766
7767 count++;
7768 }
7769
7770 if (restart)
7771 event->addr_filters_gen++;
7772 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7773
7774 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007775 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007776}
7777
7778void perf_event_exec(void)
7779{
7780 struct perf_event_context *ctx;
7781 int ctxn;
7782
Alexander Shishkin375637b2016-04-27 18:44:46 +03007783 for_each_task_context_nr(ctxn) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03007784 perf_event_enable_on_exec(ctxn);
Marco Elver2e498d02021-04-08 12:35:59 +02007785 perf_event_remove_on_exec(ctxn);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007786
Marco Elver2e498d02021-04-08 12:35:59 +02007787 rcu_read_lock();
7788 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7789 if (ctx) {
7790 perf_iterate_ctx(ctx, perf_event_addr_filters_exec,
7791 NULL, true);
7792 }
7793 rcu_read_unlock();
Alexander Shishkin375637b2016-04-27 18:44:46 +03007794 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03007795}
7796
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007797struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007798 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007799 int err;
7800};
7801
7802static void __perf_event_output_stop(struct perf_event *event, void *data)
7803{
7804 struct perf_event *parent = event->parent;
7805 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007806 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007807 struct stop_event_data sd = {
7808 .event = event,
7809 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007810
7811 if (!has_aux(event))
7812 return;
7813
7814 if (!parent)
7815 parent = event;
7816
7817 /*
7818 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007819 * ring-buffer, but it will be the child that's actually using it.
7820 *
7821 * We are using event::rb to determine if the event should be stopped,
7822 * however this may race with ring_buffer_attach() (through set_output),
7823 * which will make us skip the event that actually needs to be stopped.
7824 * So ring_buffer_attach() has to stop an aux event before re-assigning
7825 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007826 */
7827 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007828 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007829}
7830
7831static int __perf_pmu_output_stop(void *info)
7832{
7833 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007834 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007835 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007836 struct remote_output ro = {
7837 .rb = event->rb,
7838 };
7839
7840 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007841 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007842 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007843 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007844 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007845 rcu_read_unlock();
7846
7847 return ro.err;
7848}
7849
7850static void perf_pmu_output_stop(struct perf_event *event)
7851{
7852 struct perf_event *iter;
7853 int err, cpu;
7854
7855restart:
7856 rcu_read_lock();
7857 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7858 /*
7859 * For per-CPU events, we need to make sure that neither they
7860 * nor their children are running; for cpu==-1 events it's
7861 * sufficient to stop the event itself if it's active, since
7862 * it can't have children.
7863 */
7864 cpu = iter->cpu;
7865 if (cpu == -1)
7866 cpu = READ_ONCE(iter->oncpu);
7867
7868 if (cpu == -1)
7869 continue;
7870
7871 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7872 if (err == -EAGAIN) {
7873 rcu_read_unlock();
7874 goto restart;
7875 }
7876 }
7877 rcu_read_unlock();
7878}
7879
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007880/*
7881 * task tracking -- fork/exit
7882 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007883 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007884 */
7885
7886struct perf_task_event {
7887 struct task_struct *task;
7888 struct perf_event_context *task_ctx;
7889
7890 struct {
7891 struct perf_event_header header;
7892
7893 u32 pid;
7894 u32 ppid;
7895 u32 tid;
7896 u32 ptid;
7897 u64 time;
7898 } event_id;
7899};
7900
Jiri Olsa67516842013-07-09 18:56:31 +02007901static int perf_event_task_match(struct perf_event *event)
7902{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007903 return event->attr.comm || event->attr.mmap ||
7904 event->attr.mmap2 || event->attr.mmap_data ||
7905 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007906}
7907
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007908static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007909 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007910{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007911 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007912 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007913 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007914 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007915 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007916
Jiri Olsa67516842013-07-09 18:56:31 +02007917 if (!perf_event_task_match(event))
7918 return;
7919
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007920 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007921
Peter Zijlstra267fb272020-10-30 15:50:32 +01007922 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007923 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007924 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007925 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007926
7927 task_event->event_id.pid = perf_event_pid(event, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007928 task_event->event_id.tid = perf_event_tid(event, task);
Ian Rogersf3bed552020-04-17 11:28:42 -07007929
7930 if (task_event->event_id.header.type == PERF_RECORD_EXIT) {
7931 task_event->event_id.ppid = perf_event_pid(event,
7932 task->real_parent);
7933 task_event->event_id.ptid = perf_event_pid(event,
7934 task->real_parent);
7935 } else { /* PERF_RECORD_FORK */
7936 task_event->event_id.ppid = perf_event_pid(event, current);
7937 task_event->event_id.ptid = perf_event_tid(event, current);
7938 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007939
Peter Zijlstra34f43922015-02-20 14:05:38 +01007940 task_event->event_id.time = perf_event_clock(event);
7941
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007942 perf_output_put(&handle, task_event->event_id);
7943
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007944 perf_event__output_id_sample(event, &handle, &sample);
7945
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007946 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007947out:
7948 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007949}
7950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007951static void perf_event_task(struct task_struct *task,
7952 struct perf_event_context *task_ctx,
7953 int new)
7954{
7955 struct perf_task_event task_event;
7956
7957 if (!atomic_read(&nr_comm_events) &&
7958 !atomic_read(&nr_mmap_events) &&
7959 !atomic_read(&nr_task_events))
7960 return;
7961
7962 task_event = (struct perf_task_event){
7963 .task = task,
7964 .task_ctx = task_ctx,
7965 .event_id = {
7966 .header = {
7967 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7968 .misc = 0,
7969 .size = sizeof(task_event.event_id),
7970 },
7971 /* .pid */
7972 /* .ppid */
7973 /* .tid */
7974 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007975 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007976 },
7977 };
7978
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007979 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007980 &task_event,
7981 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007982}
7983
7984void perf_event_fork(struct task_struct *task)
7985{
7986 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307987 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007988}
7989
7990/*
7991 * comm tracking
7992 */
7993
7994struct perf_comm_event {
7995 struct task_struct *task;
7996 char *comm;
7997 int comm_size;
7998
7999 struct {
8000 struct perf_event_header header;
8001
8002 u32 pid;
8003 u32 tid;
8004 } event_id;
8005};
8006
Jiri Olsa67516842013-07-09 18:56:31 +02008007static int perf_event_comm_match(struct perf_event *event)
8008{
8009 return event->attr.comm;
8010}
8011
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008012static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008013 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008014{
Jiri Olsa52d857a2013-05-06 18:27:18 +02008015 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008016 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008017 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008018 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008019 int ret;
8020
Jiri Olsa67516842013-07-09 18:56:31 +02008021 if (!perf_event_comm_match(event))
8022 return;
8023
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008024 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008025 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008026 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008027
8028 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008029 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008030
8031 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
8032 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
8033
8034 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02008035 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008036 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008037
8038 perf_event__output_id_sample(event, &handle, &sample);
8039
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008040 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008041out:
8042 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008043}
8044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008045static void perf_event_comm_event(struct perf_comm_event *comm_event)
8046{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008047 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008048 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008049
8050 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01008051 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008052 size = ALIGN(strlen(comm)+1, sizeof(u64));
8053
8054 comm_event->comm = comm;
8055 comm_event->comm_size = size;
8056
8057 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008058
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008059 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008060 comm_event,
8061 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008062}
8063
Adrian Hunter82b89772014-05-28 11:45:04 +03008064void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008065{
8066 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008067
8068 if (!atomic_read(&nr_comm_events))
8069 return;
8070
8071 comm_event = (struct perf_comm_event){
8072 .task = task,
8073 /* .comm */
8074 /* .comm_size */
8075 .event_id = {
8076 .header = {
8077 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03008078 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008079 /* .size */
8080 },
8081 /* .pid */
8082 /* .tid */
8083 },
8084 };
8085
8086 perf_event_comm_event(&comm_event);
8087}
8088
8089/*
Hari Bathinie4222672017-03-08 02:11:36 +05308090 * namespaces tracking
8091 */
8092
8093struct perf_namespaces_event {
8094 struct task_struct *task;
8095
8096 struct {
8097 struct perf_event_header header;
8098
8099 u32 pid;
8100 u32 tid;
8101 u64 nr_namespaces;
8102 struct perf_ns_link_info link_info[NR_NAMESPACES];
8103 } event_id;
8104};
8105
8106static int perf_event_namespaces_match(struct perf_event *event)
8107{
8108 return event->attr.namespaces;
8109}
8110
8111static void perf_event_namespaces_output(struct perf_event *event,
8112 void *data)
8113{
8114 struct perf_namespaces_event *namespaces_event = data;
8115 struct perf_output_handle handle;
8116 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02008117 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05308118 int ret;
8119
8120 if (!perf_event_namespaces_match(event))
8121 return;
8122
8123 perf_event_header__init_id(&namespaces_event->event_id.header,
8124 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008125 ret = perf_output_begin(&handle, &sample, event,
Hari Bathinie4222672017-03-08 02:11:36 +05308126 namespaces_event->event_id.header.size);
8127 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02008128 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05308129
8130 namespaces_event->event_id.pid = perf_event_pid(event,
8131 namespaces_event->task);
8132 namespaces_event->event_id.tid = perf_event_tid(event,
8133 namespaces_event->task);
8134
8135 perf_output_put(&handle, namespaces_event->event_id);
8136
8137 perf_event__output_id_sample(event, &handle, &sample);
8138
8139 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02008140out:
8141 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05308142}
8143
8144static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
8145 struct task_struct *task,
8146 const struct proc_ns_operations *ns_ops)
8147{
8148 struct path ns_path;
8149 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11008150 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05308151
8152 error = ns_get_path(&ns_path, task, ns_ops);
8153 if (!error) {
8154 ns_inode = ns_path.dentry->d_inode;
8155 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
8156 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03008157 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05308158 }
8159}
8160
8161void perf_event_namespaces(struct task_struct *task)
8162{
8163 struct perf_namespaces_event namespaces_event;
8164 struct perf_ns_link_info *ns_link_info;
8165
8166 if (!atomic_read(&nr_namespaces_events))
8167 return;
8168
8169 namespaces_event = (struct perf_namespaces_event){
8170 .task = task,
8171 .event_id = {
8172 .header = {
8173 .type = PERF_RECORD_NAMESPACES,
8174 .misc = 0,
8175 .size = sizeof(namespaces_event.event_id),
8176 },
8177 /* .pid */
8178 /* .tid */
8179 .nr_namespaces = NR_NAMESPACES,
8180 /* .link_info[NR_NAMESPACES] */
8181 },
8182 };
8183
8184 ns_link_info = namespaces_event.event_id.link_info;
8185
8186 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
8187 task, &mntns_operations);
8188
8189#ifdef CONFIG_USER_NS
8190 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
8191 task, &userns_operations);
8192#endif
8193#ifdef CONFIG_NET_NS
8194 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
8195 task, &netns_operations);
8196#endif
8197#ifdef CONFIG_UTS_NS
8198 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
8199 task, &utsns_operations);
8200#endif
8201#ifdef CONFIG_IPC_NS
8202 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
8203 task, &ipcns_operations);
8204#endif
8205#ifdef CONFIG_PID_NS
8206 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
8207 task, &pidns_operations);
8208#endif
8209#ifdef CONFIG_CGROUPS
8210 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
8211 task, &cgroupns_operations);
8212#endif
8213
8214 perf_iterate_sb(perf_event_namespaces_output,
8215 &namespaces_event,
8216 NULL);
8217}
8218
8219/*
Namhyung Kim96aaab62020-03-25 21:45:28 +09008220 * cgroup tracking
8221 */
8222#ifdef CONFIG_CGROUP_PERF
8223
8224struct perf_cgroup_event {
8225 char *path;
8226 int path_size;
8227 struct {
8228 struct perf_event_header header;
8229 u64 id;
8230 char path[];
8231 } event_id;
8232};
8233
8234static int perf_event_cgroup_match(struct perf_event *event)
8235{
8236 return event->attr.cgroup;
8237}
8238
8239static void perf_event_cgroup_output(struct perf_event *event, void *data)
8240{
8241 struct perf_cgroup_event *cgroup_event = data;
8242 struct perf_output_handle handle;
8243 struct perf_sample_data sample;
8244 u16 header_size = cgroup_event->event_id.header.size;
8245 int ret;
8246
8247 if (!perf_event_cgroup_match(event))
8248 return;
8249
8250 perf_event_header__init_id(&cgroup_event->event_id.header,
8251 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008252 ret = perf_output_begin(&handle, &sample, event,
Namhyung Kim96aaab62020-03-25 21:45:28 +09008253 cgroup_event->event_id.header.size);
8254 if (ret)
8255 goto out;
8256
8257 perf_output_put(&handle, cgroup_event->event_id);
8258 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
8259
8260 perf_event__output_id_sample(event, &handle, &sample);
8261
8262 perf_output_end(&handle);
8263out:
8264 cgroup_event->event_id.header.size = header_size;
8265}
8266
8267static void perf_event_cgroup(struct cgroup *cgrp)
8268{
8269 struct perf_cgroup_event cgroup_event;
8270 char path_enomem[16] = "//enomem";
8271 char *pathname;
8272 size_t size;
8273
8274 if (!atomic_read(&nr_cgroup_events))
8275 return;
8276
8277 cgroup_event = (struct perf_cgroup_event){
8278 .event_id = {
8279 .header = {
8280 .type = PERF_RECORD_CGROUP,
8281 .misc = 0,
8282 .size = sizeof(cgroup_event.event_id),
8283 },
8284 .id = cgroup_id(cgrp),
8285 },
8286 };
8287
8288 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
8289 if (pathname == NULL) {
8290 cgroup_event.path = path_enomem;
8291 } else {
8292 /* just to be sure to have enough space for alignment */
8293 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
8294 cgroup_event.path = pathname;
8295 }
8296
8297 /*
8298 * Since our buffer works in 8 byte units we need to align our string
8299 * size to a multiple of 8. However, we must guarantee the tail end is
8300 * zero'd out to avoid leaking random bits to userspace.
8301 */
8302 size = strlen(cgroup_event.path) + 1;
8303 while (!IS_ALIGNED(size, sizeof(u64)))
8304 cgroup_event.path[size++] = '\0';
8305
8306 cgroup_event.event_id.header.size += size;
8307 cgroup_event.path_size = size;
8308
8309 perf_iterate_sb(perf_event_cgroup_output,
8310 &cgroup_event,
8311 NULL);
8312
8313 kfree(pathname);
8314}
8315
8316#endif
8317
8318/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008319 * mmap tracking
8320 */
8321
8322struct perf_mmap_event {
8323 struct vm_area_struct *vma;
8324
8325 const char *file_name;
8326 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008327 int maj, min;
8328 u64 ino;
8329 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008330 u32 prot, flags;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008331 u8 build_id[BUILD_ID_SIZE_MAX];
8332 u32 build_id_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008333
8334 struct {
8335 struct perf_event_header header;
8336
8337 u32 pid;
8338 u32 tid;
8339 u64 start;
8340 u64 len;
8341 u64 pgoff;
8342 } event_id;
8343};
8344
Jiri Olsa67516842013-07-09 18:56:31 +02008345static int perf_event_mmap_match(struct perf_event *event,
8346 void *data)
8347{
8348 struct perf_mmap_event *mmap_event = data;
8349 struct vm_area_struct *vma = mmap_event->vma;
8350 int executable = vma->vm_flags & VM_EXEC;
8351
8352 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02008353 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02008354}
8355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008356static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008357 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008358{
Jiri Olsa52d857a2013-05-06 18:27:18 +02008359 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008360 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008361 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008362 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008363 u32 type = mmap_event->event_id.header.type;
Jiri Olsa88a16a12021-01-14 14:40:44 +01008364 bool use_build_id;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008365 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008366
Jiri Olsa67516842013-07-09 18:56:31 +02008367 if (!perf_event_mmap_match(event, data))
8368 return;
8369
Stephane Eranian13d7a242013-08-21 12:10:24 +02008370 if (event->attr.mmap2) {
8371 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
8372 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
8373 mmap_event->event_id.header.size += sizeof(mmap_event->min);
8374 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03008375 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008376 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
8377 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008378 }
8379
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008380 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008381 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008382 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008383 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008384 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008385
8386 mmap_event->event_id.pid = perf_event_pid(event, current);
8387 mmap_event->event_id.tid = perf_event_tid(event, current);
8388
Jiri Olsa88a16a12021-01-14 14:40:44 +01008389 use_build_id = event->attr.build_id && mmap_event->build_id_size;
8390
8391 if (event->attr.mmap2 && use_build_id)
8392 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_BUILD_ID;
8393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008394 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008395
8396 if (event->attr.mmap2) {
Jiri Olsa88a16a12021-01-14 14:40:44 +01008397 if (use_build_id) {
8398 u8 size[4] = { (u8) mmap_event->build_id_size, 0, 0, 0 };
8399
8400 __output_copy(&handle, size, 4);
8401 __output_copy(&handle, mmap_event->build_id, BUILD_ID_SIZE_MAX);
8402 } else {
8403 perf_output_put(&handle, mmap_event->maj);
8404 perf_output_put(&handle, mmap_event->min);
8405 perf_output_put(&handle, mmap_event->ino);
8406 perf_output_put(&handle, mmap_event->ino_generation);
8407 }
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008408 perf_output_put(&handle, mmap_event->prot);
8409 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02008410 }
8411
Frederic Weisbecker76369132011-05-19 19:55:04 +02008412 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008413 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008414
8415 perf_event__output_id_sample(event, &handle, &sample);
8416
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008417 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008418out:
8419 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08008420 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008421}
8422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008423static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
8424{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008425 struct vm_area_struct *vma = mmap_event->vma;
8426 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008427 int maj = 0, min = 0;
8428 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008429 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008430 unsigned int size;
8431 char tmp[16];
8432 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008433 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008434
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008435 if (vma->vm_flags & VM_READ)
8436 prot |= PROT_READ;
8437 if (vma->vm_flags & VM_WRITE)
8438 prot |= PROT_WRITE;
8439 if (vma->vm_flags & VM_EXEC)
8440 prot |= PROT_EXEC;
8441
8442 if (vma->vm_flags & VM_MAYSHARE)
8443 flags = MAP_SHARED;
8444 else
8445 flags = MAP_PRIVATE;
8446
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008447 if (vma->vm_flags & VM_LOCKED)
8448 flags |= MAP_LOCKED;
Anshuman Khandual03911132020-04-06 20:03:51 -07008449 if (is_vm_hugetlb_page(vma))
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01008450 flags |= MAP_HUGETLB;
8451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008452 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02008453 struct inode *inode;
8454 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008455
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008456 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008457 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008458 name = "//enomem";
8459 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008460 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008461 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02008462 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008463 * need to add enough zero bytes after the string to handle
8464 * the 64bit alignment we do later.
8465 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02008466 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008467 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008468 name = "//toolong";
8469 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008470 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02008471 inode = file_inode(vma->vm_file);
8472 dev = inode->i_sb->s_dev;
8473 ino = inode->i_ino;
8474 gen = inode->i_generation;
8475 maj = MAJOR(dev);
8476 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008477
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008478 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008479 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02008480 if (vma->vm_ops && vma->vm_ops->name) {
8481 name = (char *) vma->vm_ops->name(vma);
8482 if (name)
8483 goto cpy_name;
8484 }
8485
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008486 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008487 if (name)
8488 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008489
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008490 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008491 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008492 name = "[heap]";
8493 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02008494 }
8495 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008496 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008497 name = "[stack]";
8498 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008499 }
8500
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008501 name = "//anon";
8502 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008503 }
8504
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02008505cpy_name:
8506 strlcpy(tmp, name, sizeof(tmp));
8507 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008508got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02008509 /*
8510 * Since our buffer works in 8 byte units we need to align our string
8511 * size to a multiple of 8. However, we must guarantee the tail end is
8512 * zero'd out to avoid leaking random bits to userspace.
8513 */
8514 size = strlen(name)+1;
8515 while (!IS_ALIGNED(size, sizeof(u64)))
8516 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008517
8518 mmap_event->file_name = name;
8519 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02008520 mmap_event->maj = maj;
8521 mmap_event->min = min;
8522 mmap_event->ino = ino;
8523 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008524 mmap_event->prot = prot;
8525 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008526
Stephane Eranian2fe85422013-01-24 16:10:39 +01008527 if (!(vma->vm_flags & VM_EXEC))
8528 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8529
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008530 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
8531
Jiri Olsa88a16a12021-01-14 14:40:44 +01008532 if (atomic_read(&nr_build_id_events))
8533 build_id_parse(vma, mmap_event->build_id, &mmap_event->build_id_size);
8534
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008535 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02008536 mmap_event,
8537 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008538
8539 kfree(buf);
8540}
8541
Alexander Shishkin375637b2016-04-27 18:44:46 +03008542/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03008543 * Check whether inode and address range match filter criteria.
8544 */
8545static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8546 struct file *file, unsigned long offset,
8547 unsigned long size)
8548{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06008549 /* d_inode(NULL) won't be equal to any mapped user-space file */
8550 if (!filter->path.dentry)
8551 return false;
8552
Song Liu9511bce2018-04-17 23:29:07 -07008553 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008554 return false;
8555
8556 if (filter->offset > offset + size)
8557 return false;
8558
8559 if (filter->offset + filter->size < offset)
8560 return false;
8561
8562 return true;
8563}
8564
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008565static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8566 struct vm_area_struct *vma,
8567 struct perf_addr_filter_range *fr)
8568{
8569 unsigned long vma_size = vma->vm_end - vma->vm_start;
8570 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8571 struct file *file = vma->vm_file;
8572
8573 if (!perf_addr_filter_match(filter, file, off, vma_size))
8574 return false;
8575
8576 if (filter->offset < off) {
8577 fr->start = vma->vm_start;
8578 fr->size = min(vma_size, filter->size - (off - filter->offset));
8579 } else {
8580 fr->start = vma->vm_start + filter->offset - off;
8581 fr->size = min(vma->vm_end - fr->start, filter->size);
8582 }
8583
8584 return true;
8585}
8586
Alexander Shishkin375637b2016-04-27 18:44:46 +03008587static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8588{
8589 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8590 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008591 struct perf_addr_filter *filter;
8592 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008593 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008594
8595 if (!has_addr_filter(event))
8596 return;
8597
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008598 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008599 return;
8600
8601 raw_spin_lock_irqsave(&ifh->lock, flags);
8602 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008603 if (perf_addr_filter_vma_adjust(filter, vma,
8604 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008605 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008606
8607 count++;
8608 }
8609
8610 if (restart)
8611 event->addr_filters_gen++;
8612 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8613
8614 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03008615 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008616}
8617
8618/*
8619 * Adjust all task's events' filters to the new vma
8620 */
8621static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8622{
8623 struct perf_event_context *ctx;
8624 int ctxn;
8625
Mathieu Poirier12b40a22016-07-18 10:43:06 -06008626 /*
8627 * Data tracing isn't supported yet and as such there is no need
8628 * to keep track of anything that isn't related to executable code:
8629 */
8630 if (!(vma->vm_flags & VM_EXEC))
8631 return;
8632
Alexander Shishkin375637b2016-04-27 18:44:46 +03008633 rcu_read_lock();
8634 for_each_task_context_nr(ctxn) {
8635 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8636 if (!ctx)
8637 continue;
8638
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008639 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008640 }
8641 rcu_read_unlock();
8642}
8643
Eric B Munson3af9e852010-05-18 15:30:49 +01008644void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008645{
8646 struct perf_mmap_event mmap_event;
8647
8648 if (!atomic_read(&nr_mmap_events))
8649 return;
8650
8651 mmap_event = (struct perf_mmap_event){
8652 .vma = vma,
8653 /* .file_name */
8654 /* .file_size */
8655 .event_id = {
8656 .header = {
8657 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08008658 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008659 /* .size */
8660 },
8661 /* .pid */
8662 /* .tid */
8663 .start = vma->vm_start,
8664 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01008665 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008666 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02008667 /* .maj (attr_mmap2 only) */
8668 /* .min (attr_mmap2 only) */
8669 /* .ino (attr_mmap2 only) */
8670 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008671 /* .prot (attr_mmap2 only) */
8672 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008673 };
8674
Alexander Shishkin375637b2016-04-27 18:44:46 +03008675 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008676 perf_event_mmap_event(&mmap_event);
8677}
8678
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008679void perf_event_aux_event(struct perf_event *event, unsigned long head,
8680 unsigned long size, u64 flags)
8681{
8682 struct perf_output_handle handle;
8683 struct perf_sample_data sample;
8684 struct perf_aux_event {
8685 struct perf_event_header header;
8686 u64 offset;
8687 u64 size;
8688 u64 flags;
8689 } rec = {
8690 .header = {
8691 .type = PERF_RECORD_AUX,
8692 .misc = 0,
8693 .size = sizeof(rec),
8694 },
8695 .offset = head,
8696 .size = size,
8697 .flags = flags,
8698 };
8699 int ret;
8700
8701 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008702 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008703
8704 if (ret)
8705 return;
8706
8707 perf_output_put(&handle, rec);
8708 perf_event__output_id_sample(event, &handle, &sample);
8709
8710 perf_output_end(&handle);
8711}
8712
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008713/*
Kan Liangf38b0db2015-05-10 15:13:14 -04008714 * Lost/dropped samples logging
8715 */
8716void perf_log_lost_samples(struct perf_event *event, u64 lost)
8717{
8718 struct perf_output_handle handle;
8719 struct perf_sample_data sample;
8720 int ret;
8721
8722 struct {
8723 struct perf_event_header header;
8724 u64 lost;
8725 } lost_samples_event = {
8726 .header = {
8727 .type = PERF_RECORD_LOST_SAMPLES,
8728 .misc = 0,
8729 .size = sizeof(lost_samples_event),
8730 },
8731 .lost = lost,
8732 };
8733
8734 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8735
Peter Zijlstra267fb272020-10-30 15:50:32 +01008736 ret = perf_output_begin(&handle, &sample, event,
Kan Liangf38b0db2015-05-10 15:13:14 -04008737 lost_samples_event.header.size);
8738 if (ret)
8739 return;
8740
8741 perf_output_put(&handle, lost_samples_event);
8742 perf_event__output_id_sample(event, &handle, &sample);
8743 perf_output_end(&handle);
8744}
8745
8746/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008747 * context_switch tracking
8748 */
8749
8750struct perf_switch_event {
8751 struct task_struct *task;
8752 struct task_struct *next_prev;
8753
8754 struct {
8755 struct perf_event_header header;
8756 u32 next_prev_pid;
8757 u32 next_prev_tid;
8758 } event_id;
8759};
8760
8761static int perf_event_switch_match(struct perf_event *event)
8762{
8763 return event->attr.context_switch;
8764}
8765
8766static void perf_event_switch_output(struct perf_event *event, void *data)
8767{
8768 struct perf_switch_event *se = data;
8769 struct perf_output_handle handle;
8770 struct perf_sample_data sample;
8771 int ret;
8772
8773 if (!perf_event_switch_match(event))
8774 return;
8775
8776 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8777 if (event->ctx->task) {
8778 se->event_id.header.type = PERF_RECORD_SWITCH;
8779 se->event_id.header.size = sizeof(se->event_id.header);
8780 } else {
8781 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8782 se->event_id.header.size = sizeof(se->event_id);
8783 se->event_id.next_prev_pid =
8784 perf_event_pid(event, se->next_prev);
8785 se->event_id.next_prev_tid =
8786 perf_event_tid(event, se->next_prev);
8787 }
8788
8789 perf_event_header__init_id(&se->event_id.header, &sample, event);
8790
Peter Zijlstra267fb272020-10-30 15:50:32 +01008791 ret = perf_output_begin(&handle, &sample, event, se->event_id.header.size);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008792 if (ret)
8793 return;
8794
8795 if (event->ctx->task)
8796 perf_output_put(&handle, se->event_id.header);
8797 else
8798 perf_output_put(&handle, se->event_id);
8799
8800 perf_event__output_id_sample(event, &handle, &sample);
8801
8802 perf_output_end(&handle);
8803}
8804
8805static void perf_event_switch(struct task_struct *task,
8806 struct task_struct *next_prev, bool sched_in)
8807{
8808 struct perf_switch_event switch_event;
8809
8810 /* N.B. caller checks nr_switch_events != 0 */
8811
8812 switch_event = (struct perf_switch_event){
8813 .task = task,
8814 .next_prev = next_prev,
8815 .event_id = {
8816 .header = {
8817 /* .type */
8818 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8819 /* .size */
8820 },
8821 /* .next_prev_pid */
8822 /* .next_prev_tid */
8823 },
8824 };
8825
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008826 if (!sched_in && task->on_rq) {
Alexey Budankov101592b2018-04-09 10:25:32 +03008827 switch_event.event_id.header.misc |=
8828 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008829 }
Alexey Budankov101592b2018-04-09 10:25:32 +03008830
Peter Zijlstra3ba9f932021-06-11 10:28:13 +02008831 perf_iterate_sb(perf_event_switch_output, &switch_event, NULL);
Adrian Hunter45ac1402015-07-21 12:44:02 +03008832}
8833
8834/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008835 * IRQ throttle logging
8836 */
8837
8838static void perf_log_throttle(struct perf_event *event, int enable)
8839{
8840 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008841 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008842 int ret;
8843
8844 struct {
8845 struct perf_event_header header;
8846 u64 time;
8847 u64 id;
8848 u64 stream_id;
8849 } throttle_event = {
8850 .header = {
8851 .type = PERF_RECORD_THROTTLE,
8852 .misc = 0,
8853 .size = sizeof(throttle_event),
8854 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008855 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008856 .id = primary_event_id(event),
8857 .stream_id = event->id,
8858 };
8859
8860 if (enable)
8861 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8862
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008863 perf_event_header__init_id(&throttle_event.header, &sample, event);
8864
Peter Zijlstra267fb272020-10-30 15:50:32 +01008865 ret = perf_output_begin(&handle, &sample, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008866 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008867 if (ret)
8868 return;
8869
8870 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008871 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008872 perf_output_end(&handle);
8873}
8874
Song Liu76193a92019-01-17 08:15:13 -08008875/*
8876 * ksymbol register/unregister tracking
8877 */
8878
8879struct perf_ksymbol_event {
8880 const char *name;
8881 int name_len;
8882 struct {
8883 struct perf_event_header header;
8884 u64 addr;
8885 u32 len;
8886 u16 ksym_type;
8887 u16 flags;
8888 } event_id;
8889};
8890
8891static int perf_event_ksymbol_match(struct perf_event *event)
8892{
8893 return event->attr.ksymbol;
8894}
8895
8896static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8897{
8898 struct perf_ksymbol_event *ksymbol_event = data;
8899 struct perf_output_handle handle;
8900 struct perf_sample_data sample;
8901 int ret;
8902
8903 if (!perf_event_ksymbol_match(event))
8904 return;
8905
8906 perf_event_header__init_id(&ksymbol_event->event_id.header,
8907 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008908 ret = perf_output_begin(&handle, &sample, event,
Song Liu76193a92019-01-17 08:15:13 -08008909 ksymbol_event->event_id.header.size);
8910 if (ret)
8911 return;
8912
8913 perf_output_put(&handle, ksymbol_event->event_id);
8914 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8915 perf_event__output_id_sample(event, &handle, &sample);
8916
8917 perf_output_end(&handle);
8918}
8919
8920void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8921 const char *sym)
8922{
8923 struct perf_ksymbol_event ksymbol_event;
8924 char name[KSYM_NAME_LEN];
8925 u16 flags = 0;
8926 int name_len;
8927
8928 if (!atomic_read(&nr_ksymbol_events))
8929 return;
8930
8931 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8932 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8933 goto err;
8934
8935 strlcpy(name, sym, KSYM_NAME_LEN);
8936 name_len = strlen(name) + 1;
8937 while (!IS_ALIGNED(name_len, sizeof(u64)))
8938 name[name_len++] = '\0';
8939 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8940
8941 if (unregister)
8942 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8943
8944 ksymbol_event = (struct perf_ksymbol_event){
8945 .name = name,
8946 .name_len = name_len,
8947 .event_id = {
8948 .header = {
8949 .type = PERF_RECORD_KSYMBOL,
8950 .size = sizeof(ksymbol_event.event_id) +
8951 name_len,
8952 },
8953 .addr = addr,
8954 .len = len,
8955 .ksym_type = ksym_type,
8956 .flags = flags,
8957 },
8958 };
8959
8960 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8961 return;
8962err:
8963 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8964}
8965
Song Liu6ee52e22019-01-17 08:15:15 -08008966/*
8967 * bpf program load/unload tracking
8968 */
8969
8970struct perf_bpf_event {
8971 struct bpf_prog *prog;
8972 struct {
8973 struct perf_event_header header;
8974 u16 type;
8975 u16 flags;
8976 u32 id;
8977 u8 tag[BPF_TAG_SIZE];
8978 } event_id;
8979};
8980
8981static int perf_event_bpf_match(struct perf_event *event)
8982{
8983 return event->attr.bpf_event;
8984}
8985
8986static void perf_event_bpf_output(struct perf_event *event, void *data)
8987{
8988 struct perf_bpf_event *bpf_event = data;
8989 struct perf_output_handle handle;
8990 struct perf_sample_data sample;
8991 int ret;
8992
8993 if (!perf_event_bpf_match(event))
8994 return;
8995
8996 perf_event_header__init_id(&bpf_event->event_id.header,
8997 &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01008998 ret = perf_output_begin(&handle, data, event,
Song Liu6ee52e22019-01-17 08:15:15 -08008999 bpf_event->event_id.header.size);
9000 if (ret)
9001 return;
9002
9003 perf_output_put(&handle, bpf_event->event_id);
9004 perf_event__output_id_sample(event, &handle, &sample);
9005
9006 perf_output_end(&handle);
9007}
9008
9009static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
9010 enum perf_bpf_event_type type)
9011{
9012 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
Song Liu6ee52e22019-01-17 08:15:15 -08009013 int i;
9014
9015 if (prog->aux->func_cnt == 0) {
Song Liu6ee52e22019-01-17 08:15:15 -08009016 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
9017 (u64)(unsigned long)prog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01009018 prog->jited_len, unregister,
9019 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08009020 } else {
9021 for (i = 0; i < prog->aux->func_cnt; i++) {
9022 struct bpf_prog *subprog = prog->aux->func[i];
9023
Song Liu6ee52e22019-01-17 08:15:15 -08009024 perf_event_ksymbol(
9025 PERF_RECORD_KSYMBOL_TYPE_BPF,
9026 (u64)(unsigned long)subprog->bpf_func,
Jiri Olsabfea9a82020-03-12 20:55:59 +01009027 subprog->jited_len, unregister,
9028 prog->aux->ksym.name);
Song Liu6ee52e22019-01-17 08:15:15 -08009029 }
9030 }
9031}
9032
9033void perf_event_bpf_event(struct bpf_prog *prog,
9034 enum perf_bpf_event_type type,
9035 u16 flags)
9036{
9037 struct perf_bpf_event bpf_event;
9038
9039 if (type <= PERF_BPF_EVENT_UNKNOWN ||
9040 type >= PERF_BPF_EVENT_MAX)
9041 return;
9042
9043 switch (type) {
9044 case PERF_BPF_EVENT_PROG_LOAD:
9045 case PERF_BPF_EVENT_PROG_UNLOAD:
9046 if (atomic_read(&nr_ksymbol_events))
9047 perf_event_bpf_emit_ksymbols(prog, type);
9048 break;
9049 default:
9050 break;
9051 }
9052
9053 if (!atomic_read(&nr_bpf_events))
9054 return;
9055
9056 bpf_event = (struct perf_bpf_event){
9057 .prog = prog,
9058 .event_id = {
9059 .header = {
9060 .type = PERF_RECORD_BPF_EVENT,
9061 .size = sizeof(bpf_event.event_id),
9062 },
9063 .type = type,
9064 .flags = flags,
9065 .id = prog->aux->id,
9066 },
9067 };
9068
9069 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
9070
9071 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
9072 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
9073}
9074
Adrian Huntere17d43b2020-05-12 15:19:08 +03009075struct perf_text_poke_event {
9076 const void *old_bytes;
9077 const void *new_bytes;
9078 size_t pad;
9079 u16 old_len;
9080 u16 new_len;
9081
9082 struct {
9083 struct perf_event_header header;
9084
9085 u64 addr;
9086 } event_id;
9087};
9088
9089static int perf_event_text_poke_match(struct perf_event *event)
9090{
9091 return event->attr.text_poke;
9092}
9093
9094static void perf_event_text_poke_output(struct perf_event *event, void *data)
9095{
9096 struct perf_text_poke_event *text_poke_event = data;
9097 struct perf_output_handle handle;
9098 struct perf_sample_data sample;
9099 u64 padding = 0;
9100 int ret;
9101
9102 if (!perf_event_text_poke_match(event))
9103 return;
9104
9105 perf_event_header__init_id(&text_poke_event->event_id.header, &sample, event);
9106
Peter Zijlstra267fb272020-10-30 15:50:32 +01009107 ret = perf_output_begin(&handle, &sample, event,
9108 text_poke_event->event_id.header.size);
Adrian Huntere17d43b2020-05-12 15:19:08 +03009109 if (ret)
9110 return;
9111
9112 perf_output_put(&handle, text_poke_event->event_id);
9113 perf_output_put(&handle, text_poke_event->old_len);
9114 perf_output_put(&handle, text_poke_event->new_len);
9115
9116 __output_copy(&handle, text_poke_event->old_bytes, text_poke_event->old_len);
9117 __output_copy(&handle, text_poke_event->new_bytes, text_poke_event->new_len);
9118
9119 if (text_poke_event->pad)
9120 __output_copy(&handle, &padding, text_poke_event->pad);
9121
9122 perf_event__output_id_sample(event, &handle, &sample);
9123
9124 perf_output_end(&handle);
9125}
9126
9127void perf_event_text_poke(const void *addr, const void *old_bytes,
9128 size_t old_len, const void *new_bytes, size_t new_len)
9129{
9130 struct perf_text_poke_event text_poke_event;
9131 size_t tot, pad;
9132
9133 if (!atomic_read(&nr_text_poke_events))
9134 return;
9135
9136 tot = sizeof(text_poke_event.old_len) + old_len;
9137 tot += sizeof(text_poke_event.new_len) + new_len;
9138 pad = ALIGN(tot, sizeof(u64)) - tot;
9139
9140 text_poke_event = (struct perf_text_poke_event){
9141 .old_bytes = old_bytes,
9142 .new_bytes = new_bytes,
9143 .pad = pad,
9144 .old_len = old_len,
9145 .new_len = new_len,
9146 .event_id = {
9147 .header = {
9148 .type = PERF_RECORD_TEXT_POKE,
9149 .misc = PERF_RECORD_MISC_KERNEL,
9150 .size = sizeof(text_poke_event.event_id) + tot + pad,
9151 },
9152 .addr = (unsigned long)addr,
9153 },
9154 };
9155
9156 perf_iterate_sb(perf_event_text_poke_output, &text_poke_event, NULL);
9157}
9158
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009159void perf_event_itrace_started(struct perf_event *event)
9160{
9161 event->attach_state |= PERF_ATTACH_ITRACE;
9162}
9163
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009164static void perf_log_itrace_start(struct perf_event *event)
9165{
9166 struct perf_output_handle handle;
9167 struct perf_sample_data sample;
9168 struct perf_aux_event {
9169 struct perf_event_header header;
9170 u32 pid;
9171 u32 tid;
9172 } rec;
9173 int ret;
9174
9175 if (event->parent)
9176 event = event->parent;
9177
9178 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03009179 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009180 return;
9181
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009182 rec.header.type = PERF_RECORD_ITRACE_START;
9183 rec.header.misc = 0;
9184 rec.header.size = sizeof(rec);
9185 rec.pid = perf_event_pid(event, current);
9186 rec.tid = perf_event_tid(event, current);
9187
9188 perf_event_header__init_id(&rec.header, &sample, event);
Peter Zijlstra267fb272020-10-30 15:50:32 +01009189 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02009190
9191 if (ret)
9192 return;
9193
9194 perf_output_put(&handle, rec);
9195 perf_event__output_id_sample(event, &handle, &sample);
9196
9197 perf_output_end(&handle);
9198}
9199
Adrian Hunter8b8ff8c2021-09-07 19:39:01 +03009200void perf_report_aux_output_id(struct perf_event *event, u64 hw_id)
9201{
9202 struct perf_output_handle handle;
9203 struct perf_sample_data sample;
9204 struct perf_aux_event {
9205 struct perf_event_header header;
9206 u64 hw_id;
9207 } rec;
9208 int ret;
9209
9210 if (event->parent)
9211 event = event->parent;
9212
9213 rec.header.type = PERF_RECORD_AUX_OUTPUT_HW_ID;
9214 rec.header.misc = 0;
9215 rec.header.size = sizeof(rec);
9216 rec.hw_id = hw_id;
9217
9218 perf_event_header__init_id(&rec.header, &sample, event);
9219 ret = perf_output_begin(&handle, &sample, event, rec.header.size);
9220
9221 if (ret)
9222 return;
9223
9224 perf_output_put(&handle, rec);
9225 perf_event__output_id_sample(event, &handle, &sample);
9226
9227 perf_output_end(&handle);
9228}
9229
Jiri Olsa475113d2016-12-28 14:31:03 +01009230static int
9231__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009232{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009233 struct hw_perf_event *hwc = &event->hw;
9234 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01009235 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01009236
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009237 seq = __this_cpu_read(perf_throttled_seq);
9238 if (seq != hwc->interrupts_seq) {
9239 hwc->interrupts_seq = seq;
9240 hwc->interrupts = 1;
9241 } else {
9242 hwc->interrupts++;
9243 if (unlikely(throttle
9244 && hwc->interrupts >= max_samples_per_tick)) {
9245 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009246 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01009247 hwc->interrupts = MAX_INTERRUPTS;
9248 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009249 ret = 1;
9250 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01009251 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009252
9253 if (event->attr.freq) {
9254 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01009255 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009256
Peter Zijlstraabd50712010-01-26 18:50:16 +01009257 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009258
Peter Zijlstraabd50712010-01-26 18:50:16 +01009259 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01009260 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009261 }
9262
Jiri Olsa475113d2016-12-28 14:31:03 +01009263 return ret;
9264}
9265
9266int perf_event_account_interrupt(struct perf_event *event)
9267{
9268 return __perf_event_account_interrupt(event, 1);
9269}
9270
9271/*
9272 * Generic event overflow handling, sampling.
9273 */
9274
9275static int __perf_event_overflow(struct perf_event *event,
9276 int throttle, struct perf_sample_data *data,
9277 struct pt_regs *regs)
9278{
9279 int events = atomic_read(&event->event_limit);
9280 int ret = 0;
9281
9282 /*
9283 * Non-sampling counters might still use the PMI to fold short
9284 * hardware counters, ignore those.
9285 */
9286 if (unlikely(!is_sampling_event(event)))
9287 return 0;
9288
9289 ret = __perf_event_account_interrupt(event, throttle);
9290
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009291 /*
9292 * XXX event_limit might not quite work as expected on inherited
9293 * events
9294 */
9295
9296 event->pending_kill = POLL_IN;
9297 if (events && atomic_dec_and_test(&event->event_limit)) {
9298 ret = 1;
9299 event->pending_kill = POLL_HUP;
Marco Elver97ba62b2021-04-08 12:36:01 +02009300 event->pending_addr = data->addr;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02009301
9302 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009303 }
9304
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009305 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01009306
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02009307 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009308 event->pending_wakeup = 1;
9309 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02009310 }
9311
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009312 return ret;
9313}
9314
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009315int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009316 struct perf_sample_data *data,
9317 struct pt_regs *regs)
9318{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009319 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009320}
9321
9322/*
9323 * Generic software event infrastructure
9324 */
9325
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009326struct swevent_htable {
9327 struct swevent_hlist *swevent_hlist;
9328 struct mutex hlist_mutex;
9329 int hlist_refcount;
9330
9331 /* Recursion avoidance in each contexts */
9332 int recursion[PERF_NR_CONTEXTS];
9333};
9334
9335static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
9336
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009337/*
9338 * We directly increment event->count and keep a second value in
9339 * event->hw.period_left to count intervals. This period event
9340 * is kept in the range [-sample_period, 0] so that we can use the
9341 * sign as trigger.
9342 */
9343
Jiri Olsaab573842013-05-01 17:25:44 +02009344u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009345{
9346 struct hw_perf_event *hwc = &event->hw;
9347 u64 period = hwc->last_period;
9348 u64 nr, offset;
9349 s64 old, val;
9350
9351 hwc->last_period = hwc->sample_period;
9352
9353again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02009354 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009355 if (val < 0)
9356 return 0;
9357
9358 nr = div64_u64(period + val, period);
9359 offset = nr * period;
9360 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02009361 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009362 goto again;
9363
9364 return nr;
9365}
9366
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009367static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009368 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009369 struct pt_regs *regs)
9370{
9371 struct hw_perf_event *hwc = &event->hw;
9372 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009373
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009374 if (!overflow)
9375 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009376
9377 if (hwc->interrupts == MAX_INTERRUPTS)
9378 return;
9379
9380 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009381 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009382 data, regs)) {
9383 /*
9384 * We inhibit the overflow from happening when
9385 * hwc->interrupts == MAX_INTERRUPTS.
9386 */
9387 break;
9388 }
9389 throttle = 1;
9390 }
9391}
9392
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009393static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009394 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009395 struct pt_regs *regs)
9396{
9397 struct hw_perf_event *hwc = &event->hw;
9398
Peter Zijlstrae7850592010-05-21 14:43:08 +02009399 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009401 if (!regs)
9402 return;
9403
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009404 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009405 return;
9406
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03009407 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
9408 data->period = nr;
9409 return perf_swevent_overflow(event, 1, data, regs);
9410 } else
9411 data->period = event->hw.last_period;
9412
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009413 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009414 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009415
Peter Zijlstrae7850592010-05-21 14:43:08 +02009416 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01009417 return;
9418
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009419 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009420}
9421
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009422static int perf_exclude_event(struct perf_event *event,
9423 struct pt_regs *regs)
9424{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009425 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01009426 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009427
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009428 if (regs) {
9429 if (event->attr.exclude_user && user_mode(regs))
9430 return 1;
9431
9432 if (event->attr.exclude_kernel && !user_mode(regs))
9433 return 1;
9434 }
9435
9436 return 0;
9437}
9438
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009439static int perf_swevent_match(struct perf_event *event,
9440 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08009441 u32 event_id,
9442 struct perf_sample_data *data,
9443 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009444{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009445 if (event->attr.type != type)
9446 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009447
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009448 if (event->attr.config != event_id)
9449 return 0;
9450
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009451 if (perf_exclude_event(event, regs))
9452 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009453
9454 return 1;
9455}
9456
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009457static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009458{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009459 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009460
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009461 return hash_64(val, SWEVENT_HLIST_BITS);
9462}
9463
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009464static inline struct hlist_head *
9465__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009466{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009467 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009468
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009469 return &hlist->heads[hash];
9470}
9471
9472/* For the read side: events when they trigger */
9473static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009474find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009475{
9476 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009477
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009478 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009479 if (!hlist)
9480 return NULL;
9481
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009482 return __find_swevent_head(hlist, type, event_id);
9483}
9484
9485/* For the event head insertion and removal in the hlist */
9486static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009487find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009488{
9489 struct swevent_hlist *hlist;
9490 u32 event_id = event->attr.config;
9491 u64 type = event->attr.type;
9492
9493 /*
9494 * Event scheduling is always serialized against hlist allocation
9495 * and release. Which makes the protected version suitable here.
9496 * The context lock guarantees that.
9497 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009498 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009499 lockdep_is_held(&event->ctx->lock));
9500 if (!hlist)
9501 return NULL;
9502
9503 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009504}
9505
9506static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009507 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009508 struct perf_sample_data *data,
9509 struct pt_regs *regs)
9510{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009511 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009512 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009513 struct hlist_head *head;
9514
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009515 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009516 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009517 if (!head)
9518 goto end;
9519
Sasha Levinb67bfe02013-02-27 17:06:00 -08009520 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08009521 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009522 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009523 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009524end:
9525 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009526}
9527
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009528DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
9529
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009530int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009531{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009532 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009533
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009534 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009535}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01009536EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009537
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009538void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009539{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009540 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009541
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009542 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01009543}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009544
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009545void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009546{
Ingo Molnara4234bf2009-11-23 10:57:59 +01009547 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009548
9549 if (WARN_ON_ONCE(!regs))
9550 return;
9551
9552 perf_sample_data_init(&data, addr, 0);
9553 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
9554}
9555
9556void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
9557{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009558 int rctx;
9559
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009560 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009561 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009562 if (unlikely(rctx < 0))
9563 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009564
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009565 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01009566
9567 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01009568fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009569 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009570}
9571
9572static void perf_swevent_read(struct perf_event *event)
9573{
9574}
9575
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009576static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009577{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05009578 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009579 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009580 struct hlist_head *head;
9581
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009582 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009583 hwc->last_period = hwc->sample_period;
9584 perf_swevent_set_period(event);
9585 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009586
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009587 hwc->state = !(flags & PERF_EF_START);
9588
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009589 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01009590 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009591 return -EINVAL;
9592
9593 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08009594 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009595
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009596 return 0;
9597}
9598
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009599static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009600{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009601 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009602}
9603
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009604static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009605{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009606 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009607}
9608
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009609static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009610{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009611 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02009612}
9613
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009614/* Deref the hlist from the update side */
9615static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009616swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009617{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009618 return rcu_dereference_protected(swhash->swevent_hlist,
9619 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009620}
9621
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009622static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009623{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009624 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009625
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02009626 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009627 return;
9628
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03009629 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08009630 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009631}
9632
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009633static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009634{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009635 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009636
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009637 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009638
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009639 if (!--swhash->hlist_refcount)
9640 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009641
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009642 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009643}
9644
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009645static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009646{
9647 int cpu;
9648
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009649 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009650 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009651}
9652
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009653static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009654{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009655 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009656 int err = 0;
9657
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009658 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009659 if (!swevent_hlist_deref(swhash) &&
9660 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009661 struct swevent_hlist *hlist;
9662
9663 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9664 if (!hlist) {
9665 err = -ENOMEM;
9666 goto exit;
9667 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009668 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009669 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009670 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009671exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009672 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009673
9674 return err;
9675}
9676
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009677static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009678{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009679 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009680
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009681 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009682 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009683 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009684 if (err) {
9685 failed_cpu = cpu;
9686 goto fail;
9687 }
9688 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009689 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009690 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02009691fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009692 for_each_possible_cpu(cpu) {
9693 if (cpu == failed_cpu)
9694 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009695 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009696 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009697 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009698 return err;
9699}
9700
Ingo Molnarc5905af2012-02-24 08:31:31 +01009701struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009702
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009703static void sw_perf_event_destroy(struct perf_event *event)
9704{
9705 u64 event_id = event->attr.config;
9706
9707 WARN_ON(event->parent);
9708
Ingo Molnarc5905af2012-02-24 08:31:31 +01009709 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009710 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009711}
9712
9713static int perf_swevent_init(struct perf_event *event)
9714{
Tommi Rantala8176cce2013-04-13 22:49:14 +03009715 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009716
9717 if (event->attr.type != PERF_TYPE_SOFTWARE)
9718 return -ENOENT;
9719
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009720 /*
9721 * no branch sampling for software events
9722 */
9723 if (has_branch_stack(event))
9724 return -EOPNOTSUPP;
9725
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009726 switch (event_id) {
9727 case PERF_COUNT_SW_CPU_CLOCK:
9728 case PERF_COUNT_SW_TASK_CLOCK:
9729 return -ENOENT;
9730
9731 default:
9732 break;
9733 }
9734
Dan Carpenterce677832010-10-24 21:50:42 +02009735 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009736 return -ENOENT;
9737
9738 if (!event->parent) {
9739 int err;
9740
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009741 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009742 if (err)
9743 return err;
9744
Ingo Molnarc5905af2012-02-24 08:31:31 +01009745 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009746 event->destroy = sw_perf_event_destroy;
9747 }
9748
9749 return 0;
9750}
9751
9752static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009753 .task_ctx_nr = perf_sw_context,
9754
Peter Zijlstra34f43922015-02-20 14:05:38 +01009755 .capabilities = PERF_PMU_CAP_NO_NMI,
9756
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009757 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009758 .add = perf_swevent_add,
9759 .del = perf_swevent_del,
9760 .start = perf_swevent_start,
9761 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009762 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009763};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009764
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009765#ifdef CONFIG_EVENT_TRACING
9766
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009767static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009768 struct perf_sample_data *data)
9769{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009770 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009771
Peter Zijlstrab71b4372015-11-02 10:50:51 +01009772 /* only top level events have filters set */
9773 if (event->parent)
9774 event = event->parent;
9775
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009776 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9777 return 1;
9778 return 0;
9779}
9780
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009781static int perf_tp_event_match(struct perf_event *event,
9782 struct perf_sample_data *data,
9783 struct pt_regs *regs)
9784{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01009785 if (event->hw.state & PERF_HES_STOPPED)
9786 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02009787 /*
Song Liu9fd2e482019-05-07 09:15:45 -07009788 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02009789 */
Song Liu9fd2e482019-05-07 09:15:45 -07009790 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009791 return 0;
9792
9793 if (!perf_tp_filter_match(event, data))
9794 return 0;
9795
9796 return 1;
9797}
9798
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009799void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9800 struct trace_event_call *call, u64 count,
9801 struct pt_regs *regs, struct hlist_head *head,
9802 struct task_struct *task)
9803{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009804 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009805 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009806 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009807 perf_swevent_put_recursion_context(rctx);
9808 return;
9809 }
9810 }
9811 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009812 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009813}
9814EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9815
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009816void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009817 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009818 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009819{
9820 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009821 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009822
9823 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009824 .frag = {
9825 .size = entry_size,
9826 .data = record,
9827 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009828 };
9829
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009830 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009831 data.raw = &raw;
9832
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009833 perf_trace_buf_update(record, event_type);
9834
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009835 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009836 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009837 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009838 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009839
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009840 /*
9841 * If we got specified a target task, also iterate its context and
9842 * deliver this event there too.
9843 */
9844 if (task && task != current) {
9845 struct perf_event_context *ctx;
9846 struct trace_entry *entry = record;
9847
9848 rcu_read_lock();
9849 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9850 if (!ctx)
9851 goto unlock;
9852
9853 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009854 if (event->cpu != smp_processor_id())
9855 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009856 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9857 continue;
9858 if (event->attr.config != entry->type)
9859 continue;
Marco Elver73743c32021-11-09 13:22:32 +01009860 /* Cannot deliver synchronous signal to other task. */
9861 if (event->attr.sigtrap)
9862 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009863 if (perf_tp_event_match(event, &data, regs))
9864 perf_swevent_event(event, count, &data, regs);
9865 }
9866unlock:
9867 rcu_read_unlock();
9868 }
9869
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009870 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009871}
9872EXPORT_SYMBOL_GPL(perf_tp_event);
9873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009874static void tp_perf_event_destroy(struct perf_event *event)
9875{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009876 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009877}
9878
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009879static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009880{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009881 int err;
9882
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009883 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9884 return -ENOENT;
9885
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009886 /*
9887 * no branch sampling for tracepoint events
9888 */
9889 if (has_branch_stack(event))
9890 return -EOPNOTSUPP;
9891
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009892 err = perf_trace_init(event);
9893 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009894 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009895
9896 event->destroy = tp_perf_event_destroy;
9897
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009898 return 0;
9899}
9900
9901static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009902 .task_ctx_nr = perf_sw_context,
9903
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009904 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009905 .add = perf_trace_add,
9906 .del = perf_trace_del,
9907 .start = perf_swevent_start,
9908 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009909 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009910};
9911
Song Liu33ea4b22017-12-06 14:45:16 -08009912#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009913/*
9914 * Flags in config, used by dynamic PMU kprobe and uprobe
9915 * The flags should match following PMU_FORMAT_ATTR().
9916 *
9917 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9918 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009919 *
9920 * The following values specify a reference counter (or semaphore in the
9921 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9922 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9923 *
9924 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9925 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009926 */
9927enum perf_probe_config {
9928 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009929 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9930 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009931};
9932
9933PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009934#endif
Song Liue12f03d2017-12-06 14:45:15 -08009935
Song Liua6ca88b2018-10-01 22:36:36 -07009936#ifdef CONFIG_KPROBE_EVENTS
9937static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009938 &format_attr_retprobe.attr,
9939 NULL,
9940};
9941
Song Liua6ca88b2018-10-01 22:36:36 -07009942static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009943 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009944 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009945};
9946
Song Liua6ca88b2018-10-01 22:36:36 -07009947static const struct attribute_group *kprobe_attr_groups[] = {
9948 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009949 NULL,
9950};
9951
9952static int perf_kprobe_event_init(struct perf_event *event);
9953static struct pmu perf_kprobe = {
9954 .task_ctx_nr = perf_sw_context,
9955 .event_init = perf_kprobe_event_init,
9956 .add = perf_trace_add,
9957 .del = perf_trace_del,
9958 .start = perf_swevent_start,
9959 .stop = perf_swevent_stop,
9960 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009961 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009962};
9963
9964static int perf_kprobe_event_init(struct perf_event *event)
9965{
9966 int err;
9967 bool is_retprobe;
9968
9969 if (event->attr.type != perf_kprobe.type)
9970 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009971
Alexey Budankovc9e09242020-04-02 11:47:01 +03009972 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +00009973 return -EACCES;
9974
Song Liue12f03d2017-12-06 14:45:15 -08009975 /*
9976 * no branch sampling for probe events
9977 */
9978 if (has_branch_stack(event))
9979 return -EOPNOTSUPP;
9980
9981 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9982 err = perf_kprobe_init(event, is_retprobe);
9983 if (err)
9984 return err;
9985
9986 event->destroy = perf_kprobe_destroy;
9987
9988 return 0;
9989}
9990#endif /* CONFIG_KPROBE_EVENTS */
9991
Song Liu33ea4b22017-12-06 14:45:16 -08009992#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009993PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9994
9995static struct attribute *uprobe_attrs[] = {
9996 &format_attr_retprobe.attr,
9997 &format_attr_ref_ctr_offset.attr,
9998 NULL,
9999};
10000
10001static struct attribute_group uprobe_format_group = {
10002 .name = "format",
10003 .attrs = uprobe_attrs,
10004};
10005
10006static const struct attribute_group *uprobe_attr_groups[] = {
10007 &uprobe_format_group,
10008 NULL,
10009};
10010
Song Liu33ea4b22017-12-06 14:45:16 -080010011static int perf_uprobe_event_init(struct perf_event *event);
10012static struct pmu perf_uprobe = {
10013 .task_ctx_nr = perf_sw_context,
10014 .event_init = perf_uprobe_event_init,
10015 .add = perf_trace_add,
10016 .del = perf_trace_del,
10017 .start = perf_swevent_start,
10018 .stop = perf_swevent_stop,
10019 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -070010020 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -080010021};
10022
10023static int perf_uprobe_event_init(struct perf_event *event)
10024{
10025 int err;
Song Liua6ca88b2018-10-01 22:36:36 -070010026 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -080010027 bool is_retprobe;
10028
10029 if (event->attr.type != perf_uprobe.type)
10030 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +000010031
Alexey Budankovc9e09242020-04-02 11:47:01 +030010032 if (!perfmon_capable())
Song Liu32e6e962018-04-11 18:02:37 +000010033 return -EACCES;
10034
Song Liu33ea4b22017-12-06 14:45:16 -080010035 /*
10036 * no branch sampling for probe events
10037 */
10038 if (has_branch_stack(event))
10039 return -EOPNOTSUPP;
10040
10041 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -070010042 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
10043 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -080010044 if (err)
10045 return err;
10046
10047 event->destroy = perf_uprobe_destroy;
10048
10049 return 0;
10050}
10051#endif /* CONFIG_UPROBE_EVENTS */
10052
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010053static inline void perf_tp_register(void)
10054{
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010055 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -080010056#ifdef CONFIG_KPROBE_EVENTS
10057 perf_pmu_register(&perf_kprobe, "kprobe", -1);
10058#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010059#ifdef CONFIG_UPROBE_EVENTS
10060 perf_pmu_register(&perf_uprobe, "uprobe", -1);
10061#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010062}
Li Zefan6fb29152009-10-15 11:21:42 +080010063
Li Zefan6fb29152009-10-15 11:21:42 +080010064static void perf_event_free_filter(struct perf_event *event)
10065{
10066 ftrace_profile_free_filter(event);
10067}
10068
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010069#ifdef CONFIG_BPF_SYSCALL
10070static void bpf_overflow_handler(struct perf_event *event,
10071 struct perf_sample_data *data,
10072 struct pt_regs *regs)
10073{
10074 struct bpf_perf_event_data_kern ctx = {
10075 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -070010076 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010077 };
Yonghong Song594286b2021-08-19 08:52:09 -070010078 struct bpf_prog *prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010079 int ret = 0;
10080
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +010010081 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010082 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
10083 goto out;
10084 rcu_read_lock();
Yonghong Song594286b2021-08-19 08:52:09 -070010085 prog = READ_ONCE(event->prog);
10086 if (prog)
10087 ret = bpf_prog_run(prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010088 rcu_read_unlock();
10089out:
10090 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010091 if (!ret)
10092 return;
10093
10094 event->orig_overflow_handler(event, data, regs);
10095}
10096
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010097static int perf_event_set_bpf_handler(struct perf_event *event,
10098 struct bpf_prog *prog,
10099 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010100{
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010101 if (event->overflow_handler_context)
10102 /* hw breakpoint or kernel counter */
10103 return -EINVAL;
10104
10105 if (event->prog)
10106 return -EEXIST;
10107
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010108 if (prog->type != BPF_PROG_TYPE_PERF_EVENT)
10109 return -EINVAL;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010110
Song Liu5d99cb2c2020-07-23 11:06:45 -070010111 if (event->attr.precise_ip &&
10112 prog->call_get_stack &&
10113 (!(event->attr.sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY) ||
10114 event->attr.exclude_callchain_kernel ||
10115 event->attr.exclude_callchain_user)) {
10116 /*
10117 * On perf_event with precise_ip, calling bpf_get_stack()
10118 * may trigger unwinder warnings and occasional crashes.
10119 * bpf_get_[stack|stackid] works around this issue by using
10120 * callchain attached to perf_sample_data. If the
10121 * perf_event does not full (kernel and user) callchain
10122 * attached to perf_sample_data, do not allow attaching BPF
10123 * program that calls bpf_get_[stack|stackid].
10124 */
Song Liu5d99cb2c2020-07-23 11:06:45 -070010125 return -EPROTO;
10126 }
10127
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010128 event->prog = prog;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010129 event->bpf_cookie = bpf_cookie;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010130 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
10131 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
10132 return 0;
10133}
10134
10135static void perf_event_free_bpf_handler(struct perf_event *event)
10136{
10137 struct bpf_prog *prog = event->prog;
10138
10139 if (!prog)
10140 return;
10141
10142 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
10143 event->prog = NULL;
10144 bpf_prog_put(prog);
10145}
10146#else
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010147static int perf_event_set_bpf_handler(struct perf_event *event,
10148 struct bpf_prog *prog,
10149 u64 bpf_cookie)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010150{
10151 return -EOPNOTSUPP;
10152}
10153static void perf_event_free_bpf_handler(struct perf_event *event)
10154{
10155}
10156#endif
10157
Song Liue12f03d2017-12-06 14:45:15 -080010158/*
10159 * returns true if the event is a tracepoint, or a kprobe/upprobe created
10160 * with perf_event_open()
10161 */
10162static inline bool perf_event_is_tracing(struct perf_event *event)
10163{
10164 if (event->pmu == &perf_tracepoint)
10165 return true;
10166#ifdef CONFIG_KPROBE_EVENTS
10167 if (event->pmu == &perf_kprobe)
10168 return true;
10169#endif
Song Liu33ea4b22017-12-06 14:45:16 -080010170#ifdef CONFIG_UPROBE_EVENTS
10171 if (event->pmu == &perf_uprobe)
10172 return true;
10173#endif
Song Liue12f03d2017-12-06 14:45:15 -080010174 return false;
10175}
10176
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010177int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10178 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010179{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010180 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010181
Song Liue12f03d2017-12-06 14:45:15 -080010182 if (!perf_event_is_tracing(event))
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010183 return perf_event_set_bpf_handler(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010184
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010185 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
10186 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010187 is_syscall_tp = is_syscall_trace_event(event->tp_event);
10188 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010189 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -070010190 return -EINVAL;
10191
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -070010192 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010193 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010194 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT))
Alexei Starovoitov25415172015-03-25 12:49:20 -070010195 return -EINVAL;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010196
Josef Bacik9802d862017-12-11 11:36:48 -050010197 /* Kprobe override only works for kprobes, not uprobes. */
10198 if (prog->kprobe_override &&
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010199 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE))
Josef Bacik9802d862017-12-11 11:36:48 -050010200 return -EINVAL;
Josef Bacik9802d862017-12-11 11:36:48 -050010201
Yonghong Songcf5f5ce2017-08-04 16:00:09 -070010202 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010203 int off = trace_event_get_offsets(event->tp_event);
10204
Andrii Nakryiko652c1b12021-08-15 00:05:56 -070010205 if (prog->aux->max_ctx_offset > off)
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010206 return -EACCES;
Alexei Starovoitov32bbe002016-04-06 18:43:28 -070010207 }
Alexei Starovoitov25415172015-03-25 12:49:20 -070010208
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010209 return perf_event_attach_bpf_prog(event, prog, bpf_cookie);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010210}
10211
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010212void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010213{
Song Liue12f03d2017-12-06 14:45:15 -080010214 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -070010215 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010216 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -070010217 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -070010218 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -070010219}
10220
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010221#else
Li Zefan6fb29152009-10-15 11:21:42 +080010222
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010223static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010224{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010225}
Li Zefan6fb29152009-10-15 11:21:42 +080010226
Li Zefan6fb29152009-10-15 11:21:42 +080010227static void perf_event_free_filter(struct perf_event *event)
10228{
10229}
10230
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -070010231int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog,
10232 u64 bpf_cookie)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010233{
10234 return -ENOENT;
10235}
10236
Andrii Nakryikob89fbfb2021-08-15 00:05:57 -070010237void perf_event_free_bpf_prog(struct perf_event *event)
Alexei Starovoitov25415172015-03-25 12:49:20 -070010238{
10239}
Li Zefan07b139c2009-12-21 14:27:35 +080010240#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010241
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010242#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010243void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010244{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010245 struct perf_sample_data sample;
10246 struct pt_regs *regs = data;
10247
Robert Richterfd0d0002012-04-02 20:19:08 +020010248 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +010010249
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010250 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020010251 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010252}
10253#endif
10254
Alexander Shishkin375637b2016-04-27 18:44:46 +030010255/*
10256 * Allocate a new address filter
10257 */
10258static struct perf_addr_filter *
10259perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
10260{
10261 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
10262 struct perf_addr_filter *filter;
10263
10264 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
10265 if (!filter)
10266 return NULL;
10267
10268 INIT_LIST_HEAD(&filter->entry);
10269 list_add_tail(&filter->entry, filters);
10270
10271 return filter;
10272}
10273
10274static void free_filters_list(struct list_head *filters)
10275{
10276 struct perf_addr_filter *filter, *iter;
10277
10278 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -070010279 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010280 list_del(&filter->entry);
10281 kfree(filter);
10282 }
10283}
10284
10285/*
10286 * Free existing address filters and optionally install new ones
10287 */
10288static void perf_addr_filters_splice(struct perf_event *event,
10289 struct list_head *head)
10290{
10291 unsigned long flags;
10292 LIST_HEAD(list);
10293
10294 if (!has_addr_filter(event))
10295 return;
10296
10297 /* don't bother with children, they don't have their own filters */
10298 if (event->parent)
10299 return;
10300
10301 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
10302
10303 list_splice_init(&event->addr_filters.list, &list);
10304 if (head)
10305 list_splice(head, &event->addr_filters.list);
10306
10307 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
10308
10309 free_filters_list(&list);
10310}
10311
10312/*
10313 * Scan through mm's vmas and see if one of them matches the
10314 * @filter; if so, adjust filter's address range.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070010315 * Called with mm::mmap_lock down for reading.
Alexander Shishkin375637b2016-04-27 18:44:46 +030010316 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010317static void perf_addr_filter_apply(struct perf_addr_filter *filter,
10318 struct mm_struct *mm,
10319 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010320{
10321 struct vm_area_struct *vma;
10322
10323 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010324 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010325 continue;
10326
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010327 if (perf_addr_filter_vma_adjust(filter, vma, fr))
10328 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010329 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010330}
10331
10332/*
10333 * Update event's address range filters based on the
10334 * task's existing mappings, if any.
10335 */
10336static void perf_event_addr_filters_apply(struct perf_event *event)
10337{
10338 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10339 struct task_struct *task = READ_ONCE(event->ctx->task);
10340 struct perf_addr_filter *filter;
10341 struct mm_struct *mm = NULL;
10342 unsigned int count = 0;
10343 unsigned long flags;
10344
10345 /*
10346 * We may observe TASK_TOMBSTONE, which means that the event tear-down
10347 * will stop on the parent's child_mutex that our caller is also holding
10348 */
10349 if (task == TASK_TOMBSTONE)
10350 return;
10351
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010352 if (ifh->nr_file_filters) {
Baptiste Lepersb89a05b2021-09-06 11:53:10 +100010353 mm = get_task_mm(task);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010354 if (!mm)
10355 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010356
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010357 mmap_read_lock(mm);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010358 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010359
10360 raw_spin_lock_irqsave(&ifh->lock, flags);
10361 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010362 if (filter->path.dentry) {
10363 /*
10364 * Adjust base offset if the filter is associated to a
10365 * binary that needs to be mapped:
10366 */
10367 event->addr_filter_ranges[count].start = 0;
10368 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010369
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010370 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010371 } else {
10372 event->addr_filter_ranges[count].start = filter->offset;
10373 event->addr_filter_ranges[count].size = filter->size;
10374 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010375
10376 count++;
10377 }
10378
10379 event->addr_filters_gen++;
10380 raw_spin_unlock_irqrestore(&ifh->lock, flags);
10381
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010382 if (ifh->nr_file_filters) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -070010383 mmap_read_unlock(mm);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010384
Alexander Shishkin52a44f82019-03-29 11:12:12 +020010385 mmput(mm);
10386 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010387
10388restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +030010389 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010390}
10391
10392/*
10393 * Address range filtering: limiting the data to certain
10394 * instruction address ranges. Filters are ioctl()ed to us from
10395 * userspace as ascii strings.
10396 *
10397 * Filter string format:
10398 *
10399 * ACTION RANGE_SPEC
10400 * where ACTION is one of the
10401 * * "filter": limit the trace to this region
10402 * * "start": start tracing from this address
10403 * * "stop": stop tracing at this address/region;
10404 * RANGE_SPEC is
10405 * * for kernel addresses: <start address>[/<size>]
10406 * * for object files: <start address>[/<size>]@</path/to/object/file>
10407 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010408 * if <size> is not specified or is zero, the range is treated as a single
10409 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +030010410 */
10411enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +020010412 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +030010413 IF_ACT_FILTER,
10414 IF_ACT_START,
10415 IF_ACT_STOP,
10416 IF_SRC_FILE,
10417 IF_SRC_KERNEL,
10418 IF_SRC_FILEADDR,
10419 IF_SRC_KERNELADDR,
10420};
10421
10422enum {
10423 IF_STATE_ACTION = 0,
10424 IF_STATE_SOURCE,
10425 IF_STATE_END,
10426};
10427
10428static const match_table_t if_tokens = {
10429 { IF_ACT_FILTER, "filter" },
10430 { IF_ACT_START, "start" },
10431 { IF_ACT_STOP, "stop" },
10432 { IF_SRC_FILE, "%u/%u@%s" },
10433 { IF_SRC_KERNEL, "%u/%u" },
10434 { IF_SRC_FILEADDR, "%u@%s" },
10435 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +020010436 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +030010437};
10438
10439/*
10440 * Address filter string parser
10441 */
10442static int
10443perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
10444 struct list_head *filters)
10445{
10446 struct perf_addr_filter *filter = NULL;
10447 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010448 substring_t args[MAX_OPT_ARGS];
10449 int state = IF_STATE_ACTION, token;
10450 unsigned int kernel = 0;
10451 int ret = -EINVAL;
10452
10453 orig = fstr = kstrdup(fstr, GFP_KERNEL);
10454 if (!fstr)
10455 return -ENOMEM;
10456
10457 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010458 static const enum perf_addr_filter_action_t actions[] = {
10459 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
10460 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
10461 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
10462 };
Alexander Shishkin375637b2016-04-27 18:44:46 +030010463 ret = -EINVAL;
10464
10465 if (!*start)
10466 continue;
10467
10468 /* filter definition begins */
10469 if (state == IF_STATE_ACTION) {
10470 filter = perf_addr_filter_new(event, filters);
10471 if (!filter)
10472 goto fail;
10473 }
10474
10475 token = match_token(start, if_tokens, args);
10476 switch (token) {
10477 case IF_ACT_FILTER:
10478 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +030010479 case IF_ACT_STOP:
10480 if (state != IF_STATE_ACTION)
10481 goto fail;
10482
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010483 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +030010484 state = IF_STATE_SOURCE;
10485 break;
10486
10487 case IF_SRC_KERNELADDR:
10488 case IF_SRC_KERNEL:
10489 kernel = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010490 fallthrough;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010491
10492 case IF_SRC_FILEADDR:
10493 case IF_SRC_FILE:
10494 if (state != IF_STATE_SOURCE)
10495 goto fail;
10496
Alexander Shishkin375637b2016-04-27 18:44:46 +030010497 *args[0].to = 0;
10498 ret = kstrtoul(args[0].from, 0, &filter->offset);
10499 if (ret)
10500 goto fail;
10501
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010502 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +030010503 *args[1].to = 0;
10504 ret = kstrtoul(args[1].from, 0, &filter->size);
10505 if (ret)
10506 goto fail;
10507 }
10508
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010509 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010510 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010511
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010512 kfree(filename);
Mathieu Poirier4059ffd2016-07-18 10:43:05 -060010513 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010514 if (!filename) {
10515 ret = -ENOMEM;
10516 goto fail;
10517 }
10518 }
10519
10520 state = IF_STATE_END;
10521 break;
10522
10523 default:
10524 goto fail;
10525 }
10526
10527 /*
10528 * Filter definition is fully parsed, validate and install it.
10529 * Make sure that it doesn't contradict itself or the event's
10530 * attribute.
10531 */
10532 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +020010533 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010534 if (kernel && event->attr.exclude_kernel)
10535 goto fail;
10536
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +030010537 /*
10538 * ACTION "filter" must have a non-zero length region
10539 * specified.
10540 */
10541 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
10542 !filter->size)
10543 goto fail;
10544
Alexander Shishkin375637b2016-04-27 18:44:46 +030010545 if (!kernel) {
10546 if (!filename)
10547 goto fail;
10548
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010549 /*
10550 * For now, we only support file-based filters
10551 * in per-task events; doing so for CPU-wide
10552 * events requires additional context switching
10553 * trickery, since same object code will be
10554 * mapped at different virtual addresses in
10555 * different processes.
10556 */
10557 ret = -EOPNOTSUPP;
10558 if (!event->ctx->task)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010559 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010560
Alexander Shishkin375637b2016-04-27 18:44:46 +030010561 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -070010562 ret = kern_path(filename, LOOKUP_FOLLOW,
10563 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010564 if (ret)
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010565 goto fail;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010566
10567 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -070010568 if (!filter->path.dentry ||
10569 !S_ISREG(d_inode(filter->path.dentry)
10570 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010571 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010572
10573 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010574 }
10575
10576 /* ready to consume more filters */
10577 state = IF_STATE_ACTION;
10578 filter = NULL;
10579 }
10580 }
10581
10582 if (state != IF_STATE_ACTION)
10583 goto fail;
10584
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010585 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010586 kfree(orig);
10587
10588 return 0;
10589
Alexander Shishkin375637b2016-04-27 18:44:46 +030010590fail:
kiyin(尹亮)7bdb1572020-11-04 08:23:22 +030010591 kfree(filename);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010592 free_filters_list(filters);
10593 kfree(orig);
10594
10595 return ret;
10596}
10597
10598static int
10599perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10600{
10601 LIST_HEAD(filters);
10602 int ret;
10603
10604 /*
10605 * Since this is called in perf_ioctl() path, we're already holding
10606 * ctx::mutex.
10607 */
10608 lockdep_assert_held(&event->ctx->mutex);
10609
10610 if (WARN_ON_ONCE(event->parent))
10611 return -EINVAL;
10612
Alexander Shishkin375637b2016-04-27 18:44:46 +030010613 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10614 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010615 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010616
10617 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010618 if (ret)
10619 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010620
10621 /* remove existing filters, if any */
10622 perf_addr_filters_splice(event, &filters);
10623
10624 /* install new filters */
10625 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10626
10627 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +020010628
10629fail_free_filters:
10630 free_filters_list(&filters);
10631
10632fail_clear_files:
10633 event->addr_filters.nr_file_filters = 0;
10634
10635 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010636}
10637
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010638static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10639{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010640 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -080010641 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010642
10643 filter_str = strndup_user(arg, PAGE_SIZE);
10644 if (IS_ERR(filter_str))
10645 return PTR_ERR(filter_str);
10646
Song Liue12f03d2017-12-06 14:45:15 -080010647#ifdef CONFIG_EVENT_TRACING
10648 if (perf_event_is_tracing(event)) {
10649 struct perf_event_context *ctx = event->ctx;
10650
10651 /*
10652 * Beware, here be dragons!!
10653 *
10654 * the tracepoint muck will deadlock against ctx->mutex, but
10655 * the tracepoint stuff does not actually need it. So
10656 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10657 * already have a reference on ctx.
10658 *
10659 * This can result in event getting moved to a different ctx,
10660 * but that does not affect the tracepoint state.
10661 */
10662 mutex_unlock(&ctx->mutex);
10663 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10664 mutex_lock(&ctx->mutex);
10665 } else
10666#endif
10667 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +030010668 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +030010669
10670 kfree(filter_str);
10671 return ret;
10672}
10673
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010674/*
10675 * hrtimer based swevent callback
10676 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010677
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010678static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010679{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010680 enum hrtimer_restart ret = HRTIMER_RESTART;
10681 struct perf_sample_data data;
10682 struct pt_regs *regs;
10683 struct perf_event *event;
10684 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010685
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010686 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010687
10688 if (event->state != PERF_EVENT_STATE_ACTIVE)
10689 return HRTIMER_NORESTART;
10690
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010691 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010692
Robert Richterfd0d0002012-04-02 20:19:08 +020010693 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010694 regs = get_irq_regs();
10695
10696 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -080010697 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +020010698 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010699 ret = HRTIMER_NORESTART;
10700 }
10701
10702 period = max_t(u64, 10000, event->hw.sample_period);
10703 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
10704
10705 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010706}
10707
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010708static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010709{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010710 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010711 s64 period;
10712
10713 if (!is_sampling_event(event))
10714 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010715
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010716 period = local64_read(&hwc->period_left);
10717 if (period) {
10718 if (period < 0)
10719 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010720
Franck Bui-Huu5d508e82010-11-23 16:21:45 +010010721 local64_set(&hwc->period_left, 0);
10722 } else {
10723 period = max_t(u64, 10000, hwc->sample_period);
10724 }
Thomas Gleixner3497d202015-04-14 21:09:03 +000010725 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010726 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010727}
10728
10729static void perf_swevent_cancel_hrtimer(struct perf_event *event)
10730{
10731 struct hw_perf_event *hwc = &event->hw;
10732
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +010010733 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010734 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010735 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010736
10737 hrtimer_cancel(&hwc->hrtimer);
10738 }
10739}
10740
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010741static void perf_swevent_init_hrtimer(struct perf_event *event)
10742{
10743 struct hw_perf_event *hwc = &event->hw;
10744
10745 if (!is_sampling_event(event))
10746 return;
10747
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010748 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010749 hwc->hrtimer.function = perf_swevent_hrtimer;
10750
10751 /*
10752 * Since hrtimers have a fixed rate, we can do a static freq->period
10753 * mapping and avoid the whole period adjust feedback stuff.
10754 */
10755 if (event->attr.freq) {
10756 long freq = event->attr.sample_freq;
10757
10758 event->attr.sample_period = NSEC_PER_SEC / freq;
10759 hwc->sample_period = event->attr.sample_period;
10760 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +090010761 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010762 event->attr.freq = 0;
10763 }
10764}
10765
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010766/*
10767 * Software event: cpu wall time clock
10768 */
10769
10770static void cpu_clock_event_update(struct perf_event *event)
10771{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010772 s64 prev;
10773 u64 now;
10774
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010775 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010776 prev = local64_xchg(&event->hw.prev_count, now);
10777 local64_add(now - prev, &event->count);
10778}
10779
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010780static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010781{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010782 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010783 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010784}
10785
10786static void cpu_clock_event_stop(struct perf_event *event, int flags)
10787{
10788 perf_swevent_cancel_hrtimer(event);
10789 cpu_clock_event_update(event);
10790}
10791
10792static int cpu_clock_event_add(struct perf_event *event, int flags)
10793{
10794 if (flags & PERF_EF_START)
10795 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010796 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010797
10798 return 0;
10799}
10800
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010801static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010802{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010803 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010804}
10805
10806static void cpu_clock_event_read(struct perf_event *event)
10807{
10808 cpu_clock_event_update(event);
10809}
10810
10811static int cpu_clock_event_init(struct perf_event *event)
10812{
10813 if (event->attr.type != PERF_TYPE_SOFTWARE)
10814 return -ENOENT;
10815
10816 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10817 return -ENOENT;
10818
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010819 /*
10820 * no branch sampling for software events
10821 */
10822 if (has_branch_stack(event))
10823 return -EOPNOTSUPP;
10824
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010825 perf_swevent_init_hrtimer(event);
10826
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010827 return 0;
10828}
10829
10830static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010831 .task_ctx_nr = perf_sw_context,
10832
Peter Zijlstra34f43922015-02-20 14:05:38 +010010833 .capabilities = PERF_PMU_CAP_NO_NMI,
10834
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010835 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010836 .add = cpu_clock_event_add,
10837 .del = cpu_clock_event_del,
10838 .start = cpu_clock_event_start,
10839 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010840 .read = cpu_clock_event_read,
10841};
10842
10843/*
10844 * Software event: task time clock
10845 */
10846
10847static void task_clock_event_update(struct perf_event *event, u64 now)
10848{
10849 u64 prev;
10850 s64 delta;
10851
10852 prev = local64_xchg(&event->hw.prev_count, now);
10853 delta = now - prev;
10854 local64_add(delta, &event->count);
10855}
10856
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010857static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010858{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010859 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010860 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010861}
10862
10863static void task_clock_event_stop(struct perf_event *event, int flags)
10864{
10865 perf_swevent_cancel_hrtimer(event);
10866 task_clock_event_update(event, event->ctx->time);
10867}
10868
10869static int task_clock_event_add(struct perf_event *event, int flags)
10870{
10871 if (flags & PERF_EF_START)
10872 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010873 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010874
10875 return 0;
10876}
10877
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010878static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010879{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010880 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010881}
10882
10883static void task_clock_event_read(struct perf_event *event)
10884{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010885 u64 now = perf_clock();
10886 u64 delta = now - event->ctx->timestamp;
10887 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010888
10889 task_clock_event_update(event, time);
10890}
10891
10892static int task_clock_event_init(struct perf_event *event)
10893{
10894 if (event->attr.type != PERF_TYPE_SOFTWARE)
10895 return -ENOENT;
10896
10897 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10898 return -ENOENT;
10899
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010900 /*
10901 * no branch sampling for software events
10902 */
10903 if (has_branch_stack(event))
10904 return -EOPNOTSUPP;
10905
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010906 perf_swevent_init_hrtimer(event);
10907
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010908 return 0;
10909}
10910
10911static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010912 .task_ctx_nr = perf_sw_context,
10913
Peter Zijlstra34f43922015-02-20 14:05:38 +010010914 .capabilities = PERF_PMU_CAP_NO_NMI,
10915
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010916 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010917 .add = task_clock_event_add,
10918 .del = task_clock_event_del,
10919 .start = task_clock_event_start,
10920 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010921 .read = task_clock_event_read,
10922};
10923
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010924static void perf_pmu_nop_void(struct pmu *pmu)
10925{
10926}
10927
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010928static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10929{
10930}
10931
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010932static int perf_pmu_nop_int(struct pmu *pmu)
10933{
10934 return 0;
10935}
10936
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010937static int perf_event_nop_int(struct perf_event *event, u64 value)
10938{
10939 return 0;
10940}
10941
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010942static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010943
10944static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010945{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010946 __this_cpu_write(nop_txn_flags, flags);
10947
10948 if (flags & ~PERF_PMU_TXN_ADD)
10949 return;
10950
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010951 perf_pmu_disable(pmu);
10952}
10953
10954static int perf_pmu_commit_txn(struct pmu *pmu)
10955{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010956 unsigned int flags = __this_cpu_read(nop_txn_flags);
10957
10958 __this_cpu_write(nop_txn_flags, 0);
10959
10960 if (flags & ~PERF_PMU_TXN_ADD)
10961 return 0;
10962
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010963 perf_pmu_enable(pmu);
10964 return 0;
10965}
10966
10967static void perf_pmu_cancel_txn(struct pmu *pmu)
10968{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010969 unsigned int flags = __this_cpu_read(nop_txn_flags);
10970
10971 __this_cpu_write(nop_txn_flags, 0);
10972
10973 if (flags & ~PERF_PMU_TXN_ADD)
10974 return;
10975
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010976 perf_pmu_enable(pmu);
10977}
10978
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010979static int perf_event_idx_default(struct perf_event *event)
10980{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010981 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010982}
10983
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010984/*
10985 * Ensures all contexts with the same task_ctx_nr have the same
10986 * pmu_cpu_context too.
10987 */
Mark Rutland9e317042014-02-10 17:44:18 +000010988static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010989{
10990 struct pmu *pmu;
10991
10992 if (ctxn < 0)
10993 return NULL;
10994
10995 list_for_each_entry(pmu, &pmus, entry) {
10996 if (pmu->task_ctx_nr == ctxn)
10997 return pmu->pmu_cpu_context;
10998 }
10999
11000 return NULL;
11001}
11002
Peter Zijlstra51676952010-12-07 14:18:20 +010011003static void free_pmu_context(struct pmu *pmu)
11004{
Will Deacondf0062b2017-10-03 15:20:50 +010011005 /*
11006 * Static contexts such as perf_sw_context have a global lifetime
11007 * and may be shared between different PMUs. Avoid freeing them
11008 * when a single PMU is going away.
11009 */
11010 if (pmu->task_ctx_nr > perf_invalid_context)
11011 return;
11012
Peter Zijlstra51676952010-12-07 14:18:20 +010011013 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011014}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011015
11016/*
11017 * Let userspace know that this PMU supports address range filtering:
11018 */
11019static ssize_t nr_addr_filters_show(struct device *dev,
11020 struct device_attribute *attr,
11021 char *page)
11022{
11023 struct pmu *pmu = dev_get_drvdata(dev);
11024
11025 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
11026}
11027DEVICE_ATTR_RO(nr_addr_filters);
11028
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011029static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011030
Peter Zijlstraabe43402010-11-17 23:17:37 +010011031static ssize_t
11032type_show(struct device *dev, struct device_attribute *attr, char *page)
11033{
11034 struct pmu *pmu = dev_get_drvdata(dev);
11035
11036 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
11037}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011038static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010011039
Stephane Eranian62b85632013-04-03 14:21:34 +020011040static ssize_t
11041perf_event_mux_interval_ms_show(struct device *dev,
11042 struct device_attribute *attr,
11043 char *page)
11044{
11045 struct pmu *pmu = dev_get_drvdata(dev);
11046
11047 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
11048}
11049
Peter Zijlstra272325c2015-04-15 11:41:58 +020011050static DEFINE_MUTEX(mux_interval_mutex);
11051
Stephane Eranian62b85632013-04-03 14:21:34 +020011052static ssize_t
11053perf_event_mux_interval_ms_store(struct device *dev,
11054 struct device_attribute *attr,
11055 const char *buf, size_t count)
11056{
11057 struct pmu *pmu = dev_get_drvdata(dev);
11058 int timer, cpu, ret;
11059
11060 ret = kstrtoint(buf, 0, &timer);
11061 if (ret)
11062 return ret;
11063
11064 if (timer < 1)
11065 return -EINVAL;
11066
11067 /* same value, noting to do */
11068 if (timer == pmu->hrtimer_interval_ms)
11069 return count;
11070
Peter Zijlstra272325c2015-04-15 11:41:58 +020011071 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020011072 pmu->hrtimer_interval_ms = timer;
11073
11074 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011075 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020011076 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020011077 struct perf_cpu_context *cpuctx;
11078 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11079 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
11080
Peter Zijlstra272325c2015-04-15 11:41:58 +020011081 cpu_function_call(cpu,
11082 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020011083 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011084 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020011085 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020011086
11087 return count;
11088}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011089static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020011090
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011091static struct attribute *pmu_dev_attrs[] = {
11092 &dev_attr_type.attr,
11093 &dev_attr_perf_event_mux_interval_ms.attr,
11094 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011095};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011096ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010011097
11098static int pmu_bus_running;
11099static struct bus_type pmu_bus = {
11100 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070011101 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010011102};
11103
11104static void pmu_dev_release(struct device *dev)
11105{
11106 kfree(dev);
11107}
11108
11109static int pmu_dev_alloc(struct pmu *pmu)
11110{
11111 int ret = -ENOMEM;
11112
11113 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
11114 if (!pmu->dev)
11115 goto out;
11116
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010011117 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010011118 device_initialize(pmu->dev);
11119 ret = dev_set_name(pmu->dev, "%s", pmu->name);
11120 if (ret)
11121 goto free_dev;
11122
11123 dev_set_drvdata(pmu->dev, pmu);
11124 pmu->dev->bus = &pmu_bus;
11125 pmu->dev->release = pmu_dev_release;
11126 ret = device_add(pmu->dev);
11127 if (ret)
11128 goto free_dev;
11129
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011130 /* For PMUs with address filters, throw in an extra attribute: */
11131 if (pmu->nr_addr_filters)
11132 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
11133
11134 if (ret)
11135 goto del_dev;
11136
Jiri Olsaf3a3a822019-05-12 17:55:11 +020011137 if (pmu->attr_update)
11138 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
11139
11140 if (ret)
11141 goto del_dev;
11142
Peter Zijlstraabe43402010-11-17 23:17:37 +010011143out:
11144 return ret;
11145
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030011146del_dev:
11147 device_del(pmu->dev);
11148
Peter Zijlstraabe43402010-11-17 23:17:37 +010011149free_dev:
11150 put_device(pmu->dev);
11151 goto out;
11152}
11153
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011154static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011155static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011156
Mischa Jonker03d8e802013-06-04 11:45:48 +020011157int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011158{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011159 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011160
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011161 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011162 ret = -ENOMEM;
11163 pmu->pmu_disable_count = alloc_percpu(int);
11164 if (!pmu->pmu_disable_count)
11165 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011166
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011167 pmu->type = -1;
11168 if (!name)
11169 goto skip_type;
11170 pmu->name = name;
11171
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011172 if (type != PERF_TYPE_SOFTWARE) {
11173 if (type >= 0)
11174 max = type;
11175
11176 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
11177 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011178 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011179
11180 WARN_ON(type >= 0 && ret != type);
11181
11182 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011183 }
11184 pmu->type = type;
11185
Peter Zijlstraabe43402010-11-17 23:17:37 +010011186 if (pmu_bus_running) {
11187 ret = pmu_dev_alloc(pmu);
11188 if (ret)
11189 goto free_idr;
11190 }
11191
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011192skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010011193 if (pmu->task_ctx_nr == perf_hw_context) {
11194 static int hw_context_taken = 0;
11195
Mark Rutland5101ef22016-04-26 11:33:46 +010011196 /*
11197 * Other than systems with heterogeneous CPUs, it never makes
11198 * sense for two PMUs to share perf_hw_context. PMUs which are
11199 * uncore must use perf_invalid_context.
11200 */
11201 if (WARN_ON_ONCE(hw_context_taken &&
11202 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010011203 pmu->task_ctx_nr = perf_invalid_context;
11204
11205 hw_context_taken = 1;
11206 }
11207
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011208 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
11209 if (pmu->pmu_cpu_context)
11210 goto got_cpu_context;
11211
Wei Yongjunc4814202013-04-12 11:05:54 +080011212 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011213 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
11214 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010011215 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011216
11217 for_each_possible_cpu(cpu) {
11218 struct perf_cpu_context *cpuctx;
11219
11220 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020011221 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010011222 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020011223 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011224 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011225 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020011226
Peter Zijlstra272325c2015-04-15 11:41:58 +020011227 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080011228
11229 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
11230 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011231 }
11232
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011233got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011234 if (!pmu->start_txn) {
11235 if (pmu->pmu_enable) {
11236 /*
11237 * If we have pmu_enable/pmu_disable calls, install
11238 * transaction stubs that use that to try and batch
11239 * hardware accesses.
11240 */
11241 pmu->start_txn = perf_pmu_start_txn;
11242 pmu->commit_txn = perf_pmu_commit_txn;
11243 pmu->cancel_txn = perf_pmu_cancel_txn;
11244 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070011245 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020011246 pmu->commit_txn = perf_pmu_nop_int;
11247 pmu->cancel_txn = perf_pmu_nop_void;
11248 }
11249 }
11250
11251 if (!pmu->pmu_enable) {
11252 pmu->pmu_enable = perf_pmu_nop_void;
11253 pmu->pmu_disable = perf_pmu_nop_void;
11254 }
11255
Jiri Olsa81ec3f32019-02-04 13:35:32 +010011256 if (!pmu->check_period)
11257 pmu->check_period = perf_event_nop_int;
11258
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010011259 if (!pmu->event_idx)
11260 pmu->event_idx = perf_event_idx_default;
11261
Liang, Kand44f8212019-10-22 11:13:09 +020011262 /*
11263 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
11264 * since these cannot be in the IDR. This way the linear search
11265 * is fast, provided a valid software event is provided.
11266 */
11267 if (type == PERF_TYPE_SOFTWARE || !name)
11268 list_add_rcu(&pmu->entry, &pmus);
11269 else
11270 list_add_tail_rcu(&pmu->entry, &pmus);
11271
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011272 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011273 ret = 0;
11274unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011275 mutex_unlock(&pmus_lock);
11276
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011277 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011278
Peter Zijlstraabe43402010-11-17 23:17:37 +010011279free_dev:
11280 device_del(pmu->dev);
11281 put_device(pmu->dev);
11282
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011283free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011284 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011285 idr_remove(&pmu_idr, pmu->type);
11286
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011287free_pdc:
11288 free_percpu(pmu->pmu_disable_count);
11289 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011290}
Yan, Zhengc464c762014-03-18 16:56:41 +080011291EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011292
11293void perf_pmu_unregister(struct pmu *pmu)
11294{
11295 mutex_lock(&pmus_lock);
11296 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011297
11298 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020011299 * We dereference the pmu list under both SRCU and regular RCU, so
11300 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011301 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011302 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020011303 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011304
Peter Zijlstra33696fc2010-06-14 08:49:00 +020011305 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011306 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011307 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011308 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020011309 if (pmu->nr_addr_filters)
11310 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
11311 device_del(pmu->dev);
11312 put_device(pmu->dev);
11313 }
Peter Zijlstra51676952010-12-07 14:18:20 +010011314 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020011315 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011316}
Yan, Zhengc464c762014-03-18 16:56:41 +080011317EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011318
Kan Liange321d022019-05-28 15:08:30 -070011319static inline bool has_extended_regs(struct perf_event *event)
11320{
11321 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
11322 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
11323}
11324
Mark Rutlandcc34b982015-01-07 14:56:51 +000011325static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
11326{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011327 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000011328 int ret;
11329
11330 if (!try_module_get(pmu->module))
11331 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011332
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010011333 /*
11334 * A number of pmu->event_init() methods iterate the sibling_list to,
11335 * for example, validate if the group fits on the PMU. Therefore,
11336 * if this is a sibling event, acquire the ctx->mutex to protect
11337 * the sibling_list.
11338 */
11339 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020011340 /*
11341 * This ctx->mutex can nest when we're called through
11342 * inheritance. See the perf_event_ctx_lock_nested() comment.
11343 */
11344 ctx = perf_event_ctx_lock_nested(event->group_leader,
11345 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011346 BUG_ON(!ctx);
11347 }
11348
Mark Rutlandcc34b982015-01-07 14:56:51 +000011349 event->pmu = pmu;
11350 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010011351
11352 if (ctx)
11353 perf_event_ctx_unlock(event->group_leader, ctx);
11354
Andrew Murraycc6795a2019-01-10 13:53:25 +000011355 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070011356 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
11357 has_extended_regs(event))
11358 ret = -EOPNOTSUPP;
11359
Andrew Murraycc6795a2019-01-10 13:53:25 +000011360 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070011361 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000011362 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070011363
11364 if (ret && event->destroy)
11365 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000011366 }
11367
Mark Rutlandcc34b982015-01-07 14:56:51 +000011368 if (ret)
11369 module_put(pmu->module);
11370
11371 return ret;
11372}
11373
Geliang Tang18ab2cd2015-09-27 23:25:50 +080011374static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011375{
Kan Liang55bcf6e2021-04-12 07:31:01 -070011376 bool extended_type = false;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011377 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030011378 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011379
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011380 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011381
Kan Liang40999312017-01-18 08:21:01 -050011382 /* Try parent's PMU first: */
11383 if (event->parent && event->parent->pmu) {
11384 pmu = event->parent->pmu;
11385 ret = perf_try_init_event(pmu, event);
11386 if (!ret)
11387 goto unlock;
11388 }
11389
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011390 /*
11391 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
11392 * are often aliases for PERF_TYPE_RAW.
11393 */
11394 type = event->attr.type;
Kan Liang55bcf6e2021-04-12 07:31:01 -070011395 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE) {
11396 type = event->attr.config >> PERF_PMU_TYPE_SHIFT;
11397 if (!type) {
11398 type = PERF_TYPE_RAW;
11399 } else {
11400 extended_type = true;
11401 event->attr.config &= PERF_HW_EVENT_MASK;
11402 }
11403 }
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011404
11405again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011406 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011407 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011408 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080011409 if (pmu) {
Kan Liang55bcf6e2021-04-12 07:31:01 -070011410 if (event->attr.type != type && type != PERF_TYPE_RAW &&
11411 !(pmu->capabilities & PERF_PMU_CAP_EXTENDED_HW_TYPE))
11412 goto fail;
11413
Mark Rutlandcc34b982015-01-07 14:56:51 +000011414 ret = perf_try_init_event(pmu, event);
Kan Liang55bcf6e2021-04-12 07:31:01 -070011415 if (ret == -ENOENT && event->attr.type != type && !extended_type) {
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011416 type = event->attr.type;
11417 goto again;
11418 }
11419
Lin Ming940c5b22011-02-27 21:13:31 +080011420 if (ret)
11421 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020011422
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011423 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080011424 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011425
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010011426 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000011427 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011428 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011429 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011430
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011431 if (ret != -ENOENT) {
11432 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011433 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011434 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011435 }
Kan Liang55bcf6e2021-04-12 07:31:01 -070011436fail:
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020011437 pmu = ERR_PTR(-ENOENT);
11438unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011439 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011440
11441 return pmu;
11442}
11443
Kan Liangf2fb6be2016-03-23 11:24:37 -070011444static void attach_sb_event(struct perf_event *event)
11445{
11446 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
11447
11448 raw_spin_lock(&pel->lock);
11449 list_add_rcu(&event->sb_list, &pel->list);
11450 raw_spin_unlock(&pel->lock);
11451}
11452
Peter Zijlstraaab5b712016-05-12 17:26:46 +020011453/*
11454 * We keep a list of all !task (and therefore per-cpu) events
11455 * that need to receive side-band records.
11456 *
11457 * This avoids having to scan all the various PMU per-cpu contexts
11458 * looking for them.
11459 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070011460static void account_pmu_sb_event(struct perf_event *event)
11461{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070011462 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070011463 attach_sb_event(event);
11464}
11465
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011466static void account_event_cpu(struct perf_event *event, int cpu)
11467{
11468 if (event->parent)
11469 return;
11470
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011471 if (is_cgroup_event(event))
11472 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
11473}
11474
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011475/* Freq events need the tick to stay alive (see perf_event_task_tick). */
11476static void account_freq_event_nohz(void)
11477{
11478#ifdef CONFIG_NO_HZ_FULL
11479 /* Lock so we don't race with concurrent unaccount */
11480 spin_lock(&nr_freq_lock);
11481 if (atomic_inc_return(&nr_freq_events) == 1)
11482 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
11483 spin_unlock(&nr_freq_lock);
11484#endif
11485}
11486
11487static void account_freq_event(void)
11488{
11489 if (tick_nohz_full_enabled())
11490 account_freq_event_nohz();
11491 else
11492 atomic_inc(&nr_freq_events);
11493}
11494
11495
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011496static void account_event(struct perf_event *event)
11497{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011498 bool inc = false;
11499
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011500 if (event->parent)
11501 return;
11502
Kan Lianga5398bf2020-11-30 11:38:40 -080011503 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011504 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011505 if (event->attr.mmap || event->attr.mmap_data)
11506 atomic_inc(&nr_mmap_events);
Jiri Olsa88a16a12021-01-14 14:40:44 +010011507 if (event->attr.build_id)
11508 atomic_inc(&nr_build_id_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011509 if (event->attr.comm)
11510 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053011511 if (event->attr.namespaces)
11512 atomic_inc(&nr_namespaces_events);
Namhyung Kim96aaab62020-03-25 21:45:28 +090011513 if (event->attr.cgroup)
11514 atomic_inc(&nr_cgroup_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011515 if (event->attr.task)
11516 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020011517 if (event->attr.freq)
11518 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030011519 if (event->attr.context_switch) {
11520 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011521 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030011522 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011523 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011524 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011525 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011526 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080011527 if (event->attr.ksymbol)
11528 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080011529 if (event->attr.bpf_event)
11530 atomic_inc(&nr_bpf_events);
Adrian Huntere17d43b2020-05-12 15:19:08 +030011531 if (event->attr.text_poke)
11532 atomic_inc(&nr_text_poke_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010011533
Peter Zijlstra9107c892016-02-24 18:45:45 +010011534 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030011535 /*
11536 * We need the mutex here because static_branch_enable()
11537 * must complete *before* the perf_sched_count increment
11538 * becomes visible.
11539 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010011540 if (atomic_inc_not_zero(&perf_sched_count))
11541 goto enabled;
11542
11543 mutex_lock(&perf_sched_mutex);
11544 if (!atomic_read(&perf_sched_count)) {
11545 static_branch_enable(&perf_sched_events);
11546 /*
11547 * Guarantee that all CPUs observe they key change and
11548 * call the perf scheduling hooks before proceeding to
11549 * install events that need them.
11550 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080011551 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010011552 }
11553 /*
11554 * Now that we have waited for the sync_sched(), allow further
11555 * increments to by-pass the mutex.
11556 */
11557 atomic_inc(&perf_sched_count);
11558 mutex_unlock(&perf_sched_mutex);
11559 }
11560enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011561
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020011562 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070011563
11564 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020011565}
11566
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011567/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011568 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011569 */
11570static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011571perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011572 struct task_struct *task,
11573 struct perf_event *group_leader,
11574 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011575 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000011576 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011577{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020011578 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011579 struct perf_event *event;
11580 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011581 long err = -EINVAL;
Namhyung Kimff653382021-03-11 20:54:13 +090011582 int node;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011583
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011584 if ((unsigned)cpu >= nr_cpu_ids) {
11585 if (!task || cpu != -1)
11586 return ERR_PTR(-EINVAL);
11587 }
Marco Elver97ba62b2021-04-08 12:36:01 +020011588 if (attr->sigtrap && !task) {
11589 /* Requires a task: avoid signalling random tasks. */
11590 return ERR_PTR(-EINVAL);
11591 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011592
Namhyung Kimff653382021-03-11 20:54:13 +090011593 node = (cpu >= 0) ? cpu_to_node(cpu) : -1;
11594 event = kmem_cache_alloc_node(perf_event_cache, GFP_KERNEL | __GFP_ZERO,
11595 node);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011596 if (!event)
11597 return ERR_PTR(-ENOMEM);
11598
11599 /*
11600 * Single events are their own group leaders, with an
11601 * empty sibling list:
11602 */
11603 if (!group_leader)
11604 group_leader = event;
11605
11606 mutex_init(&event->child_mutex);
11607 INIT_LIST_HEAD(&event->child_list);
11608
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011609 INIT_LIST_HEAD(&event->event_entry);
11610 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010011611 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030011612 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011613 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010011614 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011615 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010011616 INIT_HLIST_NODE(&event->hlist_entry);
11617
Peter Zijlstra10c6db12011-11-26 02:47:31 +010011618
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011619 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020011620 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080011621 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011622
11623 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011624 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011625
Al Viroa6fa9412012-08-20 14:59:25 +010011626 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011627 event->cpu = cpu;
11628 event->attr = *attr;
11629 event->group_leader = group_leader;
11630 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011631 event->oncpu = -1;
11632
11633 event->parent = parent_event;
11634
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080011635 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011636 event->id = atomic64_inc_return(&perf_event_id);
11637
11638 event->state = PERF_EVENT_STATE_INACTIVE;
11639
Marco Elver97ba62b2021-04-08 12:36:01 +020011640 if (event->attr.sigtrap)
11641 atomic_set(&event->event_limit, 1);
11642
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011643 if (task) {
11644 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011645 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010011646 * XXX pmu::event_init needs to know what task to account to
11647 * and we cannot use the ctx information because we need the
11648 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011649 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070011650 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011651 }
11652
Peter Zijlstra34f43922015-02-20 14:05:38 +010011653 event->clock = &local_clock;
11654 if (parent_event)
11655 event->clock = parent_event->clock;
11656
Avi Kivity4dc0da82011-06-29 18:42:35 +030011657 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010011658 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011659 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020011660#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011661 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011662 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011663
Andrii Nakryiko85192db2019-11-17 09:28:03 -080011664 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070011665 event->prog = prog;
11666 event->orig_overflow_handler =
11667 parent_event->orig_overflow_handler;
11668 }
11669#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030011670 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010011671
Wang Nan18794452016-03-28 06:41:30 +000011672 if (overflow_handler) {
11673 event->overflow_handler = overflow_handler;
11674 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000011675 } else if (is_write_backward(event)){
11676 event->overflow_handler = perf_event_output_backward;
11677 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000011678 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000011679 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000011680 event->overflow_handler_context = NULL;
11681 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020011682
Jiri Olsa0231bb52013-02-01 11:23:45 +010011683 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011684
11685 pmu = NULL;
11686
11687 hwc = &event->hw;
11688 hwc->sample_period = attr->sample_period;
11689 if (attr->freq && attr->sample_freq)
11690 hwc->sample_period = 1;
11691 hwc->last_period = hwc->sample_period;
11692
Peter Zijlstrae7850592010-05-21 14:43:08 +020011693 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011694
11695 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011696 * We currently do not support PERF_SAMPLE_READ on inherited events.
11697 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011698 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020011699 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011700 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011701
Yan, Zhenga46a2302014-11-04 21:56:06 -050011702 if (!has_branch_stack(event))
11703 event->attr.branch_sample_type = 0;
11704
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011705 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030011706 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011707 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011708 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011709 }
11710
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010011711 /*
11712 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11713 * be different on other CPUs in the uncore mask.
11714 */
11715 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11716 err = -EINVAL;
11717 goto err_pmu;
11718 }
11719
Alexander Shishkinab437622019-08-06 11:46:00 +030011720 if (event->attr.aux_output &&
11721 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11722 err = -EOPNOTSUPP;
11723 goto err_pmu;
11724 }
11725
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011726 if (cgroup_fd != -1) {
11727 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11728 if (err)
11729 goto err_pmu;
11730 }
11731
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011732 err = exclusive_event_init(event);
11733 if (err)
11734 goto err_pmu;
11735
Alexander Shishkin375637b2016-04-27 18:44:46 +030011736 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011737 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11738 sizeof(struct perf_addr_filter_range),
11739 GFP_KERNEL);
11740 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011741 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030011742 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030011743 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011744
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011745 /*
11746 * Clone the parent's vma offsets: they are valid until exec()
11747 * even if the mm is not shared with the parent.
11748 */
11749 if (event->parent) {
11750 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11751
11752 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011753 memcpy(event->addr_filter_ranges,
11754 event->parent->addr_filter_ranges,
11755 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011756 raw_spin_unlock_irq(&ifh->lock);
11757 }
11758
Alexander Shishkin375637b2016-04-27 18:44:46 +030011759 /* force hw sync on the address filters */
11760 event->addr_filters_gen = 1;
11761 }
11762
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011763 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020011764 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030011765 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011766 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030011767 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010011768 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011769 }
11770
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011771 err = security_perf_event_alloc(event);
11772 if (err)
11773 goto err_callchain_buffer;
11774
Alexander Shishkin927a5572016-03-02 13:24:14 +020011775 /* symmetric to unaccount_event() in _free_event() */
11776 account_event(event);
11777
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011778 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011779
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011780err_callchain_buffer:
11781 if (!event->parent) {
11782 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11783 put_callchain_buffers();
11784 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011785err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011786 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011787
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011788err_per_task:
11789 exclusive_event_destroy(event);
11790
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011791err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011792 if (is_cgroup_event(event))
11793 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011794 if (event->destroy)
11795 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080011796 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011797err_ns:
11798 if (event->ns)
11799 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090011800 if (event->hw.target)
11801 put_task_struct(event->hw.target);
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090011802 kmem_cache_free(perf_event_cache, event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011803
11804 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011805}
11806
11807static int perf_copy_attr(struct perf_event_attr __user *uattr,
11808 struct perf_event_attr *attr)
11809{
11810 u32 size;
11811 int ret;
11812
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011813 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011814 memset(attr, 0, sizeof(*attr));
11815
11816 ret = get_user(size, &uattr->size);
11817 if (ret)
11818 return ret;
11819
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011820 /* ABI compatibility quirk: */
11821 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011822 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011823 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011824 goto err_size;
11825
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011826 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11827 if (ret) {
11828 if (ret == -E2BIG)
11829 goto err_size;
11830 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011831 }
11832
Meng Xuf12f42a2017-08-23 17:07:50 -040011833 attr->size = size;
11834
Alexander Shishkina4faf002019-10-25 17:08:33 +030011835 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011836 return -EINVAL;
11837
11838 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11839 return -EINVAL;
11840
11841 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11842 return -EINVAL;
11843
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011844 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11845 u64 mask = attr->branch_sample_type;
11846
11847 /* only using defined bits */
11848 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11849 return -EINVAL;
11850
11851 /* at least one branch bit must be set */
11852 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11853 return -EINVAL;
11854
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011855 /* propagate priv level, when not set for branch */
11856 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11857
11858 /* exclude_kernel checked on syscall entry */
11859 if (!attr->exclude_kernel)
11860 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11861
11862 if (!attr->exclude_user)
11863 mask |= PERF_SAMPLE_BRANCH_USER;
11864
11865 if (!attr->exclude_hv)
11866 mask |= PERF_SAMPLE_BRANCH_HV;
11867 /*
11868 * adjust user setting (for HW filter setup)
11869 */
11870 attr->branch_sample_type = mask;
11871 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011872 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011873 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11874 ret = perf_allow_kernel(attr);
11875 if (ret)
11876 return ret;
11877 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011878 }
Jiri Olsa40189942012-08-07 15:20:37 +020011879
Jiri Olsac5ebced2012-08-07 15:20:40 +020011880 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011881 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011882 if (ret)
11883 return ret;
11884 }
11885
11886 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11887 if (!arch_perf_have_user_stack_dump())
11888 return -ENOSYS;
11889
11890 /*
11891 * We have __u32 type for the size, but so far
11892 * we can only use __u16 as maximum due to the
11893 * __u16 sample size limit.
11894 */
11895 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011896 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011897 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011898 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011899 }
Jiri Olsa40189942012-08-07 15:20:37 +020011900
Jiri Olsa5f970522018-03-12 14:45:46 +010011901 if (!attr->sample_max_stack)
11902 attr->sample_max_stack = sysctl_perf_event_max_stack;
11903
Stephane Eranian60e23642014-09-24 13:48:37 +020011904 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11905 ret = perf_reg_validate(attr->sample_regs_intr);
Namhyung Kim6546b192020-03-25 21:45:29 +090011906
11907#ifndef CONFIG_CGROUP_PERF
11908 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11909 return -EINVAL;
11910#endif
Kan Liang2a6c6b72021-01-28 14:40:07 -080011911 if ((attr->sample_type & PERF_SAMPLE_WEIGHT) &&
11912 (attr->sample_type & PERF_SAMPLE_WEIGHT_STRUCT))
11913 return -EINVAL;
Namhyung Kim6546b192020-03-25 21:45:29 +090011914
Marco Elver2b26f0a2021-04-08 12:35:58 +020011915 if (!attr->inherit && attr->inherit_thread)
11916 return -EINVAL;
11917
Marco Elver2e498d02021-04-08 12:35:59 +020011918 if (attr->remove_on_exec && attr->enable_on_exec)
11919 return -EINVAL;
11920
Marco Elver97ba62b2021-04-08 12:36:01 +020011921 if (attr->sigtrap && !attr->remove_on_exec)
11922 return -EINVAL;
11923
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011924out:
11925 return ret;
11926
11927err_size:
11928 put_user(sizeof(*attr), &uattr->size);
11929 ret = -E2BIG;
11930 goto out;
11931}
11932
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011933static int
11934perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011935{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011936 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011937 int ret = -EINVAL;
11938
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011939 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011940 goto set;
11941
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011942 /* don't allow circular references */
11943 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011944 goto out;
11945
Peter Zijlstra0f139302010-05-20 14:35:15 +020011946 /*
11947 * Don't allow cross-cpu buffers
11948 */
11949 if (output_event->cpu != event->cpu)
11950 goto out;
11951
11952 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011953 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011954 */
11955 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11956 goto out;
11957
Peter Zijlstra34f43922015-02-20 14:05:38 +010011958 /*
11959 * Mixing clocks in the same buffer is trouble you don't need.
11960 */
11961 if (output_event->clock != event->clock)
11962 goto out;
11963
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011964 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011965 * Either writing ring buffer from beginning or from end.
11966 * Mixing is not allowed.
11967 */
11968 if (is_write_backward(output_event) != is_write_backward(event))
11969 goto out;
11970
11971 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011972 * If both events generate aux data, they must be on the same PMU
11973 */
11974 if (has_aux(event) && has_aux(output_event) &&
11975 event->pmu != output_event->pmu)
11976 goto out;
11977
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011978set:
11979 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011980 /* Can't redirect output if we've got an active mmap() */
11981 if (atomic_read(&event->mmap_count))
11982 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011983
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011984 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011985 /* get the rb we want to redirect to */
11986 rb = ring_buffer_get(output_event);
11987 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011988 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011989 }
11990
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011991 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011992
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011993 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011994unlock:
11995 mutex_unlock(&event->mmap_mutex);
11996
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011997out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011998 return ret;
11999}
12000
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012001static void mutex_lock_double(struct mutex *a, struct mutex *b)
12002{
12003 if (b < a)
12004 swap(a, b);
12005
12006 mutex_lock(a);
12007 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
12008}
12009
Peter Zijlstra34f43922015-02-20 14:05:38 +010012010static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
12011{
12012 bool nmi_safe = false;
12013
12014 switch (clk_id) {
12015 case CLOCK_MONOTONIC:
12016 event->clock = &ktime_get_mono_fast_ns;
12017 nmi_safe = true;
12018 break;
12019
12020 case CLOCK_MONOTONIC_RAW:
12021 event->clock = &ktime_get_raw_fast_ns;
12022 nmi_safe = true;
12023 break;
12024
12025 case CLOCK_REALTIME:
12026 event->clock = &ktime_get_real_ns;
12027 break;
12028
12029 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020012030 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012031 break;
12032
12033 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020012034 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012035 break;
12036
12037 default:
12038 return -EINVAL;
12039 }
12040
12041 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
12042 return -EINVAL;
12043
12044 return 0;
12045}
12046
Peter Zijlstra321027c2017-01-11 21:09:50 +010012047/*
12048 * Variation on perf_event_ctx_lock_nested(), except we take two context
12049 * mutexes.
12050 */
12051static struct perf_event_context *
12052__perf_event_ctx_lock_double(struct perf_event *group_leader,
12053 struct perf_event_context *ctx)
12054{
12055 struct perf_event_context *gctx;
12056
12057again:
12058 rcu_read_lock();
12059 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020012060 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012061 rcu_read_unlock();
12062 goto again;
12063 }
12064 rcu_read_unlock();
12065
12066 mutex_lock_double(&gctx->mutex, &ctx->mutex);
12067
12068 if (group_leader->ctx != gctx) {
12069 mutex_unlock(&ctx->mutex);
12070 mutex_unlock(&gctx->mutex);
12071 put_ctx(gctx);
12072 goto again;
12073 }
12074
12075 return gctx;
12076}
12077
Marco Elverb068fc02021-07-05 10:44:53 +020012078static bool
12079perf_check_permission(struct perf_event_attr *attr, struct task_struct *task)
12080{
12081 unsigned int ptrace_mode = PTRACE_MODE_READ_REALCREDS;
12082 bool is_capable = perfmon_capable();
12083
12084 if (attr->sigtrap) {
12085 /*
12086 * perf_event_attr::sigtrap sends signals to the other task.
12087 * Require the current task to also have CAP_KILL.
12088 */
12089 rcu_read_lock();
12090 is_capable &= ns_capable(__task_cred(task)->user_ns, CAP_KILL);
12091 rcu_read_unlock();
12092
12093 /*
12094 * If the required capabilities aren't available, checks for
12095 * ptrace permissions: upgrade to ATTACH, since sending signals
12096 * can effectively change the target task.
12097 */
12098 ptrace_mode = PTRACE_MODE_ATTACH_REALCREDS;
12099 }
12100
12101 /*
12102 * Preserve ptrace permission check for backwards compatibility. The
12103 * ptrace check also includes checks that the current task and other
12104 * task have matching uids, and is therefore not done here explicitly.
12105 */
12106 return is_capable || ptrace_may_access(task, ptrace_mode);
12107}
12108
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012109/**
12110 * sys_perf_event_open - open a performance event, associate it to a task/cpu
12111 *
12112 * @attr_uptr: event_id type attributes for monitoring/sampling
12113 * @pid: target pid
12114 * @cpu: target cpu
12115 * @group_fd: group leader event fd
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012116 * @flags: perf event open flags
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012117 */
12118SYSCALL_DEFINE5(perf_event_open,
12119 struct perf_event_attr __user *, attr_uptr,
12120 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
12121{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012122 struct perf_event *group_leader = NULL, *output_event = NULL;
12123 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012124 struct perf_event_attr attr;
Kees Cook3f649ab2020-06-03 13:09:38 -070012125 struct perf_event_context *ctx, *gctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012126 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040012127 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070012128 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012129 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040012130 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012131 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012132 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010012133 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000012134 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012135
12136 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020012137 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012138 return -EINVAL;
12139
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012140 /* Do we allow access to perf_event_open(2) ? */
12141 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
12142 if (err)
12143 return err;
12144
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012145 err = perf_copy_attr(attr_uptr, &attr);
12146 if (err)
12147 return err;
12148
12149 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012150 err = perf_allow_kernel(&attr);
12151 if (err)
12152 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012153 }
12154
Hari Bathinie4222672017-03-08 02:11:36 +053012155 if (attr.namespaces) {
Alexey Budankov18aa1852020-04-02 11:46:24 +030012156 if (!perfmon_capable())
Hari Bathinie4222672017-03-08 02:11:36 +053012157 return -EACCES;
12158 }
12159
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012160 if (attr.freq) {
12161 if (attr.sample_freq > sysctl_perf_event_sample_rate)
12162 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020012163 } else {
12164 if (attr.sample_period & (1ULL << 63))
12165 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012166 }
12167
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012168 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040012169 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
12170 err = perf_allow_kernel(&attr);
12171 if (err)
12172 return err;
12173 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040012174
Ondrej Mosnacek08ef1af2021-02-24 22:56:28 +010012175 /* REGS_INTR can leak data, lockdown must prevent this */
12176 if (attr.sample_type & PERF_SAMPLE_REGS_INTR) {
12177 err = security_locked_down(LOCKDOWN_PERF);
12178 if (err)
12179 return err;
12180 }
David Howellsb0c8fdc2019-08-19 17:18:00 -070012181
Stephane Eraniane5d13672011-02-14 11:20:01 +020012182 /*
12183 * In cgroup mode, the pid argument is used to pass the fd
12184 * opened to the cgroup directory in cgroupfs. The cpu argument
12185 * designates the cpu on which to monitor threads from that
12186 * cgroup.
12187 */
12188 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
12189 return -EINVAL;
12190
Yann Droneauda21b0b32014-01-05 21:36:33 +010012191 if (flags & PERF_FLAG_FD_CLOEXEC)
12192 f_flags |= O_CLOEXEC;
12193
12194 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012195 if (event_fd < 0)
12196 return event_fd;
12197
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012198 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040012199 err = perf_fget_light(group_fd, &group);
12200 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012201 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040012202 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012203 if (flags & PERF_FLAG_FD_OUTPUT)
12204 output_event = group_leader;
12205 if (flags & PERF_FLAG_FD_NO_GROUP)
12206 group_leader = NULL;
12207 }
12208
Stephane Eraniane5d13672011-02-14 11:20:01 +020012209 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012210 task = find_lively_task_by_vpid(pid);
12211 if (IS_ERR(task)) {
12212 err = PTR_ERR(task);
12213 goto err_group_fd;
12214 }
12215 }
12216
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012217 if (task && group_leader &&
12218 group_leader->attr.inherit != attr.inherit) {
12219 err = -EINVAL;
12220 goto err_task;
12221 }
12222
Matt Fleming79dff512015-01-23 18:45:42 +000012223 if (flags & PERF_FLAG_PID_CGROUP)
12224 cgroup_fd = pid;
12225
Avi Kivity4dc0da82011-06-29 18:42:35 +030012226 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012227 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012228 if (IS_ERR(event)) {
12229 err = PTR_ERR(event);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012230 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020012231 }
12232
Vince Weaver53b25332014-05-16 17:12:12 -040012233 if (is_sampling_event(event)) {
12234 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053012235 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040012236 goto err_alloc;
12237 }
12238 }
12239
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012240 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012241 * Special case software events and allow them to be part of
12242 * any hardware group.
12243 */
12244 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012245
Peter Zijlstra34f43922015-02-20 14:05:38 +010012246 if (attr.use_clockid) {
12247 err = perf_event_set_clock(event, attr.clockid);
12248 if (err)
12249 goto err_alloc;
12250 }
12251
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012252 if (pmu->task_ctx_nr == perf_sw_context)
12253 event->event_caps |= PERF_EV_CAP_SOFTWARE;
12254
Song Liua1150c22018-05-03 12:47:16 -070012255 if (group_leader) {
12256 if (is_software_event(event) &&
12257 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012258 /*
Song Liua1150c22018-05-03 12:47:16 -070012259 * If the event is a sw event, but the group_leader
12260 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012261 *
Song Liua1150c22018-05-03 12:47:16 -070012262 * Allow the addition of software events to hw
12263 * groups, this is safe because software events
12264 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012265 */
Song Liua1150c22018-05-03 12:47:16 -070012266 pmu = group_leader->ctx->pmu;
12267 } else if (!is_software_event(event) &&
12268 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070012269 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012270 /*
12271 * In case the group is a pure software group, and we
12272 * try to add a hardware event, move the whole group to
12273 * the hardware context.
12274 */
12275 move_group = 1;
12276 }
12277 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012278
12279 /*
12280 * Get the target context (task or percpu):
12281 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012282 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012283 if (IS_ERR(ctx)) {
12284 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012285 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012286 }
12287
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012288 /*
12289 * Look up the group leader (we will attach this event to it):
12290 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012291 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012292 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012293
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012294 /*
12295 * Do not allow a recursive hierarchy (this new sibling
12296 * becoming part of another group-sibling):
12297 */
12298 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012299 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010012300
12301 /* All events in a group should have the same clock */
12302 if (group_leader->clock != event->clock)
12303 goto err_context;
12304
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012305 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010012306 * Make sure we're both events for the same CPU;
12307 * grouping events for different CPUs is broken; since
12308 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012309 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010012310 if (group_leader->cpu != event->cpu)
12311 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010012312
Mark Rutland64aee2a2017-06-22 15:41:38 +010012313 /*
12314 * Make sure we're both on the same task, or both
12315 * per-CPU events.
12316 */
12317 if (group_leader->ctx->task != ctx->task)
12318 goto err_context;
12319
12320 /*
12321 * Do not allow to attach to a group in a different task
12322 * or CPU context. If we're moving SW events, we'll fix
12323 * this up later, so allow that.
12324 */
12325 if (!move_group && group_leader->ctx != ctx)
12326 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012327
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012328 /*
12329 * Only a group leader can be exclusive or pinned
12330 */
12331 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012332 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012333 }
12334
12335 if (output_event) {
12336 err = perf_event_set_output(event, output_event);
12337 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012338 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020012339 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012340
Yann Droneauda21b0b32014-01-05 21:36:33 +010012341 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
12342 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040012343 if (IS_ERR(event_file)) {
12344 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020012345 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012346 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040012347 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012348
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012349 if (task) {
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012350 err = down_read_interruptible(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012351 if (err)
12352 goto err_file;
12353
12354 /*
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012355 * We must hold exec_update_lock across this and any potential
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012356 * perf_install_in_context() call for this new event to
12357 * serialize against exec() altering our credentials (and the
12358 * perf_event_exit_task() that could imply).
12359 */
12360 err = -EACCES;
Marco Elverb068fc02021-07-05 10:44:53 +020012361 if (!perf_check_permission(&attr, task))
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012362 goto err_cred;
12363 }
12364
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012365 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010012366 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
12367
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012368 if (gctx->task == TASK_TOMBSTONE) {
12369 err = -ESRCH;
12370 goto err_locked;
12371 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010012372
12373 /*
12374 * Check if we raced against another sys_perf_event_open() call
12375 * moving the software group underneath us.
12376 */
12377 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
12378 /*
12379 * If someone moved the group out from under us, check
12380 * if this new event wound up on the same ctx, if so
12381 * its the regular !move_group case, otherwise fail.
12382 */
12383 if (gctx != ctx) {
12384 err = -EINVAL;
12385 goto err_locked;
12386 } else {
12387 perf_event_ctx_unlock(group_leader, gctx);
12388 move_group = 0;
12389 }
12390 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030012391
12392 /*
12393 * Failure to create exclusive events returns -EBUSY.
12394 */
12395 err = -EBUSY;
12396 if (!exclusive_event_installable(group_leader, ctx))
12397 goto err_locked;
12398
12399 for_each_sibling_event(sibling, group_leader) {
12400 if (!exclusive_event_installable(sibling, ctx))
12401 goto err_locked;
12402 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012403 } else {
12404 mutex_lock(&ctx->mutex);
12405 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012406
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012407 if (ctx->task == TASK_TOMBSTONE) {
12408 err = -ESRCH;
12409 goto err_locked;
12410 }
12411
Peter Zijlstraa7239682015-09-09 19:06:33 +020012412 if (!perf_event_validate_size(event)) {
12413 err = -E2BIG;
12414 goto err_locked;
12415 }
12416
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012417 if (!task) {
12418 /*
12419 * Check if the @cpu we're creating an event for is online.
12420 *
12421 * We use the perf_cpu_context::ctx::mutex to serialize against
12422 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12423 */
12424 struct perf_cpu_context *cpuctx =
12425 container_of(ctx, struct perf_cpu_context, ctx);
12426
12427 if (!cpuctx->online) {
12428 err = -ENODEV;
12429 goto err_locked;
12430 }
12431 }
12432
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012433 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
12434 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030012435 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000012436 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012437
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012438 /*
12439 * Must be under the same ctx::mutex as perf_install_in_context(),
12440 * because we need to serialize with concurrent event creation.
12441 */
12442 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012443 err = -EBUSY;
12444 goto err_locked;
12445 }
12446
12447 WARN_ON_ONCE(ctx->parent_ctx);
12448
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012449 /*
12450 * This is the point on no return; we cannot fail hereafter. This is
12451 * where we start modifying current state.
12452 */
12453
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012454 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012455 /*
12456 * See perf_event_ctx_lock() for comments on the details
12457 * of swizzling perf_event::ctx.
12458 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012459 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010012460 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010012461
Peter Zijlstraedb39592018-03-15 17:36:56 +010012462 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012463 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012464 put_ctx(gctx);
12465 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012466
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012467 /*
12468 * Wait for everybody to stop referencing the events through
12469 * the old lists, before installing it on new lists.
12470 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012471 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012472
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012473 /*
12474 * Install the group siblings before the group leader.
12475 *
12476 * Because a group leader will try and install the entire group
12477 * (through the sibling list, which is still in-tact), we can
12478 * end up with siblings installed in the wrong context.
12479 *
12480 * By installing siblings first we NO-OP because they're not
12481 * reachable through the group lists.
12482 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012483 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012484 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010012485 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012486 get_ctx(ctx);
12487 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012488
12489 /*
12490 * Removing from the context ends up with disabled
12491 * event. What we want here is event in the initial
12492 * startup state, ready to be add into new context.
12493 */
12494 perf_event__state_init(group_leader);
12495 perf_install_in_context(ctx, group_leader, group_leader->cpu);
12496 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020012497 }
12498
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020012499 /*
12500 * Precalculate sample_data sizes; do while holding ctx::mutex such
12501 * that we're serialized against further additions and before
12502 * perf_install_in_context() which is the point the event is active and
12503 * can use these values.
12504 */
12505 perf_event__header_size(event);
12506 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012507
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010012508 event->owner = current;
12509
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080012510 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012511 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012512
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012513 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012514 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012515 mutex_unlock(&ctx->mutex);
12516
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012517 if (task) {
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012518 up_read(&task->signal->exec_update_lock);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012519 put_task_struct(task);
12520 }
12521
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012522 mutex_lock(&current->perf_event_mutex);
12523 list_add_tail(&event->owner_entry, &current->perf_event_list);
12524 mutex_unlock(&current->perf_event_mutex);
12525
Peter Zijlstra8a495422010-05-27 15:47:49 +020012526 /*
12527 * Drop the reference on the group_event after placing the
12528 * new event on the sibling_list. This ensures destruction
12529 * of the group leader will find the pointer to itself in
12530 * perf_group_detach().
12531 */
Al Viro2903ff02012-08-28 12:52:22 -040012532 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012533 fd_install(event_fd, event_file);
12534 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012535
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012536err_locked:
12537 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010012538 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012539 mutex_unlock(&ctx->mutex);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012540err_cred:
12541 if (task)
Linus Torvaldsd01e7f12020-12-15 19:36:48 -080012542 up_read(&task->signal->exec_update_lock);
peterz@infradead.org78af4dc2020-08-28 14:37:20 +020012543err_file:
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020012544 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012545err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012546 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040012547 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020012548err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010012549 /*
12550 * If event_file is set, the fput() above will have called ->release()
12551 * and that will take care of freeing the event.
12552 */
12553 if (!event_file)
12554 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020012555err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020012556 if (task)
12557 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020012558err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040012559 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040012560err_fd:
12561 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012562 return err;
12563}
12564
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012565/**
12566 * perf_event_create_kernel_counter
12567 *
12568 * @attr: attributes of the counter to create
12569 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070012570 * @task: task to profile (NULL for percpu)
Haocheng Xiea1ddf522021-05-27 11:19:46 +080012571 * @overflow_handler: callback to trigger when we hit the event
12572 * @context: context data could be used in overflow_handler callback
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012573 */
12574struct perf_event *
12575perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070012576 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030012577 perf_overflow_handler_t overflow_handler,
12578 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012579{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012580 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012581 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012582 int err;
12583
Alexander Shishkindce5aff2019-10-30 15:47:31 +020012584 /*
12585 * Grouping is not supported for kernel events, neither is 'AUX',
12586 * make sure the caller's intentions are adjusted.
12587 */
12588 if (attr->aux_output)
12589 return ERR_PTR(-EINVAL);
12590
Avi Kivity4dc0da82011-06-29 18:42:35 +030012591 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000012592 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012593 if (IS_ERR(event)) {
12594 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012595 goto err;
12596 }
12597
Jiri Olsaf8697762014-08-01 14:33:01 +020012598 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012599 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020012600
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020012601 /*
12602 * Get the target context (task or percpu):
12603 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050012604 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012605 if (IS_ERR(ctx)) {
12606 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012607 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012608 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012609
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012610 WARN_ON_ONCE(ctx->parent_ctx);
12611 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012612 if (ctx->task == TASK_TOMBSTONE) {
12613 err = -ESRCH;
12614 goto err_unlock;
12615 }
12616
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012617 if (!task) {
12618 /*
12619 * Check if the @cpu we're creating an event for is online.
12620 *
12621 * We use the perf_cpu_context::ctx::mutex to serialize against
12622 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
12623 */
12624 struct perf_cpu_context *cpuctx =
12625 container_of(ctx, struct perf_cpu_context, ctx);
12626 if (!cpuctx->online) {
12627 err = -ENODEV;
12628 goto err_unlock;
12629 }
12630 }
12631
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012632 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012633 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012634 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020012635 }
12636
Leonard Crestez4ce54af2019-07-24 15:53:24 +030012637 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012638 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012639 mutex_unlock(&ctx->mutex);
12640
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012641 return event;
12642
Peter Zijlstra84c4e622016-02-24 18:45:40 +010012643err_unlock:
12644 mutex_unlock(&ctx->mutex);
12645 perf_unpin_context(ctx);
12646 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020012647err_free:
12648 free_event(event);
12649err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010012650 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020012651}
12652EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
12653
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012654void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12655{
12656 struct perf_event_context *src_ctx;
12657 struct perf_event_context *dst_ctx;
12658 struct perf_event *event, *tmp;
12659 LIST_HEAD(events);
12660
12661 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12662 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12663
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012664 /*
12665 * See perf_event_ctx_lock() for comments on the details
12666 * of swizzling perf_event::ctx.
12667 */
12668 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012669 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12670 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012671 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012672 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012673 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020012674 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012675 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012676
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012677 /*
12678 * Wait for the events to quiesce before re-instating them.
12679 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012680 synchronize_rcu();
12681
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010012682 /*
12683 * Re-instate events in 2 passes.
12684 *
12685 * Skip over group leaders and only install siblings on this first
12686 * pass, siblings will not get enabled without a leader, however a
12687 * leader will enable its siblings, even if those are still on the old
12688 * context.
12689 */
12690 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12691 if (event->group_leader == event)
12692 continue;
12693
12694 list_del(&event->migrate_entry);
12695 if (event->state >= PERF_EVENT_STATE_OFF)
12696 event->state = PERF_EVENT_STATE_INACTIVE;
12697 account_event_cpu(event, dst_cpu);
12698 perf_install_in_context(dst_ctx, event, dst_cpu);
12699 get_ctx(dst_ctx);
12700 }
12701
12702 /*
12703 * Once all the siblings are setup properly, install the group leaders
12704 * to make it go.
12705 */
Peter Zijlstra98861672013-10-03 16:02:23 +020012706 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12707 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012708 if (event->state >= PERF_EVENT_STATE_OFF)
12709 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020012710 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012711 perf_install_in_context(dst_ctx, event, dst_cpu);
12712 get_ctx(dst_ctx);
12713 }
12714 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010012715 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080012716}
12717EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12718
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012719static void sync_child_event(struct perf_event *child_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012720{
12721 struct perf_event *parent_event = child_event->parent;
12722 u64 child_val;
12723
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012724 if (child_event->attr.inherit_stat) {
12725 struct task_struct *task = child_event->ctx->task;
12726
12727 if (task && task != TASK_TOMBSTONE)
12728 perf_event_read_event(child_event, task);
12729 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012730
Peter Zijlstrab5e58792010-05-21 14:43:12 +020012731 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012732
12733 /*
12734 * Add back the child's count to the parent's count:
12735 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020012736 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012737 atomic64_add(child_event->total_time_enabled,
12738 &parent_event->child_total_time_enabled);
12739 atomic64_add(child_event->total_time_running,
12740 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012741}
12742
12743static void
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012744perf_event_exit_event(struct perf_event *event, struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012745{
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012746 struct perf_event *parent_event = event->parent;
12747 unsigned long detach_flags = 0;
12748
12749 if (parent_event) {
12750 /*
12751 * Do not destroy the 'original' grouping; because of the
12752 * context switch optimization the original events could've
12753 * ended up in a random child task.
12754 *
12755 * If we were to destroy the original group, all group related
12756 * operations would cease to function properly after this
12757 * random child dies.
12758 *
12759 * Do destroy all inherited groups, we don't care about those
12760 * and being thorough is better.
12761 */
12762 detach_flags = DETACH_GROUP | DETACH_CHILD;
12763 mutex_lock(&parent_event->child_mutex);
12764 }
12765
12766 perf_remove_from_context(event, detach_flags);
12767
12768 raw_spin_lock_irq(&ctx->lock);
12769 if (event->state > PERF_EVENT_STATE_EXIT)
12770 perf_event_set_state(event, PERF_EVENT_STATE_EXIT);
12771 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012772
Peter Zijlstra1903d502014-07-15 17:27:27 +020012773 /*
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012774 * Child events can be freed.
Peter Zijlstra1903d502014-07-15 17:27:27 +020012775 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012776 if (parent_event) {
12777 mutex_unlock(&parent_event->child_mutex);
12778 /*
12779 * Kick perf_poll() for is_event_hup();
12780 */
12781 perf_event_wakeup(parent_event);
12782 free_event(event);
12783 put_event(parent_event);
12784 return;
12785 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012786
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012787 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012788 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012789 */
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012790 perf_event_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012791}
12792
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012793static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012794{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012795 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012796 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012797
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012798 WARN_ON_ONCE(child != current);
12799
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012800 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012801 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012802 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012803
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012804 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012805 * In order to reduce the amount of tricky in ctx tear-down, we hold
12806 * ctx::mutex over the entire thing. This serializes against almost
12807 * everything that wants to access the ctx.
12808 *
12809 * The exception is sys_perf_event_open() /
12810 * perf_event_create_kernel_count() which does find_get_context()
12811 * without ctx::mutex (it cannot because of the move_group double mutex
12812 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012813 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012814 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012815
12816 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012817 * In a single ctx::lock section, de-schedule the events and detach the
12818 * context from the task such that we cannot ever get it scheduled back
12819 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012820 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012821 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020012822 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012823
12824 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012825 * Now that the context is inactive, destroy the task <-> ctx relation
12826 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012827 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012828 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12829 put_ctx(child_ctx); /* cannot be last */
12830 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12831 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012832
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012833 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012834 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012835
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012836 if (clone_ctx)
12837 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012838
12839 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012840 * Report the task dead after unscheduling the events so that we
12841 * won't get any samples after PERF_RECORD_EXIT. We can however still
12842 * get a few PERF_RECORD_READ events.
12843 */
12844 perf_event_task(child, child_ctx, 0);
12845
Peter Zijlstraebf905f2014-05-29 19:00:24 +020012846 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020012847 perf_event_exit_event(child_event, child_ctx);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012848
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012849 mutex_unlock(&child_ctx->mutex);
12850
12851 put_ctx(child_ctx);
12852}
12853
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012854/*
12855 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012856 *
Eric W. Biedermanf7cfd872020-12-03 14:12:00 -060012857 * Can be called with exec_update_lock held when called from
Eric W. Biederman96ecee22020-05-03 06:48:17 -050012858 * setup_new_exec().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012859 */
12860void perf_event_exit_task(struct task_struct *child)
12861{
Peter Zijlstra88821352010-11-09 19:01:43 +010012862 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012863 int ctxn;
12864
Peter Zijlstra88821352010-11-09 19:01:43 +010012865 mutex_lock(&child->perf_event_mutex);
12866 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12867 owner_entry) {
12868 list_del_init(&event->owner_entry);
12869
12870 /*
12871 * Ensure the list deletion is visible before we clear
12872 * the owner, closes a race against perf_release() where
12873 * we need to serialize on the owner->perf_event_mutex.
12874 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010012875 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010012876 }
12877 mutex_unlock(&child->perf_event_mutex);
12878
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012879 for_each_task_context_nr(ctxn)
12880 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010012881
12882 /*
12883 * The perf_event_exit_task_context calls perf_event_task
12884 * with child's task_ctx, which generates EXIT events for
12885 * child contexts and sets child->perf_event_ctxp[] to NULL.
12886 * At this point we need to send EXIT events to cpu contexts.
12887 */
12888 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012889}
12890
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012891static void perf_free_event(struct perf_event *event,
12892 struct perf_event_context *ctx)
12893{
12894 struct perf_event *parent = event->parent;
12895
12896 if (WARN_ON_ONCE(!parent))
12897 return;
12898
12899 mutex_lock(&parent->child_mutex);
12900 list_del_init(&event->child_list);
12901 mutex_unlock(&parent->child_mutex);
12902
Al Viroa6fa9412012-08-20 14:59:25 +010012903 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012904
Peter Zijlstra652884f2015-01-23 11:20:10 +010012905 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020012906 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012907 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010012908 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012909 free_event(event);
12910}
12911
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012912/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012913 * Free a context as created by inheritance by perf_event_init_task() below,
12914 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010012915 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012916 * Even though the task has never lived, the context and events have been
12917 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012918 */
12919void perf_event_free_task(struct task_struct *task)
12920{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012921 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012922 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012923 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012924
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012925 for_each_task_context_nr(ctxn) {
12926 ctx = task->perf_event_ctxp[ctxn];
12927 if (!ctx)
12928 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012929
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012930 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012931 raw_spin_lock_irq(&ctx->lock);
12932 /*
12933 * Destroy the task <-> ctx relation and mark the context dead.
12934 *
12935 * This is important because even though the task hasn't been
12936 * exposed yet the context has been (through child_list).
12937 */
12938 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12939 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12940 put_task_struct(task); /* cannot be last */
12941 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012942
Peter Zijlstra15121c72017-03-16 13:47:50 +010012943 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012944 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012945
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012946 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012947
12948 /*
12949 * perf_event_release_kernel() could've stolen some of our
12950 * child events and still have them on its free_list. In that
12951 * case we must wait for these events to have been freed (in
12952 * particular all their references to this task must've been
12953 * dropped).
12954 *
12955 * Without this copy_process() will unconditionally free this
12956 * task (irrespective of its reference count) and
12957 * _free_event()'s put_task_struct(event->hw.target) will be a
12958 * use-after-free.
12959 *
12960 * Wait for all events to drop their context reference.
12961 */
12962 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12963 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012964 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012965}
12966
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012967void perf_event_delayed_put(struct task_struct *task)
12968{
12969 int ctxn;
12970
12971 for_each_task_context_nr(ctxn)
12972 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12973}
12974
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012975struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012976{
Al Viro02e5ad92019-06-26 20:43:53 -040012977 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012978 if (!file)
12979 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012980
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012981 if (file->f_op != &perf_fops) {
12982 fput(file);
12983 return ERR_PTR(-EBADF);
12984 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012985
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012986 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012987}
12988
Yonghong Songf8d959a2018-05-24 11:21:08 -070012989const struct perf_event *perf_get_event(struct file *file)
12990{
12991 if (file->f_op != &perf_fops)
12992 return ERR_PTR(-EINVAL);
12993
12994 return file->private_data;
12995}
12996
Kaixu Xiaffe86902015-08-06 07:02:32 +000012997const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12998{
12999 if (!event)
13000 return ERR_PTR(-EINVAL);
13001
13002 return &event->attr;
13003}
13004
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013005/*
Tobias Tefke788faab2018-07-09 12:57:15 +020013006 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013007 *
13008 * Returns:
13009 * - valid pointer on success
13010 * - NULL for orphaned events
13011 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013012 */
13013static struct perf_event *
13014inherit_event(struct perf_event *parent_event,
13015 struct task_struct *parent,
13016 struct perf_event_context *parent_ctx,
13017 struct task_struct *child,
13018 struct perf_event *group_leader,
13019 struct perf_event_context *child_ctx)
13020{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020013021 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013022 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020013023 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013024
13025 /*
13026 * Instead of creating recursive hierarchies of events,
13027 * we link inherited events back to the original parent,
13028 * which has a filp for sure, which we use as the reference
13029 * count:
13030 */
13031 if (parent_event->parent)
13032 parent_event = parent_event->parent;
13033
13034 child_event = perf_event_alloc(&parent_event->attr,
13035 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020013036 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013037 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000013038 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013039 if (IS_ERR(child_event))
13040 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010013041
Jiri Olsa313ccb92018-01-07 17:03:47 +010013042
13043 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
13044 !child_ctx->task_ctx_data) {
13045 struct pmu *pmu = child_event->pmu;
13046
Kan Liangff9ff922020-07-03 05:49:21 -070013047 child_ctx->task_ctx_data = alloc_task_ctx_data(pmu);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013048 if (!child_ctx->task_ctx_data) {
13049 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020013050 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013051 }
13052 }
13053
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020013054 /*
13055 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
13056 * must be under the same lock in order to serialize against
13057 * perf_event_release_kernel(), such that either we must observe
13058 * is_orphaned_event() or they will observe us on the child_list.
13059 */
13060 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020013061 if (is_orphaned_event(parent_event) ||
13062 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020013063 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010013064 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010013065 free_event(child_event);
13066 return NULL;
13067 }
13068
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013069 get_ctx(child_ctx);
13070
13071 /*
13072 * Make the child state follow the state of the parent event,
13073 * not its attr.disabled bit. We hold the parent's mutex,
13074 * so we won't race with perf_event_{en, dis}able_family.
13075 */
Jiri Olsa1929def2014-09-12 13:18:27 +020013076 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013077 child_event->state = PERF_EVENT_STATE_INACTIVE;
13078 else
13079 child_event->state = PERF_EVENT_STATE_OFF;
13080
13081 if (parent_event->attr.freq) {
13082 u64 sample_period = parent_event->hw.sample_period;
13083 struct hw_perf_event *hwc = &child_event->hw;
13084
13085 hwc->sample_period = sample_period;
13086 hwc->last_period = sample_period;
13087
13088 local64_set(&hwc->period_left, sample_period);
13089 }
13090
13091 child_event->ctx = child_ctx;
13092 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030013093 child_event->overflow_handler_context
13094 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013095
13096 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020013097 * Precalculate sample_data sizes
13098 */
13099 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020013100 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020013101
13102 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013103 * Link it up in the child's context:
13104 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020013105 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013106 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstraef54c1a2021-04-08 12:35:56 +020013107 child_event->attach_state |= PERF_ATTACH_CHILD;
Peter Zijlstracee010e2010-09-10 12:51:54 +020013108 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013109
13110 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013111 * Link this into the parent event's child list
13112 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013113 list_add_tail(&child_event->child_list, &parent_event->child_list);
13114 mutex_unlock(&parent_event->child_mutex);
13115
13116 return child_event;
13117}
13118
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013119/*
13120 * Inherits an event group.
13121 *
13122 * This will quietly suppress orphaned events; !inherit_event() is not an error.
13123 * This matches with perf_event_release_kernel() removing all child events.
13124 *
13125 * Returns:
13126 * - 0 on success
13127 * - <0 on error
13128 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013129static int inherit_group(struct perf_event *parent_event,
13130 struct task_struct *parent,
13131 struct perf_event_context *parent_ctx,
13132 struct task_struct *child,
13133 struct perf_event_context *child_ctx)
13134{
13135 struct perf_event *leader;
13136 struct perf_event *sub;
13137 struct perf_event *child_ctr;
13138
13139 leader = inherit_event(parent_event, parent, parent_ctx,
13140 child, NULL, child_ctx);
13141 if (IS_ERR(leader))
13142 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013143 /*
13144 * @leader can be NULL here because of is_orphaned_event(). In this
13145 * case inherit_event() will create individual events, similar to what
13146 * perf_group_detach() would do anyway.
13147 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010013148 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013149 child_ctr = inherit_event(sub, parent, parent_ctx,
13150 child, leader, child_ctx);
13151 if (IS_ERR(child_ctr))
13152 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013153
Alexander Shishkin00496fe2019-11-01 17:12:48 +020013154 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030013155 !perf_get_aux_event(child_ctr, leader))
13156 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020013157 }
13158 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013159}
13160
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010013161/*
13162 * Creates the child task context and tries to inherit the event-group.
13163 *
13164 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
13165 * inherited_all set when we 'fail' to inherit an orphaned event; this is
13166 * consistent with perf_event_release_kernel() removing all child events.
13167 *
13168 * Returns:
13169 * - 0 on success
13170 * - <0 on error
13171 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013172static int
13173inherit_task_group(struct perf_event *event, struct task_struct *parent,
13174 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013175 struct task_struct *child, int ctxn,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013176 u64 clone_flags, int *inherited_all)
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013177{
13178 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013179 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013180
Marco Elver2b26f0a2021-04-08 12:35:58 +020013181 if (!event->attr.inherit ||
Marco Elver97ba62b2021-04-08 12:36:01 +020013182 (event->attr.inherit_thread && !(clone_flags & CLONE_THREAD)) ||
13183 /* Do not inherit if sigtrap and signal handlers were cleared. */
13184 (event->attr.sigtrap && (clone_flags & CLONE_CLEAR_SIGHAND))) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013185 *inherited_all = 0;
13186 return 0;
13187 }
13188
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013189 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013190 if (!child_ctx) {
13191 /*
13192 * This is executed from the parent task context, so
13193 * inherit events that have been marked for cloning.
13194 * First allocate and initialize a context for the
13195 * child.
13196 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020013197 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013198 if (!child_ctx)
13199 return -ENOMEM;
13200
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013201 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013202 }
13203
13204 ret = inherit_group(event, parent, parent_ctx,
13205 child, child_ctx);
13206
13207 if (ret)
13208 *inherited_all = 0;
13209
13210 return ret;
13211}
13212
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013213/*
13214 * Initialize the perf_event context in task_struct
13215 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013216static int perf_event_init_context(struct task_struct *child, int ctxn,
13217 u64 clone_flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013218{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013219 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013220 struct perf_event_context *cloned_ctx;
13221 struct perf_event *event;
13222 struct task_struct *parent = current;
13223 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013224 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013225 int ret = 0;
13226
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013227 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013228 return 0;
13229
13230 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013231 * If the parent's context is a clone, pin it so it won't get
13232 * swapped under us.
13233 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013234 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020013235 if (!parent_ctx)
13236 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013237
13238 /*
13239 * No need to check if parent_ctx != NULL here; since we saw
13240 * it non-NULL earlier, the only reason for it to become NULL
13241 * is if we exit, and since we're currently in the middle of
13242 * a fork we can't be exiting at the same time.
13243 */
13244
13245 /*
13246 * Lock the parent list. No need to lock the child - not PID
13247 * hashed yet and not running, so nobody can access it.
13248 */
13249 mutex_lock(&parent_ctx->mutex);
13250
13251 /*
13252 * We dont have to disable NMIs - we are only looking at
13253 * the list, not manipulating it:
13254 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013255 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013256 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013257 child, ctxn, clone_flags,
13258 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013259 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013260 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013261 }
13262
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013263 /*
13264 * We can't hold ctx->lock when iterating the ->flexible_group list due
13265 * to allocations, but we need to prevent rotation because
13266 * rotate_ctx() will change the list from interrupt context.
13267 */
13268 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13269 parent_ctx->rotate_disable = 1;
13270 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
13271
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010013272 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013273 ret = inherit_task_group(event, parent, parent_ctx,
Marco Elver2b26f0a2021-04-08 12:35:58 +020013274 child, ctxn, clone_flags,
13275 &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013276 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013277 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013278 }
13279
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013280 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
13281 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010013282
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013283 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010013284
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010013285 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013286 /*
13287 * Mark the child context as a clone of the parent
13288 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013289 *
13290 * Note that if the parent is a clone, the holding of
13291 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013292 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013293 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013294 if (cloned_ctx) {
13295 child_ctx->parent_ctx = cloned_ctx;
13296 child_ctx->parent_gen = parent_ctx->parent_gen;
13297 } else {
13298 child_ctx->parent_ctx = parent_ctx;
13299 child_ctx->parent_gen = parent_ctx->generation;
13300 }
13301 get_ctx(child_ctx->parent_ctx);
13302 }
13303
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010013304 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010013305out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013306 mutex_unlock(&parent_ctx->mutex);
13307
13308 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010013309 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013310
13311 return ret;
13312}
13313
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013314/*
13315 * Initialize the perf_event context in task_struct
13316 */
Marco Elver2b26f0a2021-04-08 12:35:58 +020013317int perf_event_init_task(struct task_struct *child, u64 clone_flags)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013318{
13319 int ctxn, ret;
13320
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010013321 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
13322 mutex_init(&child->perf_event_mutex);
13323 INIT_LIST_HEAD(&child->perf_event_list);
13324
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013325 for_each_task_context_nr(ctxn) {
Marco Elver2b26f0a2021-04-08 12:35:58 +020013326 ret = perf_event_init_context(child, ctxn, clone_flags);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013327 if (ret) {
13328 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013329 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070013330 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020013331 }
13332
13333 return 0;
13334}
13335
Paul Mackerras220b1402010-03-10 20:45:52 +110013336static void __init perf_event_init_all_cpus(void)
13337{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013338 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110013339 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110013340
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013341 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
13342
Paul Mackerras220b1402010-03-10 20:45:52 +110013343 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013344 swhash = &per_cpu(swevent_htable, cpu);
13345 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000013346 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070013347
13348 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
13349 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020013350
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080013351#ifdef CONFIG_CGROUP_PERF
13352 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
13353#endif
Kan Lianga5398bf2020-11-30 11:38:40 -080013354 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110013355 }
13356}
13357
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040013358static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013359{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013360 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013361
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013362 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000013363 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013364 struct swevent_hlist *hlist;
13365
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013366 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
13367 WARN_ON(!hlist);
13368 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020013369 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020013370 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013371}
13372
Dave Young2965faa2015-09-09 15:38:55 -070013373#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013374static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013375{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013376 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013377 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
13378 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013379
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013380 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020013381 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013382 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010013383 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010013384 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013385}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013386
13387static void perf_event_exit_cpu_context(int cpu)
13388{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013389 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013390 struct perf_event_context *ctx;
13391 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013392
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013393 mutex_lock(&pmus_lock);
13394 list_for_each_entry(pmu, &pmus, entry) {
13395 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13396 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013397
13398 mutex_lock(&ctx->mutex);
13399 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013400 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013401 mutex_unlock(&ctx->mutex);
13402 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013403 cpumask_clear_cpu(cpu, perf_online_mask);
13404 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013405}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013406#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020013407
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013408static void perf_event_exit_cpu_context(int cpu) { }
13409
13410#endif
13411
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020013412int perf_event_init_cpu(unsigned int cpu)
13413{
13414 struct perf_cpu_context *cpuctx;
13415 struct perf_event_context *ctx;
13416 struct pmu *pmu;
13417
13418 perf_swevent_init_cpu(cpu);
13419
13420 mutex_lock(&pmus_lock);
13421 cpumask_set_cpu(cpu, perf_online_mask);
13422 list_for_each_entry(pmu, &pmus, entry) {
13423 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
13424 ctx = &cpuctx->ctx;
13425
13426 mutex_lock(&ctx->mutex);
13427 cpuctx->online = 1;
13428 mutex_unlock(&ctx->mutex);
13429 }
13430 mutex_unlock(&pmus_lock);
13431
13432 return 0;
13433}
13434
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013435int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013436{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010013437 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013438 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013439}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013440
Peter Zijlstrac2774432010-12-08 15:29:02 +010013441static int
13442perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
13443{
13444 int cpu;
13445
13446 for_each_online_cpu(cpu)
13447 perf_event_exit_cpu(cpu);
13448
13449 return NOTIFY_OK;
13450}
13451
13452/*
13453 * Run the perf reboot notifier at the very last possible moment so that
13454 * the generic watchdog code runs as long as possible.
13455 */
13456static struct notifier_block perf_reboot_notifier = {
13457 .notifier_call = perf_reboot,
13458 .priority = INT_MIN,
13459};
13460
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013461void __init perf_event_init(void)
13462{
Jason Wessel3c502e72010-11-04 17:33:01 -050013463 int ret;
13464
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013465 idr_init(&pmu_idr);
13466
Paul Mackerras220b1402010-03-10 20:45:52 +110013467 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013468 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010013469 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
13470 perf_pmu_register(&perf_cpu_clock, NULL, -1);
13471 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020013472 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000013473 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010013474 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050013475
13476 ret = init_hw_breakpoint();
13477 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020013478
Namhyung Kimbdacfaf2021-03-11 20:54:12 +090013479 perf_event_cache = KMEM_CACHE(perf_event, SLAB_PANIC);
13480
Jiri Olsab01c3a02012-03-23 15:41:20 +010013481 /*
13482 * Build time assertion that we keep the data_head at the intended
13483 * location. IOW, validation we got the __reserved[] size right.
13484 */
13485 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
13486 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013487}
Peter Zijlstraabe43402010-11-17 23:17:37 +010013488
Cody P Schaferfd979c02015-01-30 13:45:57 -080013489ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
13490 char *page)
13491{
13492 struct perf_pmu_events_attr *pmu_attr =
13493 container_of(attr, struct perf_pmu_events_attr, attr);
13494
13495 if (pmu_attr->event_str)
13496 return sprintf(page, "%s\n", pmu_attr->event_str);
13497
13498 return 0;
13499}
Thomas Gleixner675965b2016-02-22 22:19:27 +000013500EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080013501
Peter Zijlstraabe43402010-11-17 23:17:37 +010013502static int __init perf_event_sysfs_init(void)
13503{
13504 struct pmu *pmu;
13505 int ret;
13506
13507 mutex_lock(&pmus_lock);
13508
13509 ret = bus_register(&pmu_bus);
13510 if (ret)
13511 goto unlock;
13512
13513 list_for_each_entry(pmu, &pmus, entry) {
13514 if (!pmu->name || pmu->type < 0)
13515 continue;
13516
13517 ret = pmu_dev_alloc(pmu);
13518 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
13519 }
13520 pmu_bus_running = 1;
13521 ret = 0;
13522
13523unlock:
13524 mutex_unlock(&pmus_lock);
13525
13526 return ret;
13527}
13528device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013529
13530#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040013531static struct cgroup_subsys_state *
13532perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013533{
13534 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020013535
Li Zefan1b15d052011-03-03 14:26:06 +080013536 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013537 if (!jc)
13538 return ERR_PTR(-ENOMEM);
13539
Stephane Eraniane5d13672011-02-14 11:20:01 +020013540 jc->info = alloc_percpu(struct perf_cgroup_info);
13541 if (!jc->info) {
13542 kfree(jc);
13543 return ERR_PTR(-ENOMEM);
13544 }
13545
Stephane Eraniane5d13672011-02-14 11:20:01 +020013546 return &jc->css;
13547}
13548
Tejun Heoeb954192013-08-08 20:11:23 -040013549static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013550{
Tejun Heoeb954192013-08-08 20:11:23 -040013551 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
13552
Stephane Eraniane5d13672011-02-14 11:20:01 +020013553 free_percpu(jc->info);
13554 kfree(jc);
13555}
13556
Namhyung Kim96aaab62020-03-25 21:45:28 +090013557static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
13558{
13559 perf_event_cgroup(css->cgroup);
13560 return 0;
13561}
13562
Stephane Eraniane5d13672011-02-14 11:20:01 +020013563static int __perf_cgroup_move(void *info)
13564{
13565 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013566 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013567 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010013568 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020013569 return 0;
13570}
13571
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013572static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020013573{
Tejun Heobb9d97b2011-12-12 18:12:21 -080013574 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013575 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080013576
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050013577 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080013578 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020013579}
13580
Tejun Heo073219e2014-02-08 10:36:58 -050013581struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080013582 .css_alloc = perf_cgroup_css_alloc,
13583 .css_free = perf_cgroup_css_free,
Namhyung Kim96aaab62020-03-25 21:45:28 +090013584 .css_online = perf_cgroup_css_online,
Tejun Heobb9d97b2011-12-12 18:12:21 -080013585 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050013586 /*
13587 * Implicitly enable on dfl hierarchy so that perf events can
13588 * always be filtered by cgroup2 path as long as perf_event
13589 * controller is not mounted on a legacy hierarchy.
13590 */
13591 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040013592 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020013593};
13594#endif /* CONFIG_CGROUP_PERF */
Song Liuc22ac2a2021-09-10 11:33:50 -070013595
13596DEFINE_STATIC_CALL_RET0(perf_snapshot_branch_stack, perf_snapshot_branch_stack_t);