blob: ccf8d4fc6374e4563852f6e857d38a2f63eacd56 [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>
31#include <linux/rculist.h>
32#include <linux/uaccess.h>
33#include <linux/syscalls.h>
34#include <linux/anon_inodes.h>
35#include <linux/kernel_stat.h>
Matt Fleming39bed6c2015-01-23 18:45:40 +000036#include <linux/cgroup.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020037#include <linux/perf_event.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040038#include <linux/trace_events.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050039#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020040#include <linux/mm_types.h>
Yan, Zhengc464c762014-03-18 16:56:41 +080041#include <linux/module.h>
Peter Zijlstraf972eb62014-05-19 15:13:47 -040042#include <linux/mman.h>
Pawel Mollb3f20782014-06-13 16:03:32 +010043#include <linux/compat.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070044#include <linux/bpf.h>
45#include <linux/filter.h>
Alexander Shishkin375637b2016-04-27 18:44:46 +030046#include <linux/namei.h>
47#include <linux/parser.h>
Ingo Molnare6017572017-02-01 16:36:40 +010048#include <linux/sched/clock.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010049#include <linux/sched/mm.h>
Hari Bathinie4222672017-03-08 02:11:36 +053050#include <linux/proc_ns.h>
51#include <linux/mount.h>
Ian Rogers6eef8a712020-02-13 23:51:30 -080052#include <linux/min_heap.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020053
Frederic Weisbecker76369132011-05-19 19:55:04 +020054#include "internal.h"
55
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056#include <asm/irq_regs.h>
57
Peter Zijlstra272325c2015-04-15 11:41:58 +020058typedef int (*remote_function_f)(void *);
59
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010060struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020061 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020062 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020063 void *info;
64 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010065};
66
67static void remote_function(void *data)
68{
69 struct remote_function_call *tfc = data;
70 struct task_struct *p = tfc->p;
71
72 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010073 /* -EAGAIN */
74 if (task_cpu(p) != smp_processor_id())
75 return;
76
77 /*
78 * Now that we're on right CPU with IRQs disabled, we can test
79 * if we hit the right task without races.
80 */
81
82 tfc->ret = -ESRCH; /* No such (running) process */
83 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010084 return;
85 }
86
87 tfc->ret = tfc->func(tfc->info);
88}
89
90/**
91 * task_function_call - call a function on the cpu on which a task runs
92 * @p: the task to evaluate
93 * @func: the function to be called
94 * @info: the function call argument
95 *
96 * Calls the function @func when the task is currently running. This might
97 * be on the current CPU, which just calls the function directly
98 *
99 * returns: @func return value, or
100 * -ESRCH - when the process isn't running
101 * -EAGAIN - when the process moved away
102 */
103static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200104task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100105{
106 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200107 .p = p,
108 .func = func,
109 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100111 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100112 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100114 do {
115 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
116 if (!ret)
117 ret = data.ret;
118 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100119
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100120 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100121}
122
123/**
124 * cpu_function_call - call a function on the cpu
125 * @func: the function to be called
126 * @info: the function call argument
127 *
128 * Calls the function @func on the remote cpu.
129 *
130 * returns: @func return value or -ENXIO when the cpu is offline
131 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200132static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100133{
134 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200135 .p = NULL,
136 .func = func,
137 .info = info,
138 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100139 };
140
141 smp_call_function_single(cpu, remote_function, &data, 1);
142
143 return data.ret;
144}
145
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100146static inline struct perf_cpu_context *
147__get_cpu_context(struct perf_event_context *ctx)
148{
149 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
150}
151
152static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
153 struct perf_event_context *ctx)
154{
155 raw_spin_lock(&cpuctx->ctx.lock);
156 if (ctx)
157 raw_spin_lock(&ctx->lock);
158}
159
160static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
161 struct perf_event_context *ctx)
162{
163 if (ctx)
164 raw_spin_unlock(&ctx->lock);
165 raw_spin_unlock(&cpuctx->ctx.lock);
166}
167
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100168#define TASK_TOMBSTONE ((void *)-1L)
169
170static bool is_kernel_event(struct perf_event *event)
171{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100172 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100173}
174
Peter Zijlstra39a43642016-01-11 12:46:35 +0100175/*
176 * On task ctx scheduling...
177 *
178 * When !ctx->nr_events a task context will not be scheduled. This means
179 * we can disable the scheduler hooks (for performance) without leaving
180 * pending task ctx state.
181 *
182 * This however results in two special cases:
183 *
184 * - removing the last event from a task ctx; this is relatively straight
185 * forward and is done in __perf_remove_from_context.
186 *
187 * - adding the first event to a task ctx; this is tricky because we cannot
188 * rely on ctx->is_active and therefore cannot use event_function_call().
189 * See perf_install_in_context().
190 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100191 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
192 */
193
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100194typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
195 struct perf_event_context *, void *);
196
197struct event_function_struct {
198 struct perf_event *event;
199 event_f func;
200 void *data;
201};
202
203static int event_function(void *info)
204{
205 struct event_function_struct *efs = info;
206 struct perf_event *event = efs->event;
207 struct perf_event_context *ctx = event->ctx;
208 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
209 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100210 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100211
Frederic Weisbecker16444642017-11-06 16:01:24 +0100212 lockdep_assert_irqs_disabled();
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100213
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100214 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100215 /*
216 * Since we do the IPI call without holding ctx->lock things can have
217 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100218 */
219 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100220 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100221 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100222 goto unlock;
223 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100224
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100225 /*
226 * We only use event_function_call() on established contexts,
227 * and event_function() is only ever called when active (or
228 * rather, we'll have bailed in task_function_call() or the
229 * above ctx->task != current test), therefore we must have
230 * ctx->is_active here.
231 */
232 WARN_ON_ONCE(!ctx->is_active);
233 /*
234 * And since we have ctx->is_active, cpuctx->task_ctx must
235 * match.
236 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100237 WARN_ON_ONCE(task_ctx != ctx);
238 } else {
239 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100241
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100242 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100243unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100244 perf_ctx_unlock(cpuctx, task_ctx);
245
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100246 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100247}
248
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100249static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100250{
251 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100252 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100253 struct event_function_struct efs = {
254 .event = event,
255 .func = func,
256 .data = data,
257 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100258
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100259 if (!event->parent) {
260 /*
261 * If this is a !child event, we must hold ctx::mutex to
262 * stabilize the the event->ctx relation. See
263 * perf_event_ctx_lock().
264 */
265 lockdep_assert_held(&ctx->mutex);
266 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100267
268 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100269 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100270 return;
271 }
272
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100273 if (task == TASK_TOMBSTONE)
274 return;
275
Peter Zijlstraa0963092016-02-24 18:45:50 +0100276again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100277 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100278 return;
279
280 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100281 /*
282 * Reload the task pointer, it might have been changed by
283 * a concurrent perf_event_context_sched_out().
284 */
285 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100286 if (task == TASK_TOMBSTONE) {
287 raw_spin_unlock_irq(&ctx->lock);
288 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100289 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100290 if (ctx->is_active) {
291 raw_spin_unlock_irq(&ctx->lock);
292 goto again;
293 }
294 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100295 raw_spin_unlock_irq(&ctx->lock);
296}
297
Peter Zijlstracca20942016-08-16 13:33:26 +0200298/*
299 * Similar to event_function_call() + event_function(), but hard assumes IRQs
300 * are already disabled and we're on the right CPU.
301 */
302static void event_function_local(struct perf_event *event, event_f func, void *data)
303{
304 struct perf_event_context *ctx = event->ctx;
305 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
306 struct task_struct *task = READ_ONCE(ctx->task);
307 struct perf_event_context *task_ctx = NULL;
308
Frederic Weisbecker16444642017-11-06 16:01:24 +0100309 lockdep_assert_irqs_disabled();
Peter Zijlstracca20942016-08-16 13:33:26 +0200310
311 if (task) {
312 if (task == TASK_TOMBSTONE)
313 return;
314
315 task_ctx = ctx;
316 }
317
318 perf_ctx_lock(cpuctx, task_ctx);
319
320 task = ctx->task;
321 if (task == TASK_TOMBSTONE)
322 goto unlock;
323
324 if (task) {
325 /*
326 * We must be either inactive or active and the right task,
327 * otherwise we're screwed, since we cannot IPI to somewhere
328 * else.
329 */
330 if (ctx->is_active) {
331 if (WARN_ON_ONCE(task != current))
332 goto unlock;
333
334 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
335 goto unlock;
336 }
337 } else {
338 WARN_ON_ONCE(&cpuctx->ctx != ctx);
339 }
340
341 func(event, cpuctx, ctx, data);
342unlock:
343 perf_ctx_unlock(cpuctx, task_ctx);
344}
345
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
347 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100348 PERF_FLAG_PID_CGROUP |\
349 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200350
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100351/*
352 * branch priv levels that need permission checks
353 */
354#define PERF_SAMPLE_BRANCH_PERM_PLM \
355 (PERF_SAMPLE_BRANCH_KERNEL |\
356 PERF_SAMPLE_BRANCH_HV)
357
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200358enum event_type_t {
359 EVENT_FLEXIBLE = 0x1,
360 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100361 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200362 /* see ctx_resched() for details */
363 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200364 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
365};
366
Stephane Eraniane5d13672011-02-14 11:20:01 +0200367/*
368 * perf_sched_events : >0 events exist
369 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
370 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100371
372static void perf_sched_delayed(struct work_struct *work);
373DEFINE_STATIC_KEY_FALSE(perf_sched_events);
374static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
375static DEFINE_MUTEX(perf_sched_mutex);
376static atomic_t perf_sched_count;
377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500379static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700380static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200381
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200382static atomic_t nr_mmap_events __read_mostly;
383static atomic_t nr_comm_events __read_mostly;
Hari Bathinie4222672017-03-08 02:11:36 +0530384static atomic_t nr_namespaces_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200385static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200386static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300387static atomic_t nr_switch_events __read_mostly;
Song Liu76193a92019-01-17 08:15:13 -0800388static atomic_t nr_ksymbol_events __read_mostly;
Song Liu6ee52e22019-01-17 08:15:15 -0800389static atomic_t nr_bpf_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200390
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200391static LIST_HEAD(pmus);
392static DEFINE_MUTEX(pmus_lock);
393static struct srcu_struct pmus_srcu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +0200394static cpumask_var_t perf_online_mask;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200395
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200396/*
397 * perf event paranoia level:
398 * -1 - not paranoid at all
399 * 0 - disallow raw tracepoint access for unpriv
400 * 1 - disallow cpu events for unpriv
401 * 2 - disallow kernel profiling for unpriv
402 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700403int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200404
Frederic Weisbecker20443382011-03-31 03:33:29 +0200405/* Minimum for 512 kiB + 1 user control page */
406int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200407
408/*
409 * max perf event sample rate
410 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700411#define DEFAULT_MAX_SAMPLE_RATE 100000
412#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
413#define DEFAULT_CPU_TIME_MAX_PERCENT 25
414
415int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
416
417static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
418static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
419
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200420static int perf_sample_allowed_ns __read_mostly =
421 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700422
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800423static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700424{
425 u64 tmp = perf_sample_period_ns;
426
427 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100428 tmp = div_u64(tmp, 100);
429 if (!tmp)
430 tmp = 1;
431
432 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700433}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100434
Peter Zijlstra8d5bce02018-03-09 14:56:27 +0100435static bool perf_rotate_context(struct perf_cpu_context *cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +0200436
Peter Zijlstra163ec432011-02-16 11:22:34 +0100437int perf_proc_update_handler(struct ctl_table *table, int write,
438 void __user *buffer, size_t *lenp,
439 loff_t *ppos)
440{
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800441 int ret;
442 int perf_cpu = sysctl_perf_cpu_time_max_percent;
Kan Liangab7fdef2016-05-03 00:26:06 -0700443 /*
444 * If throttling is disabled don't allow the write:
445 */
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800446 if (write && (perf_cpu == 100 || perf_cpu == 0))
Kan Liangab7fdef2016-05-03 00:26:06 -0700447 return -EINVAL;
448
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800449 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
450 if (ret || !write)
451 return ret;
452
Peter Zijlstra163ec432011-02-16 11:22:34 +0100453 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700454 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
455 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100456
457 return 0;
458}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200459
Dave Hansen14c63f12013-06-21 08:51:36 -0700460int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
461
462int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
463 void __user *buffer, size_t *lenp,
464 loff_t *ppos)
465{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800466 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700467
468 if (ret || !write)
469 return ret;
470
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200471 if (sysctl_perf_cpu_time_max_percent == 100 ||
472 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100473 printk(KERN_WARNING
474 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
475 WRITE_ONCE(perf_sample_allowed_ns, 0);
476 } else {
477 update_perf_cpu_limits();
478 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700479
480 return 0;
481}
482
483/*
484 * perf samples are done in some very critical code paths (NMIs).
485 * If they take too much CPU time, the system can lock up and not
486 * get any real work done. This will drop the sample rate when
487 * we detect that events are taking too long.
488 */
489#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200490static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700491
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100492static u64 __report_avg;
493static u64 __report_allowed;
494
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100495static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700496{
David Ahern0d87d7e2016-08-01 13:49:29 -0700497 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100498 "perf: interrupt took too long (%lld > %lld), lowering "
499 "kernel.perf_event_max_sample_rate to %d\n",
500 __report_avg, __report_allowed,
501 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100502}
503
504static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
505
506void perf_sample_event_took(u64 sample_len_ns)
507{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100508 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
509 u64 running_len;
510 u64 avg_len;
511 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700512
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100513 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700514 return;
515
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100516 /* Decay the counter by 1 average sample. */
517 running_len = __this_cpu_read(running_sample_length);
518 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
519 running_len += sample_len_ns;
520 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700521
522 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100523 * Note: this will be biased artifically low until we have
524 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700525 * from having to maintain a count.
526 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100527 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
528 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700529 return;
530
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100531 __report_avg = avg_len;
532 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700533
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100534 /*
535 * Compute a throttle threshold 25% below the current duration.
536 */
537 avg_len += avg_len / 4;
538 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
539 if (avg_len < max)
540 max /= (u32)avg_len;
541 else
542 max = 1;
543
544 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
545 WRITE_ONCE(max_samples_per_tick, max);
546
547 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700548 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
549
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100550 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100551 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100552 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100553 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100554 sysctl_perf_event_sample_rate);
555 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700556}
557
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200558static atomic64_t perf_event_id;
559
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200560static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
561 enum event_type_t event_type);
562
563static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200564 enum event_type_t event_type,
565 struct task_struct *task);
566
567static void update_context_time(struct perf_event_context *ctx);
568static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200569
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200570void __weak perf_event_print_debug(void) { }
571
Matt Fleming84c79912010-10-03 21:41:13 +0100572extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200573{
Matt Fleming84c79912010-10-03 21:41:13 +0100574 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200575}
576
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200577static inline u64 perf_clock(void)
578{
579 return local_clock();
580}
581
Peter Zijlstra34f43922015-02-20 14:05:38 +0100582static inline u64 perf_event_clock(struct perf_event *event)
583{
584 return event->clock();
585}
586
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200587/*
588 * State based event timekeeping...
589 *
590 * The basic idea is to use event->state to determine which (if any) time
591 * fields to increment with the current delta. This means we only need to
592 * update timestamps when we change state or when they are explicitly requested
593 * (read).
594 *
595 * Event groups make things a little more complicated, but not terribly so. The
596 * rules for a group are that if the group leader is OFF the entire group is
597 * OFF, irrespecive of what the group member states are. This results in
598 * __perf_effective_state().
599 *
600 * A futher ramification is that when a group leader flips between OFF and
601 * !OFF, we need to update all group member times.
602 *
603 *
604 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
605 * need to make sure the relevant context time is updated before we try and
606 * update our timestamps.
607 */
608
609static __always_inline enum perf_event_state
610__perf_effective_state(struct perf_event *event)
611{
612 struct perf_event *leader = event->group_leader;
613
614 if (leader->state <= PERF_EVENT_STATE_OFF)
615 return leader->state;
616
617 return event->state;
618}
619
620static __always_inline void
621__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
622{
623 enum perf_event_state state = __perf_effective_state(event);
624 u64 delta = now - event->tstamp;
625
626 *enabled = event->total_time_enabled;
627 if (state >= PERF_EVENT_STATE_INACTIVE)
628 *enabled += delta;
629
630 *running = event->total_time_running;
631 if (state >= PERF_EVENT_STATE_ACTIVE)
632 *running += delta;
633}
634
635static void perf_event_update_time(struct perf_event *event)
636{
637 u64 now = perf_event_time(event);
638
639 __perf_update_times(event, now, &event->total_time_enabled,
640 &event->total_time_running);
641 event->tstamp = now;
642}
643
644static void perf_event_update_sibling_time(struct perf_event *leader)
645{
646 struct perf_event *sibling;
647
Peter Zijlstraedb39592018-03-15 17:36:56 +0100648 for_each_sibling_event(sibling, leader)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200649 perf_event_update_time(sibling);
650}
651
652static void
653perf_event_set_state(struct perf_event *event, enum perf_event_state state)
654{
655 if (event->state == state)
656 return;
657
658 perf_event_update_time(event);
659 /*
660 * If a group leader gets enabled/disabled all its siblings
661 * are affected too.
662 */
663 if ((event->state < 0) ^ (state < 0))
664 perf_event_update_sibling_time(event);
665
666 WRITE_ONCE(event->state, state);
667}
668
Stephane Eraniane5d13672011-02-14 11:20:01 +0200669#ifdef CONFIG_CGROUP_PERF
670
Stephane Eraniane5d13672011-02-14 11:20:01 +0200671static inline bool
672perf_cgroup_match(struct perf_event *event)
673{
674 struct perf_event_context *ctx = event->ctx;
675 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
676
Tejun Heoef824fa2013-04-08 19:00:38 -0700677 /* @event doesn't care about cgroup */
678 if (!event->cgrp)
679 return true;
680
681 /* wants specific cgroup scope but @cpuctx isn't associated with any */
682 if (!cpuctx->cgrp)
683 return false;
684
685 /*
686 * Cgroup scoping is recursive. An event enabled for a cgroup is
687 * also enabled for all its descendant cgroups. If @cpuctx's
688 * cgroup is a descendant of @event's (the test covers identity
689 * case), it's a match.
690 */
691 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
692 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200693}
694
Stephane Eraniane5d13672011-02-14 11:20:01 +0200695static inline void perf_detach_cgroup(struct perf_event *event)
696{
Zefan Li4e2ba652014-09-19 16:53:14 +0800697 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200698 event->cgrp = NULL;
699}
700
701static inline int is_cgroup_event(struct perf_event *event)
702{
703 return event->cgrp != NULL;
704}
705
706static inline u64 perf_cgroup_event_time(struct perf_event *event)
707{
708 struct perf_cgroup_info *t;
709
710 t = per_cpu_ptr(event->cgrp->info, event->cpu);
711 return t->time;
712}
713
714static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
715{
716 struct perf_cgroup_info *info;
717 u64 now;
718
719 now = perf_clock();
720
721 info = this_cpu_ptr(cgrp->info);
722
723 info->time += now - info->timestamp;
724 info->timestamp = now;
725}
726
727static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
728{
Song Liuc917e0f22018-03-12 09:59:43 -0700729 struct perf_cgroup *cgrp = cpuctx->cgrp;
730 struct cgroup_subsys_state *css;
731
732 if (cgrp) {
733 for (css = &cgrp->css; css; css = css->parent) {
734 cgrp = container_of(css, struct perf_cgroup, css);
735 __update_cgrp_time(cgrp);
736 }
737 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200738}
739
740static inline void update_cgrp_time_from_event(struct perf_event *event)
741{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200742 struct perf_cgroup *cgrp;
743
Stephane Eraniane5d13672011-02-14 11:20:01 +0200744 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200745 * ensure we access cgroup data only when needed and
746 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200747 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200748 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200749 return;
750
Stephane Eranian614e4c42015-11-12 11:00:04 +0100751 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200752 /*
753 * Do not update time when cgroup is not active
754 */
Colin Ian King28fa7412018-10-29 23:32:11 +0000755 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200756 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200757}
758
759static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200760perf_cgroup_set_timestamp(struct task_struct *task,
761 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200762{
763 struct perf_cgroup *cgrp;
764 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700765 struct cgroup_subsys_state *css;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200766
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200767 /*
768 * ctx->lock held by caller
769 * ensure we do not access cgroup data
770 * unless we have the cgroup pinned (css_get)
771 */
772 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200773 return;
774
Stephane Eranian614e4c42015-11-12 11:00:04 +0100775 cgrp = perf_cgroup_from_task(task, ctx);
Song Liuc917e0f22018-03-12 09:59:43 -0700776
777 for (css = &cgrp->css; css; css = css->parent) {
778 cgrp = container_of(css, struct perf_cgroup, css);
779 info = this_cpu_ptr(cgrp->info);
780 info->timestamp = ctx->timestamp;
781 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200782}
783
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800784static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
785
Stephane Eraniane5d13672011-02-14 11:20:01 +0200786#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
787#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
788
789/*
790 * reschedule events based on the cgroup constraint of task.
791 *
792 * mode SWOUT : schedule out everything
793 * mode SWIN : schedule in based on cgroup for next
794 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800795static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200796{
797 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800798 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200799 unsigned long flags;
800
801 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800802 * Disable interrupts and preemption to avoid this CPU's
803 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200804 */
805 local_irq_save(flags);
806
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800807 list = this_cpu_ptr(&cgrp_cpuctx_list);
808 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
809 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200810
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800811 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
812 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200813
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800814 if (mode & PERF_CGROUP_SWOUT) {
815 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
816 /*
817 * must not be done before ctxswout due
818 * to event_filter_match() in event_sched_out()
819 */
820 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200821 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800822
823 if (mode & PERF_CGROUP_SWIN) {
824 WARN_ON_ONCE(cpuctx->cgrp);
825 /*
826 * set cgrp before ctxsw in to allow
827 * event_filter_match() to not have to pass
828 * task around
829 * we pass the cpuctx->ctx to perf_cgroup_from_task()
830 * because cgorup events are only per-cpu
831 */
832 cpuctx->cgrp = perf_cgroup_from_task(task,
833 &cpuctx->ctx);
834 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
835 }
836 perf_pmu_enable(cpuctx->ctx.pmu);
837 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200838 }
839
Stephane Eraniane5d13672011-02-14 11:20:01 +0200840 local_irq_restore(flags);
841}
842
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200843static inline void perf_cgroup_sched_out(struct task_struct *task,
844 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200845{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200846 struct perf_cgroup *cgrp1;
847 struct perf_cgroup *cgrp2 = NULL;
848
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100849 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200850 /*
851 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100852 * we do not need to pass the ctx here because we know
853 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200854 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100855 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100856 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200857
858 /*
859 * only schedule out current cgroup events if we know
860 * that we are switching to a different cgroup. Otherwise,
861 * do no touch the cgroup events.
862 */
863 if (cgrp1 != cgrp2)
864 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100865
866 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200867}
868
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200869static inline void perf_cgroup_sched_in(struct task_struct *prev,
870 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200871{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200872 struct perf_cgroup *cgrp1;
873 struct perf_cgroup *cgrp2 = NULL;
874
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100875 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200876 /*
877 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100878 * we do not need to pass the ctx here because we know
879 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200880 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100881 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100882 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200883
884 /*
885 * only need to schedule in cgroup events if we are changing
886 * cgroup during ctxsw. Cgroup events were not scheduled
887 * out of ctxsw out if that was not the case.
888 */
889 if (cgrp1 != cgrp2)
890 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100891
892 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200893}
894
Ian Rogersc2283c92020-02-13 23:51:32 -0800895static int perf_cgroup_ensure_storage(struct perf_event *event,
896 struct cgroup_subsys_state *css)
897{
898 struct perf_cpu_context *cpuctx;
899 struct perf_event **storage;
900 int cpu, heap_size, ret = 0;
901
902 /*
903 * Allow storage to have sufficent space for an iterator for each
904 * possibly nested cgroup plus an iterator for events with no cgroup.
905 */
906 for (heap_size = 1; css; css = css->parent)
907 heap_size++;
908
909 for_each_possible_cpu(cpu) {
910 cpuctx = per_cpu_ptr(event->pmu->pmu_cpu_context, cpu);
911 if (heap_size <= cpuctx->heap_size)
912 continue;
913
914 storage = kmalloc_node(heap_size * sizeof(struct perf_event *),
915 GFP_KERNEL, cpu_to_node(cpu));
916 if (!storage) {
917 ret = -ENOMEM;
918 break;
919 }
920
921 raw_spin_lock_irq(&cpuctx->ctx.lock);
922 if (cpuctx->heap_size < heap_size) {
923 swap(cpuctx->heap, storage);
924 if (storage == cpuctx->heap_default)
925 storage = NULL;
926 cpuctx->heap_size = heap_size;
927 }
928 raw_spin_unlock_irq(&cpuctx->ctx.lock);
929
930 kfree(storage);
931 }
932
933 return ret;
934}
935
Stephane Eraniane5d13672011-02-14 11:20:01 +0200936static inline int perf_cgroup_connect(int fd, struct perf_event *event,
937 struct perf_event_attr *attr,
938 struct perf_event *group_leader)
939{
940 struct perf_cgroup *cgrp;
941 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400942 struct fd f = fdget(fd);
943 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200944
Al Viro2903ff02012-08-28 12:52:22 -0400945 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200946 return -EBADF;
947
Al Virob5830432014-10-31 01:22:04 -0400948 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400949 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800950 if (IS_ERR(css)) {
951 ret = PTR_ERR(css);
952 goto out;
953 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200954
Ian Rogersc2283c92020-02-13 23:51:32 -0800955 ret = perf_cgroup_ensure_storage(event, css);
956 if (ret)
957 goto out;
958
Stephane Eraniane5d13672011-02-14 11:20:01 +0200959 cgrp = container_of(css, struct perf_cgroup, css);
960 event->cgrp = cgrp;
961
962 /*
963 * all events in a group must monitor
964 * the same cgroup because a task belongs
965 * to only one perf cgroup at a time
966 */
967 if (group_leader && group_leader->cgrp != cgrp) {
968 perf_detach_cgroup(event);
969 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200970 }
Li Zefan3db272c2011-03-03 14:25:37 +0800971out:
Al Viro2903ff02012-08-28 12:52:22 -0400972 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200973 return ret;
974}
975
976static inline void
977perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
978{
979 struct perf_cgroup_info *t;
980 t = per_cpu_ptr(event->cgrp->info, event->cpu);
981 event->shadow_ctx_time = now - t->timestamp;
982}
983
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700984/*
985 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
986 * cleared when last cgroup event is removed.
987 */
988static inline void
989list_update_cgroup_event(struct perf_event *event,
990 struct perf_event_context *ctx, bool add)
991{
992 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800993 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700994
995 if (!is_cgroup_event(event))
996 return;
997
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700998 /*
999 * Because cgroup events are always per-cpu events,
Song Liu07c59722020-01-22 11:50:27 -08001000 * @ctx == &cpuctx->ctx.
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001001 */
Song Liu07c59722020-01-22 11:50:27 -08001002 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
leilei.lin33801b92018-03-06 17:36:37 +08001003
1004 /*
1005 * Since setting cpuctx->cgrp is conditional on the current @cgrp
1006 * matching the event's cgroup, we must do this for every new event,
1007 * because if the first would mismatch, the second would not try again
1008 * and we would leave cpuctx->cgrp unset.
1009 */
1010 if (add && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -07001011 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
1012
Tejun Heobe96b312017-10-28 09:49:37 -07001013 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
1014 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -08001015 }
leilei.lin33801b92018-03-06 17:36:37 +08001016
1017 if (add && ctx->nr_cgroups++)
1018 return;
1019 else if (!add && --ctx->nr_cgroups)
1020 return;
1021
1022 /* no cgroup running */
1023 if (!add)
1024 cpuctx->cgrp = NULL;
1025
1026 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
1027 if (add)
Song Liu07c59722020-01-22 11:50:27 -08001028 list_add(cpuctx_entry,
1029 per_cpu_ptr(&cgrp_cpuctx_list, event->cpu));
leilei.lin33801b92018-03-06 17:36:37 +08001030 else
1031 list_del(cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001032}
1033
Stephane Eraniane5d13672011-02-14 11:20:01 +02001034#else /* !CONFIG_CGROUP_PERF */
1035
1036static inline bool
1037perf_cgroup_match(struct perf_event *event)
1038{
1039 return true;
1040}
1041
1042static inline void perf_detach_cgroup(struct perf_event *event)
1043{}
1044
1045static inline int is_cgroup_event(struct perf_event *event)
1046{
1047 return 0;
1048}
1049
Stephane Eraniane5d13672011-02-14 11:20:01 +02001050static inline void update_cgrp_time_from_event(struct perf_event *event)
1051{
1052}
1053
1054static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1055{
1056}
1057
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001058static inline void perf_cgroup_sched_out(struct task_struct *task,
1059 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001060{
1061}
1062
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001063static inline void perf_cgroup_sched_in(struct task_struct *prev,
1064 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001065{
1066}
1067
1068static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1069 struct perf_event_attr *attr,
1070 struct perf_event *group_leader)
1071{
1072 return -EINVAL;
1073}
1074
1075static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001076perf_cgroup_set_timestamp(struct task_struct *task,
1077 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001078{
1079}
1080
Ben Dooks (Codethink)d00dbd292019-11-06 13:25:27 +00001081static inline void
Stephane Eraniane5d13672011-02-14 11:20:01 +02001082perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1083{
1084}
1085
1086static inline void
1087perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1088{
1089}
1090
1091static inline u64 perf_cgroup_event_time(struct perf_event *event)
1092{
1093 return 0;
1094}
1095
1096static inline void
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001097list_update_cgroup_event(struct perf_event *event,
1098 struct perf_event_context *ctx, bool add)
1099{
1100}
1101
Stephane Eraniane5d13672011-02-14 11:20:01 +02001102#endif
1103
Stephane Eranian9e630202013-04-03 14:21:33 +02001104/*
1105 * set default to be dependent on timer tick just
1106 * like original code
1107 */
1108#define PERF_CPU_HRTIMER (1000 / HZ)
1109/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001110 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001111 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001112static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001113{
1114 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001115 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001116
Frederic Weisbecker16444642017-11-06 16:01:24 +01001117 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001118
1119 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001120 rotations = perf_rotate_context(cpuctx);
1121
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001122 raw_spin_lock(&cpuctx->hrtimer_lock);
1123 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001124 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001125 else
1126 cpuctx->hrtimer_active = 0;
1127 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001128
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001129 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001130}
1131
Peter Zijlstra272325c2015-04-15 11:41:58 +02001132static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001133{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001134 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001135 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001136 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001137
1138 /* no multiplexing needed for SW PMU */
1139 if (pmu->task_ctx_nr == perf_sw_context)
1140 return;
1141
Stephane Eranian62b85632013-04-03 14:21:34 +02001142 /*
1143 * check default is sane, if not set then force to
1144 * default interval (1/tick)
1145 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001146 interval = pmu->hrtimer_interval_ms;
1147 if (interval < 1)
1148 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001149
Peter Zijlstra272325c2015-04-15 11:41:58 +02001150 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001151
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001152 raw_spin_lock_init(&cpuctx->hrtimer_lock);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001153 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001154 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001155}
1156
Peter Zijlstra272325c2015-04-15 11:41:58 +02001157static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001158{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001159 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001160 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001161 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001162
1163 /* not for SW PMU */
1164 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001165 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001166
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001167 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1168 if (!cpuctx->hrtimer_active) {
1169 cpuctx->hrtimer_active = 1;
1170 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001171 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001172 }
1173 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001174
Peter Zijlstra272325c2015-04-15 11:41:58 +02001175 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001176}
1177
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001178void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001179{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001180 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1181 if (!(*count)++)
1182 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001183}
1184
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001185void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001186{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001187 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1188 if (!--(*count))
1189 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001190}
1191
Mark Rutland2fde4f92015-01-07 15:01:54 +00001192static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001193
1194/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001195 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1196 * perf_event_task_tick() are fully serialized because they're strictly cpu
1197 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1198 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001199 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001200static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001201{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001202 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001203
Frederic Weisbecker16444642017-11-06 16:01:24 +01001204 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001205
Mark Rutland2fde4f92015-01-07 15:01:54 +00001206 WARN_ON(!list_empty(&ctx->active_ctx_list));
1207
1208 list_add(&ctx->active_ctx_list, head);
1209}
1210
1211static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1212{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001213 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001214
1215 WARN_ON(list_empty(&ctx->active_ctx_list));
1216
1217 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001218}
1219
1220static void get_ctx(struct perf_event_context *ctx)
1221{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001222 refcount_inc(&ctx->refcount);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001223}
1224
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001225static void free_ctx(struct rcu_head *head)
1226{
1227 struct perf_event_context *ctx;
1228
1229 ctx = container_of(head, struct perf_event_context, rcu_head);
1230 kfree(ctx->task_ctx_data);
1231 kfree(ctx);
1232}
1233
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001234static void put_ctx(struct perf_event_context *ctx)
1235{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001236 if (refcount_dec_and_test(&ctx->refcount)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001237 if (ctx->parent_ctx)
1238 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001239 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001240 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001241 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001242 }
1243}
1244
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001245/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001246 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1247 * perf_pmu_migrate_context() we need some magic.
1248 *
1249 * Those places that change perf_event::ctx will hold both
1250 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1251 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001252 * Lock ordering is by mutex address. There are two other sites where
1253 * perf_event_context::mutex nests and those are:
1254 *
1255 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001256 * perf_event_exit_event()
1257 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001258 *
1259 * - perf_event_init_context() [ parent, 0 ]
1260 * inherit_task_group()
1261 * inherit_group()
1262 * inherit_event()
1263 * perf_event_alloc()
1264 * perf_init_event()
1265 * perf_try_init_event() [ child , 1 ]
1266 *
1267 * While it appears there is an obvious deadlock here -- the parent and child
1268 * nesting levels are inverted between the two. This is in fact safe because
1269 * life-time rules separate them. That is an exiting task cannot fork, and a
1270 * spawning task cannot (yet) exit.
1271 *
1272 * But remember that that these are parent<->child context relations, and
1273 * migration does not affect children, therefore these two orderings should not
1274 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001275 *
1276 * The change in perf_event::ctx does not affect children (as claimed above)
1277 * because the sys_perf_event_open() case will install a new event and break
1278 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1279 * concerned with cpuctx and that doesn't have children.
1280 *
1281 * The places that change perf_event::ctx will issue:
1282 *
1283 * perf_remove_from_context();
1284 * synchronize_rcu();
1285 * perf_install_in_context();
1286 *
1287 * to affect the change. The remove_from_context() + synchronize_rcu() should
1288 * quiesce the event, after which we can install it in the new location. This
1289 * means that only external vectors (perf_fops, prctl) can perturb the event
1290 * while in transit. Therefore all such accessors should also acquire
1291 * perf_event_context::mutex to serialize against this.
1292 *
1293 * However; because event->ctx can change while we're waiting to acquire
1294 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1295 * function.
1296 *
1297 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001298 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001299 * task_struct::perf_event_mutex
1300 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001301 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001302 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001303 * perf_event::mmap_mutex
1304 * mmap_sem
Alexander Shishkin18736ee2019-02-15 13:56:54 +02001305 * perf_addr_filters_head::lock
Peter Zijlstra82d94852018-01-09 13:10:30 +01001306 *
1307 * cpu_hotplug_lock
1308 * pmus_lock
1309 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001310 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001311static struct perf_event_context *
1312perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001313{
1314 struct perf_event_context *ctx;
1315
1316again:
1317 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001318 ctx = READ_ONCE(event->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001319 if (!refcount_inc_not_zero(&ctx->refcount)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001320 rcu_read_unlock();
1321 goto again;
1322 }
1323 rcu_read_unlock();
1324
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001325 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001326 if (event->ctx != ctx) {
1327 mutex_unlock(&ctx->mutex);
1328 put_ctx(ctx);
1329 goto again;
1330 }
1331
1332 return ctx;
1333}
1334
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001335static inline struct perf_event_context *
1336perf_event_ctx_lock(struct perf_event *event)
1337{
1338 return perf_event_ctx_lock_nested(event, 0);
1339}
1340
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001341static void perf_event_ctx_unlock(struct perf_event *event,
1342 struct perf_event_context *ctx)
1343{
1344 mutex_unlock(&ctx->mutex);
1345 put_ctx(ctx);
1346}
1347
1348/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001349 * This must be done under the ctx->lock, such as to serialize against
1350 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1351 * calling scheduler related locks and ctx->lock nests inside those.
1352 */
1353static __must_check struct perf_event_context *
1354unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001355{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001356 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1357
1358 lockdep_assert_held(&ctx->lock);
1359
1360 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001361 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001362 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001363
1364 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001365}
1366
Oleg Nesterov1d953112017-08-22 17:59:28 +02001367static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1368 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001369{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001370 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001371 /*
1372 * only top level events have the pid namespace they were created in
1373 */
1374 if (event->parent)
1375 event = event->parent;
1376
Oleg Nesterov1d953112017-08-22 17:59:28 +02001377 nr = __task_pid_nr_ns(p, type, event->ns);
1378 /* avoid -1 if it is idle thread or runs in another ns */
1379 if (!nr && !pid_alive(p))
1380 nr = -1;
1381 return nr;
1382}
1383
1384static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1385{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001386 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001387}
1388
1389static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1390{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001391 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001392}
1393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001394/*
1395 * If we inherit events we want to return the parent event id
1396 * to userspace.
1397 */
1398static u64 primary_event_id(struct perf_event *event)
1399{
1400 u64 id = event->id;
1401
1402 if (event->parent)
1403 id = event->parent->id;
1404
1405 return id;
1406}
1407
1408/*
1409 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001410 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001411 * This has to cope with with the fact that until it is locked,
1412 * the context could get moved to another task.
1413 */
1414static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001415perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001416{
1417 struct perf_event_context *ctx;
1418
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001419retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001420 /*
1421 * One of the few rules of preemptible RCU is that one cannot do
1422 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001423 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001424 * rcu_read_unlock_special().
1425 *
1426 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001427 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001428 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001429 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001430 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001431 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001432 if (ctx) {
1433 /*
1434 * If this context is a clone of another, it might
1435 * get swapped for another underneath us by
1436 * perf_event_task_sched_out, though the
1437 * rcu_read_lock() protects us from any context
1438 * getting freed. Lock the context and check if it
1439 * got swapped before we could get the lock, and retry
1440 * if so. If we locked the right context, then it
1441 * can't get swapped on us any more.
1442 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001443 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001444 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001445 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001446 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001447 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001448 goto retry;
1449 }
1450
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001451 if (ctx->task == TASK_TOMBSTONE ||
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001452 !refcount_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001453 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001454 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001455 } else {
1456 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457 }
1458 }
1459 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001460 if (!ctx)
1461 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001462 return ctx;
1463}
1464
1465/*
1466 * Get the context for a task and increment its pin_count so it
1467 * can't get swapped to another task. This also increments its
1468 * reference count so that the context can't get freed.
1469 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001470static struct perf_event_context *
1471perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001472{
1473 struct perf_event_context *ctx;
1474 unsigned long flags;
1475
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001476 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 if (ctx) {
1478 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001479 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480 }
1481 return ctx;
1482}
1483
1484static void perf_unpin_context(struct perf_event_context *ctx)
1485{
1486 unsigned long flags;
1487
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001488 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001489 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001490 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001491}
1492
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001493/*
1494 * Update the record of the current time in a context.
1495 */
1496static void update_context_time(struct perf_event_context *ctx)
1497{
1498 u64 now = perf_clock();
1499
1500 ctx->time += now - ctx->timestamp;
1501 ctx->timestamp = now;
1502}
1503
Stephane Eranian41587552011-01-03 18:20:01 +02001504static u64 perf_event_time(struct perf_event *event)
1505{
1506 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001507
1508 if (is_cgroup_event(event))
1509 return perf_cgroup_event_time(event);
1510
Stephane Eranian41587552011-01-03 18:20:01 +02001511 return ctx ? ctx->time : 0;
1512}
1513
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001514static enum event_type_t get_event_type(struct perf_event *event)
1515{
1516 struct perf_event_context *ctx = event->ctx;
1517 enum event_type_t event_type;
1518
1519 lockdep_assert_held(&ctx->lock);
1520
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001521 /*
1522 * It's 'group type', really, because if our group leader is
1523 * pinned, so are we.
1524 */
1525 if (event->group_leader != event)
1526 event = event->group_leader;
1527
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001528 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1529 if (!ctx->task)
1530 event_type |= EVENT_CPU;
1531
1532 return event_type;
1533}
1534
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001535/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001536 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001537 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001538static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001539{
1540 RB_CLEAR_NODE(&event->group_node);
1541 event->group_index = 0;
1542}
1543
1544/*
1545 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001546 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001547 */
1548static struct perf_event_groups *
1549get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001550{
1551 if (event->attr.pinned)
1552 return &ctx->pinned_groups;
1553 else
1554 return &ctx->flexible_groups;
1555}
1556
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001557/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001558 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001559 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001560static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001561{
1562 groups->tree = RB_ROOT;
1563 groups->index = 0;
1564}
1565
1566/*
1567 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001568 *
1569 * Implements complex key that first sorts by CPU and then by virtual index
1570 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001571 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001572static bool
1573perf_event_groups_less(struct perf_event *left, struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001574{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001575 if (left->cpu < right->cpu)
1576 return true;
1577 if (left->cpu > right->cpu)
1578 return false;
1579
Ian Rogers95ed6c72020-02-13 23:51:33 -08001580#ifdef CONFIG_CGROUP_PERF
1581 if (left->cgrp != right->cgrp) {
1582 if (!left->cgrp || !left->cgrp->css.cgroup) {
1583 /*
1584 * Left has no cgroup but right does, no cgroups come
1585 * first.
1586 */
1587 return true;
1588 }
1589 if (!right->cgrp || right->cgrp->css.cgroup) {
1590 /*
1591 * Right has no cgroup but left does, no cgroups come
1592 * first.
1593 */
1594 return false;
1595 }
1596 /* Two dissimilar cgroups, order by id. */
1597 if (left->cgrp->css.cgroup->kn->id < right->cgrp->css.cgroup->kn->id)
1598 return true;
1599
1600 return false;
1601 }
1602#endif
1603
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001604 if (left->group_index < right->group_index)
1605 return true;
1606 if (left->group_index > right->group_index)
1607 return false;
1608
1609 return false;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001610}
1611
1612/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001613 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1614 * key (see perf_event_groups_less). This places it last inside the CPU
1615 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001616 */
1617static void
1618perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001619 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001620{
1621 struct perf_event *node_event;
1622 struct rb_node *parent;
1623 struct rb_node **node;
1624
1625 event->group_index = ++groups->index;
1626
1627 node = &groups->tree.rb_node;
1628 parent = *node;
1629
1630 while (*node) {
1631 parent = *node;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001632 node_event = container_of(*node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001633
1634 if (perf_event_groups_less(event, node_event))
1635 node = &parent->rb_left;
1636 else
1637 node = &parent->rb_right;
1638 }
1639
1640 rb_link_node(&event->group_node, parent, node);
1641 rb_insert_color(&event->group_node, &groups->tree);
1642}
1643
1644/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001645 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001646 */
1647static void
1648add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1649{
1650 struct perf_event_groups *groups;
1651
1652 groups = get_event_groups(event, ctx);
1653 perf_event_groups_insert(groups, event);
1654}
1655
1656/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001657 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001658 */
1659static void
1660perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001661 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001662{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001663 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1664 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001665
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001666 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001667 init_event_group(event);
1668}
1669
1670/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001671 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001672 */
1673static void
1674del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1675{
1676 struct perf_event_groups *groups;
1677
1678 groups = get_event_groups(event, ctx);
1679 perf_event_groups_delete(groups, event);
1680}
1681
1682/*
Ian Rogers95ed6c72020-02-13 23:51:33 -08001683 * Get the leftmost event in the cpu/cgroup subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001684 */
1685static struct perf_event *
Ian Rogers95ed6c72020-02-13 23:51:33 -08001686perf_event_groups_first(struct perf_event_groups *groups, int cpu,
1687 struct cgroup *cgrp)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001688{
1689 struct perf_event *node_event = NULL, *match = NULL;
1690 struct rb_node *node = groups->tree.rb_node;
Ian Rogers95ed6c72020-02-13 23:51:33 -08001691#ifdef CONFIG_CGROUP_PERF
1692 u64 node_cgrp_id, cgrp_id = 0;
1693
1694 if (cgrp)
1695 cgrp_id = cgrp->kn->id;
1696#endif
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001697
1698 while (node) {
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001699 node_event = container_of(node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001700
1701 if (cpu < node_event->cpu) {
1702 node = node->rb_left;
Ian Rogers95ed6c72020-02-13 23:51:33 -08001703 continue;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001704 }
Ian Rogers95ed6c72020-02-13 23:51:33 -08001705 if (cpu > node_event->cpu) {
1706 node = node->rb_right;
1707 continue;
1708 }
1709#ifdef CONFIG_CGROUP_PERF
1710 node_cgrp_id = 0;
1711 if (node_event->cgrp && node_event->cgrp->css.cgroup)
1712 node_cgrp_id = node_event->cgrp->css.cgroup->kn->id;
1713
1714 if (cgrp_id < node_cgrp_id) {
1715 node = node->rb_left;
1716 continue;
1717 }
1718 if (cgrp_id > node_cgrp_id) {
1719 node = node->rb_right;
1720 continue;
1721 }
1722#endif
1723 match = node_event;
1724 node = node->rb_left;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001725 }
1726
1727 return match;
1728}
1729
1730/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001731 * Like rb_entry_next_safe() for the @cpu subtree.
1732 */
1733static struct perf_event *
1734perf_event_groups_next(struct perf_event *event)
1735{
1736 struct perf_event *next;
Ian Rogers95ed6c72020-02-13 23:51:33 -08001737#ifdef CONFIG_CGROUP_PERF
1738 u64 curr_cgrp_id = 0;
1739 u64 next_cgrp_id = 0;
1740#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001741
1742 next = rb_entry_safe(rb_next(&event->group_node), typeof(*event), group_node);
Ian Rogers95ed6c72020-02-13 23:51:33 -08001743 if (next == NULL || next->cpu != event->cpu)
1744 return NULL;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001745
Ian Rogers95ed6c72020-02-13 23:51:33 -08001746#ifdef CONFIG_CGROUP_PERF
1747 if (event->cgrp && event->cgrp->css.cgroup)
1748 curr_cgrp_id = event->cgrp->css.cgroup->kn->id;
1749
1750 if (next->cgrp && next->cgrp->css.cgroup)
1751 next_cgrp_id = next->cgrp->css.cgroup->kn->id;
1752
1753 if (curr_cgrp_id != next_cgrp_id)
1754 return NULL;
1755#endif
1756 return next;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001757}
1758
1759/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001760 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001761 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001762#define perf_event_groups_for_each(event, groups) \
1763 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1764 typeof(*event), group_node); event; \
1765 event = rb_entry_safe(rb_next(&event->group_node), \
1766 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001767
1768/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001769 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001770 * Must be called with ctx->mutex and ctx->lock held.
1771 */
1772static void
1773list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1774{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001775 lockdep_assert_held(&ctx->lock);
1776
Peter Zijlstra8a495422010-05-27 15:47:49 +02001777 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1778 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001779
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001780 event->tstamp = perf_event_time(event);
1781
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001782 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001783 * If we're a stand alone event or group leader, we go to the context
1784 * list, group events are kept attached to the group so that
1785 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001786 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001787 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001788 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001789 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001790 }
1791
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001792 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001794 list_add_rcu(&event->event_entry, &ctx->event_list);
1795 ctx->nr_events++;
1796 if (event->attr.inherit_stat)
1797 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001798
1799 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800}
1801
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001802/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001803 * Initialize event state based on the perf_event_attr::disabled.
1804 */
1805static inline void perf_event__state_init(struct perf_event *event)
1806{
1807 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1808 PERF_EVENT_STATE_INACTIVE;
1809}
1810
Peter Zijlstraa7239682015-09-09 19:06:33 +02001811static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001812{
1813 int entry = sizeof(u64); /* value */
1814 int size = 0;
1815 int nr = 1;
1816
1817 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1818 size += sizeof(u64);
1819
1820 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1821 size += sizeof(u64);
1822
1823 if (event->attr.read_format & PERF_FORMAT_ID)
1824 entry += sizeof(u64);
1825
1826 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001827 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001828 size += sizeof(u64);
1829 }
1830
1831 size += entry * nr;
1832 event->read_size = size;
1833}
1834
Peter Zijlstraa7239682015-09-09 19:06:33 +02001835static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001836{
1837 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001838 u16 size = 0;
1839
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001840 if (sample_type & PERF_SAMPLE_IP)
1841 size += sizeof(data->ip);
1842
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001843 if (sample_type & PERF_SAMPLE_ADDR)
1844 size += sizeof(data->addr);
1845
1846 if (sample_type & PERF_SAMPLE_PERIOD)
1847 size += sizeof(data->period);
1848
Andi Kleenc3feedf2013-01-24 16:10:28 +01001849 if (sample_type & PERF_SAMPLE_WEIGHT)
1850 size += sizeof(data->weight);
1851
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001852 if (sample_type & PERF_SAMPLE_READ)
1853 size += event->read_size;
1854
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001855 if (sample_type & PERF_SAMPLE_DATA_SRC)
1856 size += sizeof(data->data_src.val);
1857
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001858 if (sample_type & PERF_SAMPLE_TRANSACTION)
1859 size += sizeof(data->txn);
1860
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001861 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1862 size += sizeof(data->phys_addr);
1863
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001864 event->header_size = size;
1865}
1866
Peter Zijlstraa7239682015-09-09 19:06:33 +02001867/*
1868 * Called at perf_event creation and when events are attached/detached from a
1869 * group.
1870 */
1871static void perf_event__header_size(struct perf_event *event)
1872{
1873 __perf_event_read_size(event,
1874 event->group_leader->nr_siblings);
1875 __perf_event_header_size(event, event->attr.sample_type);
1876}
1877
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001878static void perf_event__id_header_size(struct perf_event *event)
1879{
1880 struct perf_sample_data *data;
1881 u64 sample_type = event->attr.sample_type;
1882 u16 size = 0;
1883
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001884 if (sample_type & PERF_SAMPLE_TID)
1885 size += sizeof(data->tid_entry);
1886
1887 if (sample_type & PERF_SAMPLE_TIME)
1888 size += sizeof(data->time);
1889
Adrian Hunterff3d5272013-08-27 11:23:07 +03001890 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1891 size += sizeof(data->id);
1892
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001893 if (sample_type & PERF_SAMPLE_ID)
1894 size += sizeof(data->id);
1895
1896 if (sample_type & PERF_SAMPLE_STREAM_ID)
1897 size += sizeof(data->stream_id);
1898
1899 if (sample_type & PERF_SAMPLE_CPU)
1900 size += sizeof(data->cpu_entry);
1901
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001902 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001903}
1904
Peter Zijlstraa7239682015-09-09 19:06:33 +02001905static bool perf_event_validate_size(struct perf_event *event)
1906{
1907 /*
1908 * The values computed here will be over-written when we actually
1909 * attach the event.
1910 */
1911 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1912 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1913 perf_event__id_header_size(event);
1914
1915 /*
1916 * Sum the lot; should not exceed the 64k limit we have on records.
1917 * Conservative limit to allow for callchains and other variable fields.
1918 */
1919 if (event->read_size + event->header_size +
1920 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1921 return false;
1922
1923 return true;
1924}
1925
Peter Zijlstra8a495422010-05-27 15:47:49 +02001926static void perf_group_attach(struct perf_event *event)
1927{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001928 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001929
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001930 lockdep_assert_held(&event->ctx->lock);
1931
Peter Zijlstra74c33372010-10-15 11:40:29 +02001932 /*
1933 * We can have double attach due to group movement in perf_event_open.
1934 */
1935 if (event->attach_state & PERF_ATTACH_GROUP)
1936 return;
1937
Peter Zijlstra8a495422010-05-27 15:47:49 +02001938 event->attach_state |= PERF_ATTACH_GROUP;
1939
1940 if (group_leader == event)
1941 return;
1942
Peter Zijlstra652884f2015-01-23 11:20:10 +01001943 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1944
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001945 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001946
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001947 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001948 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001949
1950 perf_event__header_size(group_leader);
1951
Peter Zijlstraedb39592018-03-15 17:36:56 +01001952 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001953 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001954}
1955
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001956/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001957 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001958 * Must be called with ctx->mutex and ctx->lock held.
1959 */
1960static void
1961list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1962{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001963 WARN_ON_ONCE(event->ctx != ctx);
1964 lockdep_assert_held(&ctx->lock);
1965
Peter Zijlstra8a495422010-05-27 15:47:49 +02001966 /*
1967 * We can have double detach due to exit/hot-unplug + close.
1968 */
1969 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001970 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001971
1972 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1973
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001974 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001975
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001976 ctx->nr_events--;
1977 if (event->attr.inherit_stat)
1978 ctx->nr_stat--;
1979
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001980 list_del_rcu(&event->event_entry);
1981
Peter Zijlstra8a495422010-05-27 15:47:49 +02001982 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001983 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001984
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001985 /*
1986 * If event was in error state, then keep it
1987 * that way, otherwise bogus counts will be
1988 * returned on read(). The only way to get out
1989 * of error state is by explicit re-enabling
1990 * of the event
1991 */
1992 if (event->state > PERF_EVENT_STATE_OFF)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001993 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001994
1995 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001996}
1997
Alexander Shishkinab437622019-08-06 11:46:00 +03001998static int
1999perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
2000{
2001 if (!has_aux(aux_event))
2002 return 0;
2003
2004 if (!event->pmu->aux_output_match)
2005 return 0;
2006
2007 return event->pmu->aux_output_match(aux_event);
2008}
2009
2010static void put_event(struct perf_event *event);
2011static void event_sched_out(struct perf_event *event,
2012 struct perf_cpu_context *cpuctx,
2013 struct perf_event_context *ctx);
2014
2015static void perf_put_aux_event(struct perf_event *event)
2016{
2017 struct perf_event_context *ctx = event->ctx;
2018 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2019 struct perf_event *iter;
2020
2021 /*
2022 * If event uses aux_event tear down the link
2023 */
2024 if (event->aux_event) {
2025 iter = event->aux_event;
2026 event->aux_event = NULL;
2027 put_event(iter);
2028 return;
2029 }
2030
2031 /*
2032 * If the event is an aux_event, tear down all links to
2033 * it from other events.
2034 */
2035 for_each_sibling_event(iter, event->group_leader) {
2036 if (iter->aux_event != event)
2037 continue;
2038
2039 iter->aux_event = NULL;
2040 put_event(event);
2041
2042 /*
2043 * If it's ACTIVE, schedule it out and put it into ERROR
2044 * state so that we don't try to schedule it again. Note
2045 * that perf_event_enable() will clear the ERROR status.
2046 */
2047 event_sched_out(iter, cpuctx, ctx);
2048 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2049 }
2050}
2051
Alexander Shishkina4faf002019-10-25 17:08:33 +03002052static bool perf_need_aux_event(struct perf_event *event)
2053{
2054 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
2055}
2056
Alexander Shishkinab437622019-08-06 11:46:00 +03002057static int perf_get_aux_event(struct perf_event *event,
2058 struct perf_event *group_leader)
2059{
2060 /*
2061 * Our group leader must be an aux event if we want to be
2062 * an aux_output. This way, the aux event will precede its
2063 * aux_output events in the group, and therefore will always
2064 * schedule first.
2065 */
2066 if (!group_leader)
2067 return 0;
2068
Alexander Shishkina4faf002019-10-25 17:08:33 +03002069 /*
2070 * aux_output and aux_sample_size are mutually exclusive.
2071 */
2072 if (event->attr.aux_output && event->attr.aux_sample_size)
2073 return 0;
2074
2075 if (event->attr.aux_output &&
2076 !perf_aux_output_match(event, group_leader))
2077 return 0;
2078
2079 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
Alexander Shishkinab437622019-08-06 11:46:00 +03002080 return 0;
2081
2082 if (!atomic_long_inc_not_zero(&group_leader->refcount))
2083 return 0;
2084
2085 /*
2086 * Link aux_outputs to their aux event; this is undone in
2087 * perf_group_detach() by perf_put_aux_event(). When the
2088 * group in torn down, the aux_output events loose their
2089 * link to the aux_event and can't schedule any more.
2090 */
2091 event->aux_event = group_leader;
2092
2093 return 1;
2094}
2095
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002096static inline struct list_head *get_event_list(struct perf_event *event)
2097{
2098 struct perf_event_context *ctx = event->ctx;
2099 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
2100}
2101
Peter Zijlstra8a495422010-05-27 15:47:49 +02002102static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02002103{
2104 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01002105 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002106
Peter Zijlstra66681282017-11-13 14:28:38 +01002107 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002108
Peter Zijlstra8a495422010-05-27 15:47:49 +02002109 /*
2110 * We can have double detach due to exit/hot-unplug + close.
2111 */
2112 if (!(event->attach_state & PERF_ATTACH_GROUP))
2113 return;
2114
2115 event->attach_state &= ~PERF_ATTACH_GROUP;
2116
Alexander Shishkinab437622019-08-06 11:46:00 +03002117 perf_put_aux_event(event);
2118
Peter Zijlstra8a495422010-05-27 15:47:49 +02002119 /*
2120 * If this is a sibling, remove it from its group.
2121 */
2122 if (event->group_leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002123 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002124 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002125 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002126 }
2127
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002128 /*
2129 * If this was a group event with sibling events then
2130 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002131 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002133 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002134
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002135 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002136 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002137
2138 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002139 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002140
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002141 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002142 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002143
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002144 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2145 list_add_tail(&sibling->active_list, get_event_list(sibling));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002146 }
2147
Peter Zijlstra652884f2015-01-23 11:20:10 +01002148 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002149 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002150
2151out:
2152 perf_event__header_size(event->group_leader);
2153
Peter Zijlstraedb39592018-03-15 17:36:56 +01002154 for_each_sibling_event(tmp, event->group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002155 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002156}
2157
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002158static bool is_orphaned_event(struct perf_event *event)
2159{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002160 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002161}
2162
Mark Rutland2c81a642016-06-14 16:10:41 +01002163static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002164{
2165 struct pmu *pmu = event->pmu;
2166 return pmu->filter_match ? pmu->filter_match(event) : 1;
2167}
2168
Mark Rutland2c81a642016-06-14 16:10:41 +01002169/*
2170 * Check whether we should attempt to schedule an event group based on
2171 * PMU-specific filtering. An event group can consist of HW and SW events,
2172 * potentially with a SW leader, so we must check all the filters, to
2173 * determine whether a group is schedulable:
2174 */
2175static inline int pmu_filter_match(struct perf_event *event)
2176{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002177 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002178
2179 if (!__pmu_filter_match(event))
2180 return 0;
2181
Peter Zijlstraedb39592018-03-15 17:36:56 +01002182 for_each_sibling_event(sibling, event) {
2183 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002184 return 0;
2185 }
2186
2187 return 1;
2188}
2189
Stephane Eranianfa66f072010-08-26 16:40:01 +02002190static inline int
2191event_filter_match(struct perf_event *event)
2192{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002193 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2194 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002195}
2196
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002197static void
2198event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002199 struct perf_cpu_context *cpuctx,
2200 struct perf_event_context *ctx)
2201{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002202 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002203
2204 WARN_ON_ONCE(event->ctx != ctx);
2205 lockdep_assert_held(&ctx->lock);
2206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002207 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002208 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002209
Peter Zijlstra66681282017-11-13 14:28:38 +01002210 /*
2211 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2212 * we can schedule events _OUT_ individually through things like
2213 * __perf_remove_from_context().
2214 */
2215 list_del_init(&event->active_list);
2216
Alexander Shishkin44377272013-12-16 14:17:36 +02002217 perf_pmu_disable(event->pmu);
2218
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002219 event->pmu->del(event, 0);
2220 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002221
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002222 if (READ_ONCE(event->pending_disable) >= 0) {
2223 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002224 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002225 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002226 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002227
2228 if (!is_software_event(event))
2229 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002230 if (!--ctx->nr_active)
2231 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002232 if (event->attr.freq && event->attr.sample_freq)
2233 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002234 if (event->attr.exclusive || !cpuctx->active_oncpu)
2235 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002236
2237 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238}
2239
2240static void
2241group_sched_out(struct perf_event *group_event,
2242 struct perf_cpu_context *cpuctx,
2243 struct perf_event_context *ctx)
2244{
2245 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002246
2247 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2248 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002249
Mark Rutland3f005e72016-07-26 18:12:21 +01002250 perf_pmu_disable(ctx->pmu);
2251
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002252 event_sched_out(group_event, cpuctx, ctx);
2253
2254 /*
2255 * Schedule out siblings (if any):
2256 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002257 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258 event_sched_out(event, cpuctx, ctx);
2259
Mark Rutland3f005e72016-07-26 18:12:21 +01002260 perf_pmu_enable(ctx->pmu);
2261
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002262 if (group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002263 cpuctx->exclusive = 0;
2264}
2265
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002266#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002268/*
2269 * Cross CPU call to remove a performance event
2270 *
2271 * We disable the event on the hardware level first. After that we
2272 * remove it from the context list.
2273 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002274static void
2275__perf_remove_from_context(struct perf_event *event,
2276 struct perf_cpu_context *cpuctx,
2277 struct perf_event_context *ctx,
2278 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002279{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002280 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002281
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002282 if (ctx->is_active & EVENT_TIME) {
2283 update_context_time(ctx);
2284 update_cgrp_time_from_cpuctx(cpuctx);
2285 }
2286
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002287 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002288 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002289 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002290 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002291
Peter Zijlstra39a43642016-01-11 12:46:35 +01002292 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002293 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002294 if (ctx->task) {
2295 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2296 cpuctx->task_ctx = NULL;
2297 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002298 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002299}
2300
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002301/*
2302 * Remove the event from a task's (or a CPU's) list of events.
2303 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002304 * If event->ctx is a cloned context, callers must make sure that
2305 * every task struct that event->ctx->task could possibly point to
2306 * remains valid. This is OK when called from perf_release since
2307 * that only calls us on the top-level context, which can't be a clone.
2308 * When called from perf_event_exit_task, it's OK because the
2309 * context has been detached from its task.
2310 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002311static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002312{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002313 struct perf_event_context *ctx = event->ctx;
2314
2315 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002316
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002317 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002318
2319 /*
2320 * The above event_function_call() can NO-OP when it hits
2321 * TASK_TOMBSTONE. In that case we must already have been detached
2322 * from the context (by perf_event_exit_event()) but the grouping
2323 * might still be in-tact.
2324 */
2325 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
2326 if ((flags & DETACH_GROUP) &&
2327 (event->attach_state & PERF_ATTACH_GROUP)) {
2328 /*
2329 * Since in that case we cannot possibly be scheduled, simply
2330 * detach now.
2331 */
2332 raw_spin_lock_irq(&ctx->lock);
2333 perf_group_detach(event);
2334 raw_spin_unlock_irq(&ctx->lock);
2335 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002336}
2337
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002338/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002339 * Cross CPU call to disable a performance event
2340 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002341static void __perf_event_disable(struct perf_event *event,
2342 struct perf_cpu_context *cpuctx,
2343 struct perf_event_context *ctx,
2344 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002345{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002346 if (event->state < PERF_EVENT_STATE_INACTIVE)
2347 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002348
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002349 if (ctx->is_active & EVENT_TIME) {
2350 update_context_time(ctx);
2351 update_cgrp_time_from_event(event);
2352 }
2353
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002354 if (event == event->group_leader)
2355 group_sched_out(event, cpuctx, ctx);
2356 else
2357 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002358
2359 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002360}
2361
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002362/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002363 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002364 *
2365 * If event->ctx is a cloned context, callers must make sure that
2366 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002367 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002368 * perf_event_for_each_child or perf_event_for_each because they
2369 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002370 * goes to exit will block in perf_event_exit_event().
2371 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372 * When called from perf_pending_event it's OK because event->ctx
2373 * is the current context on this CPU and preemption is disabled,
2374 * hence we can't get into perf_event_task_sched_out for this context.
2375 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002376static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002377{
2378 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002379
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002380 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002381 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002382 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002383 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002384 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002385 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002386
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002387 event_function_call(event, __perf_event_disable, NULL);
2388}
2389
2390void perf_event_disable_local(struct perf_event *event)
2391{
2392 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002393}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002394
2395/*
2396 * Strictly speaking kernel users cannot create groups and therefore this
2397 * interface does not need the perf_event_ctx_lock() magic.
2398 */
2399void perf_event_disable(struct perf_event *event)
2400{
2401 struct perf_event_context *ctx;
2402
2403 ctx = perf_event_ctx_lock(event);
2404 _perf_event_disable(event);
2405 perf_event_ctx_unlock(event, ctx);
2406}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002407EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002408
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002409void perf_event_disable_inatomic(struct perf_event *event)
2410{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002411 WRITE_ONCE(event->pending_disable, smp_processor_id());
2412 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002413 irq_work_queue(&event->pending);
2414}
2415
Stephane Eraniane5d13672011-02-14 11:20:01 +02002416static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002417 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002418{
2419 /*
2420 * use the correct time source for the time snapshot
2421 *
2422 * We could get by without this by leveraging the
2423 * fact that to get to this function, the caller
2424 * has most likely already called update_context_time()
2425 * and update_cgrp_time_xx() and thus both timestamp
2426 * are identical (or very close). Given that tstamp is,
2427 * already adjusted for cgroup, we could say that:
2428 * tstamp - ctx->timestamp
2429 * is equivalent to
2430 * tstamp - cgrp->timestamp.
2431 *
2432 * Then, in perf_output_read(), the calculation would
2433 * work with no changes because:
2434 * - event is guaranteed scheduled in
2435 * - no scheduled out in between
2436 * - thus the timestamp would be the same
2437 *
2438 * But this is a bit hairy.
2439 *
2440 * So instead, we have an explicit cgroup call to remain
2441 * within the time time source all along. We believe it
2442 * is cleaner and simpler to understand.
2443 */
2444 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002445 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002446 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002447 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002448}
2449
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002450#define MAX_INTERRUPTS (~0ULL)
2451
2452static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002453static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002454
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002455static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002456event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002457 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002458 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002459{
Alexander Shishkin44377272013-12-16 14:17:36 +02002460 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002461
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002462 WARN_ON_ONCE(event->ctx != ctx);
2463
Peter Zijlstra63342412014-05-05 11:49:16 +02002464 lockdep_assert_held(&ctx->lock);
2465
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002466 if (event->state <= PERF_EVENT_STATE_OFF)
2467 return 0;
2468
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002469 WRITE_ONCE(event->oncpu, smp_processor_id());
2470 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002471 * Order event::oncpu write to happen before the ACTIVE state is
2472 * visible. This allows perf_event_{stop,read}() to observe the correct
2473 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002474 */
2475 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002476 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002477
2478 /*
2479 * Unthrottle events, since we scheduled we might have missed several
2480 * ticks already, also for a heavily scheduling task there is little
2481 * guarantee it'll get a tick in a timely manner.
2482 */
2483 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2484 perf_log_throttle(event, 1);
2485 event->hw.interrupts = 0;
2486 }
2487
Alexander Shishkin44377272013-12-16 14:17:36 +02002488 perf_pmu_disable(event->pmu);
2489
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002490 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002491
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002492 perf_log_itrace_start(event);
2493
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002494 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002495 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002496 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002497 ret = -EAGAIN;
2498 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002499 }
2500
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002501 if (!is_software_event(event))
2502 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002503 if (!ctx->nr_active++)
2504 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002505 if (event->attr.freq && event->attr.sample_freq)
2506 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507
2508 if (event->attr.exclusive)
2509 cpuctx->exclusive = 1;
2510
Alexander Shishkin44377272013-12-16 14:17:36 +02002511out:
2512 perf_pmu_enable(event->pmu);
2513
2514 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515}
2516
2517static int
2518group_sched_in(struct perf_event *group_event,
2519 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002520 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002521{
Lin Ming6bde9b62010-04-23 13:56:00 +08002522 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002523 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002524
2525 if (group_event->state == PERF_EVENT_STATE_OFF)
2526 return 0;
2527
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002528 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002529
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002530 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002531 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002532 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002533 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002534 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002535
2536 /*
2537 * Schedule in siblings as one group (if any):
2538 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002539 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002540 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002541 partial_group = event;
2542 goto group_error;
2543 }
2544 }
2545
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002546 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002547 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002548
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002549group_error:
2550 /*
2551 * Groups can be scheduled in as one unit only, so undo any
2552 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002553 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002554 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002555 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002556 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002557 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002558
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002559 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002560 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002561 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002562
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002563 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002564
Peter Zijlstra272325c2015-04-15 11:41:58 +02002565 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002567 return -EAGAIN;
2568}
2569
2570/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002571 * Work out whether we can put this event group on the CPU now.
2572 */
2573static int group_can_go_on(struct perf_event *event,
2574 struct perf_cpu_context *cpuctx,
2575 int can_add_hw)
2576{
2577 /*
2578 * Groups consisting entirely of software events can always go on.
2579 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002580 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002581 return 1;
2582 /*
2583 * If an exclusive group is already on, no other hardware
2584 * events can go on.
2585 */
2586 if (cpuctx->exclusive)
2587 return 0;
2588 /*
2589 * If this group is exclusive and there are already
2590 * events on the CPU, it can't go on.
2591 */
2592 if (event->attr.exclusive && cpuctx->active_oncpu)
2593 return 0;
2594 /*
2595 * Otherwise, try to add it if all previous groups were able
2596 * to go on.
2597 */
2598 return can_add_hw;
2599}
2600
2601static void add_event_to_ctx(struct perf_event *event,
2602 struct perf_event_context *ctx)
2603{
2604 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002605 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002606}
2607
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002608static void ctx_sched_out(struct perf_event_context *ctx,
2609 struct perf_cpu_context *cpuctx,
2610 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002611static void
2612ctx_sched_in(struct perf_event_context *ctx,
2613 struct perf_cpu_context *cpuctx,
2614 enum event_type_t event_type,
2615 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002616
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002617static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002618 struct perf_event_context *ctx,
2619 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002620{
2621 if (!cpuctx->task_ctx)
2622 return;
2623
2624 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2625 return;
2626
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002627 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002628}
2629
Peter Zijlstradce58552011-04-09 21:17:46 +02002630static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2631 struct perf_event_context *ctx,
2632 struct task_struct *task)
2633{
2634 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2635 if (ctx)
2636 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2637 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2638 if (ctx)
2639 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2640}
2641
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002642/*
2643 * We want to maintain the following priority of scheduling:
2644 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2645 * - task pinned (EVENT_PINNED)
2646 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2647 * - task flexible (EVENT_FLEXIBLE).
2648 *
2649 * In order to avoid unscheduling and scheduling back in everything every
2650 * time an event is added, only do it for the groups of equal priority and
2651 * below.
2652 *
2653 * This can be called after a batch operation on task events, in which case
2654 * event_type is a bit mask of the types of events involved. For CPU events,
2655 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2656 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002657static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002658 struct perf_event_context *task_ctx,
2659 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002660{
Song Liubd903af2018-03-05 21:55:04 -08002661 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002662 bool cpu_event = !!(event_type & EVENT_CPU);
2663
2664 /*
2665 * If pinned groups are involved, flexible groups also need to be
2666 * scheduled out.
2667 */
2668 if (event_type & EVENT_PINNED)
2669 event_type |= EVENT_FLEXIBLE;
2670
Song Liubd903af2018-03-05 21:55:04 -08002671 ctx_event_type = event_type & EVENT_ALL;
2672
Peter Zijlstra3e349502016-01-08 10:01:18 +01002673 perf_pmu_disable(cpuctx->ctx.pmu);
2674 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002675 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2676
2677 /*
2678 * Decide which cpu ctx groups to schedule out based on the types
2679 * of events that caused rescheduling:
2680 * - EVENT_CPU: schedule out corresponding groups;
2681 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2682 * - otherwise, do nothing more.
2683 */
2684 if (cpu_event)
2685 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2686 else if (ctx_event_type & EVENT_PINNED)
2687 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2688
Peter Zijlstra3e349502016-01-08 10:01:18 +01002689 perf_event_sched_in(cpuctx, task_ctx, current);
2690 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002691}
2692
Stephane Eranianc68d2242019-04-08 10:32:51 -07002693void perf_pmu_resched(struct pmu *pmu)
2694{
2695 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2696 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2697
2698 perf_ctx_lock(cpuctx, task_ctx);
2699 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2700 perf_ctx_unlock(cpuctx, task_ctx);
2701}
2702
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002703/*
2704 * Cross CPU call to install and enable a performance event
2705 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002706 * Very similar to remote_function() + event_function() but cannot assume that
2707 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002708 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002709static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002710{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002711 struct perf_event *event = info;
2712 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002713 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002714 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002715 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002716 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002717
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002718 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002719 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002720 raw_spin_lock(&ctx->lock);
2721 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002722
Peter Zijlstra63cae122016-12-09 14:59:00 +01002723 reprogram = (ctx->task == current);
2724
2725 /*
2726 * If the task is running, it must be running on this CPU,
2727 * otherwise we cannot reprogram things.
2728 *
2729 * If its not running, we don't care, ctx->lock will
2730 * serialize against it becoming runnable.
2731 */
2732 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002733 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002734 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002735 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002736
Peter Zijlstra63cae122016-12-09 14:59:00 +01002737 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002738 } else if (task_ctx) {
2739 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002740 }
2741
leilei.lin33801b92018-03-06 17:36:37 +08002742#ifdef CONFIG_CGROUP_PERF
2743 if (is_cgroup_event(event)) {
2744 /*
2745 * If the current cgroup doesn't match the event's
2746 * cgroup, we should not try to schedule it.
2747 */
2748 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2749 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2750 event->cgrp->css.cgroup);
2751 }
2752#endif
2753
Peter Zijlstra63cae122016-12-09 14:59:00 +01002754 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002755 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2756 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002757 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002758 } else {
2759 add_event_to_ctx(event, ctx);
2760 }
2761
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002762unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002763 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002764
Peter Zijlstraa0963092016-02-24 18:45:50 +01002765 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002766}
2767
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002768static bool exclusive_event_installable(struct perf_event *event,
2769 struct perf_event_context *ctx);
2770
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002771/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002772 * Attach a performance event to a context.
2773 *
2774 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002775 */
2776static void
2777perf_install_in_context(struct perf_event_context *ctx,
2778 struct perf_event *event,
2779 int cpu)
2780{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002781 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002782
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002783 lockdep_assert_held(&ctx->mutex);
2784
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002785 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2786
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002787 if (event->cpu != -1)
2788 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002789
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002790 /*
2791 * Ensures that if we can observe event->ctx, both the event and ctx
2792 * will be 'complete'. See perf_iterate_sb_cpu().
2793 */
2794 smp_store_release(&event->ctx, ctx);
2795
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002796 /*
2797 * perf_event_attr::disabled events will not run and can be initialized
2798 * without IPI. Except when this is the first event for the context, in
2799 * that case we need the magic of the IPI to set ctx->is_active.
2800 *
2801 * The IOC_ENABLE that is sure to follow the creation of a disabled
2802 * event will issue the IPI and reprogram the hardware.
2803 */
2804 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && ctx->nr_events) {
2805 raw_spin_lock_irq(&ctx->lock);
2806 if (ctx->task == TASK_TOMBSTONE) {
2807 raw_spin_unlock_irq(&ctx->lock);
2808 return;
2809 }
2810 add_event_to_ctx(event, ctx);
2811 raw_spin_unlock_irq(&ctx->lock);
2812 return;
2813 }
2814
Peter Zijlstraa0963092016-02-24 18:45:50 +01002815 if (!task) {
2816 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002817 return;
2818 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002819
Peter Zijlstraa0963092016-02-24 18:45:50 +01002820 /*
2821 * Should not happen, we validate the ctx is still alive before calling.
2822 */
2823 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2824 return;
2825
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002826 /*
2827 * Installing events is tricky because we cannot rely on ctx->is_active
2828 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002829 *
2830 * Instead we use task_curr(), which tells us if the task is running.
2831 * However, since we use task_curr() outside of rq::lock, we can race
2832 * against the actual state. This means the result can be wrong.
2833 *
2834 * If we get a false positive, we retry, this is harmless.
2835 *
2836 * If we get a false negative, things are complicated. If we are after
2837 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2838 * value must be correct. If we're before, it doesn't matter since
2839 * perf_event_context_sched_in() will program the counter.
2840 *
2841 * However, this hinges on the remote context switch having observed
2842 * our task->perf_event_ctxp[] store, such that it will in fact take
2843 * ctx::lock in perf_event_context_sched_in().
2844 *
2845 * We do this by task_function_call(), if the IPI fails to hit the task
2846 * we know any future context switch of task must see the
2847 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002849
Peter Zijlstraa0963092016-02-24 18:45:50 +01002850 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002851 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2852 * task_cpu() load, such that if the IPI then does not find the task
2853 * running, a future context switch of that task must observe the
2854 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002855 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002856 smp_mb();
2857again:
2858 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002859 return;
2860
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002861 raw_spin_lock_irq(&ctx->lock);
2862 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002863 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2864 /*
2865 * Cannot happen because we already checked above (which also
2866 * cannot happen), and we hold ctx->mutex, which serializes us
2867 * against perf_event_exit_task_context().
2868 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002869 raw_spin_unlock_irq(&ctx->lock);
2870 return;
2871 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002872 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002873 * If the task is not running, ctx->lock will avoid it becoming so,
2874 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002875 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002876 if (task_curr(task)) {
2877 raw_spin_unlock_irq(&ctx->lock);
2878 goto again;
2879 }
2880 add_event_to_ctx(event, ctx);
2881 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002882}
2883
2884/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002885 * Cross CPU call to enable a performance event
2886 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002887static void __perf_event_enable(struct perf_event *event,
2888 struct perf_cpu_context *cpuctx,
2889 struct perf_event_context *ctx,
2890 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002891{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002892 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002893 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002894
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002895 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2896 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002897 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002899 if (ctx->is_active)
2900 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2901
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002902 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002903
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002904 if (!ctx->is_active)
2905 return;
2906
Stephane Eraniane5d13672011-02-14 11:20:01 +02002907 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002908 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002909 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002910 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002911
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002912 /*
2913 * If the event is in a group and isn't the group leader,
2914 * then don't put it on unless the group is on.
2915 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002916 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2917 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002918 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002919 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002920
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002921 task_ctx = cpuctx->task_ctx;
2922 if (ctx->task)
2923 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002924
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002925 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002926}
2927
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002928/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002929 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002930 *
2931 * If event->ctx is a cloned context, callers must make sure that
2932 * every task struct that event->ctx->task could possibly point to
2933 * remains valid. This condition is satisfied when called through
2934 * perf_event_for_each_child or perf_event_for_each as described
2935 * for perf_event_disable.
2936 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002937static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002938{
2939 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002940
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002941 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002942 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2943 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002944 raw_spin_unlock_irq(&ctx->lock);
2945 return;
2946 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002947
2948 /*
2949 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002950 *
2951 * That way, if we see the event in error state below, we know that it
2952 * has gone back into error state, as distinct from the task having
2953 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002954 */
2955 if (event->state == PERF_EVENT_STATE_ERROR)
2956 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002957 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002958
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002959 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002960}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002961
2962/*
2963 * See perf_event_disable();
2964 */
2965void perf_event_enable(struct perf_event *event)
2966{
2967 struct perf_event_context *ctx;
2968
2969 ctx = perf_event_ctx_lock(event);
2970 _perf_event_enable(event);
2971 perf_event_ctx_unlock(event, ctx);
2972}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002973EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002974
Alexander Shishkin375637b2016-04-27 18:44:46 +03002975struct stop_event_data {
2976 struct perf_event *event;
2977 unsigned int restart;
2978};
2979
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002980static int __perf_event_stop(void *info)
2981{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002982 struct stop_event_data *sd = info;
2983 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002984
Alexander Shishkin375637b2016-04-27 18:44:46 +03002985 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002986 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2987 return 0;
2988
2989 /* matches smp_wmb() in event_sched_in() */
2990 smp_rmb();
2991
2992 /*
2993 * There is a window with interrupts enabled before we get here,
2994 * so we need to check again lest we try to stop another CPU's event.
2995 */
2996 if (READ_ONCE(event->oncpu) != smp_processor_id())
2997 return -EAGAIN;
2998
2999 event->pmu->stop(event, PERF_EF_UPDATE);
3000
Alexander Shishkin375637b2016-04-27 18:44:46 +03003001 /*
3002 * May race with the actual stop (through perf_pmu_output_stop()),
3003 * but it is only used for events with AUX ring buffer, and such
3004 * events will refuse to restart because of rb::aux_mmap_count==0,
3005 * see comments in perf_aux_output_begin().
3006 *
Tobias Tefke788faab2018-07-09 12:57:15 +02003007 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03003008 * while restarting.
3009 */
3010 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01003011 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03003012
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02003013 return 0;
3014}
3015
Alexander Shishkin767ae082016-09-06 16:23:49 +03003016static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03003017{
3018 struct stop_event_data sd = {
3019 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03003020 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03003021 };
3022 int ret = 0;
3023
3024 do {
3025 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3026 return 0;
3027
3028 /* matches smp_wmb() in event_sched_in() */
3029 smp_rmb();
3030
3031 /*
3032 * We only want to restart ACTIVE events, so if the event goes
3033 * inactive here (event->oncpu==-1), there's nothing more to do;
3034 * fall through with ret==-ENXIO.
3035 */
3036 ret = cpu_function_call(READ_ONCE(event->oncpu),
3037 __perf_event_stop, &sd);
3038 } while (ret == -EAGAIN);
3039
3040 return ret;
3041}
3042
3043/*
3044 * In order to contain the amount of racy and tricky in the address filter
3045 * configuration management, it is a two part process:
3046 *
3047 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
3048 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02003049 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03003050 * (p2) when an event is scheduled in (pmu::add), it calls
3051 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
3052 * if the generation has changed since the previous call.
3053 *
3054 * If (p1) happens while the event is active, we restart it to force (p2).
3055 *
3056 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
3057 * pre-existing mappings, called once when new filters arrive via SET_FILTER
3058 * ioctl;
3059 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
3060 * registered mapping, called for every new mmap(), with mm::mmap_sem down
3061 * for reading;
3062 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
3063 * of exec.
3064 */
3065void perf_event_addr_filters_sync(struct perf_event *event)
3066{
3067 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
3068
3069 if (!has_addr_filter(event))
3070 return;
3071
3072 raw_spin_lock(&ifh->lock);
3073 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
3074 event->pmu->addr_filters_sync(event);
3075 event->hw.addr_filters_gen = event->addr_filters_gen;
3076 }
3077 raw_spin_unlock(&ifh->lock);
3078}
3079EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
3080
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003081static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003082{
3083 /*
3084 * not supported on inherited events
3085 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01003086 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003087 return -EINVAL;
3088
3089 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003090 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003091
3092 return 0;
3093}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003094
3095/*
3096 * See perf_event_disable()
3097 */
3098int perf_event_refresh(struct perf_event *event, int refresh)
3099{
3100 struct perf_event_context *ctx;
3101 int ret;
3102
3103 ctx = perf_event_ctx_lock(event);
3104 ret = _perf_event_refresh(event, refresh);
3105 perf_event_ctx_unlock(event, ctx);
3106
3107 return ret;
3108}
Avi Kivity26ca5c12011-06-29 18:42:37 +03003109EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003110
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003111static int perf_event_modify_breakpoint(struct perf_event *bp,
3112 struct perf_event_attr *attr)
3113{
3114 int err;
3115
3116 _perf_event_disable(bp);
3117
3118 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003119
Jiri Olsabf062782018-08-27 11:12:28 +02003120 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003121 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02003122
3123 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003124}
3125
3126static int perf_event_modify_attr(struct perf_event *event,
3127 struct perf_event_attr *attr)
3128{
3129 if (event->attr.type != attr->type)
3130 return -EINVAL;
3131
3132 switch (event->attr.type) {
3133 case PERF_TYPE_BREAKPOINT:
3134 return perf_event_modify_breakpoint(event, attr);
3135 default:
3136 /* Place holder for future additions. */
3137 return -EOPNOTSUPP;
3138 }
3139}
3140
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003141static void ctx_sched_out(struct perf_event_context *ctx,
3142 struct perf_cpu_context *cpuctx,
3143 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003144{
Peter Zijlstra66681282017-11-13 14:28:38 +01003145 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003146 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003147
3148 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003149
Peter Zijlstra39a43642016-01-11 12:46:35 +01003150 if (likely(!ctx->nr_events)) {
3151 /*
3152 * See __perf_remove_from_context().
3153 */
3154 WARN_ON_ONCE(ctx->is_active);
3155 if (ctx->task)
3156 WARN_ON_ONCE(cpuctx->task_ctx);
3157 return;
3158 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003159
Peter Zijlstradb24d332011-04-09 21:17:45 +02003160 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003161 if (!(ctx->is_active & EVENT_ALL))
3162 ctx->is_active = 0;
3163
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003164 if (ctx->task) {
3165 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3166 if (!ctx->is_active)
3167 cpuctx->task_ctx = NULL;
3168 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003169
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003170 /*
3171 * Always update time if it was set; not only when it changes.
3172 * Otherwise we can 'forget' to update time for any but the last
3173 * context we sched out. For example:
3174 *
3175 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3176 * ctx_sched_out(.event_type = EVENT_PINNED)
3177 *
3178 * would only update time for the pinned events.
3179 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003180 if (is_active & EVENT_TIME) {
3181 /* update (and stop) ctx time */
3182 update_context_time(ctx);
3183 update_cgrp_time_from_cpuctx(cpuctx);
3184 }
3185
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003186 is_active ^= ctx->is_active; /* changed bits */
3187
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003188 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003189 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003190
Ian Rogersfd7d5512019-06-01 01:27:22 -07003191 /*
3192 * If we had been multiplexing, no rotations are necessary, now no events
3193 * are active.
3194 */
3195 ctx->rotate_necessary = 0;
3196
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003197 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003198 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003199 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003200 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003201 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003202
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003203 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003204 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003205 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003206 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003207 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003208}
3209
3210/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003211 * Test whether two contexts are equivalent, i.e. whether they have both been
3212 * cloned from the same version of the same context.
3213 *
3214 * Equivalence is measured using a generation number in the context that is
3215 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3216 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003217 */
3218static int context_equiv(struct perf_event_context *ctx1,
3219 struct perf_event_context *ctx2)
3220{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003221 lockdep_assert_held(&ctx1->lock);
3222 lockdep_assert_held(&ctx2->lock);
3223
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003224 /* Pinning disables the swap optimization */
3225 if (ctx1->pin_count || ctx2->pin_count)
3226 return 0;
3227
3228 /* If ctx1 is the parent of ctx2 */
3229 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3230 return 1;
3231
3232 /* If ctx2 is the parent of ctx1 */
3233 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3234 return 1;
3235
3236 /*
3237 * If ctx1 and ctx2 have the same parent; we flatten the parent
3238 * hierarchy, see perf_event_init_context().
3239 */
3240 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3241 ctx1->parent_gen == ctx2->parent_gen)
3242 return 1;
3243
3244 /* Unmatched */
3245 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003246}
3247
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003248static void __perf_event_sync_stat(struct perf_event *event,
3249 struct perf_event *next_event)
3250{
3251 u64 value;
3252
3253 if (!event->attr.inherit_stat)
3254 return;
3255
3256 /*
3257 * Update the event value, we cannot use perf_event_read()
3258 * because we're in the middle of a context switch and have IRQs
3259 * disabled, which upsets smp_call_function_single(), however
3260 * we know the event must be on the current CPU, therefore we
3261 * don't need to use it.
3262 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003263 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003264 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003265
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003266 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003267
3268 /*
3269 * In order to keep per-task stats reliable we need to flip the event
3270 * values when we flip the contexts.
3271 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003272 value = local64_read(&next_event->count);
3273 value = local64_xchg(&event->count, value);
3274 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003275
3276 swap(event->total_time_enabled, next_event->total_time_enabled);
3277 swap(event->total_time_running, next_event->total_time_running);
3278
3279 /*
3280 * Since we swizzled the values, update the user visible data too.
3281 */
3282 perf_event_update_userpage(event);
3283 perf_event_update_userpage(next_event);
3284}
3285
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003286static void perf_event_sync_stat(struct perf_event_context *ctx,
3287 struct perf_event_context *next_ctx)
3288{
3289 struct perf_event *event, *next_event;
3290
3291 if (!ctx->nr_stat)
3292 return;
3293
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003294 update_context_time(ctx);
3295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003296 event = list_first_entry(&ctx->event_list,
3297 struct perf_event, event_entry);
3298
3299 next_event = list_first_entry(&next_ctx->event_list,
3300 struct perf_event, event_entry);
3301
3302 while (&event->event_entry != &ctx->event_list &&
3303 &next_event->event_entry != &next_ctx->event_list) {
3304
3305 __perf_event_sync_stat(event, next_event);
3306
3307 event = list_next_entry(event, event_entry);
3308 next_event = list_next_entry(next_event, event_entry);
3309 }
3310}
3311
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003312static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3313 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003314{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003315 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003317 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003318 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003319 int do_switch = 1;
3320
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003321 if (likely(!ctx))
3322 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003323
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003324 cpuctx = __get_cpu_context(ctx);
3325 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003326 return;
3327
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003328 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003329 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003330 if (!next_ctx)
3331 goto unlock;
3332
3333 parent = rcu_dereference(ctx->parent_ctx);
3334 next_parent = rcu_dereference(next_ctx->parent_ctx);
3335
3336 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003337 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003338 goto unlock;
3339
3340 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003341 /*
3342 * Looks like the two contexts are clones, so we might be
3343 * able to optimize the context switch. We lock both
3344 * contexts and check that they are clones under the
3345 * lock (including re-checking that neither has been
3346 * uncloned in the meantime). It doesn't matter which
3347 * order we take the locks because no other cpu could
3348 * be trying to lock both of these tasks.
3349 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003350 raw_spin_lock(&ctx->lock);
3351 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003352 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003353 struct pmu *pmu = ctx->pmu;
3354
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003355 WRITE_ONCE(ctx->task, next);
3356 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003357
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003358 /*
3359 * PMU specific parts of task perf context can require
3360 * additional synchronization. As an example of such
3361 * synchronization see implementation details of Intel
3362 * LBR call stack data profiling;
3363 */
3364 if (pmu->swap_task_ctx)
3365 pmu->swap_task_ctx(ctx, next_ctx);
3366 else
3367 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003368
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003369 /*
3370 * RCU_INIT_POINTER here is safe because we've not
3371 * modified the ctx and the above modification of
3372 * ctx->task and ctx->task_ctx_data are immaterial
3373 * since those values are always verified under
3374 * ctx->lock which we're now holding.
3375 */
3376 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3377 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3378
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003379 do_switch = 0;
3380
3381 perf_event_sync_stat(ctx, next_ctx);
3382 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003383 raw_spin_unlock(&next_ctx->lock);
3384 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003385 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003386unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387 rcu_read_unlock();
3388
3389 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003390 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003391 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003392 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003393 }
3394}
3395
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003396static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3397
Yan, Zhengba532502014-11-04 21:55:58 -05003398void perf_sched_cb_dec(struct pmu *pmu)
3399{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003400 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3401
Yan, Zhengba532502014-11-04 21:55:58 -05003402 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003403
3404 if (!--cpuctx->sched_cb_usage)
3405 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003406}
3407
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003408
Yan, Zhengba532502014-11-04 21:55:58 -05003409void perf_sched_cb_inc(struct pmu *pmu)
3410{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003411 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3412
3413 if (!cpuctx->sched_cb_usage++)
3414 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3415
Yan, Zhengba532502014-11-04 21:55:58 -05003416 this_cpu_inc(perf_sched_cb_usages);
3417}
3418
3419/*
3420 * This function provides the context switch callback to the lower code
3421 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003422 *
3423 * This callback is relevant even to per-cpu events; for example multi event
3424 * PEBS requires this to provide PID/TID information. This requires we flush
3425 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003426 */
3427static void perf_pmu_sched_task(struct task_struct *prev,
3428 struct task_struct *next,
3429 bool sched_in)
3430{
3431 struct perf_cpu_context *cpuctx;
3432 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05003433
3434 if (prev == next)
3435 return;
3436
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003437 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08003438 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05003439
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003440 if (WARN_ON_ONCE(!pmu->sched_task))
3441 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05003442
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003443 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3444 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05003445
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003446 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003447
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003448 perf_pmu_enable(pmu);
3449 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003450 }
Yan, Zhengba532502014-11-04 21:55:58 -05003451}
3452
Adrian Hunter45ac1402015-07-21 12:44:02 +03003453static void perf_event_switch(struct task_struct *task,
3454 struct task_struct *next_prev, bool sched_in);
3455
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003456#define for_each_task_context_nr(ctxn) \
3457 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3458
3459/*
3460 * Called from scheduler to remove the events of the current task,
3461 * with interrupts disabled.
3462 *
3463 * We stop each event and update the event value in event->count.
3464 *
3465 * This does not protect us against NMI, but disable()
3466 * sets the disabled bit in the control field of event _before_
3467 * accessing the event control register. If a NMI hits, then it will
3468 * not restart the event.
3469 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003470void __perf_event_task_sched_out(struct task_struct *task,
3471 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003472{
3473 int ctxn;
3474
Yan, Zhengba532502014-11-04 21:55:58 -05003475 if (__this_cpu_read(perf_sched_cb_usages))
3476 perf_pmu_sched_task(task, next, false);
3477
Adrian Hunter45ac1402015-07-21 12:44:02 +03003478 if (atomic_read(&nr_switch_events))
3479 perf_event_switch(task, next, false);
3480
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003481 for_each_task_context_nr(ctxn)
3482 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003483
3484 /*
3485 * if cgroup events exist on this CPU, then we need
3486 * to check if we have to switch out PMU state.
3487 * cgroup event are system-wide mode only
3488 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003489 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003490 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003491}
3492
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493/*
3494 * Called with IRQs disabled
3495 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003496static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3497 enum event_type_t event_type)
3498{
3499 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500}
3501
Ian Rogers6eef8a712020-02-13 23:51:30 -08003502static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003503{
Ian Rogers6eef8a712020-02-13 23:51:30 -08003504 const struct perf_event *le = l, *re = r;
3505
3506 return le->group_index < re->group_index;
3507}
3508
3509static void swap_ptr(void *l, void *r)
3510{
3511 void **lp = l, **rp = r;
3512
3513 swap(*lp, *rp);
3514}
3515
3516static const struct min_heap_callbacks perf_min_heap = {
3517 .elem_size = sizeof(struct perf_event *),
3518 .less = perf_less_group_idx,
3519 .swp = swap_ptr,
3520};
3521
3522static void __heap_add(struct min_heap *heap, struct perf_event *event)
3523{
3524 struct perf_event **itrs = heap->data;
3525
3526 if (event) {
3527 itrs[heap->nr] = event;
3528 heap->nr++;
3529 }
3530}
3531
Ian Rogers836196be2020-02-13 23:51:31 -08003532static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3533 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003534 int (*func)(struct perf_event *, void *),
3535 void *data)
3536{
Ian Rogers95ed6c72020-02-13 23:51:33 -08003537#ifdef CONFIG_CGROUP_PERF
3538 struct cgroup_subsys_state *css = NULL;
3539#endif
Ian Rogers6eef8a712020-02-13 23:51:30 -08003540 /* Space for per CPU and/or any CPU event iterators. */
3541 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003542 struct min_heap event_heap;
3543 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003544 int ret;
3545
Ian Rogers836196be2020-02-13 23:51:31 -08003546 if (cpuctx) {
3547 event_heap = (struct min_heap){
3548 .data = cpuctx->heap,
3549 .nr = 0,
3550 .size = cpuctx->heap_size,
3551 };
Ian Rogersc2283c92020-02-13 23:51:32 -08003552
3553 lockdep_assert_held(&cpuctx->ctx.lock);
Ian Rogers95ed6c72020-02-13 23:51:33 -08003554
3555#ifdef CONFIG_CGROUP_PERF
3556 if (cpuctx->cgrp)
3557 css = &cpuctx->cgrp->css;
3558#endif
Ian Rogers836196be2020-02-13 23:51:31 -08003559 } else {
3560 event_heap = (struct min_heap){
3561 .data = itrs,
3562 .nr = 0,
3563 .size = ARRAY_SIZE(itrs),
3564 };
3565 /* Events not within a CPU context may be on any CPU. */
Ian Rogers95ed6c72020-02-13 23:51:33 -08003566 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
Ian Rogers836196be2020-02-13 23:51:31 -08003567 }
3568 evt = event_heap.data;
3569
Ian Rogers95ed6c72020-02-13 23:51:33 -08003570 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3571
3572#ifdef CONFIG_CGROUP_PERF
3573 for (; css; css = css->parent)
3574 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3575#endif
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003576
Ian Rogers6eef8a712020-02-13 23:51:30 -08003577 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003578
Ian Rogers6eef8a712020-02-13 23:51:30 -08003579 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003580 ret = func(*evt, data);
3581 if (ret)
3582 return ret;
3583
3584 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003585 if (*evt)
3586 min_heapify(&event_heap, 0, &perf_min_heap);
3587 else
3588 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003589 }
3590
3591 return 0;
3592}
3593
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003594static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003595{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003596 struct perf_event_context *ctx = event->ctx;
3597 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3598 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003599
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003600 if (event->state <= PERF_EVENT_STATE_OFF)
3601 return 0;
3602
3603 if (!event_filter_match(event))
3604 return 0;
3605
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003606 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3607 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003608 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003609 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003610
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003611 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3612 if (event->attr.pinned)
3613 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003614
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003615 *can_add_hw = 0;
3616 ctx->rotate_necessary = 1;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003617 }
3618
3619 return 0;
3620}
3621
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003622static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003623ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003624 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003625{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003626 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003627
Ian Rogers836196be2020-02-13 23:51:31 -08003628 if (ctx != &cpuctx->ctx)
3629 cpuctx = NULL;
3630
3631 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003632 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003633 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003634}
3635
3636static void
3637ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003638 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003639{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003640 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003641
Ian Rogers836196be2020-02-13 23:51:31 -08003642 if (ctx != &cpuctx->ctx)
3643 cpuctx = NULL;
3644
3645 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003646 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003647 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003648}
3649
3650static void
3651ctx_sched_in(struct perf_event_context *ctx,
3652 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003653 enum event_type_t event_type,
3654 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003655{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003656 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003657 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003658
Peter Zijlstrac994d612016-01-08 09:20:23 +01003659 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003660
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003661 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003662 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003663
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003664 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003665 if (ctx->task) {
3666 if (!is_active)
3667 cpuctx->task_ctx = ctx;
3668 else
3669 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3670 }
3671
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003672 is_active ^= ctx->is_active; /* changed bits */
3673
3674 if (is_active & EVENT_TIME) {
3675 /* start ctx time */
3676 now = perf_clock();
3677 ctx->timestamp = now;
3678 perf_cgroup_set_timestamp(task, ctx);
3679 }
3680
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003681 /*
3682 * First go through the list and put on any pinned groups
3683 * in order to give them the best chance of going on.
3684 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003685 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003686 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003687
3688 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003689 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003690 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003691}
3692
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003693static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003694 enum event_type_t event_type,
3695 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003696{
3697 struct perf_event_context *ctx = &cpuctx->ctx;
3698
Stephane Eraniane5d13672011-02-14 11:20:01 +02003699 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003700}
3701
Stephane Eraniane5d13672011-02-14 11:20:01 +02003702static void perf_event_context_sched_in(struct perf_event_context *ctx,
3703 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003704{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003705 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003706
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003707 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003708 if (cpuctx->task_ctx == ctx)
3709 return;
3710
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003711 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003712 /*
3713 * We must check ctx->nr_events while holding ctx->lock, such
3714 * that we serialize against perf_install_in_context().
3715 */
3716 if (!ctx->nr_events)
3717 goto unlock;
3718
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003719 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003720 /*
3721 * We want to keep the following priority order:
3722 * cpu pinned (that don't need to move), task pinned,
3723 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003724 *
3725 * However, if task's ctx is not carrying any pinned
3726 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003727 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003728 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003729 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003730 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003731 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003732
3733unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003734 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003735}
3736
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003737/*
3738 * Called from scheduler to add the events of the current task
3739 * with interrupts disabled.
3740 *
3741 * We restore the event value and then enable it.
3742 *
3743 * This does not protect us against NMI, but enable()
3744 * sets the enabled bit in the control field of event _before_
3745 * accessing the event control register. If a NMI hits, then it will
3746 * keep the event running.
3747 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003748void __perf_event_task_sched_in(struct task_struct *prev,
3749 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003750{
3751 struct perf_event_context *ctx;
3752 int ctxn;
3753
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003754 /*
3755 * If cgroup events exist on this CPU, then we need to check if we have
3756 * to switch in PMU state; cgroup event are system-wide mode only.
3757 *
3758 * Since cgroup events are CPU events, we must schedule these in before
3759 * we schedule in the task events.
3760 */
3761 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3762 perf_cgroup_sched_in(prev, task);
3763
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003764 for_each_task_context_nr(ctxn) {
3765 ctx = task->perf_event_ctxp[ctxn];
3766 if (likely(!ctx))
3767 continue;
3768
Stephane Eraniane5d13672011-02-14 11:20:01 +02003769 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003770 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003771
Adrian Hunter45ac1402015-07-21 12:44:02 +03003772 if (atomic_read(&nr_switch_events))
3773 perf_event_switch(task, prev, true);
3774
Yan, Zhengba532502014-11-04 21:55:58 -05003775 if (__this_cpu_read(perf_sched_cb_usages))
3776 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003777}
3778
Peter Zijlstraabd50712010-01-26 18:50:16 +01003779static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3780{
3781 u64 frequency = event->attr.sample_freq;
3782 u64 sec = NSEC_PER_SEC;
3783 u64 divisor, dividend;
3784
3785 int count_fls, nsec_fls, frequency_fls, sec_fls;
3786
3787 count_fls = fls64(count);
3788 nsec_fls = fls64(nsec);
3789 frequency_fls = fls64(frequency);
3790 sec_fls = 30;
3791
3792 /*
3793 * We got @count in @nsec, with a target of sample_freq HZ
3794 * the target period becomes:
3795 *
3796 * @count * 10^9
3797 * period = -------------------
3798 * @nsec * sample_freq
3799 *
3800 */
3801
3802 /*
3803 * Reduce accuracy by one bit such that @a and @b converge
3804 * to a similar magnitude.
3805 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003806#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003807do { \
3808 if (a##_fls > b##_fls) { \
3809 a >>= 1; \
3810 a##_fls--; \
3811 } else { \
3812 b >>= 1; \
3813 b##_fls--; \
3814 } \
3815} while (0)
3816
3817 /*
3818 * Reduce accuracy until either term fits in a u64, then proceed with
3819 * the other, so that finally we can do a u64/u64 division.
3820 */
3821 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3822 REDUCE_FLS(nsec, frequency);
3823 REDUCE_FLS(sec, count);
3824 }
3825
3826 if (count_fls + sec_fls > 64) {
3827 divisor = nsec * frequency;
3828
3829 while (count_fls + sec_fls > 64) {
3830 REDUCE_FLS(count, sec);
3831 divisor >>= 1;
3832 }
3833
3834 dividend = count * sec;
3835 } else {
3836 dividend = count * sec;
3837
3838 while (nsec_fls + frequency_fls > 64) {
3839 REDUCE_FLS(nsec, frequency);
3840 dividend >>= 1;
3841 }
3842
3843 divisor = nsec * frequency;
3844 }
3845
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003846 if (!divisor)
3847 return dividend;
3848
Peter Zijlstraabd50712010-01-26 18:50:16 +01003849 return div64_u64(dividend, divisor);
3850}
3851
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003852static DEFINE_PER_CPU(int, perf_throttled_count);
3853static DEFINE_PER_CPU(u64, perf_throttled_seq);
3854
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003855static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003856{
3857 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003858 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003859 s64 delta;
3860
Peter Zijlstraabd50712010-01-26 18:50:16 +01003861 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003862
3863 delta = (s64)(period - hwc->sample_period);
3864 delta = (delta + 7) / 8; /* low pass filter */
3865
3866 sample_period = hwc->sample_period + delta;
3867
3868 if (!sample_period)
3869 sample_period = 1;
3870
3871 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003872
Peter Zijlstrae7850592010-05-21 14:43:08 +02003873 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003874 if (disable)
3875 event->pmu->stop(event, PERF_EF_UPDATE);
3876
Peter Zijlstrae7850592010-05-21 14:43:08 +02003877 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003878
3879 if (disable)
3880 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003881 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003882}
3883
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003884/*
3885 * combine freq adjustment with unthrottling to avoid two passes over the
3886 * events. At the same time, make sure, having freq events does not change
3887 * the rate of unthrottling as that would introduce bias.
3888 */
3889static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3890 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003891{
3892 struct perf_event *event;
3893 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003894 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003895 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003896
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003897 /*
3898 * only need to iterate over all events iff:
3899 * - context have events in frequency mode (needs freq adjust)
3900 * - there are events to unthrottle on this cpu
3901 */
3902 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003903 return;
3904
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003905 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003906 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003907
Paul Mackerras03541f82009-10-14 16:58:03 +11003908 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909 if (event->state != PERF_EVENT_STATE_ACTIVE)
3910 continue;
3911
Stephane Eranian5632ab12011-01-03 18:20:01 +02003912 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003913 continue;
3914
Alexander Shishkin44377272013-12-16 14:17:36 +02003915 perf_pmu_disable(event->pmu);
3916
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003917 hwc = &event->hw;
3918
Jiri Olsaae23bff2013-08-24 16:45:54 +02003919 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003920 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003921 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003922 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003923 }
3924
3925 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003926 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003927
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003928 /*
3929 * stop the event and update event->count
3930 */
3931 event->pmu->stop(event, PERF_EF_UPDATE);
3932
Peter Zijlstrae7850592010-05-21 14:43:08 +02003933 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003934 delta = now - hwc->freq_count_stamp;
3935 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003936
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003937 /*
3938 * restart the event
3939 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003940 * we have stopped the event so tell that
3941 * to perf_adjust_period() to avoid stopping it
3942 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003943 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003944 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003945 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003946
3947 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003948 next:
3949 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003950 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003951
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003952 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003953 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003954}
3955
3956/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003957 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003958 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003959static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003960{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003961 /*
3962 * Rotate the first entry last of non-pinned groups. Rotation might be
3963 * disabled by the inheritance code.
3964 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003965 if (ctx->rotate_disable)
3966 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003967
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003968 perf_event_groups_delete(&ctx->flexible_groups, event);
3969 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003970}
3971
Song Liu7fa343b72019-10-08 09:59:49 -07003972/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003973static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07003974ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003975{
Song Liu7fa343b72019-10-08 09:59:49 -07003976 struct perf_event *event;
3977
3978 /* pick the first active flexible event */
3979 event = list_first_entry_or_null(&ctx->flexible_active,
3980 struct perf_event, active_list);
3981
3982 /* if no active flexible event, pick the first event */
3983 if (!event) {
3984 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
3985 typeof(*event), group_node);
3986 }
3987
3988 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003989}
3990
3991static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
3992{
3993 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07003994 struct perf_event_context *task_ctx = NULL;
3995 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003996
3997 /*
3998 * Since we run this from IRQ context, nobody can install new
3999 * events, thus the event count values are stable.
4000 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004001
Ian Rogersfd7d5512019-06-01 01:27:22 -07004002 cpu_rotate = cpuctx->ctx.rotate_necessary;
4003 task_ctx = cpuctx->task_ctx;
4004 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004005
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004006 if (!(cpu_rotate || task_rotate))
4007 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004008
Peter Zijlstrafacc4302011-04-09 21:17:42 +02004009 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02004010 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004011
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004012 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004013 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004014 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07004015 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01004016
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004017 /*
4018 * As per the order given at ctx_resched() first 'pop' task flexible
4019 * and then, if needed CPU flexible.
4020 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07004021 if (task_event || (task_ctx && cpu_event))
4022 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004023 if (cpu_event)
4024 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01004025
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004026 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07004027 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004028 if (cpu_event)
4029 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004030
Ian Rogersfd7d5512019-06-01 01:27:22 -07004031 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01004032
4033 perf_pmu_enable(cpuctx->ctx.pmu);
4034 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02004035
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01004036 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004037}
4038
4039void perf_event_task_tick(void)
4040{
Mark Rutland2fde4f92015-01-07 15:01:54 +00004041 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4042 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004043 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004044
Frederic Weisbecker16444642017-11-06 16:01:24 +01004045 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004046
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004047 __this_cpu_inc(perf_throttled_seq);
4048 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004049 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004050
Mark Rutland2fde4f92015-01-07 15:01:54 +00004051 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004052 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004053}
4054
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004055static int event_enable_on_exec(struct perf_event *event,
4056 struct perf_event_context *ctx)
4057{
4058 if (!event->attr.enable_on_exec)
4059 return 0;
4060
4061 event->attr.enable_on_exec = 0;
4062 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4063 return 0;
4064
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004065 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01004066
4067 return 1;
4068}
4069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004070/*
4071 * Enable all of a task's events that have been marked enable-on-exec.
4072 * This expects task == current.
4073 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01004074static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004075{
Peter Zijlstrac1274492015-12-10 20:57:40 +01004076 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004077 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01004078 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004079 struct perf_event *event;
4080 unsigned long flags;
4081 int enabled = 0;
4082
4083 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01004084 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004085 if (!ctx || !ctx->nr_events)
4086 goto out;
4087
Peter Zijlstra3e349502016-01-08 10:01:18 +01004088 cpuctx = __get_cpu_context(ctx);
4089 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01004090 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004091 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01004092 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004093 event_type |= get_event_type(event);
4094 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004095
4096 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01004097 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004098 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01004099 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004100 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02004101 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01004102 } else {
4103 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01004104 }
4105 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004106
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004107out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004108 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004109
4110 if (clone_ctx)
4111 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004112}
4113
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004114struct perf_read_data {
4115 struct perf_event *event;
4116 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004117 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004118};
4119
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004120static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004121{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004122 u16 local_pkg, event_pkg;
4123
4124 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004125 int local_cpu = smp_processor_id();
4126
4127 event_pkg = topology_physical_package_id(event_cpu);
4128 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004129
4130 if (event_pkg == local_pkg)
4131 return local_cpu;
4132 }
4133
4134 return event_cpu;
4135}
4136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004137/*
4138 * Cross CPU call to read the hardware event
4139 */
4140static void __perf_event_read(void *info)
4141{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004142 struct perf_read_data *data = info;
4143 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004144 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004145 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004146 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004147
4148 /*
4149 * If this is a task context, we need to check whether it is
4150 * the current task context of this cpu. If not it has been
4151 * scheduled out before the smp call arrived. In that case
4152 * event->count would have been updated to a recent sample
4153 * when the event was scheduled out.
4154 */
4155 if (ctx->task && cpuctx->task_ctx != ctx)
4156 return;
4157
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004158 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004159 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004160 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004161 update_cgrp_time_from_event(event);
4162 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004163
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004164 perf_event_update_time(event);
4165 if (data->group)
4166 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004167
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004168 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004169 goto unlock;
4170
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004171 if (!data->group) {
4172 pmu->read(event);
4173 data->ret = 0;
4174 goto unlock;
4175 }
4176
4177 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4178
4179 pmu->read(event);
4180
Peter Zijlstraedb39592018-03-15 17:36:56 +01004181 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004182 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4183 /*
4184 * Use sibling's PMU rather than @event's since
4185 * sibling could be on different (eg: software) PMU.
4186 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004187 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004188 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004189 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004190
4191 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004192
4193unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004194 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004195}
4196
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004197static inline u64 perf_event_count(struct perf_event *event)
4198{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004199 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004200}
4201
Kaixu Xiaffe86902015-08-06 07:02:32 +00004202/*
4203 * NMI-safe method to read a local event, that is an event that
4204 * is:
4205 * - either for the current task, or for this CPU
4206 * - does not have inherit set, for inherited task events
4207 * will not be local and we cannot read them atomically
4208 * - must not have a pmu::count method
4209 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004210int perf_event_read_local(struct perf_event *event, u64 *value,
4211 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004212{
4213 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004214 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004215
4216 /*
4217 * Disabling interrupts avoids all counter scheduling (context
4218 * switches, timer based rotation and IPIs).
4219 */
4220 local_irq_save(flags);
4221
Kaixu Xiaffe86902015-08-06 07:02:32 +00004222 /*
4223 * It must not be an event with inherit set, we cannot read
4224 * all child counters from atomic context.
4225 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004226 if (event->attr.inherit) {
4227 ret = -EOPNOTSUPP;
4228 goto out;
4229 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004230
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004231 /* If this is a per-task event, it must be for current */
4232 if ((event->attach_state & PERF_ATTACH_TASK) &&
4233 event->hw.target != current) {
4234 ret = -EINVAL;
4235 goto out;
4236 }
4237
4238 /* If this is a per-CPU event, it must be for this CPU */
4239 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4240 event->cpu != smp_processor_id()) {
4241 ret = -EINVAL;
4242 goto out;
4243 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004244
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004245 /* If this is a pinned event it must be running on this CPU */
4246 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4247 ret = -EBUSY;
4248 goto out;
4249 }
4250
Kaixu Xiaffe86902015-08-06 07:02:32 +00004251 /*
4252 * If the event is currently on this CPU, its either a per-task event,
4253 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4254 * oncpu == -1).
4255 */
4256 if (event->oncpu == smp_processor_id())
4257 event->pmu->read(event);
4258
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004259 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004260 if (enabled || running) {
4261 u64 now = event->shadow_ctx_time + perf_clock();
4262 u64 __enabled, __running;
4263
4264 __perf_update_times(event, now, &__enabled, &__running);
4265 if (enabled)
4266 *enabled = __enabled;
4267 if (running)
4268 *running = __running;
4269 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004270out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004271 local_irq_restore(flags);
4272
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004273 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004274}
4275
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004276static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004277{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004278 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004279 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004280
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004281 /*
4282 * If event is enabled and currently active on a CPU, update the
4283 * value in the event structure:
4284 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004285again:
4286 if (state == PERF_EVENT_STATE_ACTIVE) {
4287 struct perf_read_data data;
4288
4289 /*
4290 * Orders the ->state and ->oncpu loads such that if we see
4291 * ACTIVE we must also see the right ->oncpu.
4292 *
4293 * Matches the smp_wmb() from event_sched_in().
4294 */
4295 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004296
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004297 event_cpu = READ_ONCE(event->oncpu);
4298 if ((unsigned)event_cpu >= nr_cpu_ids)
4299 return 0;
4300
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004301 data = (struct perf_read_data){
4302 .event = event,
4303 .group = group,
4304 .ret = 0,
4305 };
4306
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004307 preempt_disable();
4308 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004309
Peter Zijlstra58763142016-08-30 10:15:03 +02004310 /*
4311 * Purposely ignore the smp_call_function_single() return
4312 * value.
4313 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004314 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004315 * scheduled out and that will have updated the event count.
4316 *
4317 * Therefore, either way, we'll have an up-to-date event count
4318 * after this.
4319 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004320 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4321 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004322 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004323
4324 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004325 struct perf_event_context *ctx = event->ctx;
4326 unsigned long flags;
4327
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004328 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004329 state = event->state;
4330 if (state != PERF_EVENT_STATE_INACTIVE) {
4331 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4332 goto again;
4333 }
4334
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004335 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004336 * May read while context is not active (e.g., thread is
4337 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004338 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004339 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004340 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004341 update_cgrp_time_from_event(event);
4342 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004343
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004344 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004345 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004346 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004347 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004348 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004349
4350 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004351}
4352
4353/*
4354 * Initialize the perf_event context in a task_struct:
4355 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004356static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004357{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004358 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004359 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004360 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004361 perf_event_groups_init(&ctx->pinned_groups);
4362 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004363 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004364 INIT_LIST_HEAD(&ctx->pinned_active);
4365 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004366 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004367}
4368
Peter Zijlstraeb184472010-09-07 15:55:13 +02004369static struct perf_event_context *
4370alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004371{
4372 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004373
4374 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4375 if (!ctx)
4376 return NULL;
4377
4378 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004379 if (task)
4380 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004381 ctx->pmu = pmu;
4382
4383 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004384}
4385
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004386static struct task_struct *
4387find_lively_task_by_vpid(pid_t vpid)
4388{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004389 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004391 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004392 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004393 task = current;
4394 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004395 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004396 if (task)
4397 get_task_struct(task);
4398 rcu_read_unlock();
4399
4400 if (!task)
4401 return ERR_PTR(-ESRCH);
4402
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004403 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004404}
4405
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004406/*
4407 * Returns a matching context with refcount and pincount.
4408 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004409static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004410find_get_context(struct pmu *pmu, struct task_struct *task,
4411 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004412{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004413 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004414 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004415 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004417 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004418 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004419
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004420 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004421 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004422 err = perf_allow_cpu(&event->attr);
4423 if (err)
4424 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004425
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004426 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004427 ctx = &cpuctx->ctx;
4428 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004429 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004430
4431 return ctx;
4432 }
4433
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004434 err = -EINVAL;
4435 ctxn = pmu->task_ctx_nr;
4436 if (ctxn < 0)
4437 goto errout;
4438
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004439 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
4440 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
4441 if (!task_ctx_data) {
4442 err = -ENOMEM;
4443 goto errout;
4444 }
4445 }
4446
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004447retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004448 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004449 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004450 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004451 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004452
4453 if (task_ctx_data && !ctx->task_ctx_data) {
4454 ctx->task_ctx_data = task_ctx_data;
4455 task_ctx_data = NULL;
4456 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004457 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004458
4459 if (clone_ctx)
4460 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004461 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004462 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004463 err = -ENOMEM;
4464 if (!ctx)
4465 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004466
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004467 if (task_ctx_data) {
4468 ctx->task_ctx_data = task_ctx_data;
4469 task_ctx_data = NULL;
4470 }
4471
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004472 err = 0;
4473 mutex_lock(&task->perf_event_mutex);
4474 /*
4475 * If it has already passed perf_event_exit_task().
4476 * we must see PF_EXITING, it takes this mutex too.
4477 */
4478 if (task->flags & PF_EXITING)
4479 err = -ESRCH;
4480 else if (task->perf_event_ctxp[ctxn])
4481 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004482 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004483 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004484 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004485 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004486 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004487 mutex_unlock(&task->perf_event_mutex);
4488
4489 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004490 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004491
4492 if (err == -EAGAIN)
4493 goto retry;
4494 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004495 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004496 }
4497
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004498 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004499 return ctx;
4500
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004501errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004502 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004503 return ERR_PTR(err);
4504}
4505
Li Zefan6fb29152009-10-15 11:21:42 +08004506static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004507static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08004508
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004509static void free_event_rcu(struct rcu_head *head)
4510{
4511 struct perf_event *event;
4512
4513 event = container_of(head, struct perf_event, rcu_head);
4514 if (event->ns)
4515 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004516 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004517 kfree(event);
4518}
4519
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004520static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004521 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004522
Kan Liangf2fb6be2016-03-23 11:24:37 -07004523static void detach_sb_event(struct perf_event *event)
4524{
4525 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4526
4527 raw_spin_lock(&pel->lock);
4528 list_del_rcu(&event->sb_list);
4529 raw_spin_unlock(&pel->lock);
4530}
4531
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004532static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004533{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004534 struct perf_event_attr *attr = &event->attr;
4535
Kan Liangf2fb6be2016-03-23 11:24:37 -07004536 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004537 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004538
4539 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004540 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004541
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004542 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4543 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004544 attr->task || attr->ksymbol ||
Song Liu21038f22019-02-25 16:20:05 -08004545 attr->context_switch ||
4546 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004547 return true;
4548 return false;
4549}
4550
4551static void unaccount_pmu_sb_event(struct perf_event *event)
4552{
4553 if (is_sb_event(event))
4554 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004555}
4556
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004557static void unaccount_event_cpu(struct perf_event *event, int cpu)
4558{
4559 if (event->parent)
4560 return;
4561
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004562 if (is_cgroup_event(event))
4563 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4564}
4565
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004566#ifdef CONFIG_NO_HZ_FULL
4567static DEFINE_SPINLOCK(nr_freq_lock);
4568#endif
4569
4570static void unaccount_freq_event_nohz(void)
4571{
4572#ifdef CONFIG_NO_HZ_FULL
4573 spin_lock(&nr_freq_lock);
4574 if (atomic_dec_and_test(&nr_freq_events))
4575 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4576 spin_unlock(&nr_freq_lock);
4577#endif
4578}
4579
4580static void unaccount_freq_event(void)
4581{
4582 if (tick_nohz_full_enabled())
4583 unaccount_freq_event_nohz();
4584 else
4585 atomic_dec(&nr_freq_events);
4586}
4587
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004588static void unaccount_event(struct perf_event *event)
4589{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004590 bool dec = false;
4591
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004592 if (event->parent)
4593 return;
4594
4595 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004596 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004597 if (event->attr.mmap || event->attr.mmap_data)
4598 atomic_dec(&nr_mmap_events);
4599 if (event->attr.comm)
4600 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304601 if (event->attr.namespaces)
4602 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004603 if (event->attr.task)
4604 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004605 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004606 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004607 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004608 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004609 atomic_dec(&nr_switch_events);
4610 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004611 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004612 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004613 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004614 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004615 if (event->attr.ksymbol)
4616 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004617 if (event->attr.bpf_event)
4618 atomic_dec(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004619
Peter Zijlstra9107c892016-02-24 18:45:45 +01004620 if (dec) {
4621 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4622 schedule_delayed_work(&perf_sched_work, HZ);
4623 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004624
4625 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004626
4627 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004628}
4629
Peter Zijlstra9107c892016-02-24 18:45:45 +01004630static void perf_sched_delayed(struct work_struct *work)
4631{
4632 mutex_lock(&perf_sched_mutex);
4633 if (atomic_dec_and_test(&perf_sched_count))
4634 static_branch_disable(&perf_sched_events);
4635 mutex_unlock(&perf_sched_mutex);
4636}
4637
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004638/*
4639 * The following implement mutual exclusion of events on "exclusive" pmus
4640 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4641 * at a time, so we disallow creating events that might conflict, namely:
4642 *
4643 * 1) cpu-wide events in the presence of per-task events,
4644 * 2) per-task events in the presence of cpu-wide events,
4645 * 3) two matching events on the same context.
4646 *
4647 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004648 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004649 */
4650static int exclusive_event_init(struct perf_event *event)
4651{
4652 struct pmu *pmu = event->pmu;
4653
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004654 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004655 return 0;
4656
4657 /*
4658 * Prevent co-existence of per-task and cpu-wide events on the
4659 * same exclusive pmu.
4660 *
4661 * Negative pmu::exclusive_cnt means there are cpu-wide
4662 * events on this "exclusive" pmu, positive means there are
4663 * per-task events.
4664 *
4665 * Since this is called in perf_event_alloc() path, event::ctx
4666 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4667 * to mean "per-task event", because unlike other attach states it
4668 * never gets cleared.
4669 */
4670 if (event->attach_state & PERF_ATTACH_TASK) {
4671 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4672 return -EBUSY;
4673 } else {
4674 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4675 return -EBUSY;
4676 }
4677
4678 return 0;
4679}
4680
4681static void exclusive_event_destroy(struct perf_event *event)
4682{
4683 struct pmu *pmu = event->pmu;
4684
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004685 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004686 return;
4687
4688 /* see comment in exclusive_event_init() */
4689 if (event->attach_state & PERF_ATTACH_TASK)
4690 atomic_dec(&pmu->exclusive_cnt);
4691 else
4692 atomic_inc(&pmu->exclusive_cnt);
4693}
4694
4695static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4696{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004697 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004698 (e1->cpu == e2->cpu ||
4699 e1->cpu == -1 ||
4700 e2->cpu == -1))
4701 return true;
4702 return false;
4703}
4704
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004705static bool exclusive_event_installable(struct perf_event *event,
4706 struct perf_event_context *ctx)
4707{
4708 struct perf_event *iter_event;
4709 struct pmu *pmu = event->pmu;
4710
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004711 lockdep_assert_held(&ctx->mutex);
4712
4713 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004714 return true;
4715
4716 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4717 if (exclusive_event_match(iter_event, event))
4718 return false;
4719 }
4720
4721 return true;
4722}
4723
Alexander Shishkin375637b2016-04-27 18:44:46 +03004724static void perf_addr_filters_splice(struct perf_event *event,
4725 struct list_head *head);
4726
Peter Zijlstra683ede42014-05-05 12:11:24 +02004727static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004728{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004729 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004730
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004731 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004732
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004733 security_perf_event_free(event);
4734
Frederic Weisbecker76369132011-05-19 19:55:04 +02004735 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004736 /*
4737 * Can happen when we close an event with re-directed output.
4738 *
4739 * Since we have a 0 refcount, perf_mmap_close() will skip
4740 * over us; possibly making our ring_buffer_put() the last.
4741 */
4742 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004743 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004744 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004745 }
4746
Stephane Eraniane5d13672011-02-14 11:20:01 +02004747 if (is_cgroup_event(event))
4748 perf_detach_cgroup(event);
4749
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004750 if (!event->parent) {
4751 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4752 put_callchain_buffers();
4753 }
4754
4755 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004756 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02004757 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004758
4759 if (event->destroy)
4760 event->destroy(event);
4761
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004762 /*
4763 * Must be after ->destroy(), due to uprobe_perf_close() using
4764 * hw.target.
4765 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09004766 if (event->hw.target)
4767 put_task_struct(event->hw.target);
4768
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004769 /*
4770 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4771 * all task references must be cleaned up.
4772 */
4773 if (event->ctx)
4774 put_ctx(event->ctx);
4775
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004776 exclusive_event_destroy(event);
4777 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004778
4779 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004780}
4781
Peter Zijlstra683ede42014-05-05 12:11:24 +02004782/*
4783 * Used to free events which have a known refcount of 1, such as in error paths
4784 * where the event isn't exposed yet and inherited events.
4785 */
4786static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004787{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004788 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4789 "unexpected event refcount: %ld; ptr=%p\n",
4790 atomic_long_read(&event->refcount), event)) {
4791 /* leak to avoid use-after-free */
4792 return;
4793 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004794
Peter Zijlstra683ede42014-05-05 12:11:24 +02004795 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004796}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004797
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004798/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004799 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004800 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004801static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004802{
Peter Zijlstra88821352010-11-09 19:01:43 +01004803 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004804
Peter Zijlstra88821352010-11-09 19:01:43 +01004805 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004806 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004807 * Matches the smp_store_release() in perf_event_exit_task(). If we
4808 * observe !owner it means the list deletion is complete and we can
4809 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004810 * owner->perf_event_mutex.
4811 */
Will Deacon506458e2017-10-24 11:22:48 +01004812 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004813 if (owner) {
4814 /*
4815 * Since delayed_put_task_struct() also drops the last
4816 * task reference we can safely take a new reference
4817 * while holding the rcu_read_lock().
4818 */
4819 get_task_struct(owner);
4820 }
4821 rcu_read_unlock();
4822
4823 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004824 /*
4825 * If we're here through perf_event_exit_task() we're already
4826 * holding ctx->mutex which would be an inversion wrt. the
4827 * normal lock order.
4828 *
4829 * However we can safely take this lock because its the child
4830 * ctx->mutex.
4831 */
4832 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4833
Peter Zijlstra88821352010-11-09 19:01:43 +01004834 /*
4835 * We have to re-check the event->owner field, if it is cleared
4836 * we raced with perf_event_exit_task(), acquiring the mutex
4837 * ensured they're done, and we can proceed with freeing the
4838 * event.
4839 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004840 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004841 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004842 smp_store_release(&event->owner, NULL);
4843 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004844 mutex_unlock(&owner->perf_event_mutex);
4845 put_task_struct(owner);
4846 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004847}
4848
Jiri Olsaf8697762014-08-01 14:33:01 +02004849static void put_event(struct perf_event *event)
4850{
Jiri Olsaf8697762014-08-01 14:33:01 +02004851 if (!atomic_long_dec_and_test(&event->refcount))
4852 return;
4853
Peter Zijlstra683ede42014-05-05 12:11:24 +02004854 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004855}
4856
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004857/*
4858 * Kill an event dead; while event:refcount will preserve the event
4859 * object, it will not preserve its functionality. Once the last 'user'
4860 * gives up the object, we'll destroy the thing.
4861 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004862int perf_event_release_kernel(struct perf_event *event)
4863{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004864 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004865 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01004866 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004867
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004868 /*
4869 * If we got here through err_file: fput(event_file); we will not have
4870 * attached to a context yet.
4871 */
4872 if (!ctx) {
4873 WARN_ON_ONCE(event->attach_state &
4874 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4875 goto no_ctx;
4876 }
4877
Peter Zijlstra88821352010-11-09 19:01:43 +01004878 if (!is_kernel_event(event))
4879 perf_remove_from_owner(event);
4880
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004881 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004882 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004883 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004884
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004885 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004886 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004887 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004888 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004889 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004890 * Anybody acquiring event->child_mutex after the below loop _must_
4891 * also see this, most importantly inherit_event() which will avoid
4892 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004893 *
4894 * Thus this guarantees that we will in fact observe and kill _ALL_
4895 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004896 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004897 event->state = PERF_EVENT_STATE_DEAD;
4898 raw_spin_unlock_irq(&ctx->lock);
4899
4900 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004901
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004902again:
4903 mutex_lock(&event->child_mutex);
4904 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004905
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004906 /*
4907 * Cannot change, child events are not migrated, see the
4908 * comment with perf_event_ctx_lock_nested().
4909 */
Will Deacon506458e2017-10-24 11:22:48 +01004910 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004911 /*
4912 * Since child_mutex nests inside ctx::mutex, we must jump
4913 * through hoops. We start by grabbing a reference on the ctx.
4914 *
4915 * Since the event cannot get freed while we hold the
4916 * child_mutex, the context must also exist and have a !0
4917 * reference count.
4918 */
4919 get_ctx(ctx);
4920
4921 /*
4922 * Now that we have a ctx ref, we can drop child_mutex, and
4923 * acquire ctx::mutex without fear of it going away. Then we
4924 * can re-acquire child_mutex.
4925 */
4926 mutex_unlock(&event->child_mutex);
4927 mutex_lock(&ctx->mutex);
4928 mutex_lock(&event->child_mutex);
4929
4930 /*
4931 * Now that we hold ctx::mutex and child_mutex, revalidate our
4932 * state, if child is still the first entry, it didn't get freed
4933 * and we can continue doing so.
4934 */
4935 tmp = list_first_entry_or_null(&event->child_list,
4936 struct perf_event, child_list);
4937 if (tmp == child) {
4938 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004939 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004940 /*
4941 * This matches the refcount bump in inherit_event();
4942 * this can't be the last reference.
4943 */
4944 put_event(event);
4945 }
4946
4947 mutex_unlock(&event->child_mutex);
4948 mutex_unlock(&ctx->mutex);
4949 put_ctx(ctx);
4950 goto again;
4951 }
4952 mutex_unlock(&event->child_mutex);
4953
Peter Zijlstra82d94852018-01-09 13:10:30 +01004954 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004955 void *var = &child->ctx->refcount;
4956
Peter Zijlstra82d94852018-01-09 13:10:30 +01004957 list_del(&child->child_list);
4958 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004959
4960 /*
4961 * Wake any perf_event_free_task() waiting for this event to be
4962 * freed.
4963 */
4964 smp_mb(); /* pairs with wait_var_event() */
4965 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004966 }
4967
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004968no_ctx:
4969 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004970 return 0;
4971}
4972EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4973
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004974/*
4975 * Called when the last reference to the file is gone.
4976 */
Al Viroa6fa9412012-08-20 14:59:25 +01004977static int perf_release(struct inode *inode, struct file *file)
4978{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004979 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004980 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004981}
4982
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004983static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004984{
4985 struct perf_event *child;
4986 u64 total = 0;
4987
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004988 *enabled = 0;
4989 *running = 0;
4990
Peter Zijlstra6f105812009-11-20 22:19:56 +01004991 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004992
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004993 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004994 total += perf_event_count(event);
4995
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004996 *enabled += event->total_time_enabled +
4997 atomic64_read(&event->child_total_time_enabled);
4998 *running += event->total_time_running +
4999 atomic64_read(&event->child_total_time_running);
5000
5001 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005002 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07005003 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005004 *enabled += child->total_time_enabled;
5005 *running += child->total_time_running;
5006 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01005007 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005008
5009 return total;
5010}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005011
5012u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5013{
5014 struct perf_event_context *ctx;
5015 u64 count;
5016
5017 ctx = perf_event_ctx_lock(event);
5018 count = __perf_event_read_value(event, enabled, running);
5019 perf_event_ctx_unlock(event, ctx);
5020
5021 return count;
5022}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005023EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005024
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005025static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005026 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005027{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005028 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005029 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005030 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005031 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005032 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01005033
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005034 ret = perf_event_read(leader, true);
5035 if (ret)
5036 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005037
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02005038 raw_spin_lock_irqsave(&ctx->lock, flags);
5039
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005040 /*
5041 * Since we co-schedule groups, {enabled,running} times of siblings
5042 * will be identical to those of the leader, so we only publish one
5043 * set.
5044 */
5045 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5046 values[n++] += leader->total_time_enabled +
5047 atomic64_read(&leader->child_total_time_enabled);
5048 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005049
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005050 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5051 values[n++] += leader->total_time_running +
5052 atomic64_read(&leader->child_total_time_running);
5053 }
5054
5055 /*
5056 * Write {count,id} tuples for every sibling.
5057 */
5058 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005059 if (read_format & PERF_FORMAT_ID)
5060 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005061
Peter Zijlstraedb39592018-03-15 17:36:56 +01005062 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005063 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005064 if (read_format & PERF_FORMAT_ID)
5065 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005066 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005067
Jiri Olsa2aeb1882017-07-20 16:14:55 +02005068 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005069 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005070}
5071
5072static int perf_read_group(struct perf_event *event,
5073 u64 read_format, char __user *buf)
5074{
5075 struct perf_event *leader = event->group_leader, *child;
5076 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005077 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005078 u64 *values;
5079
5080 lockdep_assert_held(&ctx->mutex);
5081
5082 values = kzalloc(event->read_size, GFP_KERNEL);
5083 if (!values)
5084 return -ENOMEM;
5085
5086 values[0] = 1 + leader->nr_siblings;
5087
5088 /*
5089 * By locking the child_mutex of the leader we effectively
5090 * lock the child list of all siblings.. XXX explain how.
5091 */
5092 mutex_lock(&leader->child_mutex);
5093
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005094 ret = __perf_read_group_add(leader, read_format, values);
5095 if (ret)
5096 goto unlock;
5097
5098 list_for_each_entry(child, &leader->child_list, child_list) {
5099 ret = __perf_read_group_add(child, read_format, values);
5100 if (ret)
5101 goto unlock;
5102 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005103
5104 mutex_unlock(&leader->child_mutex);
5105
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005106 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005107 if (copy_to_user(buf, values, event->read_size))
5108 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005109 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005110
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005111unlock:
5112 mutex_unlock(&leader->child_mutex);
5113out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07005114 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01005115 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005116}
5117
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005118static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005119 u64 read_format, char __user *buf)
5120{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005121 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005122 u64 values[4];
5123 int n = 0;
5124
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005125 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005126 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5127 values[n++] = enabled;
5128 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5129 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005130 if (read_format & PERF_FORMAT_ID)
5131 values[n++] = primary_event_id(event);
5132
5133 if (copy_to_user(buf, values, n * sizeof(u64)))
5134 return -EFAULT;
5135
5136 return n * sizeof(u64);
5137}
5138
Jiri Olsadc633982014-09-12 13:18:26 +02005139static bool is_event_hup(struct perf_event *event)
5140{
5141 bool no_children;
5142
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005143 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005144 return false;
5145
5146 mutex_lock(&event->child_mutex);
5147 no_children = list_empty(&event->child_list);
5148 mutex_unlock(&event->child_mutex);
5149 return no_children;
5150}
5151
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152/*
5153 * Read the performance event - simple non blocking version for now
5154 */
5155static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005156__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005157{
5158 u64 read_format = event->attr.read_format;
5159 int ret;
5160
5161 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005162 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005163 * error state (i.e. because it was pinned but it couldn't be
5164 * scheduled on to the CPU at some point).
5165 */
5166 if (event->state == PERF_EVENT_STATE_ERROR)
5167 return 0;
5168
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005169 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005170 return -ENOSPC;
5171
5172 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005173 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005174 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005175 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005176 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005177
5178 return ret;
5179}
5180
5181static ssize_t
5182perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5183{
5184 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005185 struct perf_event_context *ctx;
5186 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005187
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005188 ret = security_perf_event_read(event);
5189 if (ret)
5190 return ret;
5191
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005192 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005193 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005194 perf_event_ctx_unlock(event, ctx);
5195
5196 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005197}
5198
Al Viro9dd95742017-07-03 00:42:43 -04005199static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005200{
5201 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005202 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005203 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005204
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005205 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005206
Jiri Olsadc633982014-09-12 13:18:26 +02005207 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005208 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005209
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005210 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005211 * Pin the event->rb by taking event->mmap_mutex; otherwise
5212 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005213 */
5214 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005215 rb = event->rb;
5216 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005217 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005218 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005219 return events;
5220}
5221
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005222static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005223{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005224 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005225 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005226 perf_event_update_userpage(event);
5227}
5228
Like Xu52ba4b02019-10-27 18:52:39 +08005229/* Assume it's not an event with inherit set. */
5230u64 perf_event_pause(struct perf_event *event, bool reset)
5231{
5232 struct perf_event_context *ctx;
5233 u64 count;
5234
5235 ctx = perf_event_ctx_lock(event);
5236 WARN_ON_ONCE(event->attr.inherit);
5237 _perf_event_disable(event);
5238 count = local64_read(&event->count);
5239 if (reset)
5240 local64_set(&event->count, 0);
5241 perf_event_ctx_unlock(event, ctx);
5242
5243 return count;
5244}
5245EXPORT_SYMBOL_GPL(perf_event_pause);
5246
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005247/*
5248 * Holding the top-level event's child_mutex means that any
5249 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005250 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005251 * task existence requirements of perf_event_enable/disable.
5252 */
5253static void perf_event_for_each_child(struct perf_event *event,
5254 void (*func)(struct perf_event *))
5255{
5256 struct perf_event *child;
5257
5258 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005260 mutex_lock(&event->child_mutex);
5261 func(event);
5262 list_for_each_entry(child, &event->child_list, child_list)
5263 func(child);
5264 mutex_unlock(&event->child_mutex);
5265}
5266
5267static void perf_event_for_each(struct perf_event *event,
5268 void (*func)(struct perf_event *))
5269{
5270 struct perf_event_context *ctx = event->ctx;
5271 struct perf_event *sibling;
5272
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005273 lockdep_assert_held(&ctx->mutex);
5274
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275 event = event->group_leader;
5276
5277 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005278 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005279 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005280}
5281
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005282static void __perf_event_period(struct perf_event *event,
5283 struct perf_cpu_context *cpuctx,
5284 struct perf_event_context *ctx,
5285 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005286{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005287 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005288 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005289
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005290 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005291 event->attr.sample_freq = value;
5292 } else {
5293 event->attr.sample_period = value;
5294 event->hw.sample_period = value;
5295 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005296
5297 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5298 if (active) {
5299 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005300 /*
5301 * We could be throttled; unthrottle now to avoid the tick
5302 * trying to unthrottle while we already re-started the event.
5303 */
5304 if (event->hw.interrupts == MAX_INTERRUPTS) {
5305 event->hw.interrupts = 0;
5306 perf_log_throttle(event, 1);
5307 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005308 event->pmu->stop(event, PERF_EF_UPDATE);
5309 }
5310
5311 local64_set(&event->hw.period_left, 0);
5312
5313 if (active) {
5314 event->pmu->start(event, PERF_EF_RELOAD);
5315 perf_pmu_enable(ctx->pmu);
5316 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005317}
5318
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005319static int perf_event_check_period(struct perf_event *event, u64 value)
5320{
5321 return event->pmu->check_period(event, value);
5322}
5323
Like Xu3ca270f2019-10-27 18:52:38 +08005324static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005325{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005326 if (!is_sampling_event(event))
5327 return -EINVAL;
5328
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005329 if (!value)
5330 return -EINVAL;
5331
5332 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5333 return -EINVAL;
5334
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005335 if (perf_event_check_period(event, value))
5336 return -EINVAL;
5337
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305338 if (!event->attr.freq && (value & (1ULL << 63)))
5339 return -EINVAL;
5340
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005341 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005342
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005343 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005344}
5345
Like Xu3ca270f2019-10-27 18:52:38 +08005346int perf_event_period(struct perf_event *event, u64 value)
5347{
5348 struct perf_event_context *ctx;
5349 int ret;
5350
5351 ctx = perf_event_ctx_lock(event);
5352 ret = _perf_event_period(event, value);
5353 perf_event_ctx_unlock(event, ctx);
5354
5355 return ret;
5356}
5357EXPORT_SYMBOL_GPL(perf_event_period);
5358
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005359static const struct file_operations perf_fops;
5360
Al Viro2903ff02012-08-28 12:52:22 -04005361static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005362{
Al Viro2903ff02012-08-28 12:52:22 -04005363 struct fd f = fdget(fd);
5364 if (!f.file)
5365 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005366
Al Viro2903ff02012-08-28 12:52:22 -04005367 if (f.file->f_op != &perf_fops) {
5368 fdput(f);
5369 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005370 }
Al Viro2903ff02012-08-28 12:52:22 -04005371 *p = f;
5372 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005373}
5374
5375static int perf_event_set_output(struct perf_event *event,
5376 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005377static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07005378static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005379static int perf_copy_attr(struct perf_event_attr __user *uattr,
5380 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005381
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005382static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005383{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005384 void (*func)(struct perf_event *);
5385 u32 flags = arg;
5386
5387 switch (cmd) {
5388 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005389 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005390 break;
5391 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005392 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005393 break;
5394 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005395 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005396 break;
5397
5398 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005399 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005400
5401 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005402 {
5403 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404
Like Xu3ca270f2019-10-27 18:52:38 +08005405 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5406 return -EFAULT;
5407
5408 return _perf_event_period(event, value);
5409 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005410 case PERF_EVENT_IOC_ID:
5411 {
5412 u64 id = primary_event_id(event);
5413
5414 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5415 return -EFAULT;
5416 return 0;
5417 }
5418
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005419 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005420 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005421 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005422 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005423 struct perf_event *output_event;
5424 struct fd output;
5425 ret = perf_fget_light(arg, &output);
5426 if (ret)
5427 return ret;
5428 output_event = output.file->private_data;
5429 ret = perf_event_set_output(event, output_event);
5430 fdput(output);
5431 } else {
5432 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005433 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005434 return ret;
5435 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005436
Li Zefan6fb29152009-10-15 11:21:42 +08005437 case PERF_EVENT_IOC_SET_FILTER:
5438 return perf_event_set_filter(event, (void __user *)arg);
5439
Alexei Starovoitov25415172015-03-25 12:49:20 -07005440 case PERF_EVENT_IOC_SET_BPF:
5441 return perf_event_set_bpf_prog(event, arg);
5442
Wang Nan86e79722016-03-28 06:41:29 +00005443 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005444 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005445
5446 rcu_read_lock();
5447 rb = rcu_dereference(event->rb);
5448 if (!rb || !rb->nr_pages) {
5449 rcu_read_unlock();
5450 return -EINVAL;
5451 }
5452 rb_toggle_paused(rb, !!arg);
5453 rcu_read_unlock();
5454 return 0;
5455 }
Yonghong Songf371b302017-12-11 11:39:02 -08005456
5457 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005458 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005459
5460 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5461 struct perf_event_attr new_attr;
5462 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5463 &new_attr);
5464
5465 if (err)
5466 return err;
5467
5468 return perf_event_modify_attr(event, &new_attr);
5469 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005470 default:
5471 return -ENOTTY;
5472 }
5473
5474 if (flags & PERF_IOC_FLAG_GROUP)
5475 perf_event_for_each(event, func);
5476 else
5477 perf_event_for_each_child(event, func);
5478
5479 return 0;
5480}
5481
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005482static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5483{
5484 struct perf_event *event = file->private_data;
5485 struct perf_event_context *ctx;
5486 long ret;
5487
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005488 /* Treat ioctl like writes as it is likely a mutating operation. */
5489 ret = security_perf_event_write(event);
5490 if (ret)
5491 return ret;
5492
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005493 ctx = perf_event_ctx_lock(event);
5494 ret = _perf_ioctl(event, cmd, arg);
5495 perf_event_ctx_unlock(event, ctx);
5496
5497 return ret;
5498}
5499
Pawel Mollb3f20782014-06-13 16:03:32 +01005500#ifdef CONFIG_COMPAT
5501static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5502 unsigned long arg)
5503{
5504 switch (_IOC_NR(cmd)) {
5505 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5506 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005507 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5508 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005509 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5510 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5511 cmd &= ~IOCSIZE_MASK;
5512 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5513 }
5514 break;
5515 }
5516 return perf_ioctl(file, cmd, arg);
5517}
5518#else
5519# define perf_compat_ioctl NULL
5520#endif
5521
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005522int perf_event_task_enable(void)
5523{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005524 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005525 struct perf_event *event;
5526
5527 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005528 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5529 ctx = perf_event_ctx_lock(event);
5530 perf_event_for_each_child(event, _perf_event_enable);
5531 perf_event_ctx_unlock(event, ctx);
5532 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005533 mutex_unlock(&current->perf_event_mutex);
5534
5535 return 0;
5536}
5537
5538int perf_event_task_disable(void)
5539{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005540 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005541 struct perf_event *event;
5542
5543 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005544 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5545 ctx = perf_event_ctx_lock(event);
5546 perf_event_for_each_child(event, _perf_event_disable);
5547 perf_event_ctx_unlock(event, ctx);
5548 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005549 mutex_unlock(&current->perf_event_mutex);
5550
5551 return 0;
5552}
5553
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005554static int perf_event_index(struct perf_event *event)
5555{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005556 if (event->hw.state & PERF_HES_STOPPED)
5557 return 0;
5558
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005559 if (event->state != PERF_EVENT_STATE_ACTIVE)
5560 return 0;
5561
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005562 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005563}
5564
Eric B Munsonc4794292011-06-23 16:34:38 -04005565static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005566 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005567 u64 *enabled,
5568 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005569{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005570 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005571
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005572 *now = perf_clock();
5573 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005574 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005575}
5576
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005577static void perf_event_init_userpage(struct perf_event *event)
5578{
5579 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005580 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005581
5582 rcu_read_lock();
5583 rb = rcu_dereference(event->rb);
5584 if (!rb)
5585 goto unlock;
5586
5587 userpg = rb->user_page;
5588
5589 /* Allow new userspace to detect that bit 0 is deprecated */
5590 userpg->cap_bit0_is_deprecated = 1;
5591 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005592 userpg->data_offset = PAGE_SIZE;
5593 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005594
5595unlock:
5596 rcu_read_unlock();
5597}
5598
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005599void __weak arch_perf_update_userpage(
5600 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005601{
5602}
5603
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005604/*
5605 * Callers need to ensure there can be no nesting of this function, otherwise
5606 * the seqlock logic goes bad. We can not serialize this because the arch
5607 * code calls this from NMI context.
5608 */
5609void perf_event_update_userpage(struct perf_event *event)
5610{
5611 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005612 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005613 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005614
5615 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005616 rb = rcu_dereference(event->rb);
5617 if (!rb)
5618 goto unlock;
5619
Eric B Munson0d641202011-06-24 12:26:26 -04005620 /*
5621 * compute total_time_enabled, total_time_running
5622 * based on snapshot values taken when the event
5623 * was last scheduled in.
5624 *
5625 * we cannot simply called update_context_time()
5626 * because of locking issue as we can be called in
5627 * NMI context
5628 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005629 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005630
Frederic Weisbecker76369132011-05-19 19:55:04 +02005631 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005632 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005633 * Disable preemption to guarantee consistent time stamps are stored to
5634 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005635 */
5636 preempt_disable();
5637 ++userpg->lock;
5638 barrier();
5639 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005640 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005641 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005642 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005643
Eric B Munson0d641202011-06-24 12:26:26 -04005644 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005645 atomic64_read(&event->child_total_time_enabled);
5646
Eric B Munson0d641202011-06-24 12:26:26 -04005647 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005648 atomic64_read(&event->child_total_time_running);
5649
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005650 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005651
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005652 barrier();
5653 ++userpg->lock;
5654 preempt_enable();
5655unlock:
5656 rcu_read_unlock();
5657}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005658EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005659
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305660static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005661{
Dave Jiang11bac802017-02-24 14:56:41 -08005662 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005663 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305664 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005665
5666 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5667 if (vmf->pgoff == 0)
5668 ret = 0;
5669 return ret;
5670 }
5671
5672 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005673 rb = rcu_dereference(event->rb);
5674 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005675 goto unlock;
5676
5677 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5678 goto unlock;
5679
Frederic Weisbecker76369132011-05-19 19:55:04 +02005680 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005681 if (!vmf->page)
5682 goto unlock;
5683
5684 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005685 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005686 vmf->page->index = vmf->pgoff;
5687
5688 ret = 0;
5689unlock:
5690 rcu_read_unlock();
5691
5692 return ret;
5693}
5694
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005695static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005696 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005697{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005698 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005699 unsigned long flags;
5700
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005701 if (event->rb) {
5702 /*
5703 * Should be impossible, we set this when removing
5704 * event->rb_entry and wait/clear when adding event->rb_entry.
5705 */
5706 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005707
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005708 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005709 spin_lock_irqsave(&old_rb->event_lock, flags);
5710 list_del_rcu(&event->rb_entry);
5711 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005712
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005713 event->rcu_batches = get_state_synchronize_rcu();
5714 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005715 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005716
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005717 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005718 if (event->rcu_pending) {
5719 cond_synchronize_rcu(event->rcu_batches);
5720 event->rcu_pending = 0;
5721 }
5722
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005723 spin_lock_irqsave(&rb->event_lock, flags);
5724 list_add_rcu(&event->rb_entry, &rb->event_list);
5725 spin_unlock_irqrestore(&rb->event_lock, flags);
5726 }
5727
Alexander Shishkin767ae082016-09-06 16:23:49 +03005728 /*
5729 * Avoid racing with perf_mmap_close(AUX): stop the event
5730 * before swizzling the event::rb pointer; if it's getting
5731 * unmapped, its aux_mmap_count will be 0 and it won't
5732 * restart. See the comment in __perf_pmu_output_stop().
5733 *
5734 * Data will inevitably be lost when set_output is done in
5735 * mid-air, but then again, whoever does it like this is
5736 * not in for the data anyway.
5737 */
5738 if (has_aux(event))
5739 perf_event_stop(event, 0);
5740
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005741 rcu_assign_pointer(event->rb, rb);
5742
5743 if (old_rb) {
5744 ring_buffer_put(old_rb);
5745 /*
5746 * Since we detached before setting the new rb, so that we
5747 * could attach the new rb, we could have missed a wakeup.
5748 * Provide it now.
5749 */
5750 wake_up_all(&event->waitq);
5751 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005752}
5753
5754static void ring_buffer_wakeup(struct perf_event *event)
5755{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005756 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005757
5758 rcu_read_lock();
5759 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005760 if (rb) {
5761 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5762 wake_up_all(&event->waitq);
5763 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005764 rcu_read_unlock();
5765}
5766
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005767struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005768{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005769 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005770
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005771 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005772 rb = rcu_dereference(event->rb);
5773 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005774 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02005775 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005776 }
5777 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005778
Frederic Weisbecker76369132011-05-19 19:55:04 +02005779 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005780}
5781
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005782void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005783{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005784 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005785 return;
5786
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005787 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005788
Frederic Weisbecker76369132011-05-19 19:55:04 +02005789 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005790}
5791
5792static void perf_mmap_open(struct vm_area_struct *vma)
5793{
5794 struct perf_event *event = vma->vm_file->private_data;
5795
5796 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005797 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005798
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005799 if (vma->vm_pgoff)
5800 atomic_inc(&event->rb->aux_mmap_count);
5801
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005802 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005803 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005804}
5805
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005806static void perf_pmu_output_stop(struct perf_event *event);
5807
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005808/*
5809 * A buffer can be mmap()ed multiple times; either directly through the same
5810 * event, or through other events by use of perf_event_set_output().
5811 *
5812 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5813 * the buffer here, where we still have a VM context. This means we need
5814 * to detach all events redirecting to us.
5815 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005816static void perf_mmap_close(struct vm_area_struct *vma)
5817{
5818 struct perf_event *event = vma->vm_file->private_data;
5819
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005820 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005821 struct user_struct *mmap_user = rb->mmap_user;
5822 int mmap_locked = rb->mmap_locked;
5823 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005824
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005825 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005826 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005827
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005828 /*
5829 * rb->aux_mmap_count will always drop before rb->mmap_count and
5830 * event->mmap_count, so it is ok to use event->mmap_mutex to
5831 * serialize with perf_mmap here.
5832 */
5833 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5834 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005835 /*
5836 * Stop all AUX events that are writing to this buffer,
5837 * so that we can free its AUX pages and corresponding PMU
5838 * data. Note that after rb::aux_mmap_count dropped to zero,
5839 * they won't start any more (see perf_aux_output_begin()).
5840 */
5841 perf_pmu_output_stop(event);
5842
5843 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02005844 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
5845 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005846
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005847 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005848 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02005849 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005850
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005851 mutex_unlock(&event->mmap_mutex);
5852 }
5853
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005854 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005855
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005856 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005857 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005858
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005859 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005860 mutex_unlock(&event->mmap_mutex);
5861
5862 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005863 if (atomic_read(&rb->mmap_count))
5864 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005865
5866 /*
5867 * No other mmap()s, detach from all other events that might redirect
5868 * into the now unreachable buffer. Somewhat complicated by the
5869 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5870 */
5871again:
5872 rcu_read_lock();
5873 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5874 if (!atomic_long_inc_not_zero(&event->refcount)) {
5875 /*
5876 * This event is en-route to free_event() which will
5877 * detach it and remove it from the list.
5878 */
5879 continue;
5880 }
5881 rcu_read_unlock();
5882
5883 mutex_lock(&event->mmap_mutex);
5884 /*
5885 * Check we didn't race with perf_event_set_output() which can
5886 * swizzle the rb from under us while we were waiting to
5887 * acquire mmap_mutex.
5888 *
5889 * If we find a different rb; ignore this event, a next
5890 * iteration will no longer find it on the list. We have to
5891 * still restart the iteration to make sure we're not now
5892 * iterating the wrong list.
5893 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005894 if (event->rb == rb)
5895 ring_buffer_attach(event, NULL);
5896
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005897 mutex_unlock(&event->mmap_mutex);
5898 put_event(event);
5899
5900 /*
5901 * Restart the iteration; either we're on the wrong list or
5902 * destroyed its integrity by doing a deletion.
5903 */
5904 goto again;
5905 }
5906 rcu_read_unlock();
5907
5908 /*
5909 * It could be there's still a few 0-ref events on the list; they'll
5910 * get cleaned up by free_event() -- they'll also still have their
5911 * ref on the rb and will free it whenever they are done with it.
5912 *
5913 * Aside from that, this buffer is 'fully' detached and unmapped,
5914 * undo the VM accounting.
5915 */
5916
Song Liud44248a2019-09-04 14:46:18 -07005917 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
5918 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005919 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005920 free_uid(mmap_user);
5921
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005922out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005923 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005924}
5925
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005926static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005927 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01005928 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005929 .fault = perf_mmap_fault,
5930 .page_mkwrite = perf_mmap_fault,
5931};
5932
5933static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5934{
5935 struct perf_event *event = file->private_data;
5936 unsigned long user_locked, user_lock_limit;
5937 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005938 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005939 unsigned long locked, lock_limit;
5940 unsigned long vma_size;
5941 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005942 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005943 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005944
Peter Zijlstrac7920612010-05-18 10:33:24 +02005945 /*
5946 * Don't allow mmap() of inherited per-task counters. This would
5947 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005948 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005949 */
5950 if (event->cpu == -1 && event->attr.inherit)
5951 return -EINVAL;
5952
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005953 if (!(vma->vm_flags & VM_SHARED))
5954 return -EINVAL;
5955
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005956 ret = security_perf_event_read(event);
5957 if (ret)
5958 return ret;
5959
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005960 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005961
5962 if (vma->vm_pgoff == 0) {
5963 nr_pages = (vma_size / PAGE_SIZE) - 1;
5964 } else {
5965 /*
5966 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5967 * mapped, all subsequent mappings should have the same size
5968 * and offset. Must be above the normal perf buffer.
5969 */
5970 u64 aux_offset, aux_size;
5971
5972 if (!event->rb)
5973 return -EINVAL;
5974
5975 nr_pages = vma_size / PAGE_SIZE;
5976
5977 mutex_lock(&event->mmap_mutex);
5978 ret = -EINVAL;
5979
5980 rb = event->rb;
5981 if (!rb)
5982 goto aux_unlock;
5983
Mark Rutland6aa7de02017-10-23 14:07:29 -07005984 aux_offset = READ_ONCE(rb->user_page->aux_offset);
5985 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005986
5987 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5988 goto aux_unlock;
5989
5990 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5991 goto aux_unlock;
5992
5993 /* already mapped with a different offset */
5994 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5995 goto aux_unlock;
5996
5997 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5998 goto aux_unlock;
5999
6000 /* already mapped with a different size */
6001 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6002 goto aux_unlock;
6003
6004 if (!is_power_of_2(nr_pages))
6005 goto aux_unlock;
6006
6007 if (!atomic_inc_not_zero(&rb->mmap_count))
6008 goto aux_unlock;
6009
6010 if (rb_has_aux(rb)) {
6011 atomic_inc(&rb->aux_mmap_count);
6012 ret = 0;
6013 goto unlock;
6014 }
6015
6016 atomic_set(&rb->aux_mmap_count, 1);
6017 user_extra = nr_pages;
6018
6019 goto accounting;
6020 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006021
6022 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006023 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006024 * can do bitmasks instead of modulo.
6025 */
Kan Liang2ed11312015-03-02 02:14:26 -05006026 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006027 return -EINVAL;
6028
6029 if (vma_size != PAGE_SIZE * (1 + nr_pages))
6030 return -EINVAL;
6031
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006032 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006033again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006034 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006035 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006036 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006037 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006038 goto unlock;
6039 }
6040
6041 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6042 /*
6043 * Raced against perf_mmap_close() through
6044 * perf_event_set_output(). Try again, hope for better
6045 * luck.
6046 */
6047 mutex_unlock(&event->mmap_mutex);
6048 goto again;
6049 }
6050
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006051 goto unlock;
6052 }
6053
6054 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006055
6056accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006057 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
6058
6059 /*
6060 * Increase the limit linearly with more CPUs:
6061 */
6062 user_lock_limit *= num_online_cpus();
6063
Song Liu00346152020-01-23 10:11:46 -08006064 user_locked = atomic_long_read(&user->locked_vm);
6065
6066 /*
6067 * sysctl_perf_event_mlock may have changed, so that
6068 * user->locked_vm > user_lock_limit
6069 */
6070 if (user_locked > user_lock_limit)
6071 user_locked = user_lock_limit;
6072 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006073
Alexander Shishkinc4b75472019-11-20 19:06:40 +02006074 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07006075 /*
6076 * charge locked_vm until it hits user_lock_limit;
6077 * charge the rest from pinned_vm
6078 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006079 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07006080 user_extra -= extra;
6081 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006082
Jiri Slaby78d7d402010-03-05 13:42:54 -08006083 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006084 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006085 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006087 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006088 !capable(CAP_IPC_LOCK)) {
6089 ret = -EPERM;
6090 goto unlock;
6091 }
6092
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006093 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02006094
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006095 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02006096 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02006097
Frederic Weisbecker76369132011-05-19 19:55:04 +02006098 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006099 rb = rb_alloc(nr_pages,
6100 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6101 event->cpu, flags);
6102
6103 if (!rb) {
6104 ret = -ENOMEM;
6105 goto unlock;
6106 }
6107
6108 atomic_set(&rb->mmap_count, 1);
6109 rb->mmap_user = get_current_user();
6110 rb->mmap_locked = extra;
6111
6112 ring_buffer_attach(event, rb);
6113
6114 perf_event_init_userpage(event);
6115 perf_event_update_userpage(event);
6116 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02006117 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6118 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006119 if (!ret)
6120 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006121 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006122
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006123unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006124 if (!ret) {
6125 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006126 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006127
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006128 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006129 } else if (rb) {
6130 atomic_dec(&rb->mmap_count);
6131 }
6132aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006133 mutex_unlock(&event->mmap_mutex);
6134
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006135 /*
6136 * Since pinned accounting is per vm we cannot allow fork() to copy our
6137 * vma.
6138 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006139 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006140 vma->vm_ops = &perf_mmap_vmops;
6141
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006142 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006143 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006144
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006145 return ret;
6146}
6147
6148static int perf_fasync(int fd, struct file *filp, int on)
6149{
Al Viro496ad9a2013-01-23 17:07:38 -05006150 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006151 struct perf_event *event = filp->private_data;
6152 int retval;
6153
Al Viro59551022016-01-22 15:40:57 -05006154 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006155 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006156 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006157
6158 if (retval < 0)
6159 return retval;
6160
6161 return 0;
6162}
6163
6164static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006165 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006166 .release = perf_release,
6167 .read = perf_read,
6168 .poll = perf_poll,
6169 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006170 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006171 .mmap = perf_mmap,
6172 .fasync = perf_fasync,
6173};
6174
6175/*
6176 * Perf event wakeup
6177 *
6178 * If there's data, ensure we set the poll() state and publish everything
6179 * to user-space before waking everybody up.
6180 */
6181
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006182static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6183{
6184 /* only the parent has fasync state */
6185 if (event->parent)
6186 event = event->parent;
6187 return &event->fasync;
6188}
6189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006190void perf_event_wakeup(struct perf_event *event)
6191{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006192 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006193
6194 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006195 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006196 event->pending_kill = 0;
6197 }
6198}
6199
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006200static void perf_pending_event_disable(struct perf_event *event)
6201{
6202 int cpu = READ_ONCE(event->pending_disable);
6203
6204 if (cpu < 0)
6205 return;
6206
6207 if (cpu == smp_processor_id()) {
6208 WRITE_ONCE(event->pending_disable, -1);
6209 perf_event_disable_local(event);
6210 return;
6211 }
6212
6213 /*
6214 * CPU-A CPU-B
6215 *
6216 * perf_event_disable_inatomic()
6217 * @pending_disable = CPU-A;
6218 * irq_work_queue();
6219 *
6220 * sched-out
6221 * @pending_disable = -1;
6222 *
6223 * sched-in
6224 * perf_event_disable_inatomic()
6225 * @pending_disable = CPU-B;
6226 * irq_work_queue(); // FAILS
6227 *
6228 * irq_work_run()
6229 * perf_pending_event()
6230 *
6231 * But the event runs on CPU-B and wants disabling there.
6232 */
6233 irq_work_queue_on(&event->pending, cpu);
6234}
6235
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006236static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006237{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006238 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006239 int rctx;
6240
6241 rctx = perf_swevent_get_recursion_context();
6242 /*
6243 * If we 'fail' here, that's OK, it means recursion is already disabled
6244 * and we won't recurse 'further'.
6245 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006246
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006247 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006248
6249 if (event->pending_wakeup) {
6250 event->pending_wakeup = 0;
6251 perf_event_wakeup(event);
6252 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006253
6254 if (rctx >= 0)
6255 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006256}
6257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006258/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006259 * We assume there is only KVM supporting the callbacks.
6260 * Later on, we might change it to a list if there is
6261 * another virtualization implementation supporting the callbacks.
6262 */
6263struct perf_guest_info_callbacks *perf_guest_cbs;
6264
6265int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6266{
6267 perf_guest_cbs = cbs;
6268 return 0;
6269}
6270EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6271
6272int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6273{
6274 perf_guest_cbs = NULL;
6275 return 0;
6276}
6277EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
6278
Jiri Olsa40189942012-08-07 15:20:37 +02006279static void
6280perf_output_sample_regs(struct perf_output_handle *handle,
6281 struct pt_regs *regs, u64 mask)
6282{
6283 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306284 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006285
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306286 bitmap_from_u64(_mask, mask);
6287 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006288 u64 val;
6289
6290 val = perf_reg_value(regs, bit);
6291 perf_output_put(handle, val);
6292 }
6293}
6294
Stephane Eranian60e23642014-09-24 13:48:37 +02006295static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006296 struct pt_regs *regs,
6297 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02006298{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006299 if (user_mode(regs)) {
6300 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006301 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006302 } else if (!(current->flags & PF_KTHREAD)) {
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006303 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006304 } else {
6305 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6306 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006307 }
6308}
6309
Stephane Eranian60e23642014-09-24 13:48:37 +02006310static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6311 struct pt_regs *regs)
6312{
6313 regs_intr->regs = regs;
6314 regs_intr->abi = perf_reg_abi(current);
6315}
6316
6317
Jiri Olsac5ebced2012-08-07 15:20:40 +02006318/*
6319 * Get remaining task size from user stack pointer.
6320 *
6321 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006322 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006323 * so using TASK_SIZE as limit.
6324 */
6325static u64 perf_ustack_task_size(struct pt_regs *regs)
6326{
6327 unsigned long addr = perf_user_stack_pointer(regs);
6328
6329 if (!addr || addr >= TASK_SIZE)
6330 return 0;
6331
6332 return TASK_SIZE - addr;
6333}
6334
6335static u16
6336perf_sample_ustack_size(u16 stack_size, u16 header_size,
6337 struct pt_regs *regs)
6338{
6339 u64 task_size;
6340
6341 /* No regs, no stack pointer, no dump. */
6342 if (!regs)
6343 return 0;
6344
6345 /*
6346 * Check if we fit in with the requested stack size into the:
6347 * - TASK_SIZE
6348 * If we don't, we limit the size to the TASK_SIZE.
6349 *
6350 * - remaining sample size
6351 * If we don't, we customize the stack size to
6352 * fit in to the remaining sample size.
6353 */
6354
6355 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6356 stack_size = min(stack_size, (u16) task_size);
6357
6358 /* Current header size plus static size and dynamic size. */
6359 header_size += 2 * sizeof(u64);
6360
6361 /* Do we fit in with the current stack dump size? */
6362 if ((u16) (header_size + stack_size) < header_size) {
6363 /*
6364 * If we overflow the maximum size for the sample,
6365 * we customize the stack dump size to fit in.
6366 */
6367 stack_size = USHRT_MAX - header_size - sizeof(u64);
6368 stack_size = round_up(stack_size, sizeof(u64));
6369 }
6370
6371 return stack_size;
6372}
6373
6374static void
6375perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6376 struct pt_regs *regs)
6377{
6378 /* Case of a kernel thread, nothing to dump */
6379 if (!regs) {
6380 u64 size = 0;
6381 perf_output_put(handle, size);
6382 } else {
6383 unsigned long sp;
6384 unsigned int rem;
6385 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006386 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006387
6388 /*
6389 * We dump:
6390 * static size
6391 * - the size requested by user or the best one we can fit
6392 * in to the sample max size
6393 * data
6394 * - user stack dump data
6395 * dynamic size
6396 * - the actual dumped size
6397 */
6398
6399 /* Static size. */
6400 perf_output_put(handle, dump_size);
6401
6402 /* Data. */
6403 sp = perf_user_stack_pointer(regs);
Yabin Cui02e18442018-08-23 15:59:35 -07006404 fs = get_fs();
6405 set_fs(USER_DS);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006406 rem = __output_copy_user(handle, (void *) sp, dump_size);
Yabin Cui02e18442018-08-23 15:59:35 -07006407 set_fs(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006408 dyn_size = dump_size - rem;
6409
6410 perf_output_skip(handle, rem);
6411
6412 /* Dynamic size. */
6413 perf_output_put(handle, dyn_size);
6414 }
6415}
6416
Alexander Shishkina4faf002019-10-25 17:08:33 +03006417static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6418 struct perf_sample_data *data,
6419 size_t size)
6420{
6421 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006422 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006423
6424 data->aux_size = 0;
6425
6426 if (!sampler)
6427 goto out;
6428
6429 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6430 goto out;
6431
6432 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6433 goto out;
6434
6435 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6436 if (!rb)
6437 goto out;
6438
6439 /*
6440 * If this is an NMI hit inside sampling code, don't take
6441 * the sample. See also perf_aux_sample_output().
6442 */
6443 if (READ_ONCE(rb->aux_in_sampling)) {
6444 data->aux_size = 0;
6445 } else {
6446 size = min_t(size_t, size, perf_aux_size(rb));
6447 data->aux_size = ALIGN(size, sizeof(u64));
6448 }
6449 ring_buffer_put(rb);
6450
6451out:
6452 return data->aux_size;
6453}
6454
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006455long perf_pmu_snapshot_aux(struct perf_buffer *rb,
Alexander Shishkina4faf002019-10-25 17:08:33 +03006456 struct perf_event *event,
6457 struct perf_output_handle *handle,
6458 unsigned long size)
6459{
6460 unsigned long flags;
6461 long ret;
6462
6463 /*
6464 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6465 * paths. If we start calling them in NMI context, they may race with
6466 * the IRQ ones, that is, for example, re-starting an event that's just
6467 * been stopped, which is why we're using a separate callback that
6468 * doesn't change the event state.
6469 *
6470 * IRQs need to be disabled to prevent IPIs from racing with us.
6471 */
6472 local_irq_save(flags);
6473 /*
6474 * Guard against NMI hits inside the critical section;
6475 * see also perf_prepare_sample_aux().
6476 */
6477 WRITE_ONCE(rb->aux_in_sampling, 1);
6478 barrier();
6479
6480 ret = event->pmu->snapshot_aux(event, handle, size);
6481
6482 barrier();
6483 WRITE_ONCE(rb->aux_in_sampling, 0);
6484 local_irq_restore(flags);
6485
6486 return ret;
6487}
6488
6489static void perf_aux_sample_output(struct perf_event *event,
6490 struct perf_output_handle *handle,
6491 struct perf_sample_data *data)
6492{
6493 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006494 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006495 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006496 long size;
6497
6498 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6499 return;
6500
6501 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6502 if (!rb)
6503 return;
6504
6505 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6506
6507 /*
6508 * An error here means that perf_output_copy() failed (returned a
6509 * non-zero surplus that it didn't copy), which in its current
6510 * enlightened implementation is not possible. If that changes, we'd
6511 * like to know.
6512 */
6513 if (WARN_ON_ONCE(size < 0))
6514 goto out_put;
6515
6516 /*
6517 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6518 * perf_prepare_sample_aux(), so should not be more than that.
6519 */
6520 pad = data->aux_size - size;
6521 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6522 pad = 8;
6523
6524 if (pad) {
6525 u64 zero = 0;
6526 perf_output_copy(handle, &zero, pad);
6527 }
6528
6529out_put:
6530 ring_buffer_put(rb);
6531}
6532
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006533static void __perf_event_header__init_id(struct perf_event_header *header,
6534 struct perf_sample_data *data,
6535 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006536{
6537 u64 sample_type = event->attr.sample_type;
6538
6539 data->type = sample_type;
6540 header->size += event->id_header_size;
6541
6542 if (sample_type & PERF_SAMPLE_TID) {
6543 /* namespace issues */
6544 data->tid_entry.pid = perf_event_pid(event, current);
6545 data->tid_entry.tid = perf_event_tid(event, current);
6546 }
6547
6548 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006549 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006550
Adrian Hunterff3d5272013-08-27 11:23:07 +03006551 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006552 data->id = primary_event_id(event);
6553
6554 if (sample_type & PERF_SAMPLE_STREAM_ID)
6555 data->stream_id = event->id;
6556
6557 if (sample_type & PERF_SAMPLE_CPU) {
6558 data->cpu_entry.cpu = raw_smp_processor_id();
6559 data->cpu_entry.reserved = 0;
6560 }
6561}
6562
Frederic Weisbecker76369132011-05-19 19:55:04 +02006563void perf_event_header__init_id(struct perf_event_header *header,
6564 struct perf_sample_data *data,
6565 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006566{
6567 if (event->attr.sample_id_all)
6568 __perf_event_header__init_id(header, data, event);
6569}
6570
6571static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6572 struct perf_sample_data *data)
6573{
6574 u64 sample_type = data->type;
6575
6576 if (sample_type & PERF_SAMPLE_TID)
6577 perf_output_put(handle, data->tid_entry);
6578
6579 if (sample_type & PERF_SAMPLE_TIME)
6580 perf_output_put(handle, data->time);
6581
6582 if (sample_type & PERF_SAMPLE_ID)
6583 perf_output_put(handle, data->id);
6584
6585 if (sample_type & PERF_SAMPLE_STREAM_ID)
6586 perf_output_put(handle, data->stream_id);
6587
6588 if (sample_type & PERF_SAMPLE_CPU)
6589 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006590
6591 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6592 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006593}
6594
Frederic Weisbecker76369132011-05-19 19:55:04 +02006595void perf_event__output_id_sample(struct perf_event *event,
6596 struct perf_output_handle *handle,
6597 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006598{
6599 if (event->attr.sample_id_all)
6600 __perf_event__output_id_sample(handle, sample);
6601}
6602
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006603static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006604 struct perf_event *event,
6605 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006606{
6607 u64 read_format = event->attr.read_format;
6608 u64 values[4];
6609 int n = 0;
6610
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006611 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006612 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006613 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006614 atomic64_read(&event->child_total_time_enabled);
6615 }
6616 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006617 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006618 atomic64_read(&event->child_total_time_running);
6619 }
6620 if (read_format & PERF_FORMAT_ID)
6621 values[n++] = primary_event_id(event);
6622
Frederic Weisbecker76369132011-05-19 19:55:04 +02006623 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006624}
6625
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006626static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006627 struct perf_event *event,
6628 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006629{
6630 struct perf_event *leader = event->group_leader, *sub;
6631 u64 read_format = event->attr.read_format;
6632 u64 values[5];
6633 int n = 0;
6634
6635 values[n++] = 1 + leader->nr_siblings;
6636
6637 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006638 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006639
6640 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006641 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006642
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006643 if ((leader != event) &&
6644 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006645 leader->pmu->read(leader);
6646
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006647 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006648 if (read_format & PERF_FORMAT_ID)
6649 values[n++] = primary_event_id(leader);
6650
Frederic Weisbecker76369132011-05-19 19:55:04 +02006651 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006652
Peter Zijlstraedb39592018-03-15 17:36:56 +01006653 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006654 n = 0;
6655
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006656 if ((sub != event) &&
6657 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006658 sub->pmu->read(sub);
6659
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006660 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006661 if (read_format & PERF_FORMAT_ID)
6662 values[n++] = primary_event_id(sub);
6663
Frederic Weisbecker76369132011-05-19 19:55:04 +02006664 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006665 }
6666}
6667
Stephane Eranianeed01522010-10-26 16:08:01 +02006668#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6669 PERF_FORMAT_TOTAL_TIME_RUNNING)
6670
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006671/*
6672 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6673 *
6674 * The problem is that its both hard and excessively expensive to iterate the
6675 * child list, not to mention that its impossible to IPI the children running
6676 * on another CPU, from interrupt/NMI context.
6677 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006678static void perf_output_read(struct perf_output_handle *handle,
6679 struct perf_event *event)
6680{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006681 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006682 u64 read_format = event->attr.read_format;
6683
6684 /*
6685 * compute total_time_enabled, total_time_running
6686 * based on snapshot values taken when the event
6687 * was last scheduled in.
6688 *
6689 * we cannot simply called update_context_time()
6690 * because of locking issue as we are called in
6691 * NMI context
6692 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006693 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006694 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006695
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006696 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006697 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006698 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006699 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006700}
6701
Kan Liangbbfd5e42020-01-27 08:53:54 -08006702static inline bool perf_sample_save_hw_index(struct perf_event *event)
6703{
6704 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
6705}
6706
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006707void perf_output_sample(struct perf_output_handle *handle,
6708 struct perf_event_header *header,
6709 struct perf_sample_data *data,
6710 struct perf_event *event)
6711{
6712 u64 sample_type = data->type;
6713
6714 perf_output_put(handle, *header);
6715
Adrian Hunterff3d5272013-08-27 11:23:07 +03006716 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6717 perf_output_put(handle, data->id);
6718
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006719 if (sample_type & PERF_SAMPLE_IP)
6720 perf_output_put(handle, data->ip);
6721
6722 if (sample_type & PERF_SAMPLE_TID)
6723 perf_output_put(handle, data->tid_entry);
6724
6725 if (sample_type & PERF_SAMPLE_TIME)
6726 perf_output_put(handle, data->time);
6727
6728 if (sample_type & PERF_SAMPLE_ADDR)
6729 perf_output_put(handle, data->addr);
6730
6731 if (sample_type & PERF_SAMPLE_ID)
6732 perf_output_put(handle, data->id);
6733
6734 if (sample_type & PERF_SAMPLE_STREAM_ID)
6735 perf_output_put(handle, data->stream_id);
6736
6737 if (sample_type & PERF_SAMPLE_CPU)
6738 perf_output_put(handle, data->cpu_entry);
6739
6740 if (sample_type & PERF_SAMPLE_PERIOD)
6741 perf_output_put(handle, data->period);
6742
6743 if (sample_type & PERF_SAMPLE_READ)
6744 perf_output_read(handle, event);
6745
6746 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01006747 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006748
Jiri Olsa99e818c2018-01-07 17:03:50 +01006749 size += data->callchain->nr;
6750 size *= sizeof(u64);
6751 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006752 }
6753
6754 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006755 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07006756
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006757 if (raw) {
6758 struct perf_raw_frag *frag = &raw->frag;
6759
6760 perf_output_put(handle, raw->size);
6761 do {
6762 if (frag->copy) {
6763 __output_custom(handle, frag->copy,
6764 frag->data, frag->size);
6765 } else {
6766 __output_copy(handle, frag->data,
6767 frag->size);
6768 }
6769 if (perf_raw_frag_last(frag))
6770 break;
6771 frag = frag->next;
6772 } while (1);
6773 if (frag->pad)
6774 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006775 } else {
6776 struct {
6777 u32 size;
6778 u32 data;
6779 } raw = {
6780 .size = sizeof(u32),
6781 .data = 0,
6782 };
6783 perf_output_put(handle, raw);
6784 }
6785 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006786
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006787 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6788 if (data->br_stack) {
6789 size_t size;
6790
6791 size = data->br_stack->nr
6792 * sizeof(struct perf_branch_entry);
6793
6794 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08006795 if (perf_sample_save_hw_index(event))
6796 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006797 perf_output_copy(handle, data->br_stack->entries, size);
6798 } else {
6799 /*
6800 * we always store at least the value of nr
6801 */
6802 u64 nr = 0;
6803 perf_output_put(handle, nr);
6804 }
6805 }
Jiri Olsa40189942012-08-07 15:20:37 +02006806
6807 if (sample_type & PERF_SAMPLE_REGS_USER) {
6808 u64 abi = data->regs_user.abi;
6809
6810 /*
6811 * If there are no regs to dump, notice it through
6812 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6813 */
6814 perf_output_put(handle, abi);
6815
6816 if (abi) {
6817 u64 mask = event->attr.sample_regs_user;
6818 perf_output_sample_regs(handle,
6819 data->regs_user.regs,
6820 mask);
6821 }
6822 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006823
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006824 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02006825 perf_output_sample_ustack(handle,
6826 data->stack_user_size,
6827 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006828 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01006829
6830 if (sample_type & PERF_SAMPLE_WEIGHT)
6831 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01006832
6833 if (sample_type & PERF_SAMPLE_DATA_SRC)
6834 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006835
Andi Kleenfdfbbd02013-09-20 07:40:39 -07006836 if (sample_type & PERF_SAMPLE_TRANSACTION)
6837 perf_output_put(handle, data->txn);
6838
Stephane Eranian60e23642014-09-24 13:48:37 +02006839 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6840 u64 abi = data->regs_intr.abi;
6841 /*
6842 * If there are no regs to dump, notice it through
6843 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6844 */
6845 perf_output_put(handle, abi);
6846
6847 if (abi) {
6848 u64 mask = event->attr.sample_regs_intr;
6849
6850 perf_output_sample_regs(handle,
6851 data->regs_intr.regs,
6852 mask);
6853 }
6854 }
6855
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006856 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6857 perf_output_put(handle, data->phys_addr);
6858
Alexander Shishkina4faf002019-10-25 17:08:33 +03006859 if (sample_type & PERF_SAMPLE_AUX) {
6860 perf_output_put(handle, data->aux_size);
6861
6862 if (data->aux_size)
6863 perf_aux_sample_output(event, handle, data);
6864 }
6865
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006866 if (!event->attr.watermark) {
6867 int wakeup_events = event->attr.wakeup_events;
6868
6869 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006870 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006871 int events = local_inc_return(&rb->events);
6872
6873 if (events >= wakeup_events) {
6874 local_sub(wakeup_events, &rb->events);
6875 local_inc(&rb->wakeup);
6876 }
6877 }
6878 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006879}
6880
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006881static u64 perf_virt_to_phys(u64 virt)
6882{
6883 u64 phys_addr = 0;
6884 struct page *p = NULL;
6885
6886 if (!virt)
6887 return 0;
6888
6889 if (virt >= TASK_SIZE) {
6890 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6891 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6892 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6893 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6894 } else {
6895 /*
6896 * Walking the pages tables for user address.
6897 * Interrupts are disabled, so it prevents any tear down
6898 * of the page tables.
6899 * Try IRQ-safe __get_user_pages_fast first.
6900 * If failed, leave phys_addr as 0.
6901 */
6902 if ((current->mm != NULL) &&
6903 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6904 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6905
6906 if (p)
6907 put_page(p);
6908 }
6909
6910 return phys_addr;
6911}
6912
Jiri Olsa99e818c2018-01-07 17:03:50 +01006913static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6914
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006915struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006916perf_callchain(struct perf_event *event, struct pt_regs *regs)
6917{
6918 bool kernel = !event->attr.exclude_callchain_kernel;
6919 bool user = !event->attr.exclude_callchain_user;
6920 /* Disallow cross-task user callchains. */
6921 bool crosstask = event->ctx->task && event->ctx->task != current;
6922 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01006923 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006924
6925 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01006926 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006927
Jiri Olsa99e818c2018-01-07 17:03:50 +01006928 callchain = get_perf_callchain(regs, 0, kernel, user,
6929 max_stack, crosstask, true);
6930 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006931}
6932
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006933void perf_prepare_sample(struct perf_event_header *header,
6934 struct perf_sample_data *data,
6935 struct perf_event *event,
6936 struct pt_regs *regs)
6937{
6938 u64 sample_type = event->attr.sample_type;
6939
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006940 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006941 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006942
6943 header->misc = 0;
6944 header->misc |= perf_misc_flags(regs);
6945
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006946 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006947
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006948 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006949 data->ip = perf_instruction_pointer(regs);
6950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006951 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6952 int size = 1;
6953
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006954 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6955 data->callchain = perf_callchain(event, regs);
6956
Jiri Olsa99e818c2018-01-07 17:03:50 +01006957 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006958
6959 header->size += size * sizeof(u64);
6960 }
6961
6962 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006963 struct perf_raw_record *raw = data->raw;
6964 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006965
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006966 if (raw) {
6967 struct perf_raw_frag *frag = &raw->frag;
6968 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006969
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006970 do {
6971 sum += frag->size;
6972 if (perf_raw_frag_last(frag))
6973 break;
6974 frag = frag->next;
6975 } while (1);
6976
6977 size = round_up(sum + sizeof(u32), sizeof(u64));
6978 raw->size = size - sizeof(u32);
6979 frag->pad = raw->size - sum;
6980 } else {
6981 size = sizeof(u64);
6982 }
6983
6984 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006985 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006986
6987 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6988 int size = sizeof(u64); /* nr */
6989 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08006990 if (perf_sample_save_hw_index(event))
6991 size += sizeof(u64);
6992
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006993 size += data->br_stack->nr
6994 * sizeof(struct perf_branch_entry);
6995 }
6996 header->size += size;
6997 }
Jiri Olsa40189942012-08-07 15:20:37 +02006998
Peter Zijlstra25657112014-09-24 13:48:42 +02006999 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08007000 perf_sample_regs_user(&data->regs_user, regs,
7001 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02007002
Jiri Olsa40189942012-08-07 15:20:37 +02007003 if (sample_type & PERF_SAMPLE_REGS_USER) {
7004 /* regs dump ABI info */
7005 int size = sizeof(u64);
7006
Jiri Olsa40189942012-08-07 15:20:37 +02007007 if (data->regs_user.regs) {
7008 u64 mask = event->attr.sample_regs_user;
7009 size += hweight64(mask) * sizeof(u64);
7010 }
7011
7012 header->size += size;
7013 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02007014
7015 if (sample_type & PERF_SAMPLE_STACK_USER) {
7016 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03007017 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02007018 * processed as the last one or have additional check added
7019 * in case new sample type is added, because we could eat
7020 * up the rest of the sample size.
7021 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02007022 u16 stack_size = event->attr.sample_stack_user;
7023 u16 size = sizeof(u64);
7024
Jiri Olsac5ebced2012-08-07 15:20:40 +02007025 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02007026 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007027
7028 /*
7029 * If there is something to dump, add space for the dump
7030 * itself and for the field that tells the dynamic size,
7031 * which is how many have been actually dumped.
7032 */
7033 if (stack_size)
7034 size += sizeof(u64) + stack_size;
7035
7036 data->stack_user_size = stack_size;
7037 header->size += size;
7038 }
Stephane Eranian60e23642014-09-24 13:48:37 +02007039
7040 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7041 /* regs dump ABI info */
7042 int size = sizeof(u64);
7043
7044 perf_sample_regs_intr(&data->regs_intr, regs);
7045
7046 if (data->regs_intr.regs) {
7047 u64 mask = event->attr.sample_regs_intr;
7048
7049 size += hweight64(mask) * sizeof(u64);
7050 }
7051
7052 header->size += size;
7053 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04007054
7055 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7056 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03007057
7058 if (sample_type & PERF_SAMPLE_AUX) {
7059 u64 size;
7060
7061 header->size += sizeof(u64); /* size */
7062
7063 /*
7064 * Given the 16bit nature of header::size, an AUX sample can
7065 * easily overflow it, what with all the preceding sample bits.
7066 * Make sure this doesn't happen by using up to U16_MAX bytes
7067 * per sample in total (rounded down to 8 byte boundary).
7068 */
7069 size = min_t(size_t, U16_MAX - header->size,
7070 event->attr.aux_sample_size);
7071 size = rounddown(size, 8);
7072 size = perf_prepare_sample_aux(event, data, size);
7073
7074 WARN_ON_ONCE(size + header->size > U16_MAX);
7075 header->size += size;
7076 }
7077 /*
7078 * If you're adding more sample types here, you likely need to do
7079 * something about the overflowing header::size, like repurpose the
7080 * lowest 3 bits of size, which should be always zero at the moment.
7081 * This raises a more important question, do we really need 512k sized
7082 * samples and why, so good argumentation is in order for whatever you
7083 * do here next.
7084 */
7085 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007086}
7087
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007088static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00007089__perf_event_output(struct perf_event *event,
7090 struct perf_sample_data *data,
7091 struct pt_regs *regs,
7092 int (*output_begin)(struct perf_output_handle *,
7093 struct perf_event *,
7094 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007095{
7096 struct perf_output_handle handle;
7097 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007098 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007099
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007100 /* protect the callchain buffers */
7101 rcu_read_lock();
7102
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007103 perf_prepare_sample(&header, data, event, regs);
7104
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007105 err = output_begin(&handle, event, header.size);
7106 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007107 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007108
7109 perf_output_sample(&handle, &header, data, event);
7110
7111 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007112
7113exit:
7114 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007115 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007116}
7117
Wang Nan9ecda412016-04-05 14:11:18 +00007118void
7119perf_event_output_forward(struct perf_event *event,
7120 struct perf_sample_data *data,
7121 struct pt_regs *regs)
7122{
7123 __perf_event_output(event, data, regs, perf_output_begin_forward);
7124}
7125
7126void
7127perf_event_output_backward(struct perf_event *event,
7128 struct perf_sample_data *data,
7129 struct pt_regs *regs)
7130{
7131 __perf_event_output(event, data, regs, perf_output_begin_backward);
7132}
7133
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007134int
Wang Nan9ecda412016-04-05 14:11:18 +00007135perf_event_output(struct perf_event *event,
7136 struct perf_sample_data *data,
7137 struct pt_regs *regs)
7138{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007139 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007140}
7141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007142/*
7143 * read event_id
7144 */
7145
7146struct perf_read_event {
7147 struct perf_event_header header;
7148
7149 u32 pid;
7150 u32 tid;
7151};
7152
7153static void
7154perf_event_read_event(struct perf_event *event,
7155 struct task_struct *task)
7156{
7157 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007158 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007159 struct perf_read_event read_event = {
7160 .header = {
7161 .type = PERF_RECORD_READ,
7162 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007163 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007164 },
7165 .pid = perf_event_pid(event, task),
7166 .tid = perf_event_tid(event, task),
7167 };
7168 int ret;
7169
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007170 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007171 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172 if (ret)
7173 return;
7174
7175 perf_output_put(&handle, read_event);
7176 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007177 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007178
7179 perf_output_end(&handle);
7180}
7181
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007182typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007183
7184static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007185perf_iterate_ctx(struct perf_event_context *ctx,
7186 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007187 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007188{
7189 struct perf_event *event;
7190
7191 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007192 if (!all) {
7193 if (event->state < PERF_EVENT_STATE_INACTIVE)
7194 continue;
7195 if (!event_filter_match(event))
7196 continue;
7197 }
7198
Jiri Olsa67516842013-07-09 18:56:31 +02007199 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007200 }
7201}
7202
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007203static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007204{
7205 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7206 struct perf_event *event;
7207
7208 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007209 /*
7210 * Skip events that are not fully formed yet; ensure that
7211 * if we observe event->ctx, both event and ctx will be
7212 * complete enough. See perf_install_in_context().
7213 */
7214 if (!smp_load_acquire(&event->ctx))
7215 continue;
7216
Kan Liangf2fb6be2016-03-23 11:24:37 -07007217 if (event->state < PERF_EVENT_STATE_INACTIVE)
7218 continue;
7219 if (!event_filter_match(event))
7220 continue;
7221 output(event, data);
7222 }
7223}
7224
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007225/*
7226 * Iterate all events that need to receive side-band events.
7227 *
7228 * For new callers; ensure that account_pmu_sb_event() includes
7229 * your event, otherwise it might not get delivered.
7230 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007231static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007232perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007233 struct perf_event_context *task_ctx)
7234{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007235 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007236 int ctxn;
7237
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007238 rcu_read_lock();
7239 preempt_disable();
7240
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007241 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007242 * If we have task_ctx != NULL we only notify the task context itself.
7243 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007244 * context.
7245 */
7246 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007247 perf_iterate_ctx(task_ctx, output, data, false);
7248 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007249 }
7250
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007251 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007252
7253 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007254 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7255 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007256 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007257 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007258done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007259 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007260 rcu_read_unlock();
7261}
7262
Alexander Shishkin375637b2016-04-27 18:44:46 +03007263/*
7264 * Clear all file-based filters at exec, they'll have to be
7265 * re-instated when/if these objects are mmapped again.
7266 */
7267static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7268{
7269 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7270 struct perf_addr_filter *filter;
7271 unsigned int restart = 0, count = 0;
7272 unsigned long flags;
7273
7274 if (!has_addr_filter(event))
7275 return;
7276
7277 raw_spin_lock_irqsave(&ifh->lock, flags);
7278 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007279 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007280 event->addr_filter_ranges[count].start = 0;
7281 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007282 restart++;
7283 }
7284
7285 count++;
7286 }
7287
7288 if (restart)
7289 event->addr_filters_gen++;
7290 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7291
7292 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007293 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007294}
7295
7296void perf_event_exec(void)
7297{
7298 struct perf_event_context *ctx;
7299 int ctxn;
7300
7301 rcu_read_lock();
7302 for_each_task_context_nr(ctxn) {
7303 ctx = current->perf_event_ctxp[ctxn];
7304 if (!ctx)
7305 continue;
7306
7307 perf_event_enable_on_exec(ctxn);
7308
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007309 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03007310 true);
7311 }
7312 rcu_read_unlock();
7313}
7314
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007315struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007316 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007317 int err;
7318};
7319
7320static void __perf_event_output_stop(struct perf_event *event, void *data)
7321{
7322 struct perf_event *parent = event->parent;
7323 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007324 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007325 struct stop_event_data sd = {
7326 .event = event,
7327 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007328
7329 if (!has_aux(event))
7330 return;
7331
7332 if (!parent)
7333 parent = event;
7334
7335 /*
7336 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007337 * ring-buffer, but it will be the child that's actually using it.
7338 *
7339 * We are using event::rb to determine if the event should be stopped,
7340 * however this may race with ring_buffer_attach() (through set_output),
7341 * which will make us skip the event that actually needs to be stopped.
7342 * So ring_buffer_attach() has to stop an aux event before re-assigning
7343 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007344 */
7345 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007346 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007347}
7348
7349static int __perf_pmu_output_stop(void *info)
7350{
7351 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007352 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007353 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007354 struct remote_output ro = {
7355 .rb = event->rb,
7356 };
7357
7358 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007359 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007360 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007361 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007362 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007363 rcu_read_unlock();
7364
7365 return ro.err;
7366}
7367
7368static void perf_pmu_output_stop(struct perf_event *event)
7369{
7370 struct perf_event *iter;
7371 int err, cpu;
7372
7373restart:
7374 rcu_read_lock();
7375 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7376 /*
7377 * For per-CPU events, we need to make sure that neither they
7378 * nor their children are running; for cpu==-1 events it's
7379 * sufficient to stop the event itself if it's active, since
7380 * it can't have children.
7381 */
7382 cpu = iter->cpu;
7383 if (cpu == -1)
7384 cpu = READ_ONCE(iter->oncpu);
7385
7386 if (cpu == -1)
7387 continue;
7388
7389 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7390 if (err == -EAGAIN) {
7391 rcu_read_unlock();
7392 goto restart;
7393 }
7394 }
7395 rcu_read_unlock();
7396}
7397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007398/*
7399 * task tracking -- fork/exit
7400 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007401 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007402 */
7403
7404struct perf_task_event {
7405 struct task_struct *task;
7406 struct perf_event_context *task_ctx;
7407
7408 struct {
7409 struct perf_event_header header;
7410
7411 u32 pid;
7412 u32 ppid;
7413 u32 tid;
7414 u32 ptid;
7415 u64 time;
7416 } event_id;
7417};
7418
Jiri Olsa67516842013-07-09 18:56:31 +02007419static int perf_event_task_match(struct perf_event *event)
7420{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007421 return event->attr.comm || event->attr.mmap ||
7422 event->attr.mmap2 || event->attr.mmap_data ||
7423 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007424}
7425
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007426static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007427 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007428{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007429 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007430 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007431 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007432 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007433 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007434
Jiri Olsa67516842013-07-09 18:56:31 +02007435 if (!perf_event_task_match(event))
7436 return;
7437
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007438 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007439
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007440 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007441 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007442 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007443 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007444
7445 task_event->event_id.pid = perf_event_pid(event, task);
7446 task_event->event_id.ppid = perf_event_pid(event, current);
7447
7448 task_event->event_id.tid = perf_event_tid(event, task);
7449 task_event->event_id.ptid = perf_event_tid(event, current);
7450
Peter Zijlstra34f43922015-02-20 14:05:38 +01007451 task_event->event_id.time = perf_event_clock(event);
7452
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007453 perf_output_put(&handle, task_event->event_id);
7454
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007455 perf_event__output_id_sample(event, &handle, &sample);
7456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007457 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007458out:
7459 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007460}
7461
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007462static void perf_event_task(struct task_struct *task,
7463 struct perf_event_context *task_ctx,
7464 int new)
7465{
7466 struct perf_task_event task_event;
7467
7468 if (!atomic_read(&nr_comm_events) &&
7469 !atomic_read(&nr_mmap_events) &&
7470 !atomic_read(&nr_task_events))
7471 return;
7472
7473 task_event = (struct perf_task_event){
7474 .task = task,
7475 .task_ctx = task_ctx,
7476 .event_id = {
7477 .header = {
7478 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7479 .misc = 0,
7480 .size = sizeof(task_event.event_id),
7481 },
7482 /* .pid */
7483 /* .ppid */
7484 /* .tid */
7485 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007486 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007487 },
7488 };
7489
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007490 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007491 &task_event,
7492 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007493}
7494
7495void perf_event_fork(struct task_struct *task)
7496{
7497 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307498 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007499}
7500
7501/*
7502 * comm tracking
7503 */
7504
7505struct perf_comm_event {
7506 struct task_struct *task;
7507 char *comm;
7508 int comm_size;
7509
7510 struct {
7511 struct perf_event_header header;
7512
7513 u32 pid;
7514 u32 tid;
7515 } event_id;
7516};
7517
Jiri Olsa67516842013-07-09 18:56:31 +02007518static int perf_event_comm_match(struct perf_event *event)
7519{
7520 return event->attr.comm;
7521}
7522
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007523static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007524 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007525{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007526 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007527 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007528 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007529 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007530 int ret;
7531
Jiri Olsa67516842013-07-09 18:56:31 +02007532 if (!perf_event_comm_match(event))
7533 return;
7534
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007535 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
7536 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007537 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007538
7539 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007540 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007541
7542 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7543 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
7544
7545 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02007546 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007547 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007548
7549 perf_event__output_id_sample(event, &handle, &sample);
7550
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007551 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007552out:
7553 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007554}
7555
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007556static void perf_event_comm_event(struct perf_comm_event *comm_event)
7557{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007558 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007559 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007560
7561 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01007562 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007563 size = ALIGN(strlen(comm)+1, sizeof(u64));
7564
7565 comm_event->comm = comm;
7566 comm_event->comm_size = size;
7567
7568 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007569
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007570 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007571 comm_event,
7572 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007573}
7574
Adrian Hunter82b89772014-05-28 11:45:04 +03007575void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007576{
7577 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007578
7579 if (!atomic_read(&nr_comm_events))
7580 return;
7581
7582 comm_event = (struct perf_comm_event){
7583 .task = task,
7584 /* .comm */
7585 /* .comm_size */
7586 .event_id = {
7587 .header = {
7588 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03007589 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007590 /* .size */
7591 },
7592 /* .pid */
7593 /* .tid */
7594 },
7595 };
7596
7597 perf_event_comm_event(&comm_event);
7598}
7599
7600/*
Hari Bathinie4222672017-03-08 02:11:36 +05307601 * namespaces tracking
7602 */
7603
7604struct perf_namespaces_event {
7605 struct task_struct *task;
7606
7607 struct {
7608 struct perf_event_header header;
7609
7610 u32 pid;
7611 u32 tid;
7612 u64 nr_namespaces;
7613 struct perf_ns_link_info link_info[NR_NAMESPACES];
7614 } event_id;
7615};
7616
7617static int perf_event_namespaces_match(struct perf_event *event)
7618{
7619 return event->attr.namespaces;
7620}
7621
7622static void perf_event_namespaces_output(struct perf_event *event,
7623 void *data)
7624{
7625 struct perf_namespaces_event *namespaces_event = data;
7626 struct perf_output_handle handle;
7627 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02007628 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05307629 int ret;
7630
7631 if (!perf_event_namespaces_match(event))
7632 return;
7633
7634 perf_event_header__init_id(&namespaces_event->event_id.header,
7635 &sample, event);
7636 ret = perf_output_begin(&handle, event,
7637 namespaces_event->event_id.header.size);
7638 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02007639 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05307640
7641 namespaces_event->event_id.pid = perf_event_pid(event,
7642 namespaces_event->task);
7643 namespaces_event->event_id.tid = perf_event_tid(event,
7644 namespaces_event->task);
7645
7646 perf_output_put(&handle, namespaces_event->event_id);
7647
7648 perf_event__output_id_sample(event, &handle, &sample);
7649
7650 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02007651out:
7652 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05307653}
7654
7655static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7656 struct task_struct *task,
7657 const struct proc_ns_operations *ns_ops)
7658{
7659 struct path ns_path;
7660 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11007661 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05307662
7663 error = ns_get_path(&ns_path, task, ns_ops);
7664 if (!error) {
7665 ns_inode = ns_path.dentry->d_inode;
7666 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7667 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03007668 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05307669 }
7670}
7671
7672void perf_event_namespaces(struct task_struct *task)
7673{
7674 struct perf_namespaces_event namespaces_event;
7675 struct perf_ns_link_info *ns_link_info;
7676
7677 if (!atomic_read(&nr_namespaces_events))
7678 return;
7679
7680 namespaces_event = (struct perf_namespaces_event){
7681 .task = task,
7682 .event_id = {
7683 .header = {
7684 .type = PERF_RECORD_NAMESPACES,
7685 .misc = 0,
7686 .size = sizeof(namespaces_event.event_id),
7687 },
7688 /* .pid */
7689 /* .tid */
7690 .nr_namespaces = NR_NAMESPACES,
7691 /* .link_info[NR_NAMESPACES] */
7692 },
7693 };
7694
7695 ns_link_info = namespaces_event.event_id.link_info;
7696
7697 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7698 task, &mntns_operations);
7699
7700#ifdef CONFIG_USER_NS
7701 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7702 task, &userns_operations);
7703#endif
7704#ifdef CONFIG_NET_NS
7705 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7706 task, &netns_operations);
7707#endif
7708#ifdef CONFIG_UTS_NS
7709 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7710 task, &utsns_operations);
7711#endif
7712#ifdef CONFIG_IPC_NS
7713 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7714 task, &ipcns_operations);
7715#endif
7716#ifdef CONFIG_PID_NS
7717 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7718 task, &pidns_operations);
7719#endif
7720#ifdef CONFIG_CGROUPS
7721 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7722 task, &cgroupns_operations);
7723#endif
7724
7725 perf_iterate_sb(perf_event_namespaces_output,
7726 &namespaces_event,
7727 NULL);
7728}
7729
7730/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007731 * mmap tracking
7732 */
7733
7734struct perf_mmap_event {
7735 struct vm_area_struct *vma;
7736
7737 const char *file_name;
7738 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007739 int maj, min;
7740 u64 ino;
7741 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007742 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007743
7744 struct {
7745 struct perf_event_header header;
7746
7747 u32 pid;
7748 u32 tid;
7749 u64 start;
7750 u64 len;
7751 u64 pgoff;
7752 } event_id;
7753};
7754
Jiri Olsa67516842013-07-09 18:56:31 +02007755static int perf_event_mmap_match(struct perf_event *event,
7756 void *data)
7757{
7758 struct perf_mmap_event *mmap_event = data;
7759 struct vm_area_struct *vma = mmap_event->vma;
7760 int executable = vma->vm_flags & VM_EXEC;
7761
7762 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02007763 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02007764}
7765
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007766static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007767 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007768{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007769 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007770 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007771 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007772 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007773 u32 type = mmap_event->event_id.header.type;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007774 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007775
Jiri Olsa67516842013-07-09 18:56:31 +02007776 if (!perf_event_mmap_match(event, data))
7777 return;
7778
Stephane Eranian13d7a242013-08-21 12:10:24 +02007779 if (event->attr.mmap2) {
7780 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7781 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7782 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7783 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03007784 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007785 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7786 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007787 }
7788
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007789 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7790 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007791 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007792 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007793 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007794
7795 mmap_event->event_id.pid = perf_event_pid(event, current);
7796 mmap_event->event_id.tid = perf_event_tid(event, current);
7797
7798 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007799
7800 if (event->attr.mmap2) {
7801 perf_output_put(&handle, mmap_event->maj);
7802 perf_output_put(&handle, mmap_event->min);
7803 perf_output_put(&handle, mmap_event->ino);
7804 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007805 perf_output_put(&handle, mmap_event->prot);
7806 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007807 }
7808
Frederic Weisbecker76369132011-05-19 19:55:04 +02007809 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007810 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007811
7812 perf_event__output_id_sample(event, &handle, &sample);
7813
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007814 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007815out:
7816 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007817 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007818}
7819
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007820static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
7821{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007822 struct vm_area_struct *vma = mmap_event->vma;
7823 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007824 int maj = 0, min = 0;
7825 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007826 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007827 unsigned int size;
7828 char tmp[16];
7829 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007830 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007831
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01007832 if (vma->vm_flags & VM_READ)
7833 prot |= PROT_READ;
7834 if (vma->vm_flags & VM_WRITE)
7835 prot |= PROT_WRITE;
7836 if (vma->vm_flags & VM_EXEC)
7837 prot |= PROT_EXEC;
7838
7839 if (vma->vm_flags & VM_MAYSHARE)
7840 flags = MAP_SHARED;
7841 else
7842 flags = MAP_PRIVATE;
7843
7844 if (vma->vm_flags & VM_DENYWRITE)
7845 flags |= MAP_DENYWRITE;
7846 if (vma->vm_flags & VM_MAYEXEC)
7847 flags |= MAP_EXECUTABLE;
7848 if (vma->vm_flags & VM_LOCKED)
7849 flags |= MAP_LOCKED;
7850 if (vma->vm_flags & VM_HUGETLB)
7851 flags |= MAP_HUGETLB;
7852
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007853 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02007854 struct inode *inode;
7855 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007856
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007857 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007858 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007859 name = "//enomem";
7860 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007861 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007862 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007863 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007864 * need to add enough zero bytes after the string to handle
7865 * the 64bit alignment we do later.
7866 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02007867 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007868 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007869 name = "//toolong";
7870 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007871 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02007872 inode = file_inode(vma->vm_file);
7873 dev = inode->i_sb->s_dev;
7874 ino = inode->i_ino;
7875 gen = inode->i_generation;
7876 maj = MAJOR(dev);
7877 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007878
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007879 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007880 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02007881 if (vma->vm_ops && vma->vm_ops->name) {
7882 name = (char *) vma->vm_ops->name(vma);
7883 if (name)
7884 goto cpy_name;
7885 }
7886
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007887 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007888 if (name)
7889 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007890
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007891 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007892 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007893 name = "[heap]";
7894 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007895 }
7896 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007897 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007898 name = "[stack]";
7899 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007900 }
7901
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007902 name = "//anon";
7903 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007904 }
7905
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007906cpy_name:
7907 strlcpy(tmp, name, sizeof(tmp));
7908 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007909got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007910 /*
7911 * Since our buffer works in 8 byte units we need to align our string
7912 * size to a multiple of 8. However, we must guarantee the tail end is
7913 * zero'd out to avoid leaking random bits to userspace.
7914 */
7915 size = strlen(name)+1;
7916 while (!IS_ALIGNED(size, sizeof(u64)))
7917 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007918
7919 mmap_event->file_name = name;
7920 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007921 mmap_event->maj = maj;
7922 mmap_event->min = min;
7923 mmap_event->ino = ino;
7924 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007925 mmap_event->prot = prot;
7926 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007927
Stephane Eranian2fe85422013-01-24 16:10:39 +01007928 if (!(vma->vm_flags & VM_EXEC))
7929 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
7930
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007931 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
7932
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007933 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007934 mmap_event,
7935 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007936
7937 kfree(buf);
7938}
7939
Alexander Shishkin375637b2016-04-27 18:44:46 +03007940/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03007941 * Check whether inode and address range match filter criteria.
7942 */
7943static bool perf_addr_filter_match(struct perf_addr_filter *filter,
7944 struct file *file, unsigned long offset,
7945 unsigned long size)
7946{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06007947 /* d_inode(NULL) won't be equal to any mapped user-space file */
7948 if (!filter->path.dentry)
7949 return false;
7950
Song Liu9511bce2018-04-17 23:29:07 -07007951 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007952 return false;
7953
7954 if (filter->offset > offset + size)
7955 return false;
7956
7957 if (filter->offset + filter->size < offset)
7958 return false;
7959
7960 return true;
7961}
7962
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007963static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
7964 struct vm_area_struct *vma,
7965 struct perf_addr_filter_range *fr)
7966{
7967 unsigned long vma_size = vma->vm_end - vma->vm_start;
7968 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7969 struct file *file = vma->vm_file;
7970
7971 if (!perf_addr_filter_match(filter, file, off, vma_size))
7972 return false;
7973
7974 if (filter->offset < off) {
7975 fr->start = vma->vm_start;
7976 fr->size = min(vma_size, filter->size - (off - filter->offset));
7977 } else {
7978 fr->start = vma->vm_start + filter->offset - off;
7979 fr->size = min(vma->vm_end - fr->start, filter->size);
7980 }
7981
7982 return true;
7983}
7984
Alexander Shishkin375637b2016-04-27 18:44:46 +03007985static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
7986{
7987 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7988 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007989 struct perf_addr_filter *filter;
7990 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007991 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007992
7993 if (!has_addr_filter(event))
7994 return;
7995
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007996 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007997 return;
7998
7999 raw_spin_lock_irqsave(&ifh->lock, flags);
8000 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02008001 if (perf_addr_filter_vma_adjust(filter, vma,
8002 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03008003 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008004
8005 count++;
8006 }
8007
8008 if (restart)
8009 event->addr_filters_gen++;
8010 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8011
8012 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03008013 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008014}
8015
8016/*
8017 * Adjust all task's events' filters to the new vma
8018 */
8019static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8020{
8021 struct perf_event_context *ctx;
8022 int ctxn;
8023
Mathieu Poirier12b40a22016-07-18 10:43:06 -06008024 /*
8025 * Data tracing isn't supported yet and as such there is no need
8026 * to keep track of anything that isn't related to executable code:
8027 */
8028 if (!(vma->vm_flags & VM_EXEC))
8029 return;
8030
Alexander Shishkin375637b2016-04-27 18:44:46 +03008031 rcu_read_lock();
8032 for_each_task_context_nr(ctxn) {
8033 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8034 if (!ctx)
8035 continue;
8036
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008037 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008038 }
8039 rcu_read_unlock();
8040}
8041
Eric B Munson3af9e852010-05-18 15:30:49 +01008042void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008043{
8044 struct perf_mmap_event mmap_event;
8045
8046 if (!atomic_read(&nr_mmap_events))
8047 return;
8048
8049 mmap_event = (struct perf_mmap_event){
8050 .vma = vma,
8051 /* .file_name */
8052 /* .file_size */
8053 .event_id = {
8054 .header = {
8055 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08008056 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008057 /* .size */
8058 },
8059 /* .pid */
8060 /* .tid */
8061 .start = vma->vm_start,
8062 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01008063 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008064 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02008065 /* .maj (attr_mmap2 only) */
8066 /* .min (attr_mmap2 only) */
8067 /* .ino (attr_mmap2 only) */
8068 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04008069 /* .prot (attr_mmap2 only) */
8070 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008071 };
8072
Alexander Shishkin375637b2016-04-27 18:44:46 +03008073 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008074 perf_event_mmap_event(&mmap_event);
8075}
8076
Alexander Shishkin68db7e92015-01-14 14:18:15 +02008077void perf_event_aux_event(struct perf_event *event, unsigned long head,
8078 unsigned long size, u64 flags)
8079{
8080 struct perf_output_handle handle;
8081 struct perf_sample_data sample;
8082 struct perf_aux_event {
8083 struct perf_event_header header;
8084 u64 offset;
8085 u64 size;
8086 u64 flags;
8087 } rec = {
8088 .header = {
8089 .type = PERF_RECORD_AUX,
8090 .misc = 0,
8091 .size = sizeof(rec),
8092 },
8093 .offset = head,
8094 .size = size,
8095 .flags = flags,
8096 };
8097 int ret;
8098
8099 perf_event_header__init_id(&rec.header, &sample, event);
8100 ret = perf_output_begin(&handle, event, rec.header.size);
8101
8102 if (ret)
8103 return;
8104
8105 perf_output_put(&handle, rec);
8106 perf_event__output_id_sample(event, &handle, &sample);
8107
8108 perf_output_end(&handle);
8109}
8110
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008111/*
Kan Liangf38b0db2015-05-10 15:13:14 -04008112 * Lost/dropped samples logging
8113 */
8114void perf_log_lost_samples(struct perf_event *event, u64 lost)
8115{
8116 struct perf_output_handle handle;
8117 struct perf_sample_data sample;
8118 int ret;
8119
8120 struct {
8121 struct perf_event_header header;
8122 u64 lost;
8123 } lost_samples_event = {
8124 .header = {
8125 .type = PERF_RECORD_LOST_SAMPLES,
8126 .misc = 0,
8127 .size = sizeof(lost_samples_event),
8128 },
8129 .lost = lost,
8130 };
8131
8132 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8133
8134 ret = perf_output_begin(&handle, event,
8135 lost_samples_event.header.size);
8136 if (ret)
8137 return;
8138
8139 perf_output_put(&handle, lost_samples_event);
8140 perf_event__output_id_sample(event, &handle, &sample);
8141 perf_output_end(&handle);
8142}
8143
8144/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008145 * context_switch tracking
8146 */
8147
8148struct perf_switch_event {
8149 struct task_struct *task;
8150 struct task_struct *next_prev;
8151
8152 struct {
8153 struct perf_event_header header;
8154 u32 next_prev_pid;
8155 u32 next_prev_tid;
8156 } event_id;
8157};
8158
8159static int perf_event_switch_match(struct perf_event *event)
8160{
8161 return event->attr.context_switch;
8162}
8163
8164static void perf_event_switch_output(struct perf_event *event, void *data)
8165{
8166 struct perf_switch_event *se = data;
8167 struct perf_output_handle handle;
8168 struct perf_sample_data sample;
8169 int ret;
8170
8171 if (!perf_event_switch_match(event))
8172 return;
8173
8174 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8175 if (event->ctx->task) {
8176 se->event_id.header.type = PERF_RECORD_SWITCH;
8177 se->event_id.header.size = sizeof(se->event_id.header);
8178 } else {
8179 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8180 se->event_id.header.size = sizeof(se->event_id);
8181 se->event_id.next_prev_pid =
8182 perf_event_pid(event, se->next_prev);
8183 se->event_id.next_prev_tid =
8184 perf_event_tid(event, se->next_prev);
8185 }
8186
8187 perf_event_header__init_id(&se->event_id.header, &sample, event);
8188
8189 ret = perf_output_begin(&handle, event, se->event_id.header.size);
8190 if (ret)
8191 return;
8192
8193 if (event->ctx->task)
8194 perf_output_put(&handle, se->event_id.header);
8195 else
8196 perf_output_put(&handle, se->event_id);
8197
8198 perf_event__output_id_sample(event, &handle, &sample);
8199
8200 perf_output_end(&handle);
8201}
8202
8203static void perf_event_switch(struct task_struct *task,
8204 struct task_struct *next_prev, bool sched_in)
8205{
8206 struct perf_switch_event switch_event;
8207
8208 /* N.B. caller checks nr_switch_events != 0 */
8209
8210 switch_event = (struct perf_switch_event){
8211 .task = task,
8212 .next_prev = next_prev,
8213 .event_id = {
8214 .header = {
8215 /* .type */
8216 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8217 /* .size */
8218 },
8219 /* .next_prev_pid */
8220 /* .next_prev_tid */
8221 },
8222 };
8223
Alexey Budankov101592b2018-04-09 10:25:32 +03008224 if (!sched_in && task->state == TASK_RUNNING)
8225 switch_event.event_id.header.misc |=
8226 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
8227
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008228 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03008229 &switch_event,
8230 NULL);
8231}
8232
8233/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008234 * IRQ throttle logging
8235 */
8236
8237static void perf_log_throttle(struct perf_event *event, int enable)
8238{
8239 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008240 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008241 int ret;
8242
8243 struct {
8244 struct perf_event_header header;
8245 u64 time;
8246 u64 id;
8247 u64 stream_id;
8248 } throttle_event = {
8249 .header = {
8250 .type = PERF_RECORD_THROTTLE,
8251 .misc = 0,
8252 .size = sizeof(throttle_event),
8253 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008254 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008255 .id = primary_event_id(event),
8256 .stream_id = event->id,
8257 };
8258
8259 if (enable)
8260 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8261
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008262 perf_event_header__init_id(&throttle_event.header, &sample, event);
8263
8264 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008265 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008266 if (ret)
8267 return;
8268
8269 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008270 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008271 perf_output_end(&handle);
8272}
8273
Song Liu76193a92019-01-17 08:15:13 -08008274/*
8275 * ksymbol register/unregister tracking
8276 */
8277
8278struct perf_ksymbol_event {
8279 const char *name;
8280 int name_len;
8281 struct {
8282 struct perf_event_header header;
8283 u64 addr;
8284 u32 len;
8285 u16 ksym_type;
8286 u16 flags;
8287 } event_id;
8288};
8289
8290static int perf_event_ksymbol_match(struct perf_event *event)
8291{
8292 return event->attr.ksymbol;
8293}
8294
8295static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8296{
8297 struct perf_ksymbol_event *ksymbol_event = data;
8298 struct perf_output_handle handle;
8299 struct perf_sample_data sample;
8300 int ret;
8301
8302 if (!perf_event_ksymbol_match(event))
8303 return;
8304
8305 perf_event_header__init_id(&ksymbol_event->event_id.header,
8306 &sample, event);
8307 ret = perf_output_begin(&handle, event,
8308 ksymbol_event->event_id.header.size);
8309 if (ret)
8310 return;
8311
8312 perf_output_put(&handle, ksymbol_event->event_id);
8313 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8314 perf_event__output_id_sample(event, &handle, &sample);
8315
8316 perf_output_end(&handle);
8317}
8318
8319void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8320 const char *sym)
8321{
8322 struct perf_ksymbol_event ksymbol_event;
8323 char name[KSYM_NAME_LEN];
8324 u16 flags = 0;
8325 int name_len;
8326
8327 if (!atomic_read(&nr_ksymbol_events))
8328 return;
8329
8330 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8331 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8332 goto err;
8333
8334 strlcpy(name, sym, KSYM_NAME_LEN);
8335 name_len = strlen(name) + 1;
8336 while (!IS_ALIGNED(name_len, sizeof(u64)))
8337 name[name_len++] = '\0';
8338 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8339
8340 if (unregister)
8341 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8342
8343 ksymbol_event = (struct perf_ksymbol_event){
8344 .name = name,
8345 .name_len = name_len,
8346 .event_id = {
8347 .header = {
8348 .type = PERF_RECORD_KSYMBOL,
8349 .size = sizeof(ksymbol_event.event_id) +
8350 name_len,
8351 },
8352 .addr = addr,
8353 .len = len,
8354 .ksym_type = ksym_type,
8355 .flags = flags,
8356 },
8357 };
8358
8359 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8360 return;
8361err:
8362 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8363}
8364
Song Liu6ee52e22019-01-17 08:15:15 -08008365/*
8366 * bpf program load/unload tracking
8367 */
8368
8369struct perf_bpf_event {
8370 struct bpf_prog *prog;
8371 struct {
8372 struct perf_event_header header;
8373 u16 type;
8374 u16 flags;
8375 u32 id;
8376 u8 tag[BPF_TAG_SIZE];
8377 } event_id;
8378};
8379
8380static int perf_event_bpf_match(struct perf_event *event)
8381{
8382 return event->attr.bpf_event;
8383}
8384
8385static void perf_event_bpf_output(struct perf_event *event, void *data)
8386{
8387 struct perf_bpf_event *bpf_event = data;
8388 struct perf_output_handle handle;
8389 struct perf_sample_data sample;
8390 int ret;
8391
8392 if (!perf_event_bpf_match(event))
8393 return;
8394
8395 perf_event_header__init_id(&bpf_event->event_id.header,
8396 &sample, event);
8397 ret = perf_output_begin(&handle, event,
8398 bpf_event->event_id.header.size);
8399 if (ret)
8400 return;
8401
8402 perf_output_put(&handle, bpf_event->event_id);
8403 perf_event__output_id_sample(event, &handle, &sample);
8404
8405 perf_output_end(&handle);
8406}
8407
8408static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8409 enum perf_bpf_event_type type)
8410{
8411 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
8412 char sym[KSYM_NAME_LEN];
8413 int i;
8414
8415 if (prog->aux->func_cnt == 0) {
8416 bpf_get_prog_name(prog, sym);
8417 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8418 (u64)(unsigned long)prog->bpf_func,
8419 prog->jited_len, unregister, sym);
8420 } else {
8421 for (i = 0; i < prog->aux->func_cnt; i++) {
8422 struct bpf_prog *subprog = prog->aux->func[i];
8423
8424 bpf_get_prog_name(subprog, sym);
8425 perf_event_ksymbol(
8426 PERF_RECORD_KSYMBOL_TYPE_BPF,
8427 (u64)(unsigned long)subprog->bpf_func,
8428 subprog->jited_len, unregister, sym);
8429 }
8430 }
8431}
8432
8433void perf_event_bpf_event(struct bpf_prog *prog,
8434 enum perf_bpf_event_type type,
8435 u16 flags)
8436{
8437 struct perf_bpf_event bpf_event;
8438
8439 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8440 type >= PERF_BPF_EVENT_MAX)
8441 return;
8442
8443 switch (type) {
8444 case PERF_BPF_EVENT_PROG_LOAD:
8445 case PERF_BPF_EVENT_PROG_UNLOAD:
8446 if (atomic_read(&nr_ksymbol_events))
8447 perf_event_bpf_emit_ksymbols(prog, type);
8448 break;
8449 default:
8450 break;
8451 }
8452
8453 if (!atomic_read(&nr_bpf_events))
8454 return;
8455
8456 bpf_event = (struct perf_bpf_event){
8457 .prog = prog,
8458 .event_id = {
8459 .header = {
8460 .type = PERF_RECORD_BPF_EVENT,
8461 .size = sizeof(bpf_event.event_id),
8462 },
8463 .type = type,
8464 .flags = flags,
8465 .id = prog->aux->id,
8466 },
8467 };
8468
8469 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8470
8471 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8472 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8473}
8474
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008475void perf_event_itrace_started(struct perf_event *event)
8476{
8477 event->attach_state |= PERF_ATTACH_ITRACE;
8478}
8479
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008480static void perf_log_itrace_start(struct perf_event *event)
8481{
8482 struct perf_output_handle handle;
8483 struct perf_sample_data sample;
8484 struct perf_aux_event {
8485 struct perf_event_header header;
8486 u32 pid;
8487 u32 tid;
8488 } rec;
8489 int ret;
8490
8491 if (event->parent)
8492 event = event->parent;
8493
8494 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008495 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008496 return;
8497
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008498 rec.header.type = PERF_RECORD_ITRACE_START;
8499 rec.header.misc = 0;
8500 rec.header.size = sizeof(rec);
8501 rec.pid = perf_event_pid(event, current);
8502 rec.tid = perf_event_tid(event, current);
8503
8504 perf_event_header__init_id(&rec.header, &sample, event);
8505 ret = perf_output_begin(&handle, event, rec.header.size);
8506
8507 if (ret)
8508 return;
8509
8510 perf_output_put(&handle, rec);
8511 perf_event__output_id_sample(event, &handle, &sample);
8512
8513 perf_output_end(&handle);
8514}
8515
Jiri Olsa475113d2016-12-28 14:31:03 +01008516static int
8517__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008518{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008519 struct hw_perf_event *hwc = &event->hw;
8520 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01008521 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01008522
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008523 seq = __this_cpu_read(perf_throttled_seq);
8524 if (seq != hwc->interrupts_seq) {
8525 hwc->interrupts_seq = seq;
8526 hwc->interrupts = 1;
8527 } else {
8528 hwc->interrupts++;
8529 if (unlikely(throttle
8530 && hwc->interrupts >= max_samples_per_tick)) {
8531 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008532 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01008533 hwc->interrupts = MAX_INTERRUPTS;
8534 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008535 ret = 1;
8536 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008537 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008538
8539 if (event->attr.freq) {
8540 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01008541 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008542
Peter Zijlstraabd50712010-01-26 18:50:16 +01008543 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008544
Peter Zijlstraabd50712010-01-26 18:50:16 +01008545 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01008546 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008547 }
8548
Jiri Olsa475113d2016-12-28 14:31:03 +01008549 return ret;
8550}
8551
8552int perf_event_account_interrupt(struct perf_event *event)
8553{
8554 return __perf_event_account_interrupt(event, 1);
8555}
8556
8557/*
8558 * Generic event overflow handling, sampling.
8559 */
8560
8561static int __perf_event_overflow(struct perf_event *event,
8562 int throttle, struct perf_sample_data *data,
8563 struct pt_regs *regs)
8564{
8565 int events = atomic_read(&event->event_limit);
8566 int ret = 0;
8567
8568 /*
8569 * Non-sampling counters might still use the PMI to fold short
8570 * hardware counters, ignore those.
8571 */
8572 if (unlikely(!is_sampling_event(event)))
8573 return 0;
8574
8575 ret = __perf_event_account_interrupt(event, throttle);
8576
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008577 /*
8578 * XXX event_limit might not quite work as expected on inherited
8579 * events
8580 */
8581
8582 event->pending_kill = POLL_IN;
8583 if (events && atomic_dec_and_test(&event->event_limit)) {
8584 ret = 1;
8585 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02008586
8587 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008588 }
8589
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008590 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01008591
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02008592 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008593 event->pending_wakeup = 1;
8594 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02008595 }
8596
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008597 return ret;
8598}
8599
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008600int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008601 struct perf_sample_data *data,
8602 struct pt_regs *regs)
8603{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008604 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008605}
8606
8607/*
8608 * Generic software event infrastructure
8609 */
8610
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008611struct swevent_htable {
8612 struct swevent_hlist *swevent_hlist;
8613 struct mutex hlist_mutex;
8614 int hlist_refcount;
8615
8616 /* Recursion avoidance in each contexts */
8617 int recursion[PERF_NR_CONTEXTS];
8618};
8619
8620static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
8621
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008622/*
8623 * We directly increment event->count and keep a second value in
8624 * event->hw.period_left to count intervals. This period event
8625 * is kept in the range [-sample_period, 0] so that we can use the
8626 * sign as trigger.
8627 */
8628
Jiri Olsaab573842013-05-01 17:25:44 +02008629u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008630{
8631 struct hw_perf_event *hwc = &event->hw;
8632 u64 period = hwc->last_period;
8633 u64 nr, offset;
8634 s64 old, val;
8635
8636 hwc->last_period = hwc->sample_period;
8637
8638again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02008639 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008640 if (val < 0)
8641 return 0;
8642
8643 nr = div64_u64(period + val, period);
8644 offset = nr * period;
8645 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02008646 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008647 goto again;
8648
8649 return nr;
8650}
8651
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008652static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008653 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008654 struct pt_regs *regs)
8655{
8656 struct hw_perf_event *hwc = &event->hw;
8657 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008658
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008659 if (!overflow)
8660 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008661
8662 if (hwc->interrupts == MAX_INTERRUPTS)
8663 return;
8664
8665 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008666 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008667 data, regs)) {
8668 /*
8669 * We inhibit the overflow from happening when
8670 * hwc->interrupts == MAX_INTERRUPTS.
8671 */
8672 break;
8673 }
8674 throttle = 1;
8675 }
8676}
8677
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008678static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008679 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008680 struct pt_regs *regs)
8681{
8682 struct hw_perf_event *hwc = &event->hw;
8683
Peter Zijlstrae7850592010-05-21 14:43:08 +02008684 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008685
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008686 if (!regs)
8687 return;
8688
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008689 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008690 return;
8691
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03008692 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
8693 data->period = nr;
8694 return perf_swevent_overflow(event, 1, data, regs);
8695 } else
8696 data->period = event->hw.last_period;
8697
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008698 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008699 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008700
Peter Zijlstrae7850592010-05-21 14:43:08 +02008701 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008702 return;
8703
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008704 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008705}
8706
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008707static int perf_exclude_event(struct perf_event *event,
8708 struct pt_regs *regs)
8709{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008710 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01008711 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008712
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008713 if (regs) {
8714 if (event->attr.exclude_user && user_mode(regs))
8715 return 1;
8716
8717 if (event->attr.exclude_kernel && !user_mode(regs))
8718 return 1;
8719 }
8720
8721 return 0;
8722}
8723
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008724static int perf_swevent_match(struct perf_event *event,
8725 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08008726 u32 event_id,
8727 struct perf_sample_data *data,
8728 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008729{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008730 if (event->attr.type != type)
8731 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008732
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008733 if (event->attr.config != event_id)
8734 return 0;
8735
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008736 if (perf_exclude_event(event, regs))
8737 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008738
8739 return 1;
8740}
8741
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008742static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008743{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008744 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008745
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008746 return hash_64(val, SWEVENT_HLIST_BITS);
8747}
8748
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008749static inline struct hlist_head *
8750__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008751{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008752 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008753
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008754 return &hlist->heads[hash];
8755}
8756
8757/* For the read side: events when they trigger */
8758static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008759find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008760{
8761 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008762
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008763 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008764 if (!hlist)
8765 return NULL;
8766
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008767 return __find_swevent_head(hlist, type, event_id);
8768}
8769
8770/* For the event head insertion and removal in the hlist */
8771static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008772find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008773{
8774 struct swevent_hlist *hlist;
8775 u32 event_id = event->attr.config;
8776 u64 type = event->attr.type;
8777
8778 /*
8779 * Event scheduling is always serialized against hlist allocation
8780 * and release. Which makes the protected version suitable here.
8781 * The context lock guarantees that.
8782 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008783 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008784 lockdep_is_held(&event->ctx->lock));
8785 if (!hlist)
8786 return NULL;
8787
8788 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008789}
8790
8791static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008792 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008793 struct perf_sample_data *data,
8794 struct pt_regs *regs)
8795{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008796 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008797 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008798 struct hlist_head *head;
8799
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008800 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008801 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008802 if (!head)
8803 goto end;
8804
Sasha Levinb67bfe02013-02-27 17:06:00 -08008805 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08008806 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008807 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008808 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008809end:
8810 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008811}
8812
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008813DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
8814
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008815int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008816{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008817 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008818
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008819 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008820}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01008821EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008822
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008823void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008824{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008825 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02008826
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008827 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008828}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008829
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008830void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008831{
Ingo Molnara4234bf2009-11-23 10:57:59 +01008832 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008833
8834 if (WARN_ON_ONCE(!regs))
8835 return;
8836
8837 perf_sample_data_init(&data, addr, 0);
8838 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
8839}
8840
8841void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8842{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008843 int rctx;
8844
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008845 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008846 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008847 if (unlikely(rctx < 0))
8848 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008849
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008850 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008851
8852 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008853fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008854 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008855}
8856
8857static void perf_swevent_read(struct perf_event *event)
8858{
8859}
8860
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008861static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008862{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008863 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008864 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008865 struct hlist_head *head;
8866
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008867 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008868 hwc->last_period = hwc->sample_period;
8869 perf_swevent_set_period(event);
8870 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008871
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008872 hwc->state = !(flags & PERF_EF_START);
8873
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008874 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01008875 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008876 return -EINVAL;
8877
8878 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08008879 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008881 return 0;
8882}
8883
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008884static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008885{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008886 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008887}
8888
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008889static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008890{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008891 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008892}
8893
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008894static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008895{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008896 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008897}
8898
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008899/* Deref the hlist from the update side */
8900static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008901swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008902{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008903 return rcu_dereference_protected(swhash->swevent_hlist,
8904 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008905}
8906
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008907static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008908{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008909 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008910
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008911 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008912 return;
8913
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03008914 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08008915 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008916}
8917
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008918static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008919{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008920 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008921
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008922 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008923
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008924 if (!--swhash->hlist_refcount)
8925 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008926
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008927 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008928}
8929
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008930static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008931{
8932 int cpu;
8933
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008934 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008935 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008936}
8937
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008938static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008939{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008940 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008941 int err = 0;
8942
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008943 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008944 if (!swevent_hlist_deref(swhash) &&
8945 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008946 struct swevent_hlist *hlist;
8947
8948 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
8949 if (!hlist) {
8950 err = -ENOMEM;
8951 goto exit;
8952 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008953 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008954 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008955 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008956exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008957 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008958
8959 return err;
8960}
8961
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008962static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008963{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008964 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008965
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008966 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008967 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008968 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008969 if (err) {
8970 failed_cpu = cpu;
8971 goto fail;
8972 }
8973 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008974 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008975 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008976fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008977 for_each_possible_cpu(cpu) {
8978 if (cpu == failed_cpu)
8979 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008980 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008981 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008982 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008983 return err;
8984}
8985
Ingo Molnarc5905af2012-02-24 08:31:31 +01008986struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008987
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008988static void sw_perf_event_destroy(struct perf_event *event)
8989{
8990 u64 event_id = event->attr.config;
8991
8992 WARN_ON(event->parent);
8993
Ingo Molnarc5905af2012-02-24 08:31:31 +01008994 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008995 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008996}
8997
8998static int perf_swevent_init(struct perf_event *event)
8999{
Tommi Rantala8176cce2013-04-13 22:49:14 +03009000 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009001
9002 if (event->attr.type != PERF_TYPE_SOFTWARE)
9003 return -ENOENT;
9004
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009005 /*
9006 * no branch sampling for software events
9007 */
9008 if (has_branch_stack(event))
9009 return -EOPNOTSUPP;
9010
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009011 switch (event_id) {
9012 case PERF_COUNT_SW_CPU_CLOCK:
9013 case PERF_COUNT_SW_TASK_CLOCK:
9014 return -ENOENT;
9015
9016 default:
9017 break;
9018 }
9019
Dan Carpenterce677832010-10-24 21:50:42 +02009020 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009021 return -ENOENT;
9022
9023 if (!event->parent) {
9024 int err;
9025
Thomas Gleixner3b364d72016-02-09 20:11:40 +00009026 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009027 if (err)
9028 return err;
9029
Ingo Molnarc5905af2012-02-24 08:31:31 +01009030 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009031 event->destroy = sw_perf_event_destroy;
9032 }
9033
9034 return 0;
9035}
9036
9037static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009038 .task_ctx_nr = perf_sw_context,
9039
Peter Zijlstra34f43922015-02-20 14:05:38 +01009040 .capabilities = PERF_PMU_CAP_NO_NMI,
9041
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009042 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009043 .add = perf_swevent_add,
9044 .del = perf_swevent_del,
9045 .start = perf_swevent_start,
9046 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009047 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009048};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009049
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009050#ifdef CONFIG_EVENT_TRACING
9051
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009052static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009053 struct perf_sample_data *data)
9054{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009055 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009056
Peter Zijlstrab71b4372015-11-02 10:50:51 +01009057 /* only top level events have filters set */
9058 if (event->parent)
9059 event = event->parent;
9060
Frederic Weisbecker95476b62010-04-14 23:42:18 +02009061 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9062 return 1;
9063 return 0;
9064}
9065
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009066static int perf_tp_event_match(struct perf_event *event,
9067 struct perf_sample_data *data,
9068 struct pt_regs *regs)
9069{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01009070 if (event->hw.state & PERF_HES_STOPPED)
9071 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02009072 /*
Song Liu9fd2e482019-05-07 09:15:45 -07009073 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02009074 */
Song Liu9fd2e482019-05-07 09:15:45 -07009075 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009076 return 0;
9077
9078 if (!perf_tp_filter_match(event, data))
9079 return 0;
9080
9081 return 1;
9082}
9083
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009084void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9085 struct trace_event_call *call, u64 count,
9086 struct pt_regs *regs, struct hlist_head *head,
9087 struct task_struct *task)
9088{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009089 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009090 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009091 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009092 perf_swevent_put_recursion_context(rctx);
9093 return;
9094 }
9095 }
9096 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009097 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07009098}
9099EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9100
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009101void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009102 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009103 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009104{
9105 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009106 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009107
9108 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02009109 .frag = {
9110 .size = entry_size,
9111 .data = record,
9112 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009113 };
9114
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009115 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009116 data.raw = &raw;
9117
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07009118 perf_trace_buf_update(record, event_type);
9119
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02009120 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009121 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009122 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009123 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009124
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009125 /*
9126 * If we got specified a target task, also iterate its context and
9127 * deliver this event there too.
9128 */
9129 if (task && task != current) {
9130 struct perf_event_context *ctx;
9131 struct trace_entry *entry = record;
9132
9133 rcu_read_lock();
9134 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9135 if (!ctx)
9136 goto unlock;
9137
9138 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009139 if (event->cpu != smp_processor_id())
9140 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009141 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9142 continue;
9143 if (event->attr.config != entry->type)
9144 continue;
9145 if (perf_tp_event_match(event, &data, regs))
9146 perf_swevent_event(event, count, &data, regs);
9147 }
9148unlock:
9149 rcu_read_unlock();
9150 }
9151
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009152 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009153}
9154EXPORT_SYMBOL_GPL(perf_tp_event);
9155
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009156static void tp_perf_event_destroy(struct perf_event *event)
9157{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009158 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009159}
9160
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009161static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009162{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009163 int err;
9164
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009165 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9166 return -ENOENT;
9167
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009168 /*
9169 * no branch sampling for tracepoint events
9170 */
9171 if (has_branch_stack(event))
9172 return -EOPNOTSUPP;
9173
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009174 err = perf_trace_init(event);
9175 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009176 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009177
9178 event->destroy = tp_perf_event_destroy;
9179
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009180 return 0;
9181}
9182
9183static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009184 .task_ctx_nr = perf_sw_context,
9185
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009186 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009187 .add = perf_trace_add,
9188 .del = perf_trace_del,
9189 .start = perf_swevent_start,
9190 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009191 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009192};
9193
Song Liu33ea4b22017-12-06 14:45:16 -08009194#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009195/*
9196 * Flags in config, used by dynamic PMU kprobe and uprobe
9197 * The flags should match following PMU_FORMAT_ATTR().
9198 *
9199 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9200 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009201 *
9202 * The following values specify a reference counter (or semaphore in the
9203 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9204 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9205 *
9206 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9207 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009208 */
9209enum perf_probe_config {
9210 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009211 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9212 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009213};
9214
9215PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009216#endif
Song Liue12f03d2017-12-06 14:45:15 -08009217
Song Liua6ca88b2018-10-01 22:36:36 -07009218#ifdef CONFIG_KPROBE_EVENTS
9219static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009220 &format_attr_retprobe.attr,
9221 NULL,
9222};
9223
Song Liua6ca88b2018-10-01 22:36:36 -07009224static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009225 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009226 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009227};
9228
Song Liua6ca88b2018-10-01 22:36:36 -07009229static const struct attribute_group *kprobe_attr_groups[] = {
9230 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009231 NULL,
9232};
9233
9234static int perf_kprobe_event_init(struct perf_event *event);
9235static struct pmu perf_kprobe = {
9236 .task_ctx_nr = perf_sw_context,
9237 .event_init = perf_kprobe_event_init,
9238 .add = perf_trace_add,
9239 .del = perf_trace_del,
9240 .start = perf_swevent_start,
9241 .stop = perf_swevent_stop,
9242 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009243 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009244};
9245
9246static int perf_kprobe_event_init(struct perf_event *event)
9247{
9248 int err;
9249 bool is_retprobe;
9250
9251 if (event->attr.type != perf_kprobe.type)
9252 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009253
9254 if (!capable(CAP_SYS_ADMIN))
9255 return -EACCES;
9256
Song Liue12f03d2017-12-06 14:45:15 -08009257 /*
9258 * no branch sampling for probe events
9259 */
9260 if (has_branch_stack(event))
9261 return -EOPNOTSUPP;
9262
9263 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9264 err = perf_kprobe_init(event, is_retprobe);
9265 if (err)
9266 return err;
9267
9268 event->destroy = perf_kprobe_destroy;
9269
9270 return 0;
9271}
9272#endif /* CONFIG_KPROBE_EVENTS */
9273
Song Liu33ea4b22017-12-06 14:45:16 -08009274#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009275PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9276
9277static struct attribute *uprobe_attrs[] = {
9278 &format_attr_retprobe.attr,
9279 &format_attr_ref_ctr_offset.attr,
9280 NULL,
9281};
9282
9283static struct attribute_group uprobe_format_group = {
9284 .name = "format",
9285 .attrs = uprobe_attrs,
9286};
9287
9288static const struct attribute_group *uprobe_attr_groups[] = {
9289 &uprobe_format_group,
9290 NULL,
9291};
9292
Song Liu33ea4b22017-12-06 14:45:16 -08009293static int perf_uprobe_event_init(struct perf_event *event);
9294static struct pmu perf_uprobe = {
9295 .task_ctx_nr = perf_sw_context,
9296 .event_init = perf_uprobe_event_init,
9297 .add = perf_trace_add,
9298 .del = perf_trace_del,
9299 .start = perf_swevent_start,
9300 .stop = perf_swevent_stop,
9301 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009302 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08009303};
9304
9305static int perf_uprobe_event_init(struct perf_event *event)
9306{
9307 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07009308 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08009309 bool is_retprobe;
9310
9311 if (event->attr.type != perf_uprobe.type)
9312 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009313
9314 if (!capable(CAP_SYS_ADMIN))
9315 return -EACCES;
9316
Song Liu33ea4b22017-12-06 14:45:16 -08009317 /*
9318 * no branch sampling for probe events
9319 */
9320 if (has_branch_stack(event))
9321 return -EOPNOTSUPP;
9322
9323 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07009324 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9325 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08009326 if (err)
9327 return err;
9328
9329 event->destroy = perf_uprobe_destroy;
9330
9331 return 0;
9332}
9333#endif /* CONFIG_UPROBE_EVENTS */
9334
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009335static inline void perf_tp_register(void)
9336{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009337 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08009338#ifdef CONFIG_KPROBE_EVENTS
9339 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9340#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009341#ifdef CONFIG_UPROBE_EVENTS
9342 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9343#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009344}
Li Zefan6fb29152009-10-15 11:21:42 +08009345
Li Zefan6fb29152009-10-15 11:21:42 +08009346static void perf_event_free_filter(struct perf_event *event)
9347{
9348 ftrace_profile_free_filter(event);
9349}
9350
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009351#ifdef CONFIG_BPF_SYSCALL
9352static void bpf_overflow_handler(struct perf_event *event,
9353 struct perf_sample_data *data,
9354 struct pt_regs *regs)
9355{
9356 struct bpf_perf_event_data_kern ctx = {
9357 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07009358 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009359 };
9360 int ret = 0;
9361
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01009362 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009363 preempt_disable();
9364 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
9365 goto out;
9366 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01009367 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009368 rcu_read_unlock();
9369out:
9370 __this_cpu_dec(bpf_prog_active);
9371 preempt_enable();
9372 if (!ret)
9373 return;
9374
9375 event->orig_overflow_handler(event, data, regs);
9376}
9377
9378static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9379{
9380 struct bpf_prog *prog;
9381
9382 if (event->overflow_handler_context)
9383 /* hw breakpoint or kernel counter */
9384 return -EINVAL;
9385
9386 if (event->prog)
9387 return -EEXIST;
9388
9389 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
9390 if (IS_ERR(prog))
9391 return PTR_ERR(prog);
9392
9393 event->prog = prog;
9394 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9395 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9396 return 0;
9397}
9398
9399static void perf_event_free_bpf_handler(struct perf_event *event)
9400{
9401 struct bpf_prog *prog = event->prog;
9402
9403 if (!prog)
9404 return;
9405
9406 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9407 event->prog = NULL;
9408 bpf_prog_put(prog);
9409}
9410#else
9411static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9412{
9413 return -EOPNOTSUPP;
9414}
9415static void perf_event_free_bpf_handler(struct perf_event *event)
9416{
9417}
9418#endif
9419
Song Liue12f03d2017-12-06 14:45:15 -08009420/*
9421 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9422 * with perf_event_open()
9423 */
9424static inline bool perf_event_is_tracing(struct perf_event *event)
9425{
9426 if (event->pmu == &perf_tracepoint)
9427 return true;
9428#ifdef CONFIG_KPROBE_EVENTS
9429 if (event->pmu == &perf_kprobe)
9430 return true;
9431#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009432#ifdef CONFIG_UPROBE_EVENTS
9433 if (event->pmu == &perf_uprobe)
9434 return true;
9435#endif
Song Liue12f03d2017-12-06 14:45:15 -08009436 return false;
9437}
9438
Alexei Starovoitov25415172015-03-25 12:49:20 -07009439static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9440{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009441 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009442 struct bpf_prog *prog;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009443 int ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009444
Song Liue12f03d2017-12-06 14:45:15 -08009445 if (!perf_event_is_tracing(event))
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07009446 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009447
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009448 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
9449 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009450 is_syscall_tp = is_syscall_trace_event(event->tp_event);
9451 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009452 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07009453 return -EINVAL;
9454
9455 prog = bpf_prog_get(prog_fd);
9456 if (IS_ERR(prog))
9457 return PTR_ERR(prog);
9458
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009459 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009460 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
9461 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07009462 /* valid fd, but invalid bpf program type */
9463 bpf_prog_put(prog);
9464 return -EINVAL;
9465 }
9466
Josef Bacik9802d862017-12-11 11:36:48 -05009467 /* Kprobe override only works for kprobes, not uprobes. */
9468 if (prog->kprobe_override &&
9469 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
9470 bpf_prog_put(prog);
9471 return -EINVAL;
9472 }
9473
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009474 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07009475 int off = trace_event_get_offsets(event->tp_event);
9476
9477 if (prog->aux->max_ctx_offset > off) {
9478 bpf_prog_put(prog);
9479 return -EACCES;
9480 }
9481 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07009482
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009483 ret = perf_event_attach_bpf_prog(event, prog);
9484 if (ret)
9485 bpf_prog_put(prog);
9486 return ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009487}
9488
9489static void perf_event_free_bpf_prog(struct perf_event *event)
9490{
Song Liue12f03d2017-12-06 14:45:15 -08009491 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -07009492 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009493 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009494 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009495 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009496}
9497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009498#else
Li Zefan6fb29152009-10-15 11:21:42 +08009499
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009500static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009501{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009502}
Li Zefan6fb29152009-10-15 11:21:42 +08009503
Li Zefan6fb29152009-10-15 11:21:42 +08009504static void perf_event_free_filter(struct perf_event *event)
9505{
9506}
9507
Alexei Starovoitov25415172015-03-25 12:49:20 -07009508static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9509{
9510 return -ENOENT;
9511}
9512
9513static void perf_event_free_bpf_prog(struct perf_event *event)
9514{
9515}
Li Zefan07b139c2009-12-21 14:27:35 +08009516#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009517
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009518#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009519void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009520{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009521 struct perf_sample_data sample;
9522 struct pt_regs *regs = data;
9523
Robert Richterfd0d0002012-04-02 20:19:08 +02009524 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009525
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009526 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009527 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009528}
9529#endif
9530
Alexander Shishkin375637b2016-04-27 18:44:46 +03009531/*
9532 * Allocate a new address filter
9533 */
9534static struct perf_addr_filter *
9535perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
9536{
9537 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
9538 struct perf_addr_filter *filter;
9539
9540 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
9541 if (!filter)
9542 return NULL;
9543
9544 INIT_LIST_HEAD(&filter->entry);
9545 list_add_tail(&filter->entry, filters);
9546
9547 return filter;
9548}
9549
9550static void free_filters_list(struct list_head *filters)
9551{
9552 struct perf_addr_filter *filter, *iter;
9553
9554 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07009555 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009556 list_del(&filter->entry);
9557 kfree(filter);
9558 }
9559}
9560
9561/*
9562 * Free existing address filters and optionally install new ones
9563 */
9564static void perf_addr_filters_splice(struct perf_event *event,
9565 struct list_head *head)
9566{
9567 unsigned long flags;
9568 LIST_HEAD(list);
9569
9570 if (!has_addr_filter(event))
9571 return;
9572
9573 /* don't bother with children, they don't have their own filters */
9574 if (event->parent)
9575 return;
9576
9577 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
9578
9579 list_splice_init(&event->addr_filters.list, &list);
9580 if (head)
9581 list_splice(head, &event->addr_filters.list);
9582
9583 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
9584
9585 free_filters_list(&list);
9586}
9587
9588/*
9589 * Scan through mm's vmas and see if one of them matches the
9590 * @filter; if so, adjust filter's address range.
9591 * Called with mm::mmap_sem down for reading.
9592 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009593static void perf_addr_filter_apply(struct perf_addr_filter *filter,
9594 struct mm_struct *mm,
9595 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009596{
9597 struct vm_area_struct *vma;
9598
9599 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009600 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009601 continue;
9602
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009603 if (perf_addr_filter_vma_adjust(filter, vma, fr))
9604 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009605 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009606}
9607
9608/*
9609 * Update event's address range filters based on the
9610 * task's existing mappings, if any.
9611 */
9612static void perf_event_addr_filters_apply(struct perf_event *event)
9613{
9614 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
9615 struct task_struct *task = READ_ONCE(event->ctx->task);
9616 struct perf_addr_filter *filter;
9617 struct mm_struct *mm = NULL;
9618 unsigned int count = 0;
9619 unsigned long flags;
9620
9621 /*
9622 * We may observe TASK_TOMBSTONE, which means that the event tear-down
9623 * will stop on the parent's child_mutex that our caller is also holding
9624 */
9625 if (task == TASK_TOMBSTONE)
9626 return;
9627
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009628 if (ifh->nr_file_filters) {
9629 mm = get_task_mm(event->ctx->task);
9630 if (!mm)
9631 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009632
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009633 down_read(&mm->mmap_sem);
9634 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009635
9636 raw_spin_lock_irqsave(&ifh->lock, flags);
9637 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009638 if (filter->path.dentry) {
9639 /*
9640 * Adjust base offset if the filter is associated to a
9641 * binary that needs to be mapped:
9642 */
9643 event->addr_filter_ranges[count].start = 0;
9644 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009645
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009646 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009647 } else {
9648 event->addr_filter_ranges[count].start = filter->offset;
9649 event->addr_filter_ranges[count].size = filter->size;
9650 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009651
9652 count++;
9653 }
9654
9655 event->addr_filters_gen++;
9656 raw_spin_unlock_irqrestore(&ifh->lock, flags);
9657
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009658 if (ifh->nr_file_filters) {
9659 up_read(&mm->mmap_sem);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009660
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009661 mmput(mm);
9662 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009663
9664restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03009665 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009666}
9667
9668/*
9669 * Address range filtering: limiting the data to certain
9670 * instruction address ranges. Filters are ioctl()ed to us from
9671 * userspace as ascii strings.
9672 *
9673 * Filter string format:
9674 *
9675 * ACTION RANGE_SPEC
9676 * where ACTION is one of the
9677 * * "filter": limit the trace to this region
9678 * * "start": start tracing from this address
9679 * * "stop": stop tracing at this address/region;
9680 * RANGE_SPEC is
9681 * * for kernel addresses: <start address>[/<size>]
9682 * * for object files: <start address>[/<size>]@</path/to/object/file>
9683 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009684 * if <size> is not specified or is zero, the range is treated as a single
9685 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +03009686 */
9687enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02009688 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03009689 IF_ACT_FILTER,
9690 IF_ACT_START,
9691 IF_ACT_STOP,
9692 IF_SRC_FILE,
9693 IF_SRC_KERNEL,
9694 IF_SRC_FILEADDR,
9695 IF_SRC_KERNELADDR,
9696};
9697
9698enum {
9699 IF_STATE_ACTION = 0,
9700 IF_STATE_SOURCE,
9701 IF_STATE_END,
9702};
9703
9704static const match_table_t if_tokens = {
9705 { IF_ACT_FILTER, "filter" },
9706 { IF_ACT_START, "start" },
9707 { IF_ACT_STOP, "stop" },
9708 { IF_SRC_FILE, "%u/%u@%s" },
9709 { IF_SRC_KERNEL, "%u/%u" },
9710 { IF_SRC_FILEADDR, "%u@%s" },
9711 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02009712 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03009713};
9714
9715/*
9716 * Address filter string parser
9717 */
9718static int
9719perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9720 struct list_head *filters)
9721{
9722 struct perf_addr_filter *filter = NULL;
9723 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009724 substring_t args[MAX_OPT_ARGS];
9725 int state = IF_STATE_ACTION, token;
9726 unsigned int kernel = 0;
9727 int ret = -EINVAL;
9728
9729 orig = fstr = kstrdup(fstr, GFP_KERNEL);
9730 if (!fstr)
9731 return -ENOMEM;
9732
9733 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009734 static const enum perf_addr_filter_action_t actions[] = {
9735 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
9736 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
9737 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
9738 };
Alexander Shishkin375637b2016-04-27 18:44:46 +03009739 ret = -EINVAL;
9740
9741 if (!*start)
9742 continue;
9743
9744 /* filter definition begins */
9745 if (state == IF_STATE_ACTION) {
9746 filter = perf_addr_filter_new(event, filters);
9747 if (!filter)
9748 goto fail;
9749 }
9750
9751 token = match_token(start, if_tokens, args);
9752 switch (token) {
9753 case IF_ACT_FILTER:
9754 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +03009755 case IF_ACT_STOP:
9756 if (state != IF_STATE_ACTION)
9757 goto fail;
9758
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009759 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +03009760 state = IF_STATE_SOURCE;
9761 break;
9762
9763 case IF_SRC_KERNELADDR:
9764 case IF_SRC_KERNEL:
9765 kernel = 1;
Gustavo A. R. Silva10c34052019-02-12 14:54:30 -06009766 /* fall through */
Alexander Shishkin375637b2016-04-27 18:44:46 +03009767
9768 case IF_SRC_FILEADDR:
9769 case IF_SRC_FILE:
9770 if (state != IF_STATE_SOURCE)
9771 goto fail;
9772
Alexander Shishkin375637b2016-04-27 18:44:46 +03009773 *args[0].to = 0;
9774 ret = kstrtoul(args[0].from, 0, &filter->offset);
9775 if (ret)
9776 goto fail;
9777
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009778 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03009779 *args[1].to = 0;
9780 ret = kstrtoul(args[1].from, 0, &filter->size);
9781 if (ret)
9782 goto fail;
9783 }
9784
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009785 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009786 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009787
9788 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009789 if (!filename) {
9790 ret = -ENOMEM;
9791 goto fail;
9792 }
9793 }
9794
9795 state = IF_STATE_END;
9796 break;
9797
9798 default:
9799 goto fail;
9800 }
9801
9802 /*
9803 * Filter definition is fully parsed, validate and install it.
9804 * Make sure that it doesn't contradict itself or the event's
9805 * attribute.
9806 */
9807 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02009808 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009809 if (kernel && event->attr.exclude_kernel)
9810 goto fail;
9811
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009812 /*
9813 * ACTION "filter" must have a non-zero length region
9814 * specified.
9815 */
9816 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
9817 !filter->size)
9818 goto fail;
9819
Alexander Shishkin375637b2016-04-27 18:44:46 +03009820 if (!kernel) {
9821 if (!filename)
9822 goto fail;
9823
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009824 /*
9825 * For now, we only support file-based filters
9826 * in per-task events; doing so for CPU-wide
9827 * events requires additional context switching
9828 * trickery, since same object code will be
9829 * mapped at different virtual addresses in
9830 * different processes.
9831 */
9832 ret = -EOPNOTSUPP;
9833 if (!event->ctx->task)
9834 goto fail_free_name;
9835
Alexander Shishkin375637b2016-04-27 18:44:46 +03009836 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -07009837 ret = kern_path(filename, LOOKUP_FOLLOW,
9838 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009839 if (ret)
9840 goto fail_free_name;
9841
Alexander Shishkin375637b2016-04-27 18:44:46 +03009842 kfree(filename);
9843 filename = NULL;
9844
9845 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -07009846 if (!filter->path.dentry ||
9847 !S_ISREG(d_inode(filter->path.dentry)
9848 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009849 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009850
9851 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009852 }
9853
9854 /* ready to consume more filters */
9855 state = IF_STATE_ACTION;
9856 filter = NULL;
9857 }
9858 }
9859
9860 if (state != IF_STATE_ACTION)
9861 goto fail;
9862
9863 kfree(orig);
9864
9865 return 0;
9866
9867fail_free_name:
9868 kfree(filename);
9869fail:
9870 free_filters_list(filters);
9871 kfree(orig);
9872
9873 return ret;
9874}
9875
9876static int
9877perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
9878{
9879 LIST_HEAD(filters);
9880 int ret;
9881
9882 /*
9883 * Since this is called in perf_ioctl() path, we're already holding
9884 * ctx::mutex.
9885 */
9886 lockdep_assert_held(&event->ctx->mutex);
9887
9888 if (WARN_ON_ONCE(event->parent))
9889 return -EINVAL;
9890
Alexander Shishkin375637b2016-04-27 18:44:46 +03009891 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
9892 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009893 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009894
9895 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009896 if (ret)
9897 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009898
9899 /* remove existing filters, if any */
9900 perf_addr_filters_splice(event, &filters);
9901
9902 /* install new filters */
9903 perf_event_for_each_child(event, perf_event_addr_filters_apply);
9904
9905 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009906
9907fail_free_filters:
9908 free_filters_list(&filters);
9909
9910fail_clear_files:
9911 event->addr_filters.nr_file_filters = 0;
9912
9913 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009914}
9915
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009916static int perf_event_set_filter(struct perf_event *event, void __user *arg)
9917{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009918 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -08009919 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009920
9921 filter_str = strndup_user(arg, PAGE_SIZE);
9922 if (IS_ERR(filter_str))
9923 return PTR_ERR(filter_str);
9924
Song Liue12f03d2017-12-06 14:45:15 -08009925#ifdef CONFIG_EVENT_TRACING
9926 if (perf_event_is_tracing(event)) {
9927 struct perf_event_context *ctx = event->ctx;
9928
9929 /*
9930 * Beware, here be dragons!!
9931 *
9932 * the tracepoint muck will deadlock against ctx->mutex, but
9933 * the tracepoint stuff does not actually need it. So
9934 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
9935 * already have a reference on ctx.
9936 *
9937 * This can result in event getting moved to a different ctx,
9938 * but that does not affect the tracepoint state.
9939 */
9940 mutex_unlock(&ctx->mutex);
9941 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
9942 mutex_lock(&ctx->mutex);
9943 } else
9944#endif
9945 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009946 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009947
9948 kfree(filter_str);
9949 return ret;
9950}
9951
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009952/*
9953 * hrtimer based swevent callback
9954 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009955
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009956static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009957{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009958 enum hrtimer_restart ret = HRTIMER_RESTART;
9959 struct perf_sample_data data;
9960 struct pt_regs *regs;
9961 struct perf_event *event;
9962 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009963
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009964 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009965
9966 if (event->state != PERF_EVENT_STATE_ACTIVE)
9967 return HRTIMER_NORESTART;
9968
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009969 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009970
Robert Richterfd0d0002012-04-02 20:19:08 +02009971 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009972 regs = get_irq_regs();
9973
9974 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08009975 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02009976 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009977 ret = HRTIMER_NORESTART;
9978 }
9979
9980 period = max_t(u64, 10000, event->hw.sample_period);
9981 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
9982
9983 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009984}
9985
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009986static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009987{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009988 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009989 s64 period;
9990
9991 if (!is_sampling_event(event))
9992 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009993
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009994 period = local64_read(&hwc->period_left);
9995 if (period) {
9996 if (period < 0)
9997 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009998
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009999 local64_set(&hwc->period_left, 0);
10000 } else {
10001 period = max_t(u64, 10000, hwc->sample_period);
10002 }
Thomas Gleixner3497d202015-04-14 21:09:03 +000010003 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010004 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010005}
10006
10007static void perf_swevent_cancel_hrtimer(struct perf_event *event)
10008{
10009 struct hw_perf_event *hwc = &event->hw;
10010
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +010010011 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010012 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +020010013 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010014
10015 hrtimer_cancel(&hwc->hrtimer);
10016 }
10017}
10018
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010019static void perf_swevent_init_hrtimer(struct perf_event *event)
10020{
10021 struct hw_perf_event *hwc = &event->hw;
10022
10023 if (!is_sampling_event(event))
10024 return;
10025
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +020010026 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010027 hwc->hrtimer.function = perf_swevent_hrtimer;
10028
10029 /*
10030 * Since hrtimers have a fixed rate, we can do a static freq->period
10031 * mapping and avoid the whole period adjust feedback stuff.
10032 */
10033 if (event->attr.freq) {
10034 long freq = event->attr.sample_freq;
10035
10036 event->attr.sample_period = NSEC_PER_SEC / freq;
10037 hwc->sample_period = event->attr.sample_period;
10038 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +090010039 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010040 event->attr.freq = 0;
10041 }
10042}
10043
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010044/*
10045 * Software event: cpu wall time clock
10046 */
10047
10048static void cpu_clock_event_update(struct perf_event *event)
10049{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010050 s64 prev;
10051 u64 now;
10052
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010053 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010054 prev = local64_xchg(&event->hw.prev_count, now);
10055 local64_add(now - prev, &event->count);
10056}
10057
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010058static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010059{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010060 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010061 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010062}
10063
10064static void cpu_clock_event_stop(struct perf_event *event, int flags)
10065{
10066 perf_swevent_cancel_hrtimer(event);
10067 cpu_clock_event_update(event);
10068}
10069
10070static int cpu_clock_event_add(struct perf_event *event, int flags)
10071{
10072 if (flags & PERF_EF_START)
10073 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010074 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010075
10076 return 0;
10077}
10078
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010079static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010080{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010081 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010082}
10083
10084static void cpu_clock_event_read(struct perf_event *event)
10085{
10086 cpu_clock_event_update(event);
10087}
10088
10089static int cpu_clock_event_init(struct perf_event *event)
10090{
10091 if (event->attr.type != PERF_TYPE_SOFTWARE)
10092 return -ENOENT;
10093
10094 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10095 return -ENOENT;
10096
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010097 /*
10098 * no branch sampling for software events
10099 */
10100 if (has_branch_stack(event))
10101 return -EOPNOTSUPP;
10102
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010103 perf_swevent_init_hrtimer(event);
10104
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010105 return 0;
10106}
10107
10108static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010109 .task_ctx_nr = perf_sw_context,
10110
Peter Zijlstra34f43922015-02-20 14:05:38 +010010111 .capabilities = PERF_PMU_CAP_NO_NMI,
10112
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010113 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010114 .add = cpu_clock_event_add,
10115 .del = cpu_clock_event_del,
10116 .start = cpu_clock_event_start,
10117 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010118 .read = cpu_clock_event_read,
10119};
10120
10121/*
10122 * Software event: task time clock
10123 */
10124
10125static void task_clock_event_update(struct perf_event *event, u64 now)
10126{
10127 u64 prev;
10128 s64 delta;
10129
10130 prev = local64_xchg(&event->hw.prev_count, now);
10131 delta = now - prev;
10132 local64_add(delta, &event->count);
10133}
10134
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010135static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010136{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010137 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010138 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010139}
10140
10141static void task_clock_event_stop(struct perf_event *event, int flags)
10142{
10143 perf_swevent_cancel_hrtimer(event);
10144 task_clock_event_update(event, event->ctx->time);
10145}
10146
10147static int task_clock_event_add(struct perf_event *event, int flags)
10148{
10149 if (flags & PERF_EF_START)
10150 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010151 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010152
10153 return 0;
10154}
10155
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010156static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010157{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010158 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010159}
10160
10161static void task_clock_event_read(struct perf_event *event)
10162{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010163 u64 now = perf_clock();
10164 u64 delta = now - event->ctx->timestamp;
10165 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010166
10167 task_clock_event_update(event, time);
10168}
10169
10170static int task_clock_event_init(struct perf_event *event)
10171{
10172 if (event->attr.type != PERF_TYPE_SOFTWARE)
10173 return -ENOENT;
10174
10175 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10176 return -ENOENT;
10177
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010178 /*
10179 * no branch sampling for software events
10180 */
10181 if (has_branch_stack(event))
10182 return -EOPNOTSUPP;
10183
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010184 perf_swevent_init_hrtimer(event);
10185
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010186 return 0;
10187}
10188
10189static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010190 .task_ctx_nr = perf_sw_context,
10191
Peter Zijlstra34f43922015-02-20 14:05:38 +010010192 .capabilities = PERF_PMU_CAP_NO_NMI,
10193
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010194 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010195 .add = task_clock_event_add,
10196 .del = task_clock_event_del,
10197 .start = task_clock_event_start,
10198 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010199 .read = task_clock_event_read,
10200};
10201
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010202static void perf_pmu_nop_void(struct pmu *pmu)
10203{
10204}
10205
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010206static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10207{
10208}
10209
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010210static int perf_pmu_nop_int(struct pmu *pmu)
10211{
10212 return 0;
10213}
10214
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010215static int perf_event_nop_int(struct perf_event *event, u64 value)
10216{
10217 return 0;
10218}
10219
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010220static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010221
10222static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010223{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010224 __this_cpu_write(nop_txn_flags, flags);
10225
10226 if (flags & ~PERF_PMU_TXN_ADD)
10227 return;
10228
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010229 perf_pmu_disable(pmu);
10230}
10231
10232static int perf_pmu_commit_txn(struct pmu *pmu)
10233{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010234 unsigned int flags = __this_cpu_read(nop_txn_flags);
10235
10236 __this_cpu_write(nop_txn_flags, 0);
10237
10238 if (flags & ~PERF_PMU_TXN_ADD)
10239 return 0;
10240
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010241 perf_pmu_enable(pmu);
10242 return 0;
10243}
10244
10245static void perf_pmu_cancel_txn(struct pmu *pmu)
10246{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010247 unsigned int flags = __this_cpu_read(nop_txn_flags);
10248
10249 __this_cpu_write(nop_txn_flags, 0);
10250
10251 if (flags & ~PERF_PMU_TXN_ADD)
10252 return;
10253
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010254 perf_pmu_enable(pmu);
10255}
10256
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010257static int perf_event_idx_default(struct perf_event *event)
10258{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010259 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010260}
10261
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010262/*
10263 * Ensures all contexts with the same task_ctx_nr have the same
10264 * pmu_cpu_context too.
10265 */
Mark Rutland9e317042014-02-10 17:44:18 +000010266static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010267{
10268 struct pmu *pmu;
10269
10270 if (ctxn < 0)
10271 return NULL;
10272
10273 list_for_each_entry(pmu, &pmus, entry) {
10274 if (pmu->task_ctx_nr == ctxn)
10275 return pmu->pmu_cpu_context;
10276 }
10277
10278 return NULL;
10279}
10280
Peter Zijlstra51676952010-12-07 14:18:20 +010010281static void free_pmu_context(struct pmu *pmu)
10282{
Will Deacondf0062b2017-10-03 15:20:50 +010010283 /*
10284 * Static contexts such as perf_sw_context have a global lifetime
10285 * and may be shared between different PMUs. Avoid freeing them
10286 * when a single PMU is going away.
10287 */
10288 if (pmu->task_ctx_nr > perf_invalid_context)
10289 return;
10290
Peter Zijlstra51676952010-12-07 14:18:20 +010010291 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010292}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010293
10294/*
10295 * Let userspace know that this PMU supports address range filtering:
10296 */
10297static ssize_t nr_addr_filters_show(struct device *dev,
10298 struct device_attribute *attr,
10299 char *page)
10300{
10301 struct pmu *pmu = dev_get_drvdata(dev);
10302
10303 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10304}
10305DEVICE_ATTR_RO(nr_addr_filters);
10306
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010307static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010308
Peter Zijlstraabe43402010-11-17 23:17:37 +010010309static ssize_t
10310type_show(struct device *dev, struct device_attribute *attr, char *page)
10311{
10312 struct pmu *pmu = dev_get_drvdata(dev);
10313
10314 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10315}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010316static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010317
Stephane Eranian62b85632013-04-03 14:21:34 +020010318static ssize_t
10319perf_event_mux_interval_ms_show(struct device *dev,
10320 struct device_attribute *attr,
10321 char *page)
10322{
10323 struct pmu *pmu = dev_get_drvdata(dev);
10324
10325 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10326}
10327
Peter Zijlstra272325c2015-04-15 11:41:58 +020010328static DEFINE_MUTEX(mux_interval_mutex);
10329
Stephane Eranian62b85632013-04-03 14:21:34 +020010330static ssize_t
10331perf_event_mux_interval_ms_store(struct device *dev,
10332 struct device_attribute *attr,
10333 const char *buf, size_t count)
10334{
10335 struct pmu *pmu = dev_get_drvdata(dev);
10336 int timer, cpu, ret;
10337
10338 ret = kstrtoint(buf, 0, &timer);
10339 if (ret)
10340 return ret;
10341
10342 if (timer < 1)
10343 return -EINVAL;
10344
10345 /* same value, noting to do */
10346 if (timer == pmu->hrtimer_interval_ms)
10347 return count;
10348
Peter Zijlstra272325c2015-04-15 11:41:58 +020010349 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010350 pmu->hrtimer_interval_ms = timer;
10351
10352 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010353 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010354 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020010355 struct perf_cpu_context *cpuctx;
10356 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
10357 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
10358
Peter Zijlstra272325c2015-04-15 11:41:58 +020010359 cpu_function_call(cpu,
10360 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020010361 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010362 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010363 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010364
10365 return count;
10366}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010367static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020010368
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010369static struct attribute *pmu_dev_attrs[] = {
10370 &dev_attr_type.attr,
10371 &dev_attr_perf_event_mux_interval_ms.attr,
10372 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010373};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010374ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010375
10376static int pmu_bus_running;
10377static struct bus_type pmu_bus = {
10378 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010379 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010380};
10381
10382static void pmu_dev_release(struct device *dev)
10383{
10384 kfree(dev);
10385}
10386
10387static int pmu_dev_alloc(struct pmu *pmu)
10388{
10389 int ret = -ENOMEM;
10390
10391 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10392 if (!pmu->dev)
10393 goto out;
10394
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010010395 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010010396 device_initialize(pmu->dev);
10397 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10398 if (ret)
10399 goto free_dev;
10400
10401 dev_set_drvdata(pmu->dev, pmu);
10402 pmu->dev->bus = &pmu_bus;
10403 pmu->dev->release = pmu_dev_release;
10404 ret = device_add(pmu->dev);
10405 if (ret)
10406 goto free_dev;
10407
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010408 /* For PMUs with address filters, throw in an extra attribute: */
10409 if (pmu->nr_addr_filters)
10410 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10411
10412 if (ret)
10413 goto del_dev;
10414
Jiri Olsaf3a3a822019-05-12 17:55:11 +020010415 if (pmu->attr_update)
10416 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10417
10418 if (ret)
10419 goto del_dev;
10420
Peter Zijlstraabe43402010-11-17 23:17:37 +010010421out:
10422 return ret;
10423
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010424del_dev:
10425 device_del(pmu->dev);
10426
Peter Zijlstraabe43402010-11-17 23:17:37 +010010427free_dev:
10428 put_device(pmu->dev);
10429 goto out;
10430}
10431
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010432static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010433static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010434
Mischa Jonker03d8e802013-06-04 11:45:48 +020010435int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010436{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010437 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010438
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010439 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010440 ret = -ENOMEM;
10441 pmu->pmu_disable_count = alloc_percpu(int);
10442 if (!pmu->pmu_disable_count)
10443 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010444
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010445 pmu->type = -1;
10446 if (!name)
10447 goto skip_type;
10448 pmu->name = name;
10449
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010450 if (type != PERF_TYPE_SOFTWARE) {
10451 if (type >= 0)
10452 max = type;
10453
10454 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
10455 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010456 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010457
10458 WARN_ON(type >= 0 && ret != type);
10459
10460 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010461 }
10462 pmu->type = type;
10463
Peter Zijlstraabe43402010-11-17 23:17:37 +010010464 if (pmu_bus_running) {
10465 ret = pmu_dev_alloc(pmu);
10466 if (ret)
10467 goto free_idr;
10468 }
10469
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010470skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010010471 if (pmu->task_ctx_nr == perf_hw_context) {
10472 static int hw_context_taken = 0;
10473
Mark Rutland5101ef22016-04-26 11:33:46 +010010474 /*
10475 * Other than systems with heterogeneous CPUs, it never makes
10476 * sense for two PMUs to share perf_hw_context. PMUs which are
10477 * uncore must use perf_invalid_context.
10478 */
10479 if (WARN_ON_ONCE(hw_context_taken &&
10480 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010010481 pmu->task_ctx_nr = perf_invalid_context;
10482
10483 hw_context_taken = 1;
10484 }
10485
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010486 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
10487 if (pmu->pmu_cpu_context)
10488 goto got_cpu_context;
10489
Wei Yongjunc4814202013-04-12 11:05:54 +080010490 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010491 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
10492 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010010493 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010494
10495 for_each_possible_cpu(cpu) {
10496 struct perf_cpu_context *cpuctx;
10497
10498 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020010499 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010500 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010501 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010502 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010503 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020010504
Peter Zijlstra272325c2015-04-15 11:41:58 +020010505 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080010506
10507 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
10508 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010509 }
10510
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010511got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010512 if (!pmu->start_txn) {
10513 if (pmu->pmu_enable) {
10514 /*
10515 * If we have pmu_enable/pmu_disable calls, install
10516 * transaction stubs that use that to try and batch
10517 * hardware accesses.
10518 */
10519 pmu->start_txn = perf_pmu_start_txn;
10520 pmu->commit_txn = perf_pmu_commit_txn;
10521 pmu->cancel_txn = perf_pmu_cancel_txn;
10522 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010523 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010524 pmu->commit_txn = perf_pmu_nop_int;
10525 pmu->cancel_txn = perf_pmu_nop_void;
10526 }
10527 }
10528
10529 if (!pmu->pmu_enable) {
10530 pmu->pmu_enable = perf_pmu_nop_void;
10531 pmu->pmu_disable = perf_pmu_nop_void;
10532 }
10533
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010534 if (!pmu->check_period)
10535 pmu->check_period = perf_event_nop_int;
10536
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010537 if (!pmu->event_idx)
10538 pmu->event_idx = perf_event_idx_default;
10539
Liang, Kand44f8212019-10-22 11:13:09 +020010540 /*
10541 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
10542 * since these cannot be in the IDR. This way the linear search
10543 * is fast, provided a valid software event is provided.
10544 */
10545 if (type == PERF_TYPE_SOFTWARE || !name)
10546 list_add_rcu(&pmu->entry, &pmus);
10547 else
10548 list_add_tail_rcu(&pmu->entry, &pmus);
10549
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010550 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010551 ret = 0;
10552unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010553 mutex_unlock(&pmus_lock);
10554
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010555 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010556
Peter Zijlstraabe43402010-11-17 23:17:37 +010010557free_dev:
10558 device_del(pmu->dev);
10559 put_device(pmu->dev);
10560
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010561free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010562 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010563 idr_remove(&pmu_idr, pmu->type);
10564
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010565free_pdc:
10566 free_percpu(pmu->pmu_disable_count);
10567 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010568}
Yan, Zhengc464c762014-03-18 16:56:41 +080010569EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010570
10571void perf_pmu_unregister(struct pmu *pmu)
10572{
10573 mutex_lock(&pmus_lock);
10574 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010575
10576 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020010577 * We dereference the pmu list under both SRCU and regular RCU, so
10578 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010579 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010580 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020010581 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010582
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010583 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010584 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010585 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010586 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020010587 if (pmu->nr_addr_filters)
10588 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
10589 device_del(pmu->dev);
10590 put_device(pmu->dev);
10591 }
Peter Zijlstra51676952010-12-07 14:18:20 +010010592 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010593 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010594}
Yan, Zhengc464c762014-03-18 16:56:41 +080010595EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010596
Kan Liange321d022019-05-28 15:08:30 -070010597static inline bool has_extended_regs(struct perf_event *event)
10598{
10599 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
10600 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
10601}
10602
Mark Rutlandcc34b982015-01-07 14:56:51 +000010603static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
10604{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010605 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000010606 int ret;
10607
10608 if (!try_module_get(pmu->module))
10609 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010610
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010010611 /*
10612 * A number of pmu->event_init() methods iterate the sibling_list to,
10613 * for example, validate if the group fits on the PMU. Therefore,
10614 * if this is a sibling event, acquire the ctx->mutex to protect
10615 * the sibling_list.
10616 */
10617 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020010618 /*
10619 * This ctx->mutex can nest when we're called through
10620 * inheritance. See the perf_event_ctx_lock_nested() comment.
10621 */
10622 ctx = perf_event_ctx_lock_nested(event->group_leader,
10623 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010624 BUG_ON(!ctx);
10625 }
10626
Mark Rutlandcc34b982015-01-07 14:56:51 +000010627 event->pmu = pmu;
10628 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010629
10630 if (ctx)
10631 perf_event_ctx_unlock(event->group_leader, ctx);
10632
Andrew Murraycc6795a2019-01-10 13:53:25 +000010633 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070010634 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
10635 has_extended_regs(event))
10636 ret = -EOPNOTSUPP;
10637
Andrew Murraycc6795a2019-01-10 13:53:25 +000010638 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070010639 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000010640 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070010641
10642 if (ret && event->destroy)
10643 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000010644 }
10645
Mark Rutlandcc34b982015-01-07 14:56:51 +000010646 if (ret)
10647 module_put(pmu->module);
10648
10649 return ret;
10650}
10651
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010652static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010653{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010654 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030010655 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010656
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010657 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010658
Kan Liang40999312017-01-18 08:21:01 -050010659 /* Try parent's PMU first: */
10660 if (event->parent && event->parent->pmu) {
10661 pmu = event->parent->pmu;
10662 ret = perf_try_init_event(pmu, event);
10663 if (!ret)
10664 goto unlock;
10665 }
10666
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010667 /*
10668 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
10669 * are often aliases for PERF_TYPE_RAW.
10670 */
10671 type = event->attr.type;
10672 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE)
10673 type = PERF_TYPE_RAW;
10674
10675again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010676 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010677 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010678 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080010679 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010680 ret = perf_try_init_event(pmu, event);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010681 if (ret == -ENOENT && event->attr.type != type) {
10682 type = event->attr.type;
10683 goto again;
10684 }
10685
Lin Ming940c5b22011-02-27 21:13:31 +080010686 if (ret)
10687 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010688
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010689 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080010690 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010691
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010010692 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010693 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010694 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010695 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010696
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010697 if (ret != -ENOENT) {
10698 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010699 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010700 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010701 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010702 pmu = ERR_PTR(-ENOENT);
10703unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010704 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010705
10706 return pmu;
10707}
10708
Kan Liangf2fb6be2016-03-23 11:24:37 -070010709static void attach_sb_event(struct perf_event *event)
10710{
10711 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
10712
10713 raw_spin_lock(&pel->lock);
10714 list_add_rcu(&event->sb_list, &pel->list);
10715 raw_spin_unlock(&pel->lock);
10716}
10717
Peter Zijlstraaab5b712016-05-12 17:26:46 +020010718/*
10719 * We keep a list of all !task (and therefore per-cpu) events
10720 * that need to receive side-band records.
10721 *
10722 * This avoids having to scan all the various PMU per-cpu contexts
10723 * looking for them.
10724 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070010725static void account_pmu_sb_event(struct perf_event *event)
10726{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070010727 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070010728 attach_sb_event(event);
10729}
10730
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010731static void account_event_cpu(struct perf_event *event, int cpu)
10732{
10733 if (event->parent)
10734 return;
10735
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010736 if (is_cgroup_event(event))
10737 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
10738}
10739
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010740/* Freq events need the tick to stay alive (see perf_event_task_tick). */
10741static void account_freq_event_nohz(void)
10742{
10743#ifdef CONFIG_NO_HZ_FULL
10744 /* Lock so we don't race with concurrent unaccount */
10745 spin_lock(&nr_freq_lock);
10746 if (atomic_inc_return(&nr_freq_events) == 1)
10747 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
10748 spin_unlock(&nr_freq_lock);
10749#endif
10750}
10751
10752static void account_freq_event(void)
10753{
10754 if (tick_nohz_full_enabled())
10755 account_freq_event_nohz();
10756 else
10757 atomic_inc(&nr_freq_events);
10758}
10759
10760
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010761static void account_event(struct perf_event *event)
10762{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010763 bool inc = false;
10764
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010765 if (event->parent)
10766 return;
10767
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010768 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010769 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010770 if (event->attr.mmap || event->attr.mmap_data)
10771 atomic_inc(&nr_mmap_events);
10772 if (event->attr.comm)
10773 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053010774 if (event->attr.namespaces)
10775 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010776 if (event->attr.task)
10777 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010778 if (event->attr.freq)
10779 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030010780 if (event->attr.context_switch) {
10781 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010782 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030010783 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010784 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010785 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010786 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010787 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080010788 if (event->attr.ksymbol)
10789 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080010790 if (event->attr.bpf_event)
10791 atomic_inc(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010792
Peter Zijlstra9107c892016-02-24 18:45:45 +010010793 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030010794 /*
10795 * We need the mutex here because static_branch_enable()
10796 * must complete *before* the perf_sched_count increment
10797 * becomes visible.
10798 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010010799 if (atomic_inc_not_zero(&perf_sched_count))
10800 goto enabled;
10801
10802 mutex_lock(&perf_sched_mutex);
10803 if (!atomic_read(&perf_sched_count)) {
10804 static_branch_enable(&perf_sched_events);
10805 /*
10806 * Guarantee that all CPUs observe they key change and
10807 * call the perf scheduling hooks before proceeding to
10808 * install events that need them.
10809 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080010810 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010010811 }
10812 /*
10813 * Now that we have waited for the sync_sched(), allow further
10814 * increments to by-pass the mutex.
10815 */
10816 atomic_inc(&perf_sched_count);
10817 mutex_unlock(&perf_sched_mutex);
10818 }
10819enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010820
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010821 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070010822
10823 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010824}
10825
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010826/*
Tobias Tefke788faab2018-07-09 12:57:15 +020010827 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010828 */
10829static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010830perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010831 struct task_struct *task,
10832 struct perf_event *group_leader,
10833 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010834 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000010835 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010836{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020010837 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010838 struct perf_event *event;
10839 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010840 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010841
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010842 if ((unsigned)cpu >= nr_cpu_ids) {
10843 if (!task || cpu != -1)
10844 return ERR_PTR(-EINVAL);
10845 }
10846
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010847 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010848 if (!event)
10849 return ERR_PTR(-ENOMEM);
10850
10851 /*
10852 * Single events are their own group leaders, with an
10853 * empty sibling list:
10854 */
10855 if (!group_leader)
10856 group_leader = event;
10857
10858 mutex_init(&event->child_mutex);
10859 INIT_LIST_HEAD(&event->child_list);
10860
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010861 INIT_LIST_HEAD(&event->event_entry);
10862 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010010863 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030010864 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010865 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010010866 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010867 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010010868 INIT_HLIST_NODE(&event->hlist_entry);
10869
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010870
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010871 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020010872 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080010873 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010874
10875 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010876 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010877
Al Viroa6fa9412012-08-20 14:59:25 +010010878 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010879 event->cpu = cpu;
10880 event->attr = *attr;
10881 event->group_leader = group_leader;
10882 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010883 event->oncpu = -1;
10884
10885 event->parent = parent_event;
10886
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080010887 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010888 event->id = atomic64_inc_return(&perf_event_id);
10889
10890 event->state = PERF_EVENT_STATE_INACTIVE;
10891
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010892 if (task) {
10893 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010894 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010010895 * XXX pmu::event_init needs to know what task to account to
10896 * and we cannot use the ctx information because we need the
10897 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010898 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070010899 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010900 }
10901
Peter Zijlstra34f43922015-02-20 14:05:38 +010010902 event->clock = &local_clock;
10903 if (parent_event)
10904 event->clock = parent_event->clock;
10905
Avi Kivity4dc0da82011-06-29 18:42:35 +030010906 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010010907 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010908 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020010909#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010910 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080010911 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010912
Andrii Nakryiko85192db2019-11-17 09:28:03 -080010913 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010914 event->prog = prog;
10915 event->orig_overflow_handler =
10916 parent_event->orig_overflow_handler;
10917 }
10918#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030010919 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010920
Wang Nan18794452016-03-28 06:41:30 +000010921 if (overflow_handler) {
10922 event->overflow_handler = overflow_handler;
10923 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000010924 } else if (is_write_backward(event)){
10925 event->overflow_handler = perf_event_output_backward;
10926 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000010927 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000010928 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000010929 event->overflow_handler_context = NULL;
10930 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020010931
Jiri Olsa0231bb52013-02-01 11:23:45 +010010932 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010933
10934 pmu = NULL;
10935
10936 hwc = &event->hw;
10937 hwc->sample_period = attr->sample_period;
10938 if (attr->freq && attr->sample_freq)
10939 hwc->sample_period = 1;
10940 hwc->last_period = hwc->sample_period;
10941
Peter Zijlstrae7850592010-05-21 14:43:08 +020010942 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010943
10944 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010945 * We currently do not support PERF_SAMPLE_READ on inherited events.
10946 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010947 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010948 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010949 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010950
Yan, Zhenga46a2302014-11-04 21:56:06 -050010951 if (!has_branch_stack(event))
10952 event->attr.branch_sample_type = 0;
10953
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010954 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030010955 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010956 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010957 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010958 }
10959
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010010960 /*
10961 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
10962 * be different on other CPUs in the uncore mask.
10963 */
10964 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
10965 err = -EINVAL;
10966 goto err_pmu;
10967 }
10968
Alexander Shishkinab437622019-08-06 11:46:00 +030010969 if (event->attr.aux_output &&
10970 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
10971 err = -EOPNOTSUPP;
10972 goto err_pmu;
10973 }
10974
Peter Zijlstra98add2a2020-02-13 23:51:28 -080010975 if (cgroup_fd != -1) {
10976 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
10977 if (err)
10978 goto err_pmu;
10979 }
10980
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010981 err = exclusive_event_init(event);
10982 if (err)
10983 goto err_pmu;
10984
Alexander Shishkin375637b2016-04-27 18:44:46 +030010985 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010986 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
10987 sizeof(struct perf_addr_filter_range),
10988 GFP_KERNEL);
10989 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010990 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010991 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010992 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010993
Alexander Shishkin18736ee2019-02-15 13:56:54 +020010994 /*
10995 * Clone the parent's vma offsets: they are valid until exec()
10996 * even if the mm is not shared with the parent.
10997 */
10998 if (event->parent) {
10999 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11000
11001 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011002 memcpy(event->addr_filter_ranges,
11003 event->parent->addr_filter_ranges,
11004 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020011005 raw_spin_unlock_irq(&ifh->lock);
11006 }
11007
Alexander Shishkin375637b2016-04-27 18:44:46 +030011008 /* force hw sync on the address filters */
11009 event->addr_filters_gen = 1;
11010 }
11011
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011012 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020011013 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030011014 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011015 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030011016 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010011017 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011018 }
11019
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011020 err = security_perf_event_alloc(event);
11021 if (err)
11022 goto err_callchain_buffer;
11023
Alexander Shishkin927a5572016-03-02 13:24:14 +020011024 /* symmetric to unaccount_event() in _free_event() */
11025 account_event(event);
11026
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011027 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011028
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011029err_callchain_buffer:
11030 if (!event->parent) {
11031 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11032 put_callchain_buffers();
11033 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030011034err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020011035 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030011036
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011037err_per_task:
11038 exclusive_event_destroy(event);
11039
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011040err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080011041 if (is_cgroup_event(event))
11042 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011043 if (event->destroy)
11044 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080011045 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011046err_ns:
11047 if (event->ns)
11048 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090011049 if (event->hw.target)
11050 put_task_struct(event->hw.target);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020011051 kfree(event);
11052
11053 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011054}
11055
11056static int perf_copy_attr(struct perf_event_attr __user *uattr,
11057 struct perf_event_attr *attr)
11058{
11059 u32 size;
11060 int ret;
11061
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011062 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011063 memset(attr, 0, sizeof(*attr));
11064
11065 ret = get_user(size, &uattr->size);
11066 if (ret)
11067 return ret;
11068
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011069 /* ABI compatibility quirk: */
11070 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011071 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011072 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011073 goto err_size;
11074
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100011075 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11076 if (ret) {
11077 if (ret == -E2BIG)
11078 goto err_size;
11079 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011080 }
11081
Meng Xuf12f42a2017-08-23 17:07:50 -040011082 attr->size = size;
11083
Alexander Shishkina4faf002019-10-25 17:08:33 +030011084 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011085 return -EINVAL;
11086
11087 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11088 return -EINVAL;
11089
11090 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11091 return -EINVAL;
11092
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011093 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11094 u64 mask = attr->branch_sample_type;
11095
11096 /* only using defined bits */
11097 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11098 return -EINVAL;
11099
11100 /* at least one branch bit must be set */
11101 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11102 return -EINVAL;
11103
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011104 /* propagate priv level, when not set for branch */
11105 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11106
11107 /* exclude_kernel checked on syscall entry */
11108 if (!attr->exclude_kernel)
11109 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11110
11111 if (!attr->exclude_user)
11112 mask |= PERF_SAMPLE_BRANCH_USER;
11113
11114 if (!attr->exclude_hv)
11115 mask |= PERF_SAMPLE_BRANCH_HV;
11116 /*
11117 * adjust user setting (for HW filter setup)
11118 */
11119 attr->branch_sample_type = mask;
11120 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011121 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011122 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11123 ret = perf_allow_kernel(attr);
11124 if (ret)
11125 return ret;
11126 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011127 }
Jiri Olsa40189942012-08-07 15:20:37 +020011128
Jiri Olsac5ebced2012-08-07 15:20:40 +020011129 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011130 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011131 if (ret)
11132 return ret;
11133 }
11134
11135 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11136 if (!arch_perf_have_user_stack_dump())
11137 return -ENOSYS;
11138
11139 /*
11140 * We have __u32 type for the size, but so far
11141 * we can only use __u16 as maximum due to the
11142 * __u16 sample size limit.
11143 */
11144 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011145 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011146 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011147 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011148 }
Jiri Olsa40189942012-08-07 15:20:37 +020011149
Jiri Olsa5f970522018-03-12 14:45:46 +010011150 if (!attr->sample_max_stack)
11151 attr->sample_max_stack = sysctl_perf_event_max_stack;
11152
Stephane Eranian60e23642014-09-24 13:48:37 +020011153 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11154 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011155out:
11156 return ret;
11157
11158err_size:
11159 put_user(sizeof(*attr), &uattr->size);
11160 ret = -E2BIG;
11161 goto out;
11162}
11163
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011164static int
11165perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011166{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011167 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011168 int ret = -EINVAL;
11169
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011170 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011171 goto set;
11172
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011173 /* don't allow circular references */
11174 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011175 goto out;
11176
Peter Zijlstra0f139302010-05-20 14:35:15 +020011177 /*
11178 * Don't allow cross-cpu buffers
11179 */
11180 if (output_event->cpu != event->cpu)
11181 goto out;
11182
11183 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011184 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011185 */
11186 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11187 goto out;
11188
Peter Zijlstra34f43922015-02-20 14:05:38 +010011189 /*
11190 * Mixing clocks in the same buffer is trouble you don't need.
11191 */
11192 if (output_event->clock != event->clock)
11193 goto out;
11194
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011195 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011196 * Either writing ring buffer from beginning or from end.
11197 * Mixing is not allowed.
11198 */
11199 if (is_write_backward(output_event) != is_write_backward(event))
11200 goto out;
11201
11202 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011203 * If both events generate aux data, they must be on the same PMU
11204 */
11205 if (has_aux(event) && has_aux(output_event) &&
11206 event->pmu != output_event->pmu)
11207 goto out;
11208
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011209set:
11210 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011211 /* Can't redirect output if we've got an active mmap() */
11212 if (atomic_read(&event->mmap_count))
11213 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011214
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011215 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011216 /* get the rb we want to redirect to */
11217 rb = ring_buffer_get(output_event);
11218 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011219 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011220 }
11221
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011222 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011223
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011224 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011225unlock:
11226 mutex_unlock(&event->mmap_mutex);
11227
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011228out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011229 return ret;
11230}
11231
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011232static void mutex_lock_double(struct mutex *a, struct mutex *b)
11233{
11234 if (b < a)
11235 swap(a, b);
11236
11237 mutex_lock(a);
11238 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11239}
11240
Peter Zijlstra34f43922015-02-20 14:05:38 +010011241static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11242{
11243 bool nmi_safe = false;
11244
11245 switch (clk_id) {
11246 case CLOCK_MONOTONIC:
11247 event->clock = &ktime_get_mono_fast_ns;
11248 nmi_safe = true;
11249 break;
11250
11251 case CLOCK_MONOTONIC_RAW:
11252 event->clock = &ktime_get_raw_fast_ns;
11253 nmi_safe = true;
11254 break;
11255
11256 case CLOCK_REALTIME:
11257 event->clock = &ktime_get_real_ns;
11258 break;
11259
11260 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011261 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011262 break;
11263
11264 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011265 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011266 break;
11267
11268 default:
11269 return -EINVAL;
11270 }
11271
11272 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11273 return -EINVAL;
11274
11275 return 0;
11276}
11277
Peter Zijlstra321027c2017-01-11 21:09:50 +010011278/*
11279 * Variation on perf_event_ctx_lock_nested(), except we take two context
11280 * mutexes.
11281 */
11282static struct perf_event_context *
11283__perf_event_ctx_lock_double(struct perf_event *group_leader,
11284 struct perf_event_context *ctx)
11285{
11286 struct perf_event_context *gctx;
11287
11288again:
11289 rcu_read_lock();
11290 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020011291 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011292 rcu_read_unlock();
11293 goto again;
11294 }
11295 rcu_read_unlock();
11296
11297 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11298
11299 if (group_leader->ctx != gctx) {
11300 mutex_unlock(&ctx->mutex);
11301 mutex_unlock(&gctx->mutex);
11302 put_ctx(gctx);
11303 goto again;
11304 }
11305
11306 return gctx;
11307}
11308
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011309/**
11310 * sys_perf_event_open - open a performance event, associate it to a task/cpu
11311 *
11312 * @attr_uptr: event_id type attributes for monitoring/sampling
11313 * @pid: target pid
11314 * @cpu: target cpu
11315 * @group_fd: group leader event fd
11316 */
11317SYSCALL_DEFINE5(perf_event_open,
11318 struct perf_event_attr __user *, attr_uptr,
11319 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
11320{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011321 struct perf_event *group_leader = NULL, *output_event = NULL;
11322 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011323 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011324 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011325 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040011326 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070011327 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011328 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040011329 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011330 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011331 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010011332 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000011333 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011334
11335 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020011336 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011337 return -EINVAL;
11338
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011339 /* Do we allow access to perf_event_open(2) ? */
11340 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
11341 if (err)
11342 return err;
11343
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011344 err = perf_copy_attr(attr_uptr, &attr);
11345 if (err)
11346 return err;
11347
11348 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011349 err = perf_allow_kernel(&attr);
11350 if (err)
11351 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011352 }
11353
Hari Bathinie4222672017-03-08 02:11:36 +053011354 if (attr.namespaces) {
11355 if (!capable(CAP_SYS_ADMIN))
11356 return -EACCES;
11357 }
11358
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011359 if (attr.freq) {
11360 if (attr.sample_freq > sysctl_perf_event_sample_rate)
11361 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020011362 } else {
11363 if (attr.sample_period & (1ULL << 63))
11364 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011365 }
11366
Kan Liangfc7ce9c2017-08-28 20:52:49 -040011367 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011368 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
11369 err = perf_allow_kernel(&attr);
11370 if (err)
11371 return err;
11372 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040011373
David Howellsb0c8fdc2019-08-19 17:18:00 -070011374 err = security_locked_down(LOCKDOWN_PERF);
11375 if (err && (attr.sample_type & PERF_SAMPLE_REGS_INTR))
11376 /* REGS_INTR can leak data, lockdown must prevent this */
11377 return err;
11378
11379 err = 0;
11380
Stephane Eraniane5d13672011-02-14 11:20:01 +020011381 /*
11382 * In cgroup mode, the pid argument is used to pass the fd
11383 * opened to the cgroup directory in cgroupfs. The cpu argument
11384 * designates the cpu on which to monitor threads from that
11385 * cgroup.
11386 */
11387 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
11388 return -EINVAL;
11389
Yann Droneauda21b0b32014-01-05 21:36:33 +010011390 if (flags & PERF_FLAG_FD_CLOEXEC)
11391 f_flags |= O_CLOEXEC;
11392
11393 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040011394 if (event_fd < 0)
11395 return event_fd;
11396
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011397 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040011398 err = perf_fget_light(group_fd, &group);
11399 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011400 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040011401 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011402 if (flags & PERF_FLAG_FD_OUTPUT)
11403 output_event = group_leader;
11404 if (flags & PERF_FLAG_FD_NO_GROUP)
11405 group_leader = NULL;
11406 }
11407
Stephane Eraniane5d13672011-02-14 11:20:01 +020011408 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011409 task = find_lively_task_by_vpid(pid);
11410 if (IS_ERR(task)) {
11411 err = PTR_ERR(task);
11412 goto err_group_fd;
11413 }
11414 }
11415
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020011416 if (task && group_leader &&
11417 group_leader->attr.inherit != attr.inherit) {
11418 err = -EINVAL;
11419 goto err_task;
11420 }
11421
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011422 if (task) {
11423 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
11424 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +000011425 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011426
11427 /*
11428 * Reuse ptrace permission checks for now.
11429 *
11430 * We must hold cred_guard_mutex across this and any potential
11431 * perf_install_in_context() call for this new event to
11432 * serialize against exec() altering our credentials (and the
11433 * perf_event_exit_task() that could imply).
11434 */
11435 err = -EACCES;
11436 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
11437 goto err_cred;
11438 }
11439
Matt Fleming79dff512015-01-23 18:45:42 +000011440 if (flags & PERF_FLAG_PID_CGROUP)
11441 cgroup_fd = pid;
11442
Avi Kivity4dc0da82011-06-29 18:42:35 +030011443 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011444 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011445 if (IS_ERR(event)) {
11446 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011447 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011448 }
11449
Vince Weaver53b25332014-05-16 17:12:12 -040011450 if (is_sampling_event(event)) {
11451 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053011452 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040011453 goto err_alloc;
11454 }
11455 }
11456
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011457 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011458 * Special case software events and allow them to be part of
11459 * any hardware group.
11460 */
11461 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011462
Peter Zijlstra34f43922015-02-20 14:05:38 +010011463 if (attr.use_clockid) {
11464 err = perf_event_set_clock(event, attr.clockid);
11465 if (err)
11466 goto err_alloc;
11467 }
11468
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011469 if (pmu->task_ctx_nr == perf_sw_context)
11470 event->event_caps |= PERF_EV_CAP_SOFTWARE;
11471
Song Liua1150c22018-05-03 12:47:16 -070011472 if (group_leader) {
11473 if (is_software_event(event) &&
11474 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011475 /*
Song Liua1150c22018-05-03 12:47:16 -070011476 * If the event is a sw event, but the group_leader
11477 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011478 *
Song Liua1150c22018-05-03 12:47:16 -070011479 * Allow the addition of software events to hw
11480 * groups, this is safe because software events
11481 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011482 */
Song Liua1150c22018-05-03 12:47:16 -070011483 pmu = group_leader->ctx->pmu;
11484 } else if (!is_software_event(event) &&
11485 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011486 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011487 /*
11488 * In case the group is a pure software group, and we
11489 * try to add a hardware event, move the whole group to
11490 * the hardware context.
11491 */
11492 move_group = 1;
11493 }
11494 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011495
11496 /*
11497 * Get the target context (task or percpu):
11498 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011499 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011500 if (IS_ERR(ctx)) {
11501 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011502 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011503 }
11504
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011505 /*
11506 * Look up the group leader (we will attach this event to it):
11507 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011508 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011509 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011510
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011511 /*
11512 * Do not allow a recursive hierarchy (this new sibling
11513 * becoming part of another group-sibling):
11514 */
11515 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011516 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011517
11518 /* All events in a group should have the same clock */
11519 if (group_leader->clock != event->clock)
11520 goto err_context;
11521
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011522 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010011523 * Make sure we're both events for the same CPU;
11524 * grouping events for different CPUs is broken; since
11525 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011526 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010011527 if (group_leader->cpu != event->cpu)
11528 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010011529
Mark Rutland64aee2a2017-06-22 15:41:38 +010011530 /*
11531 * Make sure we're both on the same task, or both
11532 * per-CPU events.
11533 */
11534 if (group_leader->ctx->task != ctx->task)
11535 goto err_context;
11536
11537 /*
11538 * Do not allow to attach to a group in a different task
11539 * or CPU context. If we're moving SW events, we'll fix
11540 * this up later, so allow that.
11541 */
11542 if (!move_group && group_leader->ctx != ctx)
11543 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011544
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011545 /*
11546 * Only a group leader can be exclusive or pinned
11547 */
11548 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011549 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011550 }
11551
11552 if (output_event) {
11553 err = perf_event_set_output(event, output_event);
11554 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011555 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011556 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011557
Yann Droneauda21b0b32014-01-05 21:36:33 +010011558 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
11559 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040011560 if (IS_ERR(event_file)) {
11561 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020011562 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011563 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040011564 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011565
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011566 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011567 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
11568
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011569 if (gctx->task == TASK_TOMBSTONE) {
11570 err = -ESRCH;
11571 goto err_locked;
11572 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010011573
11574 /*
11575 * Check if we raced against another sys_perf_event_open() call
11576 * moving the software group underneath us.
11577 */
11578 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
11579 /*
11580 * If someone moved the group out from under us, check
11581 * if this new event wound up on the same ctx, if so
11582 * its the regular !move_group case, otherwise fail.
11583 */
11584 if (gctx != ctx) {
11585 err = -EINVAL;
11586 goto err_locked;
11587 } else {
11588 perf_event_ctx_unlock(group_leader, gctx);
11589 move_group = 0;
11590 }
11591 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030011592
11593 /*
11594 * Failure to create exclusive events returns -EBUSY.
11595 */
11596 err = -EBUSY;
11597 if (!exclusive_event_installable(group_leader, ctx))
11598 goto err_locked;
11599
11600 for_each_sibling_event(sibling, group_leader) {
11601 if (!exclusive_event_installable(sibling, ctx))
11602 goto err_locked;
11603 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011604 } else {
11605 mutex_lock(&ctx->mutex);
11606 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011607
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011608 if (ctx->task == TASK_TOMBSTONE) {
11609 err = -ESRCH;
11610 goto err_locked;
11611 }
11612
Peter Zijlstraa7239682015-09-09 19:06:33 +020011613 if (!perf_event_validate_size(event)) {
11614 err = -E2BIG;
11615 goto err_locked;
11616 }
11617
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011618 if (!task) {
11619 /*
11620 * Check if the @cpu we're creating an event for is online.
11621 *
11622 * We use the perf_cpu_context::ctx::mutex to serialize against
11623 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11624 */
11625 struct perf_cpu_context *cpuctx =
11626 container_of(ctx, struct perf_cpu_context, ctx);
11627
11628 if (!cpuctx->online) {
11629 err = -ENODEV;
11630 goto err_locked;
11631 }
11632 }
11633
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000011634 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
11635 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030011636 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000011637 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011638
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011639 /*
11640 * Must be under the same ctx::mutex as perf_install_in_context(),
11641 * because we need to serialize with concurrent event creation.
11642 */
11643 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011644 err = -EBUSY;
11645 goto err_locked;
11646 }
11647
11648 WARN_ON_ONCE(ctx->parent_ctx);
11649
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011650 /*
11651 * This is the point on no return; we cannot fail hereafter. This is
11652 * where we start modifying current state.
11653 */
11654
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011655 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011656 /*
11657 * See perf_event_ctx_lock() for comments on the details
11658 * of swizzling perf_event::ctx.
11659 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011660 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010011661 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010011662
Peter Zijlstraedb39592018-03-15 17:36:56 +010011663 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011664 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011665 put_ctx(gctx);
11666 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011667
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011668 /*
11669 * Wait for everybody to stop referencing the events through
11670 * the old lists, before installing it on new lists.
11671 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011672 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011673
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011674 /*
11675 * Install the group siblings before the group leader.
11676 *
11677 * Because a group leader will try and install the entire group
11678 * (through the sibling list, which is still in-tact), we can
11679 * end up with siblings installed in the wrong context.
11680 *
11681 * By installing siblings first we NO-OP because they're not
11682 * reachable through the group lists.
11683 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010011684 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011685 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010011686 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011687 get_ctx(ctx);
11688 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011689
11690 /*
11691 * Removing from the context ends up with disabled
11692 * event. What we want here is event in the initial
11693 * startup state, ready to be add into new context.
11694 */
11695 perf_event__state_init(group_leader);
11696 perf_install_in_context(ctx, group_leader, group_leader->cpu);
11697 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011698 }
11699
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020011700 /*
11701 * Precalculate sample_data sizes; do while holding ctx::mutex such
11702 * that we're serialized against further additions and before
11703 * perf_install_in_context() which is the point the event is active and
11704 * can use these values.
11705 */
11706 perf_event__header_size(event);
11707 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011708
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010011709 event->owner = current;
11710
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080011711 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011712 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011713
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011714 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011715 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011716 mutex_unlock(&ctx->mutex);
11717
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011718 if (task) {
11719 mutex_unlock(&task->signal->cred_guard_mutex);
11720 put_task_struct(task);
11721 }
11722
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011723 mutex_lock(&current->perf_event_mutex);
11724 list_add_tail(&event->owner_entry, &current->perf_event_list);
11725 mutex_unlock(&current->perf_event_mutex);
11726
Peter Zijlstra8a495422010-05-27 15:47:49 +020011727 /*
11728 * Drop the reference on the group_event after placing the
11729 * new event on the sibling_list. This ensures destruction
11730 * of the group leader will find the pointer to itself in
11731 * perf_group_detach().
11732 */
Al Viro2903ff02012-08-28 12:52:22 -040011733 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011734 fd_install(event_fd, event_file);
11735 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011736
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011737err_locked:
11738 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011739 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011740 mutex_unlock(&ctx->mutex);
11741/* err_file: */
11742 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011743err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011744 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040011745 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011746err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010011747 /*
11748 * If event_file is set, the fput() above will have called ->release()
11749 * and that will take care of freeing the event.
11750 */
11751 if (!event_file)
11752 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011753err_cred:
11754 if (task)
11755 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020011756err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020011757 if (task)
11758 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011759err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040011760 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011761err_fd:
11762 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011763 return err;
11764}
11765
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011766/**
11767 * perf_event_create_kernel_counter
11768 *
11769 * @attr: attributes of the counter to create
11770 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070011771 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011772 */
11773struct perf_event *
11774perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070011775 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011776 perf_overflow_handler_t overflow_handler,
11777 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011778{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011779 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011780 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011781 int err;
11782
Alexander Shishkindce5aff2019-10-30 15:47:31 +020011783 /*
11784 * Grouping is not supported for kernel events, neither is 'AUX',
11785 * make sure the caller's intentions are adjusted.
11786 */
11787 if (attr->aux_output)
11788 return ERR_PTR(-EINVAL);
11789
Avi Kivity4dc0da82011-06-29 18:42:35 +030011790 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011791 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011792 if (IS_ERR(event)) {
11793 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011794 goto err;
11795 }
11796
Jiri Olsaf8697762014-08-01 14:33:01 +020011797 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011798 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020011799
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020011800 /*
11801 * Get the target context (task or percpu):
11802 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011803 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011804 if (IS_ERR(ctx)) {
11805 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011806 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011807 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011808
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011809 WARN_ON_ONCE(ctx->parent_ctx);
11810 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011811 if (ctx->task == TASK_TOMBSTONE) {
11812 err = -ESRCH;
11813 goto err_unlock;
11814 }
11815
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011816 if (!task) {
11817 /*
11818 * Check if the @cpu we're creating an event for is online.
11819 *
11820 * We use the perf_cpu_context::ctx::mutex to serialize against
11821 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11822 */
11823 struct perf_cpu_context *cpuctx =
11824 container_of(ctx, struct perf_cpu_context, ctx);
11825 if (!cpuctx->online) {
11826 err = -ENODEV;
11827 goto err_unlock;
11828 }
11829 }
11830
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011831 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011832 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011833 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011834 }
11835
Leonard Crestez4ce54af2019-07-24 15:53:24 +030011836 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011837 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011838 mutex_unlock(&ctx->mutex);
11839
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011840 return event;
11841
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011842err_unlock:
11843 mutex_unlock(&ctx->mutex);
11844 perf_unpin_context(ctx);
11845 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011846err_free:
11847 free_event(event);
11848err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011849 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011850}
11851EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
11852
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011853void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
11854{
11855 struct perf_event_context *src_ctx;
11856 struct perf_event_context *dst_ctx;
11857 struct perf_event *event, *tmp;
11858 LIST_HEAD(events);
11859
11860 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
11861 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
11862
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011863 /*
11864 * See perf_event_ctx_lock() for comments on the details
11865 * of swizzling perf_event::ctx.
11866 */
11867 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011868 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
11869 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011870 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011871 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011872 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020011873 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011874 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011875
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011876 /*
11877 * Wait for the events to quiesce before re-instating them.
11878 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011879 synchronize_rcu();
11880
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011881 /*
11882 * Re-instate events in 2 passes.
11883 *
11884 * Skip over group leaders and only install siblings on this first
11885 * pass, siblings will not get enabled without a leader, however a
11886 * leader will enable its siblings, even if those are still on the old
11887 * context.
11888 */
11889 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11890 if (event->group_leader == event)
11891 continue;
11892
11893 list_del(&event->migrate_entry);
11894 if (event->state >= PERF_EVENT_STATE_OFF)
11895 event->state = PERF_EVENT_STATE_INACTIVE;
11896 account_event_cpu(event, dst_cpu);
11897 perf_install_in_context(dst_ctx, event, dst_cpu);
11898 get_ctx(dst_ctx);
11899 }
11900
11901 /*
11902 * Once all the siblings are setup properly, install the group leaders
11903 * to make it go.
11904 */
Peter Zijlstra98861672013-10-03 16:02:23 +020011905 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11906 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011907 if (event->state >= PERF_EVENT_STATE_OFF)
11908 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011909 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011910 perf_install_in_context(dst_ctx, event, dst_cpu);
11911 get_ctx(dst_ctx);
11912 }
11913 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011914 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011915}
11916EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
11917
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011918static void sync_child_event(struct perf_event *child_event,
11919 struct task_struct *child)
11920{
11921 struct perf_event *parent_event = child_event->parent;
11922 u64 child_val;
11923
11924 if (child_event->attr.inherit_stat)
11925 perf_event_read_event(child_event, child);
11926
Peter Zijlstrab5e58792010-05-21 14:43:12 +020011927 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011928
11929 /*
11930 * Add back the child's count to the parent's count:
11931 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020011932 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011933 atomic64_add(child_event->total_time_enabled,
11934 &parent_event->child_total_time_enabled);
11935 atomic64_add(child_event->total_time_running,
11936 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011937}
11938
11939static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011940perf_event_exit_event(struct perf_event *child_event,
11941 struct perf_event_context *child_ctx,
11942 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011943{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011944 struct perf_event *parent_event = child_event->parent;
11945
Peter Zijlstra1903d502014-07-15 17:27:27 +020011946 /*
11947 * Do not destroy the 'original' grouping; because of the context
11948 * switch optimization the original events could've ended up in a
11949 * random child task.
11950 *
11951 * If we were to destroy the original group, all group related
11952 * operations would cease to function properly after this random
11953 * child dies.
11954 *
11955 * Do destroy all inherited groups, we don't care about those
11956 * and being thorough is better.
11957 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011958 raw_spin_lock_irq(&child_ctx->lock);
11959 WARN_ON_ONCE(child_ctx->is_active);
11960
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011961 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010011962 perf_group_detach(child_event);
11963 list_del_event(child_event, child_ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +020011964 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011965 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011966
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011967 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011968 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011969 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011970 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040011971 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011972 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011973 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011974 /*
11975 * Child events can be cleaned up.
11976 */
11977
11978 sync_child_event(child_event, child);
11979
11980 /*
11981 * Remove this event from the parent's list
11982 */
11983 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
11984 mutex_lock(&parent_event->child_mutex);
11985 list_del_init(&child_event->child_list);
11986 mutex_unlock(&parent_event->child_mutex);
11987
11988 /*
11989 * Kick perf_poll() for is_event_hup().
11990 */
11991 perf_event_wakeup(parent_event);
11992 free_event(child_event);
11993 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011994}
11995
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011996static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011997{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011998 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011999 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012000
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012001 WARN_ON_ONCE(child != current);
12002
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012003 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012004 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012005 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012006
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012007 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012008 * In order to reduce the amount of tricky in ctx tear-down, we hold
12009 * ctx::mutex over the entire thing. This serializes against almost
12010 * everything that wants to access the ctx.
12011 *
12012 * The exception is sys_perf_event_open() /
12013 * perf_event_create_kernel_count() which does find_get_context()
12014 * without ctx::mutex (it cannot because of the move_group double mutex
12015 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012016 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012017 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012018
12019 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012020 * In a single ctx::lock section, de-schedule the events and detach the
12021 * context from the task such that we cannot ever get it scheduled back
12022 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012023 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012024 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020012025 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012026
12027 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012028 * Now that the context is inactive, destroy the task <-> ctx relation
12029 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012030 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010012031 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12032 put_ctx(child_ctx); /* cannot be last */
12033 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12034 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012035
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012036 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010012037 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012038
Peter Zijlstra211de6e2014-09-30 19:23:08 +020012039 if (clone_ctx)
12040 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020012041
12042 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012043 * Report the task dead after unscheduling the events so that we
12044 * won't get any samples after PERF_RECORD_EXIT. We can however still
12045 * get a few PERF_RECORD_READ events.
12046 */
12047 perf_event_task(child, child_ctx, 0);
12048
Peter Zijlstraebf905f2014-05-29 19:00:24 +020012049 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010012050 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012051
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012052 mutex_unlock(&child_ctx->mutex);
12053
12054 put_ctx(child_ctx);
12055}
12056
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012057/*
12058 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020012059 *
12060 * Can be called with cred_guard_mutex held when called from
12061 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012062 */
12063void perf_event_exit_task(struct task_struct *child)
12064{
Peter Zijlstra88821352010-11-09 19:01:43 +010012065 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012066 int ctxn;
12067
Peter Zijlstra88821352010-11-09 19:01:43 +010012068 mutex_lock(&child->perf_event_mutex);
12069 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12070 owner_entry) {
12071 list_del_init(&event->owner_entry);
12072
12073 /*
12074 * Ensure the list deletion is visible before we clear
12075 * the owner, closes a race against perf_release() where
12076 * we need to serialize on the owner->perf_event_mutex.
12077 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010012078 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010012079 }
12080 mutex_unlock(&child->perf_event_mutex);
12081
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012082 for_each_task_context_nr(ctxn)
12083 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010012084
12085 /*
12086 * The perf_event_exit_task_context calls perf_event_task
12087 * with child's task_ctx, which generates EXIT events for
12088 * child contexts and sets child->perf_event_ctxp[] to NULL.
12089 * At this point we need to send EXIT events to cpu contexts.
12090 */
12091 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012092}
12093
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012094static void perf_free_event(struct perf_event *event,
12095 struct perf_event_context *ctx)
12096{
12097 struct perf_event *parent = event->parent;
12098
12099 if (WARN_ON_ONCE(!parent))
12100 return;
12101
12102 mutex_lock(&parent->child_mutex);
12103 list_del_init(&event->child_list);
12104 mutex_unlock(&parent->child_mutex);
12105
Al Viroa6fa9412012-08-20 14:59:25 +010012106 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012107
Peter Zijlstra652884f2015-01-23 11:20:10 +010012108 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020012109 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012110 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010012111 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012112 free_event(event);
12113}
12114
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012115/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012116 * Free a context as created by inheritance by perf_event_init_task() below,
12117 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010012118 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012119 * Even though the task has never lived, the context and events have been
12120 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012121 */
12122void perf_event_free_task(struct task_struct *task)
12123{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012124 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012125 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012126 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012127
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012128 for_each_task_context_nr(ctxn) {
12129 ctx = task->perf_event_ctxp[ctxn];
12130 if (!ctx)
12131 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012132
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012133 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012134 raw_spin_lock_irq(&ctx->lock);
12135 /*
12136 * Destroy the task <-> ctx relation and mark the context dead.
12137 *
12138 * This is important because even though the task hasn't been
12139 * exposed yet the context has been (through child_list).
12140 */
12141 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12142 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12143 put_task_struct(task); /* cannot be last */
12144 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012145
Peter Zijlstra15121c72017-03-16 13:47:50 +010012146 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012147 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012148
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012149 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012150
12151 /*
12152 * perf_event_release_kernel() could've stolen some of our
12153 * child events and still have them on its free_list. In that
12154 * case we must wait for these events to have been freed (in
12155 * particular all their references to this task must've been
12156 * dropped).
12157 *
12158 * Without this copy_process() will unconditionally free this
12159 * task (irrespective of its reference count) and
12160 * _free_event()'s put_task_struct(event->hw.target) will be a
12161 * use-after-free.
12162 *
12163 * Wait for all events to drop their context reference.
12164 */
12165 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12166 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012167 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012168}
12169
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012170void perf_event_delayed_put(struct task_struct *task)
12171{
12172 int ctxn;
12173
12174 for_each_task_context_nr(ctxn)
12175 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12176}
12177
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012178struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012179{
Al Viro02e5ad92019-06-26 20:43:53 -040012180 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012181 if (!file)
12182 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012183
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012184 if (file->f_op != &perf_fops) {
12185 fput(file);
12186 return ERR_PTR(-EBADF);
12187 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012188
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012189 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012190}
12191
Yonghong Songf8d959a2018-05-24 11:21:08 -070012192const struct perf_event *perf_get_event(struct file *file)
12193{
12194 if (file->f_op != &perf_fops)
12195 return ERR_PTR(-EINVAL);
12196
12197 return file->private_data;
12198}
12199
Kaixu Xiaffe86902015-08-06 07:02:32 +000012200const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12201{
12202 if (!event)
12203 return ERR_PTR(-EINVAL);
12204
12205 return &event->attr;
12206}
12207
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012208/*
Tobias Tefke788faab2018-07-09 12:57:15 +020012209 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012210 *
12211 * Returns:
12212 * - valid pointer on success
12213 * - NULL for orphaned events
12214 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012215 */
12216static struct perf_event *
12217inherit_event(struct perf_event *parent_event,
12218 struct task_struct *parent,
12219 struct perf_event_context *parent_ctx,
12220 struct task_struct *child,
12221 struct perf_event *group_leader,
12222 struct perf_event_context *child_ctx)
12223{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020012224 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012225 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020012226 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012227
12228 /*
12229 * Instead of creating recursive hierarchies of events,
12230 * we link inherited events back to the original parent,
12231 * which has a filp for sure, which we use as the reference
12232 * count:
12233 */
12234 if (parent_event->parent)
12235 parent_event = parent_event->parent;
12236
12237 child_event = perf_event_alloc(&parent_event->attr,
12238 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020012239 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012240 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000012241 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012242 if (IS_ERR(child_event))
12243 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010012244
Jiri Olsa313ccb92018-01-07 17:03:47 +010012245
12246 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12247 !child_ctx->task_ctx_data) {
12248 struct pmu *pmu = child_event->pmu;
12249
12250 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
12251 GFP_KERNEL);
12252 if (!child_ctx->task_ctx_data) {
12253 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020012254 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012255 }
12256 }
12257
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012258 /*
12259 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12260 * must be under the same lock in order to serialize against
12261 * perf_event_release_kernel(), such that either we must observe
12262 * is_orphaned_event() or they will observe us on the child_list.
12263 */
12264 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020012265 if (is_orphaned_event(parent_event) ||
12266 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012267 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012268 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010012269 free_event(child_event);
12270 return NULL;
12271 }
12272
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012273 get_ctx(child_ctx);
12274
12275 /*
12276 * Make the child state follow the state of the parent event,
12277 * not its attr.disabled bit. We hold the parent's mutex,
12278 * so we won't race with perf_event_{en, dis}able_family.
12279 */
Jiri Olsa1929def2014-09-12 13:18:27 +020012280 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012281 child_event->state = PERF_EVENT_STATE_INACTIVE;
12282 else
12283 child_event->state = PERF_EVENT_STATE_OFF;
12284
12285 if (parent_event->attr.freq) {
12286 u64 sample_period = parent_event->hw.sample_period;
12287 struct hw_perf_event *hwc = &child_event->hw;
12288
12289 hwc->sample_period = sample_period;
12290 hwc->last_period = sample_period;
12291
12292 local64_set(&hwc->period_left, sample_period);
12293 }
12294
12295 child_event->ctx = child_ctx;
12296 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030012297 child_event->overflow_handler_context
12298 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012299
12300 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020012301 * Precalculate sample_data sizes
12302 */
12303 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020012304 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020012305
12306 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012307 * Link it up in the child's context:
12308 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020012309 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012310 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020012311 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012312
12313 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012314 * Link this into the parent event's child list
12315 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012316 list_add_tail(&child_event->child_list, &parent_event->child_list);
12317 mutex_unlock(&parent_event->child_mutex);
12318
12319 return child_event;
12320}
12321
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012322/*
12323 * Inherits an event group.
12324 *
12325 * This will quietly suppress orphaned events; !inherit_event() is not an error.
12326 * This matches with perf_event_release_kernel() removing all child events.
12327 *
12328 * Returns:
12329 * - 0 on success
12330 * - <0 on error
12331 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012332static int inherit_group(struct perf_event *parent_event,
12333 struct task_struct *parent,
12334 struct perf_event_context *parent_ctx,
12335 struct task_struct *child,
12336 struct perf_event_context *child_ctx)
12337{
12338 struct perf_event *leader;
12339 struct perf_event *sub;
12340 struct perf_event *child_ctr;
12341
12342 leader = inherit_event(parent_event, parent, parent_ctx,
12343 child, NULL, child_ctx);
12344 if (IS_ERR(leader))
12345 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012346 /*
12347 * @leader can be NULL here because of is_orphaned_event(). In this
12348 * case inherit_event() will create individual events, similar to what
12349 * perf_group_detach() would do anyway.
12350 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012351 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012352 child_ctr = inherit_event(sub, parent, parent_ctx,
12353 child, leader, child_ctx);
12354 if (IS_ERR(child_ctr))
12355 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012356
Alexander Shishkin00496fe2019-11-01 17:12:48 +020012357 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012358 !perf_get_aux_event(child_ctr, leader))
12359 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012360 }
12361 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012362}
12363
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012364/*
12365 * Creates the child task context and tries to inherit the event-group.
12366 *
12367 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
12368 * inherited_all set when we 'fail' to inherit an orphaned event; this is
12369 * consistent with perf_event_release_kernel() removing all child events.
12370 *
12371 * Returns:
12372 * - 0 on success
12373 * - <0 on error
12374 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012375static int
12376inherit_task_group(struct perf_event *event, struct task_struct *parent,
12377 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012378 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012379 int *inherited_all)
12380{
12381 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012382 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012383
12384 if (!event->attr.inherit) {
12385 *inherited_all = 0;
12386 return 0;
12387 }
12388
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012389 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012390 if (!child_ctx) {
12391 /*
12392 * This is executed from the parent task context, so
12393 * inherit events that have been marked for cloning.
12394 * First allocate and initialize a context for the
12395 * child.
12396 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020012397 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012398 if (!child_ctx)
12399 return -ENOMEM;
12400
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012401 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012402 }
12403
12404 ret = inherit_group(event, parent, parent_ctx,
12405 child, child_ctx);
12406
12407 if (ret)
12408 *inherited_all = 0;
12409
12410 return ret;
12411}
12412
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012413/*
12414 * Initialize the perf_event context in task_struct
12415 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020012416static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012417{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012418 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012419 struct perf_event_context *cloned_ctx;
12420 struct perf_event *event;
12421 struct task_struct *parent = current;
12422 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012423 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012424 int ret = 0;
12425
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012426 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012427 return 0;
12428
12429 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012430 * If the parent's context is a clone, pin it so it won't get
12431 * swapped under us.
12432 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012433 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020012434 if (!parent_ctx)
12435 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012436
12437 /*
12438 * No need to check if parent_ctx != NULL here; since we saw
12439 * it non-NULL earlier, the only reason for it to become NULL
12440 * is if we exit, and since we're currently in the middle of
12441 * a fork we can't be exiting at the same time.
12442 */
12443
12444 /*
12445 * Lock the parent list. No need to lock the child - not PID
12446 * hashed yet and not running, so nobody can access it.
12447 */
12448 mutex_lock(&parent_ctx->mutex);
12449
12450 /*
12451 * We dont have to disable NMIs - we are only looking at
12452 * the list, not manipulating it:
12453 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012454 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012455 ret = inherit_task_group(event, parent, parent_ctx,
12456 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012457 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012458 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012459 }
12460
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012461 /*
12462 * We can't hold ctx->lock when iterating the ->flexible_group list due
12463 * to allocations, but we need to prevent rotation because
12464 * rotate_ctx() will change the list from interrupt context.
12465 */
12466 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12467 parent_ctx->rotate_disable = 1;
12468 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
12469
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012470 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012471 ret = inherit_task_group(event, parent, parent_ctx,
12472 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012473 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012474 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012475 }
12476
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012477 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12478 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012479
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012480 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012481
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010012482 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012483 /*
12484 * Mark the child context as a clone of the parent
12485 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012486 *
12487 * Note that if the parent is a clone, the holding of
12488 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012489 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012490 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012491 if (cloned_ctx) {
12492 child_ctx->parent_ctx = cloned_ctx;
12493 child_ctx->parent_gen = parent_ctx->parent_gen;
12494 } else {
12495 child_ctx->parent_ctx = parent_ctx;
12496 child_ctx->parent_gen = parent_ctx->generation;
12497 }
12498 get_ctx(child_ctx->parent_ctx);
12499 }
12500
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012501 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012502out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012503 mutex_unlock(&parent_ctx->mutex);
12504
12505 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012506 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012507
12508 return ret;
12509}
12510
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012511/*
12512 * Initialize the perf_event context in task_struct
12513 */
12514int perf_event_init_task(struct task_struct *child)
12515{
12516 int ctxn, ret;
12517
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010012518 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
12519 mutex_init(&child->perf_event_mutex);
12520 INIT_LIST_HEAD(&child->perf_event_list);
12521
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012522 for_each_task_context_nr(ctxn) {
12523 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012524 if (ret) {
12525 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012526 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012527 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012528 }
12529
12530 return 0;
12531}
12532
Paul Mackerras220b1402010-03-10 20:45:52 +110012533static void __init perf_event_init_all_cpus(void)
12534{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012535 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110012536 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110012537
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012538 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
12539
Paul Mackerras220b1402010-03-10 20:45:52 +110012540 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012541 swhash = &per_cpu(swevent_htable, cpu);
12542 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000012543 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070012544
12545 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
12546 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012547
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080012548#ifdef CONFIG_CGROUP_PERF
12549 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
12550#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012551 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110012552 }
12553}
12554
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040012555static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012556{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012557 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012558
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012559 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000012560 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012561 struct swevent_hlist *hlist;
12562
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012563 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
12564 WARN_ON(!hlist);
12565 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012566 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012567 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012568}
12569
Dave Young2965faa2015-09-09 15:38:55 -070012570#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012571static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012572{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012573 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012574 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
12575 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012576
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012577 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020012578 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012579 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012580 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012581 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012582}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012583
12584static void perf_event_exit_cpu_context(int cpu)
12585{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012586 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012587 struct perf_event_context *ctx;
12588 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012589
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012590 mutex_lock(&pmus_lock);
12591 list_for_each_entry(pmu, &pmus, entry) {
12592 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12593 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012594
12595 mutex_lock(&ctx->mutex);
12596 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012597 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012598 mutex_unlock(&ctx->mutex);
12599 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012600 cpumask_clear_cpu(cpu, perf_online_mask);
12601 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012602}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012603#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012604
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012605static void perf_event_exit_cpu_context(int cpu) { }
12606
12607#endif
12608
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012609int perf_event_init_cpu(unsigned int cpu)
12610{
12611 struct perf_cpu_context *cpuctx;
12612 struct perf_event_context *ctx;
12613 struct pmu *pmu;
12614
12615 perf_swevent_init_cpu(cpu);
12616
12617 mutex_lock(&pmus_lock);
12618 cpumask_set_cpu(cpu, perf_online_mask);
12619 list_for_each_entry(pmu, &pmus, entry) {
12620 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12621 ctx = &cpuctx->ctx;
12622
12623 mutex_lock(&ctx->mutex);
12624 cpuctx->online = 1;
12625 mutex_unlock(&ctx->mutex);
12626 }
12627 mutex_unlock(&pmus_lock);
12628
12629 return 0;
12630}
12631
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012632int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012633{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010012634 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012635 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012636}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012637
Peter Zijlstrac2774432010-12-08 15:29:02 +010012638static int
12639perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
12640{
12641 int cpu;
12642
12643 for_each_online_cpu(cpu)
12644 perf_event_exit_cpu(cpu);
12645
12646 return NOTIFY_OK;
12647}
12648
12649/*
12650 * Run the perf reboot notifier at the very last possible moment so that
12651 * the generic watchdog code runs as long as possible.
12652 */
12653static struct notifier_block perf_reboot_notifier = {
12654 .notifier_call = perf_reboot,
12655 .priority = INT_MIN,
12656};
12657
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012658void __init perf_event_init(void)
12659{
Jason Wessel3c502e72010-11-04 17:33:01 -050012660 int ret;
12661
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012662 idr_init(&pmu_idr);
12663
Paul Mackerras220b1402010-03-10 20:45:52 +110012664 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012665 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012666 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
12667 perf_pmu_register(&perf_cpu_clock, NULL, -1);
12668 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012669 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012670 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010012671 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050012672
12673 ret = init_hw_breakpoint();
12674 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020012675
Jiri Olsab01c3a02012-03-23 15:41:20 +010012676 /*
12677 * Build time assertion that we keep the data_head at the intended
12678 * location. IOW, validation we got the __reserved[] size right.
12679 */
12680 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
12681 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012682}
Peter Zijlstraabe43402010-11-17 23:17:37 +010012683
Cody P Schaferfd979c02015-01-30 13:45:57 -080012684ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
12685 char *page)
12686{
12687 struct perf_pmu_events_attr *pmu_attr =
12688 container_of(attr, struct perf_pmu_events_attr, attr);
12689
12690 if (pmu_attr->event_str)
12691 return sprintf(page, "%s\n", pmu_attr->event_str);
12692
12693 return 0;
12694}
Thomas Gleixner675965b2016-02-22 22:19:27 +000012695EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080012696
Peter Zijlstraabe43402010-11-17 23:17:37 +010012697static int __init perf_event_sysfs_init(void)
12698{
12699 struct pmu *pmu;
12700 int ret;
12701
12702 mutex_lock(&pmus_lock);
12703
12704 ret = bus_register(&pmu_bus);
12705 if (ret)
12706 goto unlock;
12707
12708 list_for_each_entry(pmu, &pmus, entry) {
12709 if (!pmu->name || pmu->type < 0)
12710 continue;
12711
12712 ret = pmu_dev_alloc(pmu);
12713 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
12714 }
12715 pmu_bus_running = 1;
12716 ret = 0;
12717
12718unlock:
12719 mutex_unlock(&pmus_lock);
12720
12721 return ret;
12722}
12723device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012724
12725#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040012726static struct cgroup_subsys_state *
12727perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012728{
12729 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020012730
Li Zefan1b15d052011-03-03 14:26:06 +080012731 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012732 if (!jc)
12733 return ERR_PTR(-ENOMEM);
12734
Stephane Eraniane5d13672011-02-14 11:20:01 +020012735 jc->info = alloc_percpu(struct perf_cgroup_info);
12736 if (!jc->info) {
12737 kfree(jc);
12738 return ERR_PTR(-ENOMEM);
12739 }
12740
Stephane Eraniane5d13672011-02-14 11:20:01 +020012741 return &jc->css;
12742}
12743
Tejun Heoeb954192013-08-08 20:11:23 -040012744static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012745{
Tejun Heoeb954192013-08-08 20:11:23 -040012746 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
12747
Stephane Eraniane5d13672011-02-14 11:20:01 +020012748 free_percpu(jc->info);
12749 kfree(jc);
12750}
12751
12752static int __perf_cgroup_move(void *info)
12753{
12754 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012755 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012756 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012757 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012758 return 0;
12759}
12760
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012761static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012762{
Tejun Heobb9d97b2011-12-12 18:12:21 -080012763 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012764 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080012765
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012766 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080012767 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012768}
12769
Tejun Heo073219e2014-02-08 10:36:58 -050012770struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080012771 .css_alloc = perf_cgroup_css_alloc,
12772 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080012773 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050012774 /*
12775 * Implicitly enable on dfl hierarchy so that perf events can
12776 * always be filtered by cgroup2 path as long as perf_event
12777 * controller is not mounted on a legacy hierarchy.
12778 */
12779 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040012780 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020012781};
12782#endif /* CONFIG_CGROUP_PERF */