blob: 7529e76a2e36a6a66a474f7f22b7cdcb233232b8 [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
895static inline int perf_cgroup_connect(int fd, struct perf_event *event,
896 struct perf_event_attr *attr,
897 struct perf_event *group_leader)
898{
899 struct perf_cgroup *cgrp;
900 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400901 struct fd f = fdget(fd);
902 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200903
Al Viro2903ff02012-08-28 12:52:22 -0400904 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200905 return -EBADF;
906
Al Virob5830432014-10-31 01:22:04 -0400907 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400908 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800909 if (IS_ERR(css)) {
910 ret = PTR_ERR(css);
911 goto out;
912 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200913
914 cgrp = container_of(css, struct perf_cgroup, css);
915 event->cgrp = cgrp;
916
917 /*
918 * all events in a group must monitor
919 * the same cgroup because a task belongs
920 * to only one perf cgroup at a time
921 */
922 if (group_leader && group_leader->cgrp != cgrp) {
923 perf_detach_cgroup(event);
924 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200925 }
Li Zefan3db272c2011-03-03 14:25:37 +0800926out:
Al Viro2903ff02012-08-28 12:52:22 -0400927 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200928 return ret;
929}
930
931static inline void
932perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
933{
934 struct perf_cgroup_info *t;
935 t = per_cpu_ptr(event->cgrp->info, event->cpu);
936 event->shadow_ctx_time = now - t->timestamp;
937}
938
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700939/*
940 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
941 * cleared when last cgroup event is removed.
942 */
943static inline void
944list_update_cgroup_event(struct perf_event *event,
945 struct perf_event_context *ctx, bool add)
946{
947 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800948 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700949
950 if (!is_cgroup_event(event))
951 return;
952
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700953 /*
954 * Because cgroup events are always per-cpu events,
Song Liu07c59722020-01-22 11:50:27 -0800955 * @ctx == &cpuctx->ctx.
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700956 */
Song Liu07c59722020-01-22 11:50:27 -0800957 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
leilei.lin33801b92018-03-06 17:36:37 +0800958
959 /*
960 * Since setting cpuctx->cgrp is conditional on the current @cgrp
961 * matching the event's cgroup, we must do this for every new event,
962 * because if the first would mismatch, the second would not try again
963 * and we would leave cpuctx->cgrp unset.
964 */
965 if (add && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -0700966 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
967
Tejun Heobe96b312017-10-28 09:49:37 -0700968 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
969 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800970 }
leilei.lin33801b92018-03-06 17:36:37 +0800971
972 if (add && ctx->nr_cgroups++)
973 return;
974 else if (!add && --ctx->nr_cgroups)
975 return;
976
977 /* no cgroup running */
978 if (!add)
979 cpuctx->cgrp = NULL;
980
981 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
982 if (add)
Song Liu07c59722020-01-22 11:50:27 -0800983 list_add(cpuctx_entry,
984 per_cpu_ptr(&cgrp_cpuctx_list, event->cpu));
leilei.lin33801b92018-03-06 17:36:37 +0800985 else
986 list_del(cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700987}
988
Stephane Eraniane5d13672011-02-14 11:20:01 +0200989#else /* !CONFIG_CGROUP_PERF */
990
991static inline bool
992perf_cgroup_match(struct perf_event *event)
993{
994 return true;
995}
996
997static inline void perf_detach_cgroup(struct perf_event *event)
998{}
999
1000static inline int is_cgroup_event(struct perf_event *event)
1001{
1002 return 0;
1003}
1004
Stephane Eraniane5d13672011-02-14 11:20:01 +02001005static inline void update_cgrp_time_from_event(struct perf_event *event)
1006{
1007}
1008
1009static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1010{
1011}
1012
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001013static inline void perf_cgroup_sched_out(struct task_struct *task,
1014 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001015{
1016}
1017
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001018static inline void perf_cgroup_sched_in(struct task_struct *prev,
1019 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001020{
1021}
1022
1023static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1024 struct perf_event_attr *attr,
1025 struct perf_event *group_leader)
1026{
1027 return -EINVAL;
1028}
1029
1030static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001031perf_cgroup_set_timestamp(struct task_struct *task,
1032 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001033{
1034}
1035
Ben Dooks (Codethink)d00dbd292019-11-06 13:25:27 +00001036static inline void
Stephane Eraniane5d13672011-02-14 11:20:01 +02001037perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1038{
1039}
1040
1041static inline void
1042perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1043{
1044}
1045
1046static inline u64 perf_cgroup_event_time(struct perf_event *event)
1047{
1048 return 0;
1049}
1050
1051static inline void
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001052list_update_cgroup_event(struct perf_event *event,
1053 struct perf_event_context *ctx, bool add)
1054{
1055}
1056
Stephane Eraniane5d13672011-02-14 11:20:01 +02001057#endif
1058
Stephane Eranian9e630202013-04-03 14:21:33 +02001059/*
1060 * set default to be dependent on timer tick just
1061 * like original code
1062 */
1063#define PERF_CPU_HRTIMER (1000 / HZ)
1064/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001065 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001066 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001067static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001068{
1069 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001070 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001071
Frederic Weisbecker16444642017-11-06 16:01:24 +01001072 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001073
1074 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001075 rotations = perf_rotate_context(cpuctx);
1076
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001077 raw_spin_lock(&cpuctx->hrtimer_lock);
1078 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001079 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001080 else
1081 cpuctx->hrtimer_active = 0;
1082 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001083
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001084 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001085}
1086
Peter Zijlstra272325c2015-04-15 11:41:58 +02001087static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001088{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001089 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001090 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001091 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001092
1093 /* no multiplexing needed for SW PMU */
1094 if (pmu->task_ctx_nr == perf_sw_context)
1095 return;
1096
Stephane Eranian62b85632013-04-03 14:21:34 +02001097 /*
1098 * check default is sane, if not set then force to
1099 * default interval (1/tick)
1100 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001101 interval = pmu->hrtimer_interval_ms;
1102 if (interval < 1)
1103 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001104
Peter Zijlstra272325c2015-04-15 11:41:58 +02001105 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001106
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001107 raw_spin_lock_init(&cpuctx->hrtimer_lock);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001108 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001109 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001110}
1111
Peter Zijlstra272325c2015-04-15 11:41:58 +02001112static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001113{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001114 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001115 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001116 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001117
1118 /* not for SW PMU */
1119 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001120 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001121
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001122 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1123 if (!cpuctx->hrtimer_active) {
1124 cpuctx->hrtimer_active = 1;
1125 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001126 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001127 }
1128 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001129
Peter Zijlstra272325c2015-04-15 11:41:58 +02001130 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001131}
1132
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001133void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001134{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001135 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1136 if (!(*count)++)
1137 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001138}
1139
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001140void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001141{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001142 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1143 if (!--(*count))
1144 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001145}
1146
Mark Rutland2fde4f92015-01-07 15:01:54 +00001147static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001148
1149/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001150 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1151 * perf_event_task_tick() are fully serialized because they're strictly cpu
1152 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1153 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001154 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001155static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001156{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001157 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001158
Frederic Weisbecker16444642017-11-06 16:01:24 +01001159 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001160
Mark Rutland2fde4f92015-01-07 15:01:54 +00001161 WARN_ON(!list_empty(&ctx->active_ctx_list));
1162
1163 list_add(&ctx->active_ctx_list, head);
1164}
1165
1166static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1167{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001168 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001169
1170 WARN_ON(list_empty(&ctx->active_ctx_list));
1171
1172 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001173}
1174
1175static void get_ctx(struct perf_event_context *ctx)
1176{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001177 refcount_inc(&ctx->refcount);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001178}
1179
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001180static void free_ctx(struct rcu_head *head)
1181{
1182 struct perf_event_context *ctx;
1183
1184 ctx = container_of(head, struct perf_event_context, rcu_head);
1185 kfree(ctx->task_ctx_data);
1186 kfree(ctx);
1187}
1188
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001189static void put_ctx(struct perf_event_context *ctx)
1190{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001191 if (refcount_dec_and_test(&ctx->refcount)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001192 if (ctx->parent_ctx)
1193 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001194 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001195 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001196 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001197 }
1198}
1199
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001200/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001201 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1202 * perf_pmu_migrate_context() we need some magic.
1203 *
1204 * Those places that change perf_event::ctx will hold both
1205 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1206 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001207 * Lock ordering is by mutex address. There are two other sites where
1208 * perf_event_context::mutex nests and those are:
1209 *
1210 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001211 * perf_event_exit_event()
1212 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001213 *
1214 * - perf_event_init_context() [ parent, 0 ]
1215 * inherit_task_group()
1216 * inherit_group()
1217 * inherit_event()
1218 * perf_event_alloc()
1219 * perf_init_event()
1220 * perf_try_init_event() [ child , 1 ]
1221 *
1222 * While it appears there is an obvious deadlock here -- the parent and child
1223 * nesting levels are inverted between the two. This is in fact safe because
1224 * life-time rules separate them. That is an exiting task cannot fork, and a
1225 * spawning task cannot (yet) exit.
1226 *
1227 * But remember that that these are parent<->child context relations, and
1228 * migration does not affect children, therefore these two orderings should not
1229 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001230 *
1231 * The change in perf_event::ctx does not affect children (as claimed above)
1232 * because the sys_perf_event_open() case will install a new event and break
1233 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1234 * concerned with cpuctx and that doesn't have children.
1235 *
1236 * The places that change perf_event::ctx will issue:
1237 *
1238 * perf_remove_from_context();
1239 * synchronize_rcu();
1240 * perf_install_in_context();
1241 *
1242 * to affect the change. The remove_from_context() + synchronize_rcu() should
1243 * quiesce the event, after which we can install it in the new location. This
1244 * means that only external vectors (perf_fops, prctl) can perturb the event
1245 * while in transit. Therefore all such accessors should also acquire
1246 * perf_event_context::mutex to serialize against this.
1247 *
1248 * However; because event->ctx can change while we're waiting to acquire
1249 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1250 * function.
1251 *
1252 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001253 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001254 * task_struct::perf_event_mutex
1255 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001256 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001257 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001258 * perf_event::mmap_mutex
1259 * mmap_sem
Alexander Shishkin18736ee2019-02-15 13:56:54 +02001260 * perf_addr_filters_head::lock
Peter Zijlstra82d94852018-01-09 13:10:30 +01001261 *
1262 * cpu_hotplug_lock
1263 * pmus_lock
1264 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001265 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001266static struct perf_event_context *
1267perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001268{
1269 struct perf_event_context *ctx;
1270
1271again:
1272 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001273 ctx = READ_ONCE(event->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001274 if (!refcount_inc_not_zero(&ctx->refcount)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001275 rcu_read_unlock();
1276 goto again;
1277 }
1278 rcu_read_unlock();
1279
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001280 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001281 if (event->ctx != ctx) {
1282 mutex_unlock(&ctx->mutex);
1283 put_ctx(ctx);
1284 goto again;
1285 }
1286
1287 return ctx;
1288}
1289
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001290static inline struct perf_event_context *
1291perf_event_ctx_lock(struct perf_event *event)
1292{
1293 return perf_event_ctx_lock_nested(event, 0);
1294}
1295
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001296static void perf_event_ctx_unlock(struct perf_event *event,
1297 struct perf_event_context *ctx)
1298{
1299 mutex_unlock(&ctx->mutex);
1300 put_ctx(ctx);
1301}
1302
1303/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001304 * This must be done under the ctx->lock, such as to serialize against
1305 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1306 * calling scheduler related locks and ctx->lock nests inside those.
1307 */
1308static __must_check struct perf_event_context *
1309unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001310{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001311 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1312
1313 lockdep_assert_held(&ctx->lock);
1314
1315 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001316 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001317 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001318
1319 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001320}
1321
Oleg Nesterov1d953112017-08-22 17:59:28 +02001322static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1323 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001324{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001325 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001326 /*
1327 * only top level events have the pid namespace they were created in
1328 */
1329 if (event->parent)
1330 event = event->parent;
1331
Oleg Nesterov1d953112017-08-22 17:59:28 +02001332 nr = __task_pid_nr_ns(p, type, event->ns);
1333 /* avoid -1 if it is idle thread or runs in another ns */
1334 if (!nr && !pid_alive(p))
1335 nr = -1;
1336 return nr;
1337}
1338
1339static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1340{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001341 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001342}
1343
1344static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1345{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001346 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001347}
1348
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001349/*
1350 * If we inherit events we want to return the parent event id
1351 * to userspace.
1352 */
1353static u64 primary_event_id(struct perf_event *event)
1354{
1355 u64 id = event->id;
1356
1357 if (event->parent)
1358 id = event->parent->id;
1359
1360 return id;
1361}
1362
1363/*
1364 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001365 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001366 * This has to cope with with the fact that until it is locked,
1367 * the context could get moved to another task.
1368 */
1369static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001370perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001371{
1372 struct perf_event_context *ctx;
1373
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001374retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001375 /*
1376 * One of the few rules of preemptible RCU is that one cannot do
1377 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001378 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001379 * rcu_read_unlock_special().
1380 *
1381 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001382 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001383 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001384 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001385 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001386 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001387 if (ctx) {
1388 /*
1389 * If this context is a clone of another, it might
1390 * get swapped for another underneath us by
1391 * perf_event_task_sched_out, though the
1392 * rcu_read_lock() protects us from any context
1393 * getting freed. Lock the context and check if it
1394 * got swapped before we could get the lock, and retry
1395 * if so. If we locked the right context, then it
1396 * can't get swapped on us any more.
1397 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001398 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001399 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001400 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001401 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001402 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001403 goto retry;
1404 }
1405
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001406 if (ctx->task == TASK_TOMBSTONE ||
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001407 !refcount_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001408 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001409 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001410 } else {
1411 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001412 }
1413 }
1414 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001415 if (!ctx)
1416 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001417 return ctx;
1418}
1419
1420/*
1421 * Get the context for a task and increment its pin_count so it
1422 * can't get swapped to another task. This also increments its
1423 * reference count so that the context can't get freed.
1424 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001425static struct perf_event_context *
1426perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001427{
1428 struct perf_event_context *ctx;
1429 unsigned long flags;
1430
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001431 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001432 if (ctx) {
1433 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001434 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001435 }
1436 return ctx;
1437}
1438
1439static void perf_unpin_context(struct perf_event_context *ctx)
1440{
1441 unsigned long flags;
1442
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001443 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001445 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001446}
1447
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001448/*
1449 * Update the record of the current time in a context.
1450 */
1451static void update_context_time(struct perf_event_context *ctx)
1452{
1453 u64 now = perf_clock();
1454
1455 ctx->time += now - ctx->timestamp;
1456 ctx->timestamp = now;
1457}
1458
Stephane Eranian41587552011-01-03 18:20:01 +02001459static u64 perf_event_time(struct perf_event *event)
1460{
1461 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001462
1463 if (is_cgroup_event(event))
1464 return perf_cgroup_event_time(event);
1465
Stephane Eranian41587552011-01-03 18:20:01 +02001466 return ctx ? ctx->time : 0;
1467}
1468
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001469static enum event_type_t get_event_type(struct perf_event *event)
1470{
1471 struct perf_event_context *ctx = event->ctx;
1472 enum event_type_t event_type;
1473
1474 lockdep_assert_held(&ctx->lock);
1475
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001476 /*
1477 * It's 'group type', really, because if our group leader is
1478 * pinned, so are we.
1479 */
1480 if (event->group_leader != event)
1481 event = event->group_leader;
1482
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001483 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1484 if (!ctx->task)
1485 event_type |= EVENT_CPU;
1486
1487 return event_type;
1488}
1489
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001490/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001491 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001492 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001493static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001494{
1495 RB_CLEAR_NODE(&event->group_node);
1496 event->group_index = 0;
1497}
1498
1499/*
1500 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001501 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001502 */
1503static struct perf_event_groups *
1504get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001505{
1506 if (event->attr.pinned)
1507 return &ctx->pinned_groups;
1508 else
1509 return &ctx->flexible_groups;
1510}
1511
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001512/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001513 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001514 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001515static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001516{
1517 groups->tree = RB_ROOT;
1518 groups->index = 0;
1519}
1520
1521/*
1522 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001523 *
1524 * Implements complex key that first sorts by CPU and then by virtual index
1525 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001526 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001527static bool
1528perf_event_groups_less(struct perf_event *left, struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001529{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001530 if (left->cpu < right->cpu)
1531 return true;
1532 if (left->cpu > right->cpu)
1533 return false;
1534
1535 if (left->group_index < right->group_index)
1536 return true;
1537 if (left->group_index > right->group_index)
1538 return false;
1539
1540 return false;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001541}
1542
1543/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001544 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1545 * key (see perf_event_groups_less). This places it last inside the CPU
1546 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001547 */
1548static void
1549perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001550 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001551{
1552 struct perf_event *node_event;
1553 struct rb_node *parent;
1554 struct rb_node **node;
1555
1556 event->group_index = ++groups->index;
1557
1558 node = &groups->tree.rb_node;
1559 parent = *node;
1560
1561 while (*node) {
1562 parent = *node;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001563 node_event = container_of(*node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001564
1565 if (perf_event_groups_less(event, node_event))
1566 node = &parent->rb_left;
1567 else
1568 node = &parent->rb_right;
1569 }
1570
1571 rb_link_node(&event->group_node, parent, node);
1572 rb_insert_color(&event->group_node, &groups->tree);
1573}
1574
1575/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001576 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001577 */
1578static void
1579add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1580{
1581 struct perf_event_groups *groups;
1582
1583 groups = get_event_groups(event, ctx);
1584 perf_event_groups_insert(groups, event);
1585}
1586
1587/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001588 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001589 */
1590static void
1591perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001592 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001593{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001594 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1595 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001596
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001597 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001598 init_event_group(event);
1599}
1600
1601/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001602 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001603 */
1604static void
1605del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1606{
1607 struct perf_event_groups *groups;
1608
1609 groups = get_event_groups(event, ctx);
1610 perf_event_groups_delete(groups, event);
1611}
1612
1613/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001614 * Get the leftmost event in the @cpu subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001615 */
1616static struct perf_event *
1617perf_event_groups_first(struct perf_event_groups *groups, int cpu)
1618{
1619 struct perf_event *node_event = NULL, *match = NULL;
1620 struct rb_node *node = groups->tree.rb_node;
1621
1622 while (node) {
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001623 node_event = container_of(node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001624
1625 if (cpu < node_event->cpu) {
1626 node = node->rb_left;
1627 } else if (cpu > node_event->cpu) {
1628 node = node->rb_right;
1629 } else {
1630 match = node_event;
1631 node = node->rb_left;
1632 }
1633 }
1634
1635 return match;
1636}
1637
1638/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001639 * Like rb_entry_next_safe() for the @cpu subtree.
1640 */
1641static struct perf_event *
1642perf_event_groups_next(struct perf_event *event)
1643{
1644 struct perf_event *next;
1645
1646 next = rb_entry_safe(rb_next(&event->group_node), typeof(*event), group_node);
1647 if (next && next->cpu == event->cpu)
1648 return next;
1649
1650 return NULL;
1651}
1652
1653/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001654 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001655 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001656#define perf_event_groups_for_each(event, groups) \
1657 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1658 typeof(*event), group_node); event; \
1659 event = rb_entry_safe(rb_next(&event->group_node), \
1660 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001661
1662/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001663 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001664 * Must be called with ctx->mutex and ctx->lock held.
1665 */
1666static void
1667list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1668{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001669 lockdep_assert_held(&ctx->lock);
1670
Peter Zijlstra8a495422010-05-27 15:47:49 +02001671 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1672 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001673
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001674 event->tstamp = perf_event_time(event);
1675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001676 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001677 * If we're a stand alone event or group leader, we go to the context
1678 * list, group events are kept attached to the group so that
1679 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001681 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001682 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001683 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684 }
1685
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001686 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001687
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001688 list_add_rcu(&event->event_entry, &ctx->event_list);
1689 ctx->nr_events++;
1690 if (event->attr.inherit_stat)
1691 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001692
1693 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001694}
1695
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001696/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001697 * Initialize event state based on the perf_event_attr::disabled.
1698 */
1699static inline void perf_event__state_init(struct perf_event *event)
1700{
1701 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1702 PERF_EVENT_STATE_INACTIVE;
1703}
1704
Peter Zijlstraa7239682015-09-09 19:06:33 +02001705static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001706{
1707 int entry = sizeof(u64); /* value */
1708 int size = 0;
1709 int nr = 1;
1710
1711 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1712 size += sizeof(u64);
1713
1714 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1715 size += sizeof(u64);
1716
1717 if (event->attr.read_format & PERF_FORMAT_ID)
1718 entry += sizeof(u64);
1719
1720 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001721 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001722 size += sizeof(u64);
1723 }
1724
1725 size += entry * nr;
1726 event->read_size = size;
1727}
1728
Peter Zijlstraa7239682015-09-09 19:06:33 +02001729static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001730{
1731 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001732 u16 size = 0;
1733
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001734 if (sample_type & PERF_SAMPLE_IP)
1735 size += sizeof(data->ip);
1736
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001737 if (sample_type & PERF_SAMPLE_ADDR)
1738 size += sizeof(data->addr);
1739
1740 if (sample_type & PERF_SAMPLE_PERIOD)
1741 size += sizeof(data->period);
1742
Andi Kleenc3feedf2013-01-24 16:10:28 +01001743 if (sample_type & PERF_SAMPLE_WEIGHT)
1744 size += sizeof(data->weight);
1745
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001746 if (sample_type & PERF_SAMPLE_READ)
1747 size += event->read_size;
1748
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001749 if (sample_type & PERF_SAMPLE_DATA_SRC)
1750 size += sizeof(data->data_src.val);
1751
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001752 if (sample_type & PERF_SAMPLE_TRANSACTION)
1753 size += sizeof(data->txn);
1754
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001755 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1756 size += sizeof(data->phys_addr);
1757
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001758 event->header_size = size;
1759}
1760
Peter Zijlstraa7239682015-09-09 19:06:33 +02001761/*
1762 * Called at perf_event creation and when events are attached/detached from a
1763 * group.
1764 */
1765static void perf_event__header_size(struct perf_event *event)
1766{
1767 __perf_event_read_size(event,
1768 event->group_leader->nr_siblings);
1769 __perf_event_header_size(event, event->attr.sample_type);
1770}
1771
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001772static void perf_event__id_header_size(struct perf_event *event)
1773{
1774 struct perf_sample_data *data;
1775 u64 sample_type = event->attr.sample_type;
1776 u16 size = 0;
1777
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001778 if (sample_type & PERF_SAMPLE_TID)
1779 size += sizeof(data->tid_entry);
1780
1781 if (sample_type & PERF_SAMPLE_TIME)
1782 size += sizeof(data->time);
1783
Adrian Hunterff3d5272013-08-27 11:23:07 +03001784 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1785 size += sizeof(data->id);
1786
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001787 if (sample_type & PERF_SAMPLE_ID)
1788 size += sizeof(data->id);
1789
1790 if (sample_type & PERF_SAMPLE_STREAM_ID)
1791 size += sizeof(data->stream_id);
1792
1793 if (sample_type & PERF_SAMPLE_CPU)
1794 size += sizeof(data->cpu_entry);
1795
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001796 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001797}
1798
Peter Zijlstraa7239682015-09-09 19:06:33 +02001799static bool perf_event_validate_size(struct perf_event *event)
1800{
1801 /*
1802 * The values computed here will be over-written when we actually
1803 * attach the event.
1804 */
1805 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1806 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1807 perf_event__id_header_size(event);
1808
1809 /*
1810 * Sum the lot; should not exceed the 64k limit we have on records.
1811 * Conservative limit to allow for callchains and other variable fields.
1812 */
1813 if (event->read_size + event->header_size +
1814 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1815 return false;
1816
1817 return true;
1818}
1819
Peter Zijlstra8a495422010-05-27 15:47:49 +02001820static void perf_group_attach(struct perf_event *event)
1821{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001822 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001823
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001824 lockdep_assert_held(&event->ctx->lock);
1825
Peter Zijlstra74c33372010-10-15 11:40:29 +02001826 /*
1827 * We can have double attach due to group movement in perf_event_open.
1828 */
1829 if (event->attach_state & PERF_ATTACH_GROUP)
1830 return;
1831
Peter Zijlstra8a495422010-05-27 15:47:49 +02001832 event->attach_state |= PERF_ATTACH_GROUP;
1833
1834 if (group_leader == event)
1835 return;
1836
Peter Zijlstra652884f2015-01-23 11:20:10 +01001837 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1838
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001839 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001840
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001841 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001842 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001843
1844 perf_event__header_size(group_leader);
1845
Peter Zijlstraedb39592018-03-15 17:36:56 +01001846 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001847 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001848}
1849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001851 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001852 * Must be called with ctx->mutex and ctx->lock held.
1853 */
1854static void
1855list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1856{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001857 WARN_ON_ONCE(event->ctx != ctx);
1858 lockdep_assert_held(&ctx->lock);
1859
Peter Zijlstra8a495422010-05-27 15:47:49 +02001860 /*
1861 * We can have double detach due to exit/hot-unplug + close.
1862 */
1863 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001865
1866 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1867
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001868 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870 ctx->nr_events--;
1871 if (event->attr.inherit_stat)
1872 ctx->nr_stat--;
1873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001874 list_del_rcu(&event->event_entry);
1875
Peter Zijlstra8a495422010-05-27 15:47:49 +02001876 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001877 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001878
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001879 /*
1880 * If event was in error state, then keep it
1881 * that way, otherwise bogus counts will be
1882 * returned on read(). The only way to get out
1883 * of error state is by explicit re-enabling
1884 * of the event
1885 */
1886 if (event->state > PERF_EVENT_STATE_OFF)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001887 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001888
1889 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001890}
1891
Alexander Shishkinab437622019-08-06 11:46:00 +03001892static int
1893perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
1894{
1895 if (!has_aux(aux_event))
1896 return 0;
1897
1898 if (!event->pmu->aux_output_match)
1899 return 0;
1900
1901 return event->pmu->aux_output_match(aux_event);
1902}
1903
1904static void put_event(struct perf_event *event);
1905static void event_sched_out(struct perf_event *event,
1906 struct perf_cpu_context *cpuctx,
1907 struct perf_event_context *ctx);
1908
1909static void perf_put_aux_event(struct perf_event *event)
1910{
1911 struct perf_event_context *ctx = event->ctx;
1912 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1913 struct perf_event *iter;
1914
1915 /*
1916 * If event uses aux_event tear down the link
1917 */
1918 if (event->aux_event) {
1919 iter = event->aux_event;
1920 event->aux_event = NULL;
1921 put_event(iter);
1922 return;
1923 }
1924
1925 /*
1926 * If the event is an aux_event, tear down all links to
1927 * it from other events.
1928 */
1929 for_each_sibling_event(iter, event->group_leader) {
1930 if (iter->aux_event != event)
1931 continue;
1932
1933 iter->aux_event = NULL;
1934 put_event(event);
1935
1936 /*
1937 * If it's ACTIVE, schedule it out and put it into ERROR
1938 * state so that we don't try to schedule it again. Note
1939 * that perf_event_enable() will clear the ERROR status.
1940 */
1941 event_sched_out(iter, cpuctx, ctx);
1942 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
1943 }
1944}
1945
Alexander Shishkina4faf002019-10-25 17:08:33 +03001946static bool perf_need_aux_event(struct perf_event *event)
1947{
1948 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
1949}
1950
Alexander Shishkinab437622019-08-06 11:46:00 +03001951static int perf_get_aux_event(struct perf_event *event,
1952 struct perf_event *group_leader)
1953{
1954 /*
1955 * Our group leader must be an aux event if we want to be
1956 * an aux_output. This way, the aux event will precede its
1957 * aux_output events in the group, and therefore will always
1958 * schedule first.
1959 */
1960 if (!group_leader)
1961 return 0;
1962
Alexander Shishkina4faf002019-10-25 17:08:33 +03001963 /*
1964 * aux_output and aux_sample_size are mutually exclusive.
1965 */
1966 if (event->attr.aux_output && event->attr.aux_sample_size)
1967 return 0;
1968
1969 if (event->attr.aux_output &&
1970 !perf_aux_output_match(event, group_leader))
1971 return 0;
1972
1973 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
Alexander Shishkinab437622019-08-06 11:46:00 +03001974 return 0;
1975
1976 if (!atomic_long_inc_not_zero(&group_leader->refcount))
1977 return 0;
1978
1979 /*
1980 * Link aux_outputs to their aux event; this is undone in
1981 * perf_group_detach() by perf_put_aux_event(). When the
1982 * group in torn down, the aux_output events loose their
1983 * link to the aux_event and can't schedule any more.
1984 */
1985 event->aux_event = group_leader;
1986
1987 return 1;
1988}
1989
Peter Zijlstraab6f8242019-08-07 11:17:00 +02001990static inline struct list_head *get_event_list(struct perf_event *event)
1991{
1992 struct perf_event_context *ctx = event->ctx;
1993 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
1994}
1995
Peter Zijlstra8a495422010-05-27 15:47:49 +02001996static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001997{
1998 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01001999 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002000
Peter Zijlstra66681282017-11-13 14:28:38 +01002001 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002002
Peter Zijlstra8a495422010-05-27 15:47:49 +02002003 /*
2004 * We can have double detach due to exit/hot-unplug + close.
2005 */
2006 if (!(event->attach_state & PERF_ATTACH_GROUP))
2007 return;
2008
2009 event->attach_state &= ~PERF_ATTACH_GROUP;
2010
Alexander Shishkinab437622019-08-06 11:46:00 +03002011 perf_put_aux_event(event);
2012
Peter Zijlstra8a495422010-05-27 15:47:49 +02002013 /*
2014 * If this is a sibling, remove it from its group.
2015 */
2016 if (event->group_leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002017 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002018 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002019 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02002020 }
2021
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022 /*
2023 * If this was a group event with sibling events then
2024 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002025 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002026 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002027 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002028
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002029 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002030 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002031
2032 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002033 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002034
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002035 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002036 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002037
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002038 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2039 list_add_tail(&sibling->active_list, get_event_list(sibling));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002040 }
2041
Peter Zijlstra652884f2015-01-23 11:20:10 +01002042 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002043 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002044
2045out:
2046 perf_event__header_size(event->group_leader);
2047
Peter Zijlstraedb39592018-03-15 17:36:56 +01002048 for_each_sibling_event(tmp, event->group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002049 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002050}
2051
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002052static bool is_orphaned_event(struct perf_event *event)
2053{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002054 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002055}
2056
Mark Rutland2c81a642016-06-14 16:10:41 +01002057static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002058{
2059 struct pmu *pmu = event->pmu;
2060 return pmu->filter_match ? pmu->filter_match(event) : 1;
2061}
2062
Mark Rutland2c81a642016-06-14 16:10:41 +01002063/*
2064 * Check whether we should attempt to schedule an event group based on
2065 * PMU-specific filtering. An event group can consist of HW and SW events,
2066 * potentially with a SW leader, so we must check all the filters, to
2067 * determine whether a group is schedulable:
2068 */
2069static inline int pmu_filter_match(struct perf_event *event)
2070{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002071 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002072
2073 if (!__pmu_filter_match(event))
2074 return 0;
2075
Peter Zijlstraedb39592018-03-15 17:36:56 +01002076 for_each_sibling_event(sibling, event) {
2077 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002078 return 0;
2079 }
2080
2081 return 1;
2082}
2083
Stephane Eranianfa66f072010-08-26 16:40:01 +02002084static inline int
2085event_filter_match(struct perf_event *event)
2086{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002087 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2088 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002089}
2090
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002091static void
2092event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002093 struct perf_cpu_context *cpuctx,
2094 struct perf_event_context *ctx)
2095{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002096 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002097
2098 WARN_ON_ONCE(event->ctx != ctx);
2099 lockdep_assert_held(&ctx->lock);
2100
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002101 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002102 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103
Peter Zijlstra66681282017-11-13 14:28:38 +01002104 /*
2105 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2106 * we can schedule events _OUT_ individually through things like
2107 * __perf_remove_from_context().
2108 */
2109 list_del_init(&event->active_list);
2110
Alexander Shishkin44377272013-12-16 14:17:36 +02002111 perf_pmu_disable(event->pmu);
2112
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002113 event->pmu->del(event, 0);
2114 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002115
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002116 if (READ_ONCE(event->pending_disable) >= 0) {
2117 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002118 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002119 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002120 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002121
2122 if (!is_software_event(event))
2123 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002124 if (!--ctx->nr_active)
2125 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002126 if (event->attr.freq && event->attr.sample_freq)
2127 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002128 if (event->attr.exclusive || !cpuctx->active_oncpu)
2129 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002130
2131 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132}
2133
2134static void
2135group_sched_out(struct perf_event *group_event,
2136 struct perf_cpu_context *cpuctx,
2137 struct perf_event_context *ctx)
2138{
2139 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002140
2141 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2142 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143
Mark Rutland3f005e72016-07-26 18:12:21 +01002144 perf_pmu_disable(ctx->pmu);
2145
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146 event_sched_out(group_event, cpuctx, ctx);
2147
2148 /*
2149 * Schedule out siblings (if any):
2150 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002151 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002152 event_sched_out(event, cpuctx, ctx);
2153
Mark Rutland3f005e72016-07-26 18:12:21 +01002154 perf_pmu_enable(ctx->pmu);
2155
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002156 if (group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002157 cpuctx->exclusive = 0;
2158}
2159
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002160#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002162/*
2163 * Cross CPU call to remove a performance event
2164 *
2165 * We disable the event on the hardware level first. After that we
2166 * remove it from the context list.
2167 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002168static void
2169__perf_remove_from_context(struct perf_event *event,
2170 struct perf_cpu_context *cpuctx,
2171 struct perf_event_context *ctx,
2172 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002174 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002176 if (ctx->is_active & EVENT_TIME) {
2177 update_context_time(ctx);
2178 update_cgrp_time_from_cpuctx(cpuctx);
2179 }
2180
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002181 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002182 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002183 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002184 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002185
Peter Zijlstra39a43642016-01-11 12:46:35 +01002186 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002187 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002188 if (ctx->task) {
2189 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2190 cpuctx->task_ctx = NULL;
2191 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002192 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002193}
2194
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002195/*
2196 * Remove the event from a task's (or a CPU's) list of events.
2197 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198 * If event->ctx is a cloned context, callers must make sure that
2199 * every task struct that event->ctx->task could possibly point to
2200 * remains valid. This is OK when called from perf_release since
2201 * that only calls us on the top-level context, which can't be a clone.
2202 * When called from perf_event_exit_task, it's OK because the
2203 * context has been detached from its task.
2204 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002205static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002206{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002207 struct perf_event_context *ctx = event->ctx;
2208
2209 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002210
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002211 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002212
2213 /*
2214 * The above event_function_call() can NO-OP when it hits
2215 * TASK_TOMBSTONE. In that case we must already have been detached
2216 * from the context (by perf_event_exit_event()) but the grouping
2217 * might still be in-tact.
2218 */
2219 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
2220 if ((flags & DETACH_GROUP) &&
2221 (event->attach_state & PERF_ATTACH_GROUP)) {
2222 /*
2223 * Since in that case we cannot possibly be scheduled, simply
2224 * detach now.
2225 */
2226 raw_spin_lock_irq(&ctx->lock);
2227 perf_group_detach(event);
2228 raw_spin_unlock_irq(&ctx->lock);
2229 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002230}
2231
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002232/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233 * Cross CPU call to disable a performance event
2234 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002235static void __perf_event_disable(struct perf_event *event,
2236 struct perf_cpu_context *cpuctx,
2237 struct perf_event_context *ctx,
2238 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002239{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002240 if (event->state < PERF_EVENT_STATE_INACTIVE)
2241 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002242
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002243 if (ctx->is_active & EVENT_TIME) {
2244 update_context_time(ctx);
2245 update_cgrp_time_from_event(event);
2246 }
2247
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002248 if (event == event->group_leader)
2249 group_sched_out(event, cpuctx, ctx);
2250 else
2251 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002252
2253 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002254}
2255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002256/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002257 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258 *
2259 * If event->ctx is a cloned context, callers must make sure that
2260 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002261 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002262 * perf_event_for_each_child or perf_event_for_each because they
2263 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002264 * goes to exit will block in perf_event_exit_event().
2265 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002266 * When called from perf_pending_event it's OK because event->ctx
2267 * is the current context on this CPU and preemption is disabled,
2268 * hence we can't get into perf_event_task_sched_out for this context.
2269 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002270static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002271{
2272 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002273
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002274 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002275 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002276 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002277 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002279 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002280
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002281 event_function_call(event, __perf_event_disable, NULL);
2282}
2283
2284void perf_event_disable_local(struct perf_event *event)
2285{
2286 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002287}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002288
2289/*
2290 * Strictly speaking kernel users cannot create groups and therefore this
2291 * interface does not need the perf_event_ctx_lock() magic.
2292 */
2293void perf_event_disable(struct perf_event *event)
2294{
2295 struct perf_event_context *ctx;
2296
2297 ctx = perf_event_ctx_lock(event);
2298 _perf_event_disable(event);
2299 perf_event_ctx_unlock(event, ctx);
2300}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002301EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002302
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002303void perf_event_disable_inatomic(struct perf_event *event)
2304{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002305 WRITE_ONCE(event->pending_disable, smp_processor_id());
2306 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002307 irq_work_queue(&event->pending);
2308}
2309
Stephane Eraniane5d13672011-02-14 11:20:01 +02002310static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002311 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002312{
2313 /*
2314 * use the correct time source for the time snapshot
2315 *
2316 * We could get by without this by leveraging the
2317 * fact that to get to this function, the caller
2318 * has most likely already called update_context_time()
2319 * and update_cgrp_time_xx() and thus both timestamp
2320 * are identical (or very close). Given that tstamp is,
2321 * already adjusted for cgroup, we could say that:
2322 * tstamp - ctx->timestamp
2323 * is equivalent to
2324 * tstamp - cgrp->timestamp.
2325 *
2326 * Then, in perf_output_read(), the calculation would
2327 * work with no changes because:
2328 * - event is guaranteed scheduled in
2329 * - no scheduled out in between
2330 * - thus the timestamp would be the same
2331 *
2332 * But this is a bit hairy.
2333 *
2334 * So instead, we have an explicit cgroup call to remain
2335 * within the time time source all along. We believe it
2336 * is cleaner and simpler to understand.
2337 */
2338 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002339 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002340 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002341 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002342}
2343
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002344#define MAX_INTERRUPTS (~0ULL)
2345
2346static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002347static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002348
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002349static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002350event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002351 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002352 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002353{
Alexander Shishkin44377272013-12-16 14:17:36 +02002354 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002355
Peter Zijlstraab6f8242019-08-07 11:17:00 +02002356 WARN_ON_ONCE(event->ctx != ctx);
2357
Peter Zijlstra63342412014-05-05 11:49:16 +02002358 lockdep_assert_held(&ctx->lock);
2359
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360 if (event->state <= PERF_EVENT_STATE_OFF)
2361 return 0;
2362
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002363 WRITE_ONCE(event->oncpu, smp_processor_id());
2364 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002365 * Order event::oncpu write to happen before the ACTIVE state is
2366 * visible. This allows perf_event_{stop,read}() to observe the correct
2367 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002368 */
2369 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002370 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002371
2372 /*
2373 * Unthrottle events, since we scheduled we might have missed several
2374 * ticks already, also for a heavily scheduling task there is little
2375 * guarantee it'll get a tick in a timely manner.
2376 */
2377 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2378 perf_log_throttle(event, 1);
2379 event->hw.interrupts = 0;
2380 }
2381
Alexander Shishkin44377272013-12-16 14:17:36 +02002382 perf_pmu_disable(event->pmu);
2383
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002384 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002385
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002386 perf_log_itrace_start(event);
2387
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002388 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002389 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002390 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002391 ret = -EAGAIN;
2392 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002393 }
2394
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002395 if (!is_software_event(event))
2396 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002397 if (!ctx->nr_active++)
2398 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002399 if (event->attr.freq && event->attr.sample_freq)
2400 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002401
2402 if (event->attr.exclusive)
2403 cpuctx->exclusive = 1;
2404
Alexander Shishkin44377272013-12-16 14:17:36 +02002405out:
2406 perf_pmu_enable(event->pmu);
2407
2408 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002409}
2410
2411static int
2412group_sched_in(struct perf_event *group_event,
2413 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002414 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002415{
Lin Ming6bde9b62010-04-23 13:56:00 +08002416 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002417 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002418
2419 if (group_event->state == PERF_EVENT_STATE_OFF)
2420 return 0;
2421
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002422 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002423
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002424 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002425 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002426 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002427 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002428 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429
2430 /*
2431 * Schedule in siblings as one group (if any):
2432 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002433 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002434 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002435 partial_group = event;
2436 goto group_error;
2437 }
2438 }
2439
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002440 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002441 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443group_error:
2444 /*
2445 * Groups can be scheduled in as one unit only, so undo any
2446 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002447 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002448 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002449 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002450 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002451 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002452
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002453 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002454 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002455 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002456
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002457 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002458
Peter Zijlstra272325c2015-04-15 11:41:58 +02002459 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002460
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002461 return -EAGAIN;
2462}
2463
2464/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002465 * Work out whether we can put this event group on the CPU now.
2466 */
2467static int group_can_go_on(struct perf_event *event,
2468 struct perf_cpu_context *cpuctx,
2469 int can_add_hw)
2470{
2471 /*
2472 * Groups consisting entirely of software events can always go on.
2473 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002474 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002475 return 1;
2476 /*
2477 * If an exclusive group is already on, no other hardware
2478 * events can go on.
2479 */
2480 if (cpuctx->exclusive)
2481 return 0;
2482 /*
2483 * If this group is exclusive and there are already
2484 * events on the CPU, it can't go on.
2485 */
2486 if (event->attr.exclusive && cpuctx->active_oncpu)
2487 return 0;
2488 /*
2489 * Otherwise, try to add it if all previous groups were able
2490 * to go on.
2491 */
2492 return can_add_hw;
2493}
2494
2495static void add_event_to_ctx(struct perf_event *event,
2496 struct perf_event_context *ctx)
2497{
2498 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002499 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002500}
2501
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002502static void ctx_sched_out(struct perf_event_context *ctx,
2503 struct perf_cpu_context *cpuctx,
2504 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002505static void
2506ctx_sched_in(struct perf_event_context *ctx,
2507 struct perf_cpu_context *cpuctx,
2508 enum event_type_t event_type,
2509 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002510
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002511static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002512 struct perf_event_context *ctx,
2513 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002514{
2515 if (!cpuctx->task_ctx)
2516 return;
2517
2518 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2519 return;
2520
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002521 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002522}
2523
Peter Zijlstradce58552011-04-09 21:17:46 +02002524static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2525 struct perf_event_context *ctx,
2526 struct task_struct *task)
2527{
2528 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2529 if (ctx)
2530 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2531 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2532 if (ctx)
2533 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2534}
2535
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002536/*
2537 * We want to maintain the following priority of scheduling:
2538 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2539 * - task pinned (EVENT_PINNED)
2540 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2541 * - task flexible (EVENT_FLEXIBLE).
2542 *
2543 * In order to avoid unscheduling and scheduling back in everything every
2544 * time an event is added, only do it for the groups of equal priority and
2545 * below.
2546 *
2547 * This can be called after a batch operation on task events, in which case
2548 * event_type is a bit mask of the types of events involved. For CPU events,
2549 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2550 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002551static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002552 struct perf_event_context *task_ctx,
2553 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002554{
Song Liubd903af2018-03-05 21:55:04 -08002555 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002556 bool cpu_event = !!(event_type & EVENT_CPU);
2557
2558 /*
2559 * If pinned groups are involved, flexible groups also need to be
2560 * scheduled out.
2561 */
2562 if (event_type & EVENT_PINNED)
2563 event_type |= EVENT_FLEXIBLE;
2564
Song Liubd903af2018-03-05 21:55:04 -08002565 ctx_event_type = event_type & EVENT_ALL;
2566
Peter Zijlstra3e349502016-01-08 10:01:18 +01002567 perf_pmu_disable(cpuctx->ctx.pmu);
2568 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002569 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2570
2571 /*
2572 * Decide which cpu ctx groups to schedule out based on the types
2573 * of events that caused rescheduling:
2574 * - EVENT_CPU: schedule out corresponding groups;
2575 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2576 * - otherwise, do nothing more.
2577 */
2578 if (cpu_event)
2579 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2580 else if (ctx_event_type & EVENT_PINNED)
2581 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2582
Peter Zijlstra3e349502016-01-08 10:01:18 +01002583 perf_event_sched_in(cpuctx, task_ctx, current);
2584 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002585}
2586
Stephane Eranianc68d2242019-04-08 10:32:51 -07002587void perf_pmu_resched(struct pmu *pmu)
2588{
2589 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2590 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2591
2592 perf_ctx_lock(cpuctx, task_ctx);
2593 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2594 perf_ctx_unlock(cpuctx, task_ctx);
2595}
2596
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002597/*
2598 * Cross CPU call to install and enable a performance event
2599 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002600 * Very similar to remote_function() + event_function() but cannot assume that
2601 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002602 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002603static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002604{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002605 struct perf_event *event = info;
2606 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002607 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002608 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002609 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002610 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002611
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002612 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002613 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002614 raw_spin_lock(&ctx->lock);
2615 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002616
Peter Zijlstra63cae122016-12-09 14:59:00 +01002617 reprogram = (ctx->task == current);
2618
2619 /*
2620 * If the task is running, it must be running on this CPU,
2621 * otherwise we cannot reprogram things.
2622 *
2623 * If its not running, we don't care, ctx->lock will
2624 * serialize against it becoming runnable.
2625 */
2626 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002627 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002628 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002629 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002630
Peter Zijlstra63cae122016-12-09 14:59:00 +01002631 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002632 } else if (task_ctx) {
2633 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002634 }
2635
leilei.lin33801b92018-03-06 17:36:37 +08002636#ifdef CONFIG_CGROUP_PERF
2637 if (is_cgroup_event(event)) {
2638 /*
2639 * If the current cgroup doesn't match the event's
2640 * cgroup, we should not try to schedule it.
2641 */
2642 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2643 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2644 event->cgrp->css.cgroup);
2645 }
2646#endif
2647
Peter Zijlstra63cae122016-12-09 14:59:00 +01002648 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002649 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2650 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002651 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002652 } else {
2653 add_event_to_ctx(event, ctx);
2654 }
2655
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002656unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002657 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002658
Peter Zijlstraa0963092016-02-24 18:45:50 +01002659 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660}
2661
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002662static bool exclusive_event_installable(struct perf_event *event,
2663 struct perf_event_context *ctx);
2664
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002665/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002666 * Attach a performance event to a context.
2667 *
2668 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002669 */
2670static void
2671perf_install_in_context(struct perf_event_context *ctx,
2672 struct perf_event *event,
2673 int cpu)
2674{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002675 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002676
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002677 lockdep_assert_held(&ctx->mutex);
2678
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002679 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2680
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002681 if (event->cpu != -1)
2682 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002683
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002684 /*
2685 * Ensures that if we can observe event->ctx, both the event and ctx
2686 * will be 'complete'. See perf_iterate_sb_cpu().
2687 */
2688 smp_store_release(&event->ctx, ctx);
2689
Peter Zijlstradb0503e2019-10-21 16:02:39 +02002690 /*
2691 * perf_event_attr::disabled events will not run and can be initialized
2692 * without IPI. Except when this is the first event for the context, in
2693 * that case we need the magic of the IPI to set ctx->is_active.
2694 *
2695 * The IOC_ENABLE that is sure to follow the creation of a disabled
2696 * event will issue the IPI and reprogram the hardware.
2697 */
2698 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && ctx->nr_events) {
2699 raw_spin_lock_irq(&ctx->lock);
2700 if (ctx->task == TASK_TOMBSTONE) {
2701 raw_spin_unlock_irq(&ctx->lock);
2702 return;
2703 }
2704 add_event_to_ctx(event, ctx);
2705 raw_spin_unlock_irq(&ctx->lock);
2706 return;
2707 }
2708
Peter Zijlstraa0963092016-02-24 18:45:50 +01002709 if (!task) {
2710 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002711 return;
2712 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002713
Peter Zijlstraa0963092016-02-24 18:45:50 +01002714 /*
2715 * Should not happen, we validate the ctx is still alive before calling.
2716 */
2717 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2718 return;
2719
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720 /*
2721 * Installing events is tricky because we cannot rely on ctx->is_active
2722 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002723 *
2724 * Instead we use task_curr(), which tells us if the task is running.
2725 * However, since we use task_curr() outside of rq::lock, we can race
2726 * against the actual state. This means the result can be wrong.
2727 *
2728 * If we get a false positive, we retry, this is harmless.
2729 *
2730 * If we get a false negative, things are complicated. If we are after
2731 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2732 * value must be correct. If we're before, it doesn't matter since
2733 * perf_event_context_sched_in() will program the counter.
2734 *
2735 * However, this hinges on the remote context switch having observed
2736 * our task->perf_event_ctxp[] store, such that it will in fact take
2737 * ctx::lock in perf_event_context_sched_in().
2738 *
2739 * We do this by task_function_call(), if the IPI fails to hit the task
2740 * we know any future context switch of task must see the
2741 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002742 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002743
Peter Zijlstraa0963092016-02-24 18:45:50 +01002744 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002745 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2746 * task_cpu() load, such that if the IPI then does not find the task
2747 * running, a future context switch of that task must observe the
2748 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002749 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002750 smp_mb();
2751again:
2752 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002753 return;
2754
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002755 raw_spin_lock_irq(&ctx->lock);
2756 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002757 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2758 /*
2759 * Cannot happen because we already checked above (which also
2760 * cannot happen), and we hold ctx->mutex, which serializes us
2761 * against perf_event_exit_task_context().
2762 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002763 raw_spin_unlock_irq(&ctx->lock);
2764 return;
2765 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002766 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002767 * If the task is not running, ctx->lock will avoid it becoming so,
2768 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002769 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002770 if (task_curr(task)) {
2771 raw_spin_unlock_irq(&ctx->lock);
2772 goto again;
2773 }
2774 add_event_to_ctx(event, ctx);
2775 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002776}
2777
2778/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002779 * Cross CPU call to enable a performance event
2780 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002781static void __perf_event_enable(struct perf_event *event,
2782 struct perf_cpu_context *cpuctx,
2783 struct perf_event_context *ctx,
2784 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002785{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002786 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002787 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002788
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002789 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2790 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002791 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002792
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002793 if (ctx->is_active)
2794 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2795
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002796 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002797
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002798 if (!ctx->is_active)
2799 return;
2800
Stephane Eraniane5d13672011-02-14 11:20:01 +02002801 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002802 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002803 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002804 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002805
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002806 /*
2807 * If the event is in a group and isn't the group leader,
2808 * then don't put it on unless the group is on.
2809 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002810 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2811 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002812 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002813 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002815 task_ctx = cpuctx->task_ctx;
2816 if (ctx->task)
2817 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002818
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002819 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002820}
2821
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002822/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002823 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002824 *
2825 * If event->ctx is a cloned context, callers must make sure that
2826 * every task struct that event->ctx->task could possibly point to
2827 * remains valid. This condition is satisfied when called through
2828 * perf_event_for_each_child or perf_event_for_each as described
2829 * for perf_event_disable.
2830 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002831static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002832{
2833 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002834
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002835 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002836 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2837 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002838 raw_spin_unlock_irq(&ctx->lock);
2839 return;
2840 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002841
2842 /*
2843 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002844 *
2845 * That way, if we see the event in error state below, we know that it
2846 * has gone back into error state, as distinct from the task having
2847 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848 */
2849 if (event->state == PERF_EVENT_STATE_ERROR)
2850 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002851 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002852
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002853 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002854}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002855
2856/*
2857 * See perf_event_disable();
2858 */
2859void perf_event_enable(struct perf_event *event)
2860{
2861 struct perf_event_context *ctx;
2862
2863 ctx = perf_event_ctx_lock(event);
2864 _perf_event_enable(event);
2865 perf_event_ctx_unlock(event, ctx);
2866}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002867EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868
Alexander Shishkin375637b2016-04-27 18:44:46 +03002869struct stop_event_data {
2870 struct perf_event *event;
2871 unsigned int restart;
2872};
2873
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002874static int __perf_event_stop(void *info)
2875{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002876 struct stop_event_data *sd = info;
2877 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002878
Alexander Shishkin375637b2016-04-27 18:44:46 +03002879 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002880 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2881 return 0;
2882
2883 /* matches smp_wmb() in event_sched_in() */
2884 smp_rmb();
2885
2886 /*
2887 * There is a window with interrupts enabled before we get here,
2888 * so we need to check again lest we try to stop another CPU's event.
2889 */
2890 if (READ_ONCE(event->oncpu) != smp_processor_id())
2891 return -EAGAIN;
2892
2893 event->pmu->stop(event, PERF_EF_UPDATE);
2894
Alexander Shishkin375637b2016-04-27 18:44:46 +03002895 /*
2896 * May race with the actual stop (through perf_pmu_output_stop()),
2897 * but it is only used for events with AUX ring buffer, and such
2898 * events will refuse to restart because of rb::aux_mmap_count==0,
2899 * see comments in perf_aux_output_begin().
2900 *
Tobias Tefke788faab2018-07-09 12:57:15 +02002901 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03002902 * while restarting.
2903 */
2904 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002905 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002906
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002907 return 0;
2908}
2909
Alexander Shishkin767ae082016-09-06 16:23:49 +03002910static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002911{
2912 struct stop_event_data sd = {
2913 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002914 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002915 };
2916 int ret = 0;
2917
2918 do {
2919 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2920 return 0;
2921
2922 /* matches smp_wmb() in event_sched_in() */
2923 smp_rmb();
2924
2925 /*
2926 * We only want to restart ACTIVE events, so if the event goes
2927 * inactive here (event->oncpu==-1), there's nothing more to do;
2928 * fall through with ret==-ENXIO.
2929 */
2930 ret = cpu_function_call(READ_ONCE(event->oncpu),
2931 __perf_event_stop, &sd);
2932 } while (ret == -EAGAIN);
2933
2934 return ret;
2935}
2936
2937/*
2938 * In order to contain the amount of racy and tricky in the address filter
2939 * configuration management, it is a two part process:
2940 *
2941 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2942 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02002943 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03002944 * (p2) when an event is scheduled in (pmu::add), it calls
2945 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2946 * if the generation has changed since the previous call.
2947 *
2948 * If (p1) happens while the event is active, we restart it to force (p2).
2949 *
2950 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2951 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2952 * ioctl;
2953 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2954 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2955 * for reading;
2956 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2957 * of exec.
2958 */
2959void perf_event_addr_filters_sync(struct perf_event *event)
2960{
2961 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2962
2963 if (!has_addr_filter(event))
2964 return;
2965
2966 raw_spin_lock(&ifh->lock);
2967 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2968 event->pmu->addr_filters_sync(event);
2969 event->hw.addr_filters_gen = event->addr_filters_gen;
2970 }
2971 raw_spin_unlock(&ifh->lock);
2972}
2973EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2974
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002975static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002976{
2977 /*
2978 * not supported on inherited events
2979 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002980 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002981 return -EINVAL;
2982
2983 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002984 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985
2986 return 0;
2987}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002988
2989/*
2990 * See perf_event_disable()
2991 */
2992int perf_event_refresh(struct perf_event *event, int refresh)
2993{
2994 struct perf_event_context *ctx;
2995 int ret;
2996
2997 ctx = perf_event_ctx_lock(event);
2998 ret = _perf_event_refresh(event, refresh);
2999 perf_event_ctx_unlock(event, ctx);
3000
3001 return ret;
3002}
Avi Kivity26ca5c12011-06-29 18:42:37 +03003003EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003004
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003005static int perf_event_modify_breakpoint(struct perf_event *bp,
3006 struct perf_event_attr *attr)
3007{
3008 int err;
3009
3010 _perf_event_disable(bp);
3011
3012 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003013
Jiri Olsabf062782018-08-27 11:12:28 +02003014 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003015 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02003016
3017 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01003018}
3019
3020static int perf_event_modify_attr(struct perf_event *event,
3021 struct perf_event_attr *attr)
3022{
3023 if (event->attr.type != attr->type)
3024 return -EINVAL;
3025
3026 switch (event->attr.type) {
3027 case PERF_TYPE_BREAKPOINT:
3028 return perf_event_modify_breakpoint(event, attr);
3029 default:
3030 /* Place holder for future additions. */
3031 return -EOPNOTSUPP;
3032 }
3033}
3034
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003035static void ctx_sched_out(struct perf_event_context *ctx,
3036 struct perf_cpu_context *cpuctx,
3037 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003038{
Peter Zijlstra66681282017-11-13 14:28:38 +01003039 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003040 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003041
3042 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003043
Peter Zijlstra39a43642016-01-11 12:46:35 +01003044 if (likely(!ctx->nr_events)) {
3045 /*
3046 * See __perf_remove_from_context().
3047 */
3048 WARN_ON_ONCE(ctx->is_active);
3049 if (ctx->task)
3050 WARN_ON_ONCE(cpuctx->task_ctx);
3051 return;
3052 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003053
Peter Zijlstradb24d332011-04-09 21:17:45 +02003054 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003055 if (!(ctx->is_active & EVENT_ALL))
3056 ctx->is_active = 0;
3057
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003058 if (ctx->task) {
3059 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3060 if (!ctx->is_active)
3061 cpuctx->task_ctx = NULL;
3062 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003063
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003064 /*
3065 * Always update time if it was set; not only when it changes.
3066 * Otherwise we can 'forget' to update time for any but the last
3067 * context we sched out. For example:
3068 *
3069 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3070 * ctx_sched_out(.event_type = EVENT_PINNED)
3071 *
3072 * would only update time for the pinned events.
3073 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003074 if (is_active & EVENT_TIME) {
3075 /* update (and stop) ctx time */
3076 update_context_time(ctx);
3077 update_cgrp_time_from_cpuctx(cpuctx);
3078 }
3079
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003080 is_active ^= ctx->is_active; /* changed bits */
3081
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003082 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003083 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003084
Ian Rogersfd7d5512019-06-01 01:27:22 -07003085 /*
3086 * If we had been multiplexing, no rotations are necessary, now no events
3087 * are active.
3088 */
3089 ctx->rotate_necessary = 0;
3090
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003091 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003092 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003093 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003094 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003095 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003096
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003097 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003098 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003099 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003100 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003101 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102}
3103
3104/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003105 * Test whether two contexts are equivalent, i.e. whether they have both been
3106 * cloned from the same version of the same context.
3107 *
3108 * Equivalence is measured using a generation number in the context that is
3109 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3110 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111 */
3112static int context_equiv(struct perf_event_context *ctx1,
3113 struct perf_event_context *ctx2)
3114{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003115 lockdep_assert_held(&ctx1->lock);
3116 lockdep_assert_held(&ctx2->lock);
3117
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003118 /* Pinning disables the swap optimization */
3119 if (ctx1->pin_count || ctx2->pin_count)
3120 return 0;
3121
3122 /* If ctx1 is the parent of ctx2 */
3123 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3124 return 1;
3125
3126 /* If ctx2 is the parent of ctx1 */
3127 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3128 return 1;
3129
3130 /*
3131 * If ctx1 and ctx2 have the same parent; we flatten the parent
3132 * hierarchy, see perf_event_init_context().
3133 */
3134 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3135 ctx1->parent_gen == ctx2->parent_gen)
3136 return 1;
3137
3138 /* Unmatched */
3139 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003140}
3141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003142static void __perf_event_sync_stat(struct perf_event *event,
3143 struct perf_event *next_event)
3144{
3145 u64 value;
3146
3147 if (!event->attr.inherit_stat)
3148 return;
3149
3150 /*
3151 * Update the event value, we cannot use perf_event_read()
3152 * because we're in the middle of a context switch and have IRQs
3153 * disabled, which upsets smp_call_function_single(), however
3154 * we know the event must be on the current CPU, therefore we
3155 * don't need to use it.
3156 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003157 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003158 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003159
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003160 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003161
3162 /*
3163 * In order to keep per-task stats reliable we need to flip the event
3164 * values when we flip the contexts.
3165 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003166 value = local64_read(&next_event->count);
3167 value = local64_xchg(&event->count, value);
3168 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169
3170 swap(event->total_time_enabled, next_event->total_time_enabled);
3171 swap(event->total_time_running, next_event->total_time_running);
3172
3173 /*
3174 * Since we swizzled the values, update the user visible data too.
3175 */
3176 perf_event_update_userpage(event);
3177 perf_event_update_userpage(next_event);
3178}
3179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003180static void perf_event_sync_stat(struct perf_event_context *ctx,
3181 struct perf_event_context *next_ctx)
3182{
3183 struct perf_event *event, *next_event;
3184
3185 if (!ctx->nr_stat)
3186 return;
3187
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003188 update_context_time(ctx);
3189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003190 event = list_first_entry(&ctx->event_list,
3191 struct perf_event, event_entry);
3192
3193 next_event = list_first_entry(&next_ctx->event_list,
3194 struct perf_event, event_entry);
3195
3196 while (&event->event_entry != &ctx->event_list &&
3197 &next_event->event_entry != &next_ctx->event_list) {
3198
3199 __perf_event_sync_stat(event, next_event);
3200
3201 event = list_next_entry(event, event_entry);
3202 next_event = list_next_entry(next_event, event_entry);
3203 }
3204}
3205
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003206static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3207 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003208{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003209 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003210 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003211 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003212 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003213 int do_switch = 1;
3214
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003215 if (likely(!ctx))
3216 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003217
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003218 cpuctx = __get_cpu_context(ctx);
3219 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003220 return;
3221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003222 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003223 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003224 if (!next_ctx)
3225 goto unlock;
3226
3227 parent = rcu_dereference(ctx->parent_ctx);
3228 next_parent = rcu_dereference(next_ctx->parent_ctx);
3229
3230 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003231 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003232 goto unlock;
3233
3234 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003235 /*
3236 * Looks like the two contexts are clones, so we might be
3237 * able to optimize the context switch. We lock both
3238 * contexts and check that they are clones under the
3239 * lock (including re-checking that neither has been
3240 * uncloned in the meantime). It doesn't matter which
3241 * order we take the locks because no other cpu could
3242 * be trying to lock both of these tasks.
3243 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003244 raw_spin_lock(&ctx->lock);
3245 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003246 if (context_equiv(ctx, next_ctx)) {
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003247 struct pmu *pmu = ctx->pmu;
3248
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003249 WRITE_ONCE(ctx->task, next);
3250 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003251
Alexey Budankovc2b98a82019-10-23 10:13:56 +03003252 /*
3253 * PMU specific parts of task perf context can require
3254 * additional synchronization. As an example of such
3255 * synchronization see implementation details of Intel
3256 * LBR call stack data profiling;
3257 */
3258 if (pmu->swap_task_ctx)
3259 pmu->swap_task_ctx(ctx, next_ctx);
3260 else
3261 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003262
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003263 /*
3264 * RCU_INIT_POINTER here is safe because we've not
3265 * modified the ctx and the above modification of
3266 * ctx->task and ctx->task_ctx_data are immaterial
3267 * since those values are always verified under
3268 * ctx->lock which we're now holding.
3269 */
3270 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3271 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003273 do_switch = 0;
3274
3275 perf_event_sync_stat(ctx, next_ctx);
3276 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003277 raw_spin_unlock(&next_ctx->lock);
3278 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003279 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003280unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003281 rcu_read_unlock();
3282
3283 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003284 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003285 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003286 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003287 }
3288}
3289
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003290static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3291
Yan, Zhengba532502014-11-04 21:55:58 -05003292void perf_sched_cb_dec(struct pmu *pmu)
3293{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003294 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3295
Yan, Zhengba532502014-11-04 21:55:58 -05003296 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003297
3298 if (!--cpuctx->sched_cb_usage)
3299 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003300}
3301
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003302
Yan, Zhengba532502014-11-04 21:55:58 -05003303void perf_sched_cb_inc(struct pmu *pmu)
3304{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003305 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3306
3307 if (!cpuctx->sched_cb_usage++)
3308 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3309
Yan, Zhengba532502014-11-04 21:55:58 -05003310 this_cpu_inc(perf_sched_cb_usages);
3311}
3312
3313/*
3314 * This function provides the context switch callback to the lower code
3315 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003316 *
3317 * This callback is relevant even to per-cpu events; for example multi event
3318 * PEBS requires this to provide PID/TID information. This requires we flush
3319 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003320 */
3321static void perf_pmu_sched_task(struct task_struct *prev,
3322 struct task_struct *next,
3323 bool sched_in)
3324{
3325 struct perf_cpu_context *cpuctx;
3326 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05003327
3328 if (prev == next)
3329 return;
3330
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003331 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08003332 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05003333
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003334 if (WARN_ON_ONCE(!pmu->sched_task))
3335 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05003336
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003337 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3338 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05003339
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003340 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003341
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003342 perf_pmu_enable(pmu);
3343 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003344 }
Yan, Zhengba532502014-11-04 21:55:58 -05003345}
3346
Adrian Hunter45ac1402015-07-21 12:44:02 +03003347static void perf_event_switch(struct task_struct *task,
3348 struct task_struct *next_prev, bool sched_in);
3349
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003350#define for_each_task_context_nr(ctxn) \
3351 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3352
3353/*
3354 * Called from scheduler to remove the events of the current task,
3355 * with interrupts disabled.
3356 *
3357 * We stop each event and update the event value in event->count.
3358 *
3359 * This does not protect us against NMI, but disable()
3360 * sets the disabled bit in the control field of event _before_
3361 * accessing the event control register. If a NMI hits, then it will
3362 * not restart the event.
3363 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003364void __perf_event_task_sched_out(struct task_struct *task,
3365 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003366{
3367 int ctxn;
3368
Yan, Zhengba532502014-11-04 21:55:58 -05003369 if (__this_cpu_read(perf_sched_cb_usages))
3370 perf_pmu_sched_task(task, next, false);
3371
Adrian Hunter45ac1402015-07-21 12:44:02 +03003372 if (atomic_read(&nr_switch_events))
3373 perf_event_switch(task, next, false);
3374
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003375 for_each_task_context_nr(ctxn)
3376 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003377
3378 /*
3379 * if cgroup events exist on this CPU, then we need
3380 * to check if we have to switch out PMU state.
3381 * cgroup event are system-wide mode only
3382 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003383 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003384 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003385}
3386
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387/*
3388 * Called with IRQs disabled
3389 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003390static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3391 enum event_type_t event_type)
3392{
3393 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003394}
3395
Ian Rogers6eef8a712020-02-13 23:51:30 -08003396static bool perf_less_group_idx(const void *l, const void *r)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003397{
Ian Rogers6eef8a712020-02-13 23:51:30 -08003398 const struct perf_event *le = l, *re = r;
3399
3400 return le->group_index < re->group_index;
3401}
3402
3403static void swap_ptr(void *l, void *r)
3404{
3405 void **lp = l, **rp = r;
3406
3407 swap(*lp, *rp);
3408}
3409
3410static const struct min_heap_callbacks perf_min_heap = {
3411 .elem_size = sizeof(struct perf_event *),
3412 .less = perf_less_group_idx,
3413 .swp = swap_ptr,
3414};
3415
3416static void __heap_add(struct min_heap *heap, struct perf_event *event)
3417{
3418 struct perf_event **itrs = heap->data;
3419
3420 if (event) {
3421 itrs[heap->nr] = event;
3422 heap->nr++;
3423 }
3424}
3425
Ian Rogers836196be2020-02-13 23:51:31 -08003426static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3427 struct perf_event_groups *groups, int cpu,
Ian Rogers6eef8a712020-02-13 23:51:30 -08003428 int (*func)(struct perf_event *, void *),
3429 void *data)
3430{
3431 /* Space for per CPU and/or any CPU event iterators. */
3432 struct perf_event *itrs[2];
Ian Rogers836196be2020-02-13 23:51:31 -08003433 struct min_heap event_heap;
3434 struct perf_event **evt;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003435 int ret;
3436
Ian Rogers836196be2020-02-13 23:51:31 -08003437 if (cpuctx) {
3438 event_heap = (struct min_heap){
3439 .data = cpuctx->heap,
3440 .nr = 0,
3441 .size = cpuctx->heap_size,
3442 };
3443 } else {
3444 event_heap = (struct min_heap){
3445 .data = itrs,
3446 .nr = 0,
3447 .size = ARRAY_SIZE(itrs),
3448 };
3449 /* Events not within a CPU context may be on any CPU. */
3450 __heap_add(&event_heap, perf_event_groups_first(groups, -1));
3451 }
3452 evt = event_heap.data;
3453
Ian Rogers6eef8a712020-02-13 23:51:30 -08003454 __heap_add(&event_heap, perf_event_groups_first(groups, cpu));
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003455
Ian Rogers6eef8a712020-02-13 23:51:30 -08003456 min_heapify_all(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003457
Ian Rogers6eef8a712020-02-13 23:51:30 -08003458 while (event_heap.nr) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003459 ret = func(*evt, data);
3460 if (ret)
3461 return ret;
3462
3463 *evt = perf_event_groups_next(*evt);
Ian Rogers6eef8a712020-02-13 23:51:30 -08003464 if (*evt)
3465 min_heapify(&event_heap, 0, &perf_min_heap);
3466 else
3467 min_heap_pop(&event_heap, &perf_min_heap);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003468 }
3469
3470 return 0;
3471}
3472
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003473static int merge_sched_in(struct perf_event *event, void *data)
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003474{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003475 struct perf_event_context *ctx = event->ctx;
3476 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3477 int *can_add_hw = data;
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003478
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003479 if (event->state <= PERF_EVENT_STATE_OFF)
3480 return 0;
3481
3482 if (!event_filter_match(event))
3483 return 0;
3484
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003485 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3486 if (!group_sched_in(event, cpuctx, ctx))
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003487 list_add_tail(&event->active_list, get_event_list(event));
Peter Zijlstra66681282017-11-13 14:28:38 +01003488 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003489
Peter Zijlstraab6f8242019-08-07 11:17:00 +02003490 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3491 if (event->attr.pinned)
3492 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003493
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003494 *can_add_hw = 0;
3495 ctx->rotate_necessary = 1;
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003496 }
3497
3498 return 0;
3499}
3500
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003501static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003502ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003503 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003504{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003505 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003506
Ian Rogers836196be2020-02-13 23:51:31 -08003507 if (ctx != &cpuctx->ctx)
3508 cpuctx = NULL;
3509
3510 visit_groups_merge(cpuctx, &ctx->pinned_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003511 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003512 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003513}
3514
3515static void
3516ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003517 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003518{
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003519 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003520
Ian Rogers836196be2020-02-13 23:51:31 -08003521 if (ctx != &cpuctx->ctx)
3522 cpuctx = NULL;
3523
3524 visit_groups_merge(cpuctx, &ctx->flexible_groups,
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003525 smp_processor_id(),
Peter Zijlstra2c2366c2019-08-07 11:45:01 +02003526 merge_sched_in, &can_add_hw);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003527}
3528
3529static void
3530ctx_sched_in(struct perf_event_context *ctx,
3531 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003532 enum event_type_t event_type,
3533 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003534{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003535 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003536 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003537
Peter Zijlstrac994d612016-01-08 09:20:23 +01003538 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003539
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003540 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003541 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003542
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003543 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003544 if (ctx->task) {
3545 if (!is_active)
3546 cpuctx->task_ctx = ctx;
3547 else
3548 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3549 }
3550
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003551 is_active ^= ctx->is_active; /* changed bits */
3552
3553 if (is_active & EVENT_TIME) {
3554 /* start ctx time */
3555 now = perf_clock();
3556 ctx->timestamp = now;
3557 perf_cgroup_set_timestamp(task, ctx);
3558 }
3559
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003560 /*
3561 * First go through the list and put on any pinned groups
3562 * in order to give them the best chance of going on.
3563 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003564 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003565 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003566
3567 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003568 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003569 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003570}
3571
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003572static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003573 enum event_type_t event_type,
3574 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003575{
3576 struct perf_event_context *ctx = &cpuctx->ctx;
3577
Stephane Eraniane5d13672011-02-14 11:20:01 +02003578 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003579}
3580
Stephane Eraniane5d13672011-02-14 11:20:01 +02003581static void perf_event_context_sched_in(struct perf_event_context *ctx,
3582 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003583{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003584 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003585
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003586 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003587 if (cpuctx->task_ctx == ctx)
3588 return;
3589
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003590 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003591 /*
3592 * We must check ctx->nr_events while holding ctx->lock, such
3593 * that we serialize against perf_install_in_context().
3594 */
3595 if (!ctx->nr_events)
3596 goto unlock;
3597
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003598 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003599 /*
3600 * We want to keep the following priority order:
3601 * cpu pinned (that don't need to move), task pinned,
3602 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003603 *
3604 * However, if task's ctx is not carrying any pinned
3605 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003606 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003607 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003608 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003609 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003610 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003611
3612unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003613 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003614}
3615
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003616/*
3617 * Called from scheduler to add the events of the current task
3618 * with interrupts disabled.
3619 *
3620 * We restore the event value and then enable it.
3621 *
3622 * This does not protect us against NMI, but enable()
3623 * sets the enabled bit in the control field of event _before_
3624 * accessing the event control register. If a NMI hits, then it will
3625 * keep the event running.
3626 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003627void __perf_event_task_sched_in(struct task_struct *prev,
3628 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003629{
3630 struct perf_event_context *ctx;
3631 int ctxn;
3632
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003633 /*
3634 * If cgroup events exist on this CPU, then we need to check if we have
3635 * to switch in PMU state; cgroup event are system-wide mode only.
3636 *
3637 * Since cgroup events are CPU events, we must schedule these in before
3638 * we schedule in the task events.
3639 */
3640 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3641 perf_cgroup_sched_in(prev, task);
3642
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003643 for_each_task_context_nr(ctxn) {
3644 ctx = task->perf_event_ctxp[ctxn];
3645 if (likely(!ctx))
3646 continue;
3647
Stephane Eraniane5d13672011-02-14 11:20:01 +02003648 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003649 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003650
Adrian Hunter45ac1402015-07-21 12:44:02 +03003651 if (atomic_read(&nr_switch_events))
3652 perf_event_switch(task, prev, true);
3653
Yan, Zhengba532502014-11-04 21:55:58 -05003654 if (__this_cpu_read(perf_sched_cb_usages))
3655 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003656}
3657
Peter Zijlstraabd50712010-01-26 18:50:16 +01003658static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3659{
3660 u64 frequency = event->attr.sample_freq;
3661 u64 sec = NSEC_PER_SEC;
3662 u64 divisor, dividend;
3663
3664 int count_fls, nsec_fls, frequency_fls, sec_fls;
3665
3666 count_fls = fls64(count);
3667 nsec_fls = fls64(nsec);
3668 frequency_fls = fls64(frequency);
3669 sec_fls = 30;
3670
3671 /*
3672 * We got @count in @nsec, with a target of sample_freq HZ
3673 * the target period becomes:
3674 *
3675 * @count * 10^9
3676 * period = -------------------
3677 * @nsec * sample_freq
3678 *
3679 */
3680
3681 /*
3682 * Reduce accuracy by one bit such that @a and @b converge
3683 * to a similar magnitude.
3684 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003685#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003686do { \
3687 if (a##_fls > b##_fls) { \
3688 a >>= 1; \
3689 a##_fls--; \
3690 } else { \
3691 b >>= 1; \
3692 b##_fls--; \
3693 } \
3694} while (0)
3695
3696 /*
3697 * Reduce accuracy until either term fits in a u64, then proceed with
3698 * the other, so that finally we can do a u64/u64 division.
3699 */
3700 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3701 REDUCE_FLS(nsec, frequency);
3702 REDUCE_FLS(sec, count);
3703 }
3704
3705 if (count_fls + sec_fls > 64) {
3706 divisor = nsec * frequency;
3707
3708 while (count_fls + sec_fls > 64) {
3709 REDUCE_FLS(count, sec);
3710 divisor >>= 1;
3711 }
3712
3713 dividend = count * sec;
3714 } else {
3715 dividend = count * sec;
3716
3717 while (nsec_fls + frequency_fls > 64) {
3718 REDUCE_FLS(nsec, frequency);
3719 dividend >>= 1;
3720 }
3721
3722 divisor = nsec * frequency;
3723 }
3724
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003725 if (!divisor)
3726 return dividend;
3727
Peter Zijlstraabd50712010-01-26 18:50:16 +01003728 return div64_u64(dividend, divisor);
3729}
3730
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003731static DEFINE_PER_CPU(int, perf_throttled_count);
3732static DEFINE_PER_CPU(u64, perf_throttled_seq);
3733
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003734static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003735{
3736 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003737 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003738 s64 delta;
3739
Peter Zijlstraabd50712010-01-26 18:50:16 +01003740 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003741
3742 delta = (s64)(period - hwc->sample_period);
3743 delta = (delta + 7) / 8; /* low pass filter */
3744
3745 sample_period = hwc->sample_period + delta;
3746
3747 if (!sample_period)
3748 sample_period = 1;
3749
3750 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003751
Peter Zijlstrae7850592010-05-21 14:43:08 +02003752 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003753 if (disable)
3754 event->pmu->stop(event, PERF_EF_UPDATE);
3755
Peter Zijlstrae7850592010-05-21 14:43:08 +02003756 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003757
3758 if (disable)
3759 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003760 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003761}
3762
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003763/*
3764 * combine freq adjustment with unthrottling to avoid two passes over the
3765 * events. At the same time, make sure, having freq events does not change
3766 * the rate of unthrottling as that would introduce bias.
3767 */
3768static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3769 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003770{
3771 struct perf_event *event;
3772 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003773 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003774 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003775
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003776 /*
3777 * only need to iterate over all events iff:
3778 * - context have events in frequency mode (needs freq adjust)
3779 * - there are events to unthrottle on this cpu
3780 */
3781 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003782 return;
3783
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003784 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003785 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003786
Paul Mackerras03541f82009-10-14 16:58:03 +11003787 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003788 if (event->state != PERF_EVENT_STATE_ACTIVE)
3789 continue;
3790
Stephane Eranian5632ab12011-01-03 18:20:01 +02003791 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003792 continue;
3793
Alexander Shishkin44377272013-12-16 14:17:36 +02003794 perf_pmu_disable(event->pmu);
3795
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003796 hwc = &event->hw;
3797
Jiri Olsaae23bff2013-08-24 16:45:54 +02003798 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003799 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003800 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003801 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003802 }
3803
3804 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003805 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003807 /*
3808 * stop the event and update event->count
3809 */
3810 event->pmu->stop(event, PERF_EF_UPDATE);
3811
Peter Zijlstrae7850592010-05-21 14:43:08 +02003812 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003813 delta = now - hwc->freq_count_stamp;
3814 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003815
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003816 /*
3817 * restart the event
3818 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003819 * we have stopped the event so tell that
3820 * to perf_adjust_period() to avoid stopping it
3821 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003822 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003823 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003824 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003825
3826 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003827 next:
3828 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003829 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003830
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003831 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003832 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003833}
3834
3835/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003836 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003837 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003838static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003839{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003840 /*
3841 * Rotate the first entry last of non-pinned groups. Rotation might be
3842 * disabled by the inheritance code.
3843 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003844 if (ctx->rotate_disable)
3845 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003846
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003847 perf_event_groups_delete(&ctx->flexible_groups, event);
3848 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003849}
3850
Song Liu7fa343b72019-10-08 09:59:49 -07003851/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003852static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07003853ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003854{
Song Liu7fa343b72019-10-08 09:59:49 -07003855 struct perf_event *event;
3856
3857 /* pick the first active flexible event */
3858 event = list_first_entry_or_null(&ctx->flexible_active,
3859 struct perf_event, active_list);
3860
3861 /* if no active flexible event, pick the first event */
3862 if (!event) {
3863 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
3864 typeof(*event), group_node);
3865 }
3866
3867 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003868}
3869
3870static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
3871{
3872 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07003873 struct perf_event_context *task_ctx = NULL;
3874 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003875
3876 /*
3877 * Since we run this from IRQ context, nobody can install new
3878 * events, thus the event count values are stable.
3879 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003880
Ian Rogersfd7d5512019-06-01 01:27:22 -07003881 cpu_rotate = cpuctx->ctx.rotate_necessary;
3882 task_ctx = cpuctx->task_ctx;
3883 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003884
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003885 if (!(cpu_rotate || task_rotate))
3886 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003887
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003888 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003889 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003890
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003891 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07003892 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003893 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07003894 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003895
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003896 /*
3897 * As per the order given at ctx_resched() first 'pop' task flexible
3898 * and then, if needed CPU flexible.
3899 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07003900 if (task_event || (task_ctx && cpu_event))
3901 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003902 if (cpu_event)
3903 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003904
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003905 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07003906 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003907 if (cpu_event)
3908 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909
Ian Rogersfd7d5512019-06-01 01:27:22 -07003910 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003911
3912 perf_pmu_enable(cpuctx->ctx.pmu);
3913 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02003914
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003915 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003916}
3917
3918void perf_event_task_tick(void)
3919{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003920 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3921 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003922 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003923
Frederic Weisbecker16444642017-11-06 16:01:24 +01003924 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003925
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003926 __this_cpu_inc(perf_throttled_seq);
3927 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003928 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003929
Mark Rutland2fde4f92015-01-07 15:01:54 +00003930 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003931 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003932}
3933
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003934static int event_enable_on_exec(struct perf_event *event,
3935 struct perf_event_context *ctx)
3936{
3937 if (!event->attr.enable_on_exec)
3938 return 0;
3939
3940 event->attr.enable_on_exec = 0;
3941 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3942 return 0;
3943
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003944 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003945
3946 return 1;
3947}
3948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003949/*
3950 * Enable all of a task's events that have been marked enable-on-exec.
3951 * This expects task == current.
3952 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003953static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003954{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003955 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003956 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003957 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003958 struct perf_event *event;
3959 unsigned long flags;
3960 int enabled = 0;
3961
3962 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003963 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003964 if (!ctx || !ctx->nr_events)
3965 goto out;
3966
Peter Zijlstra3e349502016-01-08 10:01:18 +01003967 cpuctx = __get_cpu_context(ctx);
3968 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003969 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003970 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003971 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003972 event_type |= get_event_type(event);
3973 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003974
3975 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003976 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003977 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003978 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003979 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003980 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003981 } else {
3982 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003983 }
3984 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003985
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003986out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003987 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003988
3989 if (clone_ctx)
3990 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003991}
3992
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003993struct perf_read_data {
3994 struct perf_event *event;
3995 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003996 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003997};
3998
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003999static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004000{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004001 u16 local_pkg, event_pkg;
4002
4003 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004004 int local_cpu = smp_processor_id();
4005
4006 event_pkg = topology_physical_package_id(event_cpu);
4007 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004008
4009 if (event_pkg == local_pkg)
4010 return local_cpu;
4011 }
4012
4013 return event_cpu;
4014}
4015
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004016/*
4017 * Cross CPU call to read the hardware event
4018 */
4019static void __perf_event_read(void *info)
4020{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004021 struct perf_read_data *data = info;
4022 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004023 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004024 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004025 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004026
4027 /*
4028 * If this is a task context, we need to check whether it is
4029 * the current task context of this cpu. If not it has been
4030 * scheduled out before the smp call arrived. In that case
4031 * event->count would have been updated to a recent sample
4032 * when the event was scheduled out.
4033 */
4034 if (ctx->task && cpuctx->task_ctx != ctx)
4035 return;
4036
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004037 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004038 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01004039 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004040 update_cgrp_time_from_event(event);
4041 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004042
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004043 perf_event_update_time(event);
4044 if (data->group)
4045 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004046
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004047 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004048 goto unlock;
4049
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004050 if (!data->group) {
4051 pmu->read(event);
4052 data->ret = 0;
4053 goto unlock;
4054 }
4055
4056 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4057
4058 pmu->read(event);
4059
Peter Zijlstraedb39592018-03-15 17:36:56 +01004060 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004061 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4062 /*
4063 * Use sibling's PMU rather than @event's since
4064 * sibling could be on different (eg: software) PMU.
4065 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004066 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004067 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004068 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004069
4070 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004071
4072unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004073 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004074}
4075
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004076static inline u64 perf_event_count(struct perf_event *event)
4077{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004078 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004079}
4080
Kaixu Xiaffe86902015-08-06 07:02:32 +00004081/*
4082 * NMI-safe method to read a local event, that is an event that
4083 * is:
4084 * - either for the current task, or for this CPU
4085 * - does not have inherit set, for inherited task events
4086 * will not be local and we cannot read them atomically
4087 * - must not have a pmu::count method
4088 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004089int perf_event_read_local(struct perf_event *event, u64 *value,
4090 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004091{
4092 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004093 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004094
4095 /*
4096 * Disabling interrupts avoids all counter scheduling (context
4097 * switches, timer based rotation and IPIs).
4098 */
4099 local_irq_save(flags);
4100
Kaixu Xiaffe86902015-08-06 07:02:32 +00004101 /*
4102 * It must not be an event with inherit set, we cannot read
4103 * all child counters from atomic context.
4104 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004105 if (event->attr.inherit) {
4106 ret = -EOPNOTSUPP;
4107 goto out;
4108 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004109
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004110 /* If this is a per-task event, it must be for current */
4111 if ((event->attach_state & PERF_ATTACH_TASK) &&
4112 event->hw.target != current) {
4113 ret = -EINVAL;
4114 goto out;
4115 }
4116
4117 /* If this is a per-CPU event, it must be for this CPU */
4118 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4119 event->cpu != smp_processor_id()) {
4120 ret = -EINVAL;
4121 goto out;
4122 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004123
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004124 /* If this is a pinned event it must be running on this CPU */
4125 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4126 ret = -EBUSY;
4127 goto out;
4128 }
4129
Kaixu Xiaffe86902015-08-06 07:02:32 +00004130 /*
4131 * If the event is currently on this CPU, its either a per-task event,
4132 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4133 * oncpu == -1).
4134 */
4135 if (event->oncpu == smp_processor_id())
4136 event->pmu->read(event);
4137
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004138 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004139 if (enabled || running) {
4140 u64 now = event->shadow_ctx_time + perf_clock();
4141 u64 __enabled, __running;
4142
4143 __perf_update_times(event, now, &__enabled, &__running);
4144 if (enabled)
4145 *enabled = __enabled;
4146 if (running)
4147 *running = __running;
4148 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004149out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004150 local_irq_restore(flags);
4151
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004152 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004153}
4154
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004155static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004156{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004157 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004158 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004159
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004160 /*
4161 * If event is enabled and currently active on a CPU, update the
4162 * value in the event structure:
4163 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004164again:
4165 if (state == PERF_EVENT_STATE_ACTIVE) {
4166 struct perf_read_data data;
4167
4168 /*
4169 * Orders the ->state and ->oncpu loads such that if we see
4170 * ACTIVE we must also see the right ->oncpu.
4171 *
4172 * Matches the smp_wmb() from event_sched_in().
4173 */
4174 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004175
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004176 event_cpu = READ_ONCE(event->oncpu);
4177 if ((unsigned)event_cpu >= nr_cpu_ids)
4178 return 0;
4179
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004180 data = (struct perf_read_data){
4181 .event = event,
4182 .group = group,
4183 .ret = 0,
4184 };
4185
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004186 preempt_disable();
4187 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004188
Peter Zijlstra58763142016-08-30 10:15:03 +02004189 /*
4190 * Purposely ignore the smp_call_function_single() return
4191 * value.
4192 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004193 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004194 * scheduled out and that will have updated the event count.
4195 *
4196 * Therefore, either way, we'll have an up-to-date event count
4197 * after this.
4198 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004199 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4200 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004201 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004202
4203 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004204 struct perf_event_context *ctx = event->ctx;
4205 unsigned long flags;
4206
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004207 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004208 state = event->state;
4209 if (state != PERF_EVENT_STATE_INACTIVE) {
4210 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4211 goto again;
4212 }
4213
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004214 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004215 * May read while context is not active (e.g., thread is
4216 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004217 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004218 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004219 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004220 update_cgrp_time_from_event(event);
4221 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004222
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004223 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004224 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004225 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004226 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004227 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004228
4229 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004230}
4231
4232/*
4233 * Initialize the perf_event context in a task_struct:
4234 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004235static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004236{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004237 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004238 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004239 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004240 perf_event_groups_init(&ctx->pinned_groups);
4241 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004242 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004243 INIT_LIST_HEAD(&ctx->pinned_active);
4244 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004245 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004246}
4247
Peter Zijlstraeb184472010-09-07 15:55:13 +02004248static struct perf_event_context *
4249alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004250{
4251 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004252
4253 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4254 if (!ctx)
4255 return NULL;
4256
4257 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004258 if (task)
4259 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004260 ctx->pmu = pmu;
4261
4262 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004263}
4264
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004265static struct task_struct *
4266find_lively_task_by_vpid(pid_t vpid)
4267{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004268 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004270 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004271 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004272 task = current;
4273 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004274 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004275 if (task)
4276 get_task_struct(task);
4277 rcu_read_unlock();
4278
4279 if (!task)
4280 return ERR_PTR(-ESRCH);
4281
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004282 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004283}
4284
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004285/*
4286 * Returns a matching context with refcount and pincount.
4287 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004288static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004289find_get_context(struct pmu *pmu, struct task_struct *task,
4290 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004291{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004292 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004293 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004294 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004295 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004296 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004297 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004298
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004299 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004300 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004301 err = perf_allow_cpu(&event->attr);
4302 if (err)
4303 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004304
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004305 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306 ctx = &cpuctx->ctx;
4307 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004308 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004309
4310 return ctx;
4311 }
4312
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004313 err = -EINVAL;
4314 ctxn = pmu->task_ctx_nr;
4315 if (ctxn < 0)
4316 goto errout;
4317
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004318 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
4319 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
4320 if (!task_ctx_data) {
4321 err = -ENOMEM;
4322 goto errout;
4323 }
4324 }
4325
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004326retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004327 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004328 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004329 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004330 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004331
4332 if (task_ctx_data && !ctx->task_ctx_data) {
4333 ctx->task_ctx_data = task_ctx_data;
4334 task_ctx_data = NULL;
4335 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004336 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004337
4338 if (clone_ctx)
4339 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004340 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004341 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004342 err = -ENOMEM;
4343 if (!ctx)
4344 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004345
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004346 if (task_ctx_data) {
4347 ctx->task_ctx_data = task_ctx_data;
4348 task_ctx_data = NULL;
4349 }
4350
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004351 err = 0;
4352 mutex_lock(&task->perf_event_mutex);
4353 /*
4354 * If it has already passed perf_event_exit_task().
4355 * we must see PF_EXITING, it takes this mutex too.
4356 */
4357 if (task->flags & PF_EXITING)
4358 err = -ESRCH;
4359 else if (task->perf_event_ctxp[ctxn])
4360 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004361 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004362 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004363 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004364 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004365 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004366 mutex_unlock(&task->perf_event_mutex);
4367
4368 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004369 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004370
4371 if (err == -EAGAIN)
4372 goto retry;
4373 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004374 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004375 }
4376
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004377 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004378 return ctx;
4379
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004380errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004381 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004382 return ERR_PTR(err);
4383}
4384
Li Zefan6fb29152009-10-15 11:21:42 +08004385static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004386static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08004387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004388static void free_event_rcu(struct rcu_head *head)
4389{
4390 struct perf_event *event;
4391
4392 event = container_of(head, struct perf_event, rcu_head);
4393 if (event->ns)
4394 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004395 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004396 kfree(event);
4397}
4398
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004399static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05004400 struct perf_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004401
Kan Liangf2fb6be2016-03-23 11:24:37 -07004402static void detach_sb_event(struct perf_event *event)
4403{
4404 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4405
4406 raw_spin_lock(&pel->lock);
4407 list_del_rcu(&event->sb_list);
4408 raw_spin_unlock(&pel->lock);
4409}
4410
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004411static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004412{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004413 struct perf_event_attr *attr = &event->attr;
4414
Kan Liangf2fb6be2016-03-23 11:24:37 -07004415 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004416 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004417
4418 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004419 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004420
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004421 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4422 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004423 attr->task || attr->ksymbol ||
Song Liu21038f22019-02-25 16:20:05 -08004424 attr->context_switch ||
4425 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004426 return true;
4427 return false;
4428}
4429
4430static void unaccount_pmu_sb_event(struct perf_event *event)
4431{
4432 if (is_sb_event(event))
4433 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004434}
4435
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004436static void unaccount_event_cpu(struct perf_event *event, int cpu)
4437{
4438 if (event->parent)
4439 return;
4440
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004441 if (is_cgroup_event(event))
4442 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4443}
4444
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004445#ifdef CONFIG_NO_HZ_FULL
4446static DEFINE_SPINLOCK(nr_freq_lock);
4447#endif
4448
4449static void unaccount_freq_event_nohz(void)
4450{
4451#ifdef CONFIG_NO_HZ_FULL
4452 spin_lock(&nr_freq_lock);
4453 if (atomic_dec_and_test(&nr_freq_events))
4454 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4455 spin_unlock(&nr_freq_lock);
4456#endif
4457}
4458
4459static void unaccount_freq_event(void)
4460{
4461 if (tick_nohz_full_enabled())
4462 unaccount_freq_event_nohz();
4463 else
4464 atomic_dec(&nr_freq_events);
4465}
4466
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004467static void unaccount_event(struct perf_event *event)
4468{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004469 bool dec = false;
4470
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004471 if (event->parent)
4472 return;
4473
4474 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004475 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004476 if (event->attr.mmap || event->attr.mmap_data)
4477 atomic_dec(&nr_mmap_events);
4478 if (event->attr.comm)
4479 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304480 if (event->attr.namespaces)
4481 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004482 if (event->attr.task)
4483 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004484 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004485 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004486 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004487 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004488 atomic_dec(&nr_switch_events);
4489 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004490 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004491 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004492 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004493 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004494 if (event->attr.ksymbol)
4495 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004496 if (event->attr.bpf_event)
4497 atomic_dec(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004498
Peter Zijlstra9107c892016-02-24 18:45:45 +01004499 if (dec) {
4500 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4501 schedule_delayed_work(&perf_sched_work, HZ);
4502 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004503
4504 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004505
4506 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004507}
4508
Peter Zijlstra9107c892016-02-24 18:45:45 +01004509static void perf_sched_delayed(struct work_struct *work)
4510{
4511 mutex_lock(&perf_sched_mutex);
4512 if (atomic_dec_and_test(&perf_sched_count))
4513 static_branch_disable(&perf_sched_events);
4514 mutex_unlock(&perf_sched_mutex);
4515}
4516
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004517/*
4518 * The following implement mutual exclusion of events on "exclusive" pmus
4519 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4520 * at a time, so we disallow creating events that might conflict, namely:
4521 *
4522 * 1) cpu-wide events in the presence of per-task events,
4523 * 2) per-task events in the presence of cpu-wide events,
4524 * 3) two matching events on the same context.
4525 *
4526 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004527 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004528 */
4529static int exclusive_event_init(struct perf_event *event)
4530{
4531 struct pmu *pmu = event->pmu;
4532
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004533 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004534 return 0;
4535
4536 /*
4537 * Prevent co-existence of per-task and cpu-wide events on the
4538 * same exclusive pmu.
4539 *
4540 * Negative pmu::exclusive_cnt means there are cpu-wide
4541 * events on this "exclusive" pmu, positive means there are
4542 * per-task events.
4543 *
4544 * Since this is called in perf_event_alloc() path, event::ctx
4545 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4546 * to mean "per-task event", because unlike other attach states it
4547 * never gets cleared.
4548 */
4549 if (event->attach_state & PERF_ATTACH_TASK) {
4550 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4551 return -EBUSY;
4552 } else {
4553 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4554 return -EBUSY;
4555 }
4556
4557 return 0;
4558}
4559
4560static void exclusive_event_destroy(struct perf_event *event)
4561{
4562 struct pmu *pmu = event->pmu;
4563
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004564 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004565 return;
4566
4567 /* see comment in exclusive_event_init() */
4568 if (event->attach_state & PERF_ATTACH_TASK)
4569 atomic_dec(&pmu->exclusive_cnt);
4570 else
4571 atomic_inc(&pmu->exclusive_cnt);
4572}
4573
4574static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4575{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004576 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004577 (e1->cpu == e2->cpu ||
4578 e1->cpu == -1 ||
4579 e2->cpu == -1))
4580 return true;
4581 return false;
4582}
4583
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004584static bool exclusive_event_installable(struct perf_event *event,
4585 struct perf_event_context *ctx)
4586{
4587 struct perf_event *iter_event;
4588 struct pmu *pmu = event->pmu;
4589
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004590 lockdep_assert_held(&ctx->mutex);
4591
4592 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004593 return true;
4594
4595 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4596 if (exclusive_event_match(iter_event, event))
4597 return false;
4598 }
4599
4600 return true;
4601}
4602
Alexander Shishkin375637b2016-04-27 18:44:46 +03004603static void perf_addr_filters_splice(struct perf_event *event,
4604 struct list_head *head);
4605
Peter Zijlstra683ede42014-05-05 12:11:24 +02004606static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004607{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004608 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004610 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004611
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004612 security_perf_event_free(event);
4613
Frederic Weisbecker76369132011-05-19 19:55:04 +02004614 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004615 /*
4616 * Can happen when we close an event with re-directed output.
4617 *
4618 * Since we have a 0 refcount, perf_mmap_close() will skip
4619 * over us; possibly making our ring_buffer_put() the last.
4620 */
4621 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004622 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004623 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004624 }
4625
Stephane Eraniane5d13672011-02-14 11:20:01 +02004626 if (is_cgroup_event(event))
4627 perf_detach_cgroup(event);
4628
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004629 if (!event->parent) {
4630 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4631 put_callchain_buffers();
4632 }
4633
4634 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004635 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02004636 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004637
4638 if (event->destroy)
4639 event->destroy(event);
4640
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004641 /*
4642 * Must be after ->destroy(), due to uprobe_perf_close() using
4643 * hw.target.
4644 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09004645 if (event->hw.target)
4646 put_task_struct(event->hw.target);
4647
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004648 /*
4649 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4650 * all task references must be cleaned up.
4651 */
4652 if (event->ctx)
4653 put_ctx(event->ctx);
4654
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004655 exclusive_event_destroy(event);
4656 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004657
4658 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659}
4660
Peter Zijlstra683ede42014-05-05 12:11:24 +02004661/*
4662 * Used to free events which have a known refcount of 1, such as in error paths
4663 * where the event isn't exposed yet and inherited events.
4664 */
4665static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004666{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004667 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4668 "unexpected event refcount: %ld; ptr=%p\n",
4669 atomic_long_read(&event->refcount), event)) {
4670 /* leak to avoid use-after-free */
4671 return;
4672 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004673
Peter Zijlstra683ede42014-05-05 12:11:24 +02004674 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004675}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004676
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004677/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004678 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004679 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004680static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004681{
Peter Zijlstra88821352010-11-09 19:01:43 +01004682 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004683
Peter Zijlstra88821352010-11-09 19:01:43 +01004684 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004685 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004686 * Matches the smp_store_release() in perf_event_exit_task(). If we
4687 * observe !owner it means the list deletion is complete and we can
4688 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004689 * owner->perf_event_mutex.
4690 */
Will Deacon506458e2017-10-24 11:22:48 +01004691 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004692 if (owner) {
4693 /*
4694 * Since delayed_put_task_struct() also drops the last
4695 * task reference we can safely take a new reference
4696 * while holding the rcu_read_lock().
4697 */
4698 get_task_struct(owner);
4699 }
4700 rcu_read_unlock();
4701
4702 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004703 /*
4704 * If we're here through perf_event_exit_task() we're already
4705 * holding ctx->mutex which would be an inversion wrt. the
4706 * normal lock order.
4707 *
4708 * However we can safely take this lock because its the child
4709 * ctx->mutex.
4710 */
4711 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4712
Peter Zijlstra88821352010-11-09 19:01:43 +01004713 /*
4714 * We have to re-check the event->owner field, if it is cleared
4715 * we raced with perf_event_exit_task(), acquiring the mutex
4716 * ensured they're done, and we can proceed with freeing the
4717 * event.
4718 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004719 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004720 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004721 smp_store_release(&event->owner, NULL);
4722 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004723 mutex_unlock(&owner->perf_event_mutex);
4724 put_task_struct(owner);
4725 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004726}
4727
Jiri Olsaf8697762014-08-01 14:33:01 +02004728static void put_event(struct perf_event *event)
4729{
Jiri Olsaf8697762014-08-01 14:33:01 +02004730 if (!atomic_long_dec_and_test(&event->refcount))
4731 return;
4732
Peter Zijlstra683ede42014-05-05 12:11:24 +02004733 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004734}
4735
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004736/*
4737 * Kill an event dead; while event:refcount will preserve the event
4738 * object, it will not preserve its functionality. Once the last 'user'
4739 * gives up the object, we'll destroy the thing.
4740 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004741int perf_event_release_kernel(struct perf_event *event)
4742{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004743 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004744 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01004745 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004746
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004747 /*
4748 * If we got here through err_file: fput(event_file); we will not have
4749 * attached to a context yet.
4750 */
4751 if (!ctx) {
4752 WARN_ON_ONCE(event->attach_state &
4753 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4754 goto no_ctx;
4755 }
4756
Peter Zijlstra88821352010-11-09 19:01:43 +01004757 if (!is_kernel_event(event))
4758 perf_remove_from_owner(event);
4759
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004760 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004761 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004762 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004763
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004764 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004765 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004766 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004767 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004768 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004769 * Anybody acquiring event->child_mutex after the below loop _must_
4770 * also see this, most importantly inherit_event() which will avoid
4771 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004772 *
4773 * Thus this guarantees that we will in fact observe and kill _ALL_
4774 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004775 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004776 event->state = PERF_EVENT_STATE_DEAD;
4777 raw_spin_unlock_irq(&ctx->lock);
4778
4779 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004780
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004781again:
4782 mutex_lock(&event->child_mutex);
4783 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004784
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004785 /*
4786 * Cannot change, child events are not migrated, see the
4787 * comment with perf_event_ctx_lock_nested().
4788 */
Will Deacon506458e2017-10-24 11:22:48 +01004789 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004790 /*
4791 * Since child_mutex nests inside ctx::mutex, we must jump
4792 * through hoops. We start by grabbing a reference on the ctx.
4793 *
4794 * Since the event cannot get freed while we hold the
4795 * child_mutex, the context must also exist and have a !0
4796 * reference count.
4797 */
4798 get_ctx(ctx);
4799
4800 /*
4801 * Now that we have a ctx ref, we can drop child_mutex, and
4802 * acquire ctx::mutex without fear of it going away. Then we
4803 * can re-acquire child_mutex.
4804 */
4805 mutex_unlock(&event->child_mutex);
4806 mutex_lock(&ctx->mutex);
4807 mutex_lock(&event->child_mutex);
4808
4809 /*
4810 * Now that we hold ctx::mutex and child_mutex, revalidate our
4811 * state, if child is still the first entry, it didn't get freed
4812 * and we can continue doing so.
4813 */
4814 tmp = list_first_entry_or_null(&event->child_list,
4815 struct perf_event, child_list);
4816 if (tmp == child) {
4817 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004818 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004819 /*
4820 * This matches the refcount bump in inherit_event();
4821 * this can't be the last reference.
4822 */
4823 put_event(event);
4824 }
4825
4826 mutex_unlock(&event->child_mutex);
4827 mutex_unlock(&ctx->mutex);
4828 put_ctx(ctx);
4829 goto again;
4830 }
4831 mutex_unlock(&event->child_mutex);
4832
Peter Zijlstra82d94852018-01-09 13:10:30 +01004833 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004834 void *var = &child->ctx->refcount;
4835
Peter Zijlstra82d94852018-01-09 13:10:30 +01004836 list_del(&child->child_list);
4837 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004838
4839 /*
4840 * Wake any perf_event_free_task() waiting for this event to be
4841 * freed.
4842 */
4843 smp_mb(); /* pairs with wait_var_event() */
4844 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004845 }
4846
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004847no_ctx:
4848 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004849 return 0;
4850}
4851EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4852
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004853/*
4854 * Called when the last reference to the file is gone.
4855 */
Al Viroa6fa9412012-08-20 14:59:25 +01004856static int perf_release(struct inode *inode, struct file *file)
4857{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004858 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004859 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004860}
4861
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004862static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004863{
4864 struct perf_event *child;
4865 u64 total = 0;
4866
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004867 *enabled = 0;
4868 *running = 0;
4869
Peter Zijlstra6f105812009-11-20 22:19:56 +01004870 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004871
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004872 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004873 total += perf_event_count(event);
4874
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004875 *enabled += event->total_time_enabled +
4876 atomic64_read(&event->child_total_time_enabled);
4877 *running += event->total_time_running +
4878 atomic64_read(&event->child_total_time_running);
4879
4880 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004881 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004882 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004883 *enabled += child->total_time_enabled;
4884 *running += child->total_time_running;
4885 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004886 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004887
4888 return total;
4889}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004890
4891u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
4892{
4893 struct perf_event_context *ctx;
4894 u64 count;
4895
4896 ctx = perf_event_ctx_lock(event);
4897 count = __perf_event_read_value(event, enabled, running);
4898 perf_event_ctx_unlock(event, ctx);
4899
4900 return count;
4901}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004902EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004903
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004904static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004905 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004906{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004907 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004908 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004909 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004910 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004911 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004912
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004913 ret = perf_event_read(leader, true);
4914 if (ret)
4915 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004916
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02004917 raw_spin_lock_irqsave(&ctx->lock, flags);
4918
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004919 /*
4920 * Since we co-schedule groups, {enabled,running} times of siblings
4921 * will be identical to those of the leader, so we only publish one
4922 * set.
4923 */
4924 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4925 values[n++] += leader->total_time_enabled +
4926 atomic64_read(&leader->child_total_time_enabled);
4927 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004928
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004929 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4930 values[n++] += leader->total_time_running +
4931 atomic64_read(&leader->child_total_time_running);
4932 }
4933
4934 /*
4935 * Write {count,id} tuples for every sibling.
4936 */
4937 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004938 if (read_format & PERF_FORMAT_ID)
4939 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004940
Peter Zijlstraedb39592018-03-15 17:36:56 +01004941 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004942 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004943 if (read_format & PERF_FORMAT_ID)
4944 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004945 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004946
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004947 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004948 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004949}
4950
4951static int perf_read_group(struct perf_event *event,
4952 u64 read_format, char __user *buf)
4953{
4954 struct perf_event *leader = event->group_leader, *child;
4955 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004956 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004957 u64 *values;
4958
4959 lockdep_assert_held(&ctx->mutex);
4960
4961 values = kzalloc(event->read_size, GFP_KERNEL);
4962 if (!values)
4963 return -ENOMEM;
4964
4965 values[0] = 1 + leader->nr_siblings;
4966
4967 /*
4968 * By locking the child_mutex of the leader we effectively
4969 * lock the child list of all siblings.. XXX explain how.
4970 */
4971 mutex_lock(&leader->child_mutex);
4972
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004973 ret = __perf_read_group_add(leader, read_format, values);
4974 if (ret)
4975 goto unlock;
4976
4977 list_for_each_entry(child, &leader->child_list, child_list) {
4978 ret = __perf_read_group_add(child, read_format, values);
4979 if (ret)
4980 goto unlock;
4981 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004982
4983 mutex_unlock(&leader->child_mutex);
4984
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004985 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004986 if (copy_to_user(buf, values, event->read_size))
4987 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004988 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004989
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004990unlock:
4991 mutex_unlock(&leader->child_mutex);
4992out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004993 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004994 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004995}
4996
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004997static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004998 u64 read_format, char __user *buf)
4999{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005000 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005001 u64 values[4];
5002 int n = 0;
5003
Peter Zijlstraca0dd442017-09-05 13:23:44 +02005004 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01005005 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5006 values[n++] = enabled;
5007 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5008 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005009 if (read_format & PERF_FORMAT_ID)
5010 values[n++] = primary_event_id(event);
5011
5012 if (copy_to_user(buf, values, n * sizeof(u64)))
5013 return -EFAULT;
5014
5015 return n * sizeof(u64);
5016}
5017
Jiri Olsadc633982014-09-12 13:18:26 +02005018static bool is_event_hup(struct perf_event *event)
5019{
5020 bool no_children;
5021
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01005022 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02005023 return false;
5024
5025 mutex_lock(&event->child_mutex);
5026 no_children = list_empty(&event->child_list);
5027 mutex_unlock(&event->child_mutex);
5028 return no_children;
5029}
5030
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005031/*
5032 * Read the performance event - simple non blocking version for now
5033 */
5034static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005035__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005036{
5037 u64 read_format = event->attr.read_format;
5038 int ret;
5039
5040 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02005041 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005042 * error state (i.e. because it was pinned but it couldn't be
5043 * scheduled on to the CPU at some point).
5044 */
5045 if (event->state == PERF_EVENT_STATE_ERROR)
5046 return 0;
5047
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005048 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005049 return -ENOSPC;
5050
5051 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005052 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005053 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005054 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005055 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005056
5057 return ret;
5058}
5059
5060static ssize_t
5061perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5062{
5063 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005064 struct perf_event_context *ctx;
5065 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005066
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005067 ret = security_perf_event_read(event);
5068 if (ret)
5069 return ret;
5070
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005071 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005072 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005073 perf_event_ctx_unlock(event, ctx);
5074
5075 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005076}
5077
Al Viro9dd95742017-07-03 00:42:43 -04005078static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005079{
5080 struct perf_event *event = file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005081 struct perf_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005082 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005083
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005084 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005085
Jiri Olsadc633982014-09-12 13:18:26 +02005086 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005087 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005088
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005089 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005090 * Pin the event->rb by taking event->mmap_mutex; otherwise
5091 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005092 */
5093 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005094 rb = event->rb;
5095 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005096 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005097 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005098 return events;
5099}
5100
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005101static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005102{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005103 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005104 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005105 perf_event_update_userpage(event);
5106}
5107
Like Xu52ba4b02019-10-27 18:52:39 +08005108/* Assume it's not an event with inherit set. */
5109u64 perf_event_pause(struct perf_event *event, bool reset)
5110{
5111 struct perf_event_context *ctx;
5112 u64 count;
5113
5114 ctx = perf_event_ctx_lock(event);
5115 WARN_ON_ONCE(event->attr.inherit);
5116 _perf_event_disable(event);
5117 count = local64_read(&event->count);
5118 if (reset)
5119 local64_set(&event->count, 0);
5120 perf_event_ctx_unlock(event, ctx);
5121
5122 return count;
5123}
5124EXPORT_SYMBOL_GPL(perf_event_pause);
5125
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005126/*
5127 * Holding the top-level event's child_mutex means that any
5128 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005129 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005130 * task existence requirements of perf_event_enable/disable.
5131 */
5132static void perf_event_for_each_child(struct perf_event *event,
5133 void (*func)(struct perf_event *))
5134{
5135 struct perf_event *child;
5136
5137 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005138
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005139 mutex_lock(&event->child_mutex);
5140 func(event);
5141 list_for_each_entry(child, &event->child_list, child_list)
5142 func(child);
5143 mutex_unlock(&event->child_mutex);
5144}
5145
5146static void perf_event_for_each(struct perf_event *event,
5147 void (*func)(struct perf_event *))
5148{
5149 struct perf_event_context *ctx = event->ctx;
5150 struct perf_event *sibling;
5151
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005152 lockdep_assert_held(&ctx->mutex);
5153
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005154 event = event->group_leader;
5155
5156 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005157 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005158 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005159}
5160
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005161static void __perf_event_period(struct perf_event *event,
5162 struct perf_cpu_context *cpuctx,
5163 struct perf_event_context *ctx,
5164 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005165{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005166 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005167 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005169 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005170 event->attr.sample_freq = value;
5171 } else {
5172 event->attr.sample_period = value;
5173 event->hw.sample_period = value;
5174 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005175
5176 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5177 if (active) {
5178 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005179 /*
5180 * We could be throttled; unthrottle now to avoid the tick
5181 * trying to unthrottle while we already re-started the event.
5182 */
5183 if (event->hw.interrupts == MAX_INTERRUPTS) {
5184 event->hw.interrupts = 0;
5185 perf_log_throttle(event, 1);
5186 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005187 event->pmu->stop(event, PERF_EF_UPDATE);
5188 }
5189
5190 local64_set(&event->hw.period_left, 0);
5191
5192 if (active) {
5193 event->pmu->start(event, PERF_EF_RELOAD);
5194 perf_pmu_enable(ctx->pmu);
5195 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005196}
5197
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005198static int perf_event_check_period(struct perf_event *event, u64 value)
5199{
5200 return event->pmu->check_period(event, value);
5201}
5202
Like Xu3ca270f2019-10-27 18:52:38 +08005203static int _perf_event_period(struct perf_event *event, u64 value)
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005204{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005205 if (!is_sampling_event(event))
5206 return -EINVAL;
5207
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005208 if (!value)
5209 return -EINVAL;
5210
5211 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5212 return -EINVAL;
5213
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005214 if (perf_event_check_period(event, value))
5215 return -EINVAL;
5216
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305217 if (!event->attr.freq && (value & (1ULL << 63)))
5218 return -EINVAL;
5219
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005220 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005221
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005222 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005223}
5224
Like Xu3ca270f2019-10-27 18:52:38 +08005225int perf_event_period(struct perf_event *event, u64 value)
5226{
5227 struct perf_event_context *ctx;
5228 int ret;
5229
5230 ctx = perf_event_ctx_lock(event);
5231 ret = _perf_event_period(event, value);
5232 perf_event_ctx_unlock(event, ctx);
5233
5234 return ret;
5235}
5236EXPORT_SYMBOL_GPL(perf_event_period);
5237
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005238static const struct file_operations perf_fops;
5239
Al Viro2903ff02012-08-28 12:52:22 -04005240static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005241{
Al Viro2903ff02012-08-28 12:52:22 -04005242 struct fd f = fdget(fd);
5243 if (!f.file)
5244 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005245
Al Viro2903ff02012-08-28 12:52:22 -04005246 if (f.file->f_op != &perf_fops) {
5247 fdput(f);
5248 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005249 }
Al Viro2903ff02012-08-28 12:52:22 -04005250 *p = f;
5251 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005252}
5253
5254static int perf_event_set_output(struct perf_event *event,
5255 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005256static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07005257static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005258static int perf_copy_attr(struct perf_event_attr __user *uattr,
5259 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005260
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005261static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005262{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005263 void (*func)(struct perf_event *);
5264 u32 flags = arg;
5265
5266 switch (cmd) {
5267 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005268 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005269 break;
5270 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005271 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005272 break;
5273 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005274 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275 break;
5276
5277 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005278 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005279
5280 case PERF_EVENT_IOC_PERIOD:
Like Xu3ca270f2019-10-27 18:52:38 +08005281 {
5282 u64 value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005283
Like Xu3ca270f2019-10-27 18:52:38 +08005284 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5285 return -EFAULT;
5286
5287 return _perf_event_period(event, value);
5288 }
Jiri Olsacf4957f2012-10-24 13:37:58 +02005289 case PERF_EVENT_IOC_ID:
5290 {
5291 u64 id = primary_event_id(event);
5292
5293 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5294 return -EFAULT;
5295 return 0;
5296 }
5297
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005298 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005299 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005300 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005301 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005302 struct perf_event *output_event;
5303 struct fd output;
5304 ret = perf_fget_light(arg, &output);
5305 if (ret)
5306 return ret;
5307 output_event = output.file->private_data;
5308 ret = perf_event_set_output(event, output_event);
5309 fdput(output);
5310 } else {
5311 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005312 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005313 return ret;
5314 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005315
Li Zefan6fb29152009-10-15 11:21:42 +08005316 case PERF_EVENT_IOC_SET_FILTER:
5317 return perf_event_set_filter(event, (void __user *)arg);
5318
Alexei Starovoitov25415172015-03-25 12:49:20 -07005319 case PERF_EVENT_IOC_SET_BPF:
5320 return perf_event_set_bpf_prog(event, arg);
5321
Wang Nan86e79722016-03-28 06:41:29 +00005322 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005323 struct perf_buffer *rb;
Wang Nan86e79722016-03-28 06:41:29 +00005324
5325 rcu_read_lock();
5326 rb = rcu_dereference(event->rb);
5327 if (!rb || !rb->nr_pages) {
5328 rcu_read_unlock();
5329 return -EINVAL;
5330 }
5331 rb_toggle_paused(rb, !!arg);
5332 rcu_read_unlock();
5333 return 0;
5334 }
Yonghong Songf371b302017-12-11 11:39:02 -08005335
5336 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005337 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005338
5339 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5340 struct perf_event_attr new_attr;
5341 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5342 &new_attr);
5343
5344 if (err)
5345 return err;
5346
5347 return perf_event_modify_attr(event, &new_attr);
5348 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005349 default:
5350 return -ENOTTY;
5351 }
5352
5353 if (flags & PERF_IOC_FLAG_GROUP)
5354 perf_event_for_each(event, func);
5355 else
5356 perf_event_for_each_child(event, func);
5357
5358 return 0;
5359}
5360
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005361static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5362{
5363 struct perf_event *event = file->private_data;
5364 struct perf_event_context *ctx;
5365 long ret;
5366
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005367 /* Treat ioctl like writes as it is likely a mutating operation. */
5368 ret = security_perf_event_write(event);
5369 if (ret)
5370 return ret;
5371
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005372 ctx = perf_event_ctx_lock(event);
5373 ret = _perf_ioctl(event, cmd, arg);
5374 perf_event_ctx_unlock(event, ctx);
5375
5376 return ret;
5377}
5378
Pawel Mollb3f20782014-06-13 16:03:32 +01005379#ifdef CONFIG_COMPAT
5380static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5381 unsigned long arg)
5382{
5383 switch (_IOC_NR(cmd)) {
5384 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5385 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005386 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5387 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005388 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5389 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5390 cmd &= ~IOCSIZE_MASK;
5391 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5392 }
5393 break;
5394 }
5395 return perf_ioctl(file, cmd, arg);
5396}
5397#else
5398# define perf_compat_ioctl NULL
5399#endif
5400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005401int perf_event_task_enable(void)
5402{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005403 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404 struct perf_event *event;
5405
5406 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005407 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5408 ctx = perf_event_ctx_lock(event);
5409 perf_event_for_each_child(event, _perf_event_enable);
5410 perf_event_ctx_unlock(event, ctx);
5411 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005412 mutex_unlock(&current->perf_event_mutex);
5413
5414 return 0;
5415}
5416
5417int perf_event_task_disable(void)
5418{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005419 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005420 struct perf_event *event;
5421
5422 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005423 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5424 ctx = perf_event_ctx_lock(event);
5425 perf_event_for_each_child(event, _perf_event_disable);
5426 perf_event_ctx_unlock(event, ctx);
5427 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005428 mutex_unlock(&current->perf_event_mutex);
5429
5430 return 0;
5431}
5432
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005433static int perf_event_index(struct perf_event *event)
5434{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005435 if (event->hw.state & PERF_HES_STOPPED)
5436 return 0;
5437
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005438 if (event->state != PERF_EVENT_STATE_ACTIVE)
5439 return 0;
5440
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005441 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005442}
5443
Eric B Munsonc4794292011-06-23 16:34:38 -04005444static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005445 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005446 u64 *enabled,
5447 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005448{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005449 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005450
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005451 *now = perf_clock();
5452 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005453 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005454}
5455
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005456static void perf_event_init_userpage(struct perf_event *event)
5457{
5458 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005459 struct perf_buffer *rb;
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005460
5461 rcu_read_lock();
5462 rb = rcu_dereference(event->rb);
5463 if (!rb)
5464 goto unlock;
5465
5466 userpg = rb->user_page;
5467
5468 /* Allow new userspace to detect that bit 0 is deprecated */
5469 userpg->cap_bit0_is_deprecated = 1;
5470 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005471 userpg->data_offset = PAGE_SIZE;
5472 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005473
5474unlock:
5475 rcu_read_unlock();
5476}
5477
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005478void __weak arch_perf_update_userpage(
5479 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005480{
5481}
5482
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005483/*
5484 * Callers need to ensure there can be no nesting of this function, otherwise
5485 * the seqlock logic goes bad. We can not serialize this because the arch
5486 * code calls this from NMI context.
5487 */
5488void perf_event_update_userpage(struct perf_event *event)
5489{
5490 struct perf_event_mmap_page *userpg;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005491 struct perf_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005492 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005493
5494 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005495 rb = rcu_dereference(event->rb);
5496 if (!rb)
5497 goto unlock;
5498
Eric B Munson0d641202011-06-24 12:26:26 -04005499 /*
5500 * compute total_time_enabled, total_time_running
5501 * based on snapshot values taken when the event
5502 * was last scheduled in.
5503 *
5504 * we cannot simply called update_context_time()
5505 * because of locking issue as we can be called in
5506 * NMI context
5507 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005508 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005509
Frederic Weisbecker76369132011-05-19 19:55:04 +02005510 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005511 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005512 * Disable preemption to guarantee consistent time stamps are stored to
5513 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005514 */
5515 preempt_disable();
5516 ++userpg->lock;
5517 barrier();
5518 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005519 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005520 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005521 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005522
Eric B Munson0d641202011-06-24 12:26:26 -04005523 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005524 atomic64_read(&event->child_total_time_enabled);
5525
Eric B Munson0d641202011-06-24 12:26:26 -04005526 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005527 atomic64_read(&event->child_total_time_running);
5528
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005529 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005530
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005531 barrier();
5532 ++userpg->lock;
5533 preempt_enable();
5534unlock:
5535 rcu_read_unlock();
5536}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005537EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005538
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305539static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005540{
Dave Jiang11bac802017-02-24 14:56:41 -08005541 struct perf_event *event = vmf->vma->vm_file->private_data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005542 struct perf_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305543 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005544
5545 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5546 if (vmf->pgoff == 0)
5547 ret = 0;
5548 return ret;
5549 }
5550
5551 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005552 rb = rcu_dereference(event->rb);
5553 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005554 goto unlock;
5555
5556 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5557 goto unlock;
5558
Frederic Weisbecker76369132011-05-19 19:55:04 +02005559 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005560 if (!vmf->page)
5561 goto unlock;
5562
5563 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005564 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005565 vmf->page->index = vmf->pgoff;
5566
5567 ret = 0;
5568unlock:
5569 rcu_read_unlock();
5570
5571 return ret;
5572}
5573
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005574static void ring_buffer_attach(struct perf_event *event,
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005575 struct perf_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005576{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005577 struct perf_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005578 unsigned long flags;
5579
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005580 if (event->rb) {
5581 /*
5582 * Should be impossible, we set this when removing
5583 * event->rb_entry and wait/clear when adding event->rb_entry.
5584 */
5585 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005586
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005587 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005588 spin_lock_irqsave(&old_rb->event_lock, flags);
5589 list_del_rcu(&event->rb_entry);
5590 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005591
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005592 event->rcu_batches = get_state_synchronize_rcu();
5593 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005594 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005595
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005596 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005597 if (event->rcu_pending) {
5598 cond_synchronize_rcu(event->rcu_batches);
5599 event->rcu_pending = 0;
5600 }
5601
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005602 spin_lock_irqsave(&rb->event_lock, flags);
5603 list_add_rcu(&event->rb_entry, &rb->event_list);
5604 spin_unlock_irqrestore(&rb->event_lock, flags);
5605 }
5606
Alexander Shishkin767ae082016-09-06 16:23:49 +03005607 /*
5608 * Avoid racing with perf_mmap_close(AUX): stop the event
5609 * before swizzling the event::rb pointer; if it's getting
5610 * unmapped, its aux_mmap_count will be 0 and it won't
5611 * restart. See the comment in __perf_pmu_output_stop().
5612 *
5613 * Data will inevitably be lost when set_output is done in
5614 * mid-air, but then again, whoever does it like this is
5615 * not in for the data anyway.
5616 */
5617 if (has_aux(event))
5618 perf_event_stop(event, 0);
5619
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005620 rcu_assign_pointer(event->rb, rb);
5621
5622 if (old_rb) {
5623 ring_buffer_put(old_rb);
5624 /*
5625 * Since we detached before setting the new rb, so that we
5626 * could attach the new rb, we could have missed a wakeup.
5627 * Provide it now.
5628 */
5629 wake_up_all(&event->waitq);
5630 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005631}
5632
5633static void ring_buffer_wakeup(struct perf_event *event)
5634{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005635 struct perf_buffer *rb;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005636
5637 rcu_read_lock();
5638 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005639 if (rb) {
5640 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5641 wake_up_all(&event->waitq);
5642 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005643 rcu_read_unlock();
5644}
5645
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005646struct perf_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005647{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005648 struct perf_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005649
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005650 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005651 rb = rcu_dereference(event->rb);
5652 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005653 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02005654 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005655 }
5656 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005657
Frederic Weisbecker76369132011-05-19 19:55:04 +02005658 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005659}
5660
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005661void ring_buffer_put(struct perf_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005662{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005663 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005664 return;
5665
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005666 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005667
Frederic Weisbecker76369132011-05-19 19:55:04 +02005668 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005669}
5670
5671static void perf_mmap_open(struct vm_area_struct *vma)
5672{
5673 struct perf_event *event = vma->vm_file->private_data;
5674
5675 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005676 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005677
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005678 if (vma->vm_pgoff)
5679 atomic_inc(&event->rb->aux_mmap_count);
5680
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005681 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005682 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005683}
5684
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005685static void perf_pmu_output_stop(struct perf_event *event);
5686
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005687/*
5688 * A buffer can be mmap()ed multiple times; either directly through the same
5689 * event, or through other events by use of perf_event_set_output().
5690 *
5691 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5692 * the buffer here, where we still have a VM context. This means we need
5693 * to detach all events redirecting to us.
5694 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005695static void perf_mmap_close(struct vm_area_struct *vma)
5696{
5697 struct perf_event *event = vma->vm_file->private_data;
5698
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005699 struct perf_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005700 struct user_struct *mmap_user = rb->mmap_user;
5701 int mmap_locked = rb->mmap_locked;
5702 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005703
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005704 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005705 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005706
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005707 /*
5708 * rb->aux_mmap_count will always drop before rb->mmap_count and
5709 * event->mmap_count, so it is ok to use event->mmap_mutex to
5710 * serialize with perf_mmap here.
5711 */
5712 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5713 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005714 /*
5715 * Stop all AUX events that are writing to this buffer,
5716 * so that we can free its AUX pages and corresponding PMU
5717 * data. Note that after rb::aux_mmap_count dropped to zero,
5718 * they won't start any more (see perf_aux_output_begin()).
5719 */
5720 perf_pmu_output_stop(event);
5721
5722 /* now it's safe to free the pages */
Alexander Shishkin36b3db02019-11-15 18:08:18 +02005723 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
5724 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005725
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005726 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005727 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02005728 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005729
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005730 mutex_unlock(&event->mmap_mutex);
5731 }
5732
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005733 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005734
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005735 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005736 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005737
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005738 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005739 mutex_unlock(&event->mmap_mutex);
5740
5741 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005742 if (atomic_read(&rb->mmap_count))
5743 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005744
5745 /*
5746 * No other mmap()s, detach from all other events that might redirect
5747 * into the now unreachable buffer. Somewhat complicated by the
5748 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5749 */
5750again:
5751 rcu_read_lock();
5752 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5753 if (!atomic_long_inc_not_zero(&event->refcount)) {
5754 /*
5755 * This event is en-route to free_event() which will
5756 * detach it and remove it from the list.
5757 */
5758 continue;
5759 }
5760 rcu_read_unlock();
5761
5762 mutex_lock(&event->mmap_mutex);
5763 /*
5764 * Check we didn't race with perf_event_set_output() which can
5765 * swizzle the rb from under us while we were waiting to
5766 * acquire mmap_mutex.
5767 *
5768 * If we find a different rb; ignore this event, a next
5769 * iteration will no longer find it on the list. We have to
5770 * still restart the iteration to make sure we're not now
5771 * iterating the wrong list.
5772 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005773 if (event->rb == rb)
5774 ring_buffer_attach(event, NULL);
5775
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005776 mutex_unlock(&event->mmap_mutex);
5777 put_event(event);
5778
5779 /*
5780 * Restart the iteration; either we're on the wrong list or
5781 * destroyed its integrity by doing a deletion.
5782 */
5783 goto again;
5784 }
5785 rcu_read_unlock();
5786
5787 /*
5788 * It could be there's still a few 0-ref events on the list; they'll
5789 * get cleaned up by free_event() -- they'll also still have their
5790 * ref on the rb and will free it whenever they are done with it.
5791 *
5792 * Aside from that, this buffer is 'fully' detached and unmapped,
5793 * undo the VM accounting.
5794 */
5795
Song Liud44248a2019-09-04 14:46:18 -07005796 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
5797 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005798 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005799 free_uid(mmap_user);
5800
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005801out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005802 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005803}
5804
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005805static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005806 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01005807 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005808 .fault = perf_mmap_fault,
5809 .page_mkwrite = perf_mmap_fault,
5810};
5811
5812static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5813{
5814 struct perf_event *event = file->private_data;
5815 unsigned long user_locked, user_lock_limit;
5816 struct user_struct *user = current_user();
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05005817 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005818 unsigned long locked, lock_limit;
5819 unsigned long vma_size;
5820 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005821 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005822 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005823
Peter Zijlstrac7920612010-05-18 10:33:24 +02005824 /*
5825 * Don't allow mmap() of inherited per-task counters. This would
5826 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005827 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005828 */
5829 if (event->cpu == -1 && event->attr.inherit)
5830 return -EINVAL;
5831
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005832 if (!(vma->vm_flags & VM_SHARED))
5833 return -EINVAL;
5834
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005835 ret = security_perf_event_read(event);
5836 if (ret)
5837 return ret;
5838
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005839 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005840
5841 if (vma->vm_pgoff == 0) {
5842 nr_pages = (vma_size / PAGE_SIZE) - 1;
5843 } else {
5844 /*
5845 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5846 * mapped, all subsequent mappings should have the same size
5847 * and offset. Must be above the normal perf buffer.
5848 */
5849 u64 aux_offset, aux_size;
5850
5851 if (!event->rb)
5852 return -EINVAL;
5853
5854 nr_pages = vma_size / PAGE_SIZE;
5855
5856 mutex_lock(&event->mmap_mutex);
5857 ret = -EINVAL;
5858
5859 rb = event->rb;
5860 if (!rb)
5861 goto aux_unlock;
5862
Mark Rutland6aa7de02017-10-23 14:07:29 -07005863 aux_offset = READ_ONCE(rb->user_page->aux_offset);
5864 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005865
5866 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5867 goto aux_unlock;
5868
5869 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5870 goto aux_unlock;
5871
5872 /* already mapped with a different offset */
5873 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5874 goto aux_unlock;
5875
5876 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5877 goto aux_unlock;
5878
5879 /* already mapped with a different size */
5880 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5881 goto aux_unlock;
5882
5883 if (!is_power_of_2(nr_pages))
5884 goto aux_unlock;
5885
5886 if (!atomic_inc_not_zero(&rb->mmap_count))
5887 goto aux_unlock;
5888
5889 if (rb_has_aux(rb)) {
5890 atomic_inc(&rb->aux_mmap_count);
5891 ret = 0;
5892 goto unlock;
5893 }
5894
5895 atomic_set(&rb->aux_mmap_count, 1);
5896 user_extra = nr_pages;
5897
5898 goto accounting;
5899 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005900
5901 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005902 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005903 * can do bitmasks instead of modulo.
5904 */
Kan Liang2ed11312015-03-02 02:14:26 -05005905 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005906 return -EINVAL;
5907
5908 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5909 return -EINVAL;
5910
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005911 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005912again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005913 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005914 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005915 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005916 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005917 goto unlock;
5918 }
5919
5920 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5921 /*
5922 * Raced against perf_mmap_close() through
5923 * perf_event_set_output(). Try again, hope for better
5924 * luck.
5925 */
5926 mutex_unlock(&event->mmap_mutex);
5927 goto again;
5928 }
5929
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005930 goto unlock;
5931 }
5932
5933 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005934
5935accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005936 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5937
5938 /*
5939 * Increase the limit linearly with more CPUs:
5940 */
5941 user_lock_limit *= num_online_cpus();
5942
Song Liu00346152020-01-23 10:11:46 -08005943 user_locked = atomic_long_read(&user->locked_vm);
5944
5945 /*
5946 * sysctl_perf_event_mlock may have changed, so that
5947 * user->locked_vm > user_lock_limit
5948 */
5949 if (user_locked > user_lock_limit)
5950 user_locked = user_lock_limit;
5951 user_locked += user_extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005952
Alexander Shishkinc4b75472019-11-20 19:06:40 +02005953 if (user_locked > user_lock_limit) {
Song Liud44248a2019-09-04 14:46:18 -07005954 /*
5955 * charge locked_vm until it hits user_lock_limit;
5956 * charge the rest from pinned_vm
5957 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005958 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07005959 user_extra -= extra;
5960 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005961
Jiri Slaby78d7d402010-03-05 13:42:54 -08005962 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005963 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005964 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005965
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005966 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005967 !capable(CAP_IPC_LOCK)) {
5968 ret = -EPERM;
5969 goto unlock;
5970 }
5971
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005972 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005973
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005974 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005975 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005976
Frederic Weisbecker76369132011-05-19 19:55:04 +02005977 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005978 rb = rb_alloc(nr_pages,
5979 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5980 event->cpu, flags);
5981
5982 if (!rb) {
5983 ret = -ENOMEM;
5984 goto unlock;
5985 }
5986
5987 atomic_set(&rb->mmap_count, 1);
5988 rb->mmap_user = get_current_user();
5989 rb->mmap_locked = extra;
5990
5991 ring_buffer_attach(event, rb);
5992
5993 perf_event_init_userpage(event);
5994 perf_event_update_userpage(event);
5995 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005996 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5997 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005998 if (!ret)
5999 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006000 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006001
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006002unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006003 if (!ret) {
6004 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08006005 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006006
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006007 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02006008 } else if (rb) {
6009 atomic_dec(&rb->mmap_count);
6010 }
6011aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006012 mutex_unlock(&event->mmap_mutex);
6013
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006014 /*
6015 * Since pinned accounting is per vm we cannot allow fork() to copy our
6016 * vma.
6017 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02006018 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019 vma->vm_ops = &perf_mmap_vmops;
6020
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006021 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02006022 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07006023
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006024 return ret;
6025}
6026
6027static int perf_fasync(int fd, struct file *filp, int on)
6028{
Al Viro496ad9a2013-01-23 17:07:38 -05006029 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006030 struct perf_event *event = filp->private_data;
6031 int retval;
6032
Al Viro59551022016-01-22 15:40:57 -05006033 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006034 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05006035 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006036
6037 if (retval < 0)
6038 return retval;
6039
6040 return 0;
6041}
6042
6043static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01006044 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006045 .release = perf_release,
6046 .read = perf_read,
6047 .poll = perf_poll,
6048 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01006049 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006050 .mmap = perf_mmap,
6051 .fasync = perf_fasync,
6052};
6053
6054/*
6055 * Perf event wakeup
6056 *
6057 * If there's data, ensure we set the poll() state and publish everything
6058 * to user-space before waking everybody up.
6059 */
6060
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006061static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6062{
6063 /* only the parent has fasync state */
6064 if (event->parent)
6065 event = event->parent;
6066 return &event->fasync;
6067}
6068
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006069void perf_event_wakeup(struct perf_event *event)
6070{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006071 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006072
6073 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006074 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006075 event->pending_kill = 0;
6076 }
6077}
6078
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006079static void perf_pending_event_disable(struct perf_event *event)
6080{
6081 int cpu = READ_ONCE(event->pending_disable);
6082
6083 if (cpu < 0)
6084 return;
6085
6086 if (cpu == smp_processor_id()) {
6087 WRITE_ONCE(event->pending_disable, -1);
6088 perf_event_disable_local(event);
6089 return;
6090 }
6091
6092 /*
6093 * CPU-A CPU-B
6094 *
6095 * perf_event_disable_inatomic()
6096 * @pending_disable = CPU-A;
6097 * irq_work_queue();
6098 *
6099 * sched-out
6100 * @pending_disable = -1;
6101 *
6102 * sched-in
6103 * perf_event_disable_inatomic()
6104 * @pending_disable = CPU-B;
6105 * irq_work_queue(); // FAILS
6106 *
6107 * irq_work_run()
6108 * perf_pending_event()
6109 *
6110 * But the event runs on CPU-B and wants disabling there.
6111 */
6112 irq_work_queue_on(&event->pending, cpu);
6113}
6114
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006115static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006116{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006117 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006118 int rctx;
6119
6120 rctx = perf_swevent_get_recursion_context();
6121 /*
6122 * If we 'fail' here, that's OK, it means recursion is already disabled
6123 * and we won't recurse 'further'.
6124 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006125
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006126 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006127
6128 if (event->pending_wakeup) {
6129 event->pending_wakeup = 0;
6130 perf_event_wakeup(event);
6131 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006132
6133 if (rctx >= 0)
6134 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006135}
6136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006137/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006138 * We assume there is only KVM supporting the callbacks.
6139 * Later on, we might change it to a list if there is
6140 * another virtualization implementation supporting the callbacks.
6141 */
6142struct perf_guest_info_callbacks *perf_guest_cbs;
6143
6144int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6145{
6146 perf_guest_cbs = cbs;
6147 return 0;
6148}
6149EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6150
6151int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6152{
6153 perf_guest_cbs = NULL;
6154 return 0;
6155}
6156EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
6157
Jiri Olsa40189942012-08-07 15:20:37 +02006158static void
6159perf_output_sample_regs(struct perf_output_handle *handle,
6160 struct pt_regs *regs, u64 mask)
6161{
6162 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306163 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006164
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306165 bitmap_from_u64(_mask, mask);
6166 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006167 u64 val;
6168
6169 val = perf_reg_value(regs, bit);
6170 perf_output_put(handle, val);
6171 }
6172}
6173
Stephane Eranian60e23642014-09-24 13:48:37 +02006174static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006175 struct pt_regs *regs,
6176 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02006177{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006178 if (user_mode(regs)) {
6179 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006180 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006181 } else if (!(current->flags & PF_KTHREAD)) {
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006182 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006183 } else {
6184 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6185 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006186 }
6187}
6188
Stephane Eranian60e23642014-09-24 13:48:37 +02006189static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6190 struct pt_regs *regs)
6191{
6192 regs_intr->regs = regs;
6193 regs_intr->abi = perf_reg_abi(current);
6194}
6195
6196
Jiri Olsac5ebced2012-08-07 15:20:40 +02006197/*
6198 * Get remaining task size from user stack pointer.
6199 *
6200 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006201 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006202 * so using TASK_SIZE as limit.
6203 */
6204static u64 perf_ustack_task_size(struct pt_regs *regs)
6205{
6206 unsigned long addr = perf_user_stack_pointer(regs);
6207
6208 if (!addr || addr >= TASK_SIZE)
6209 return 0;
6210
6211 return TASK_SIZE - addr;
6212}
6213
6214static u16
6215perf_sample_ustack_size(u16 stack_size, u16 header_size,
6216 struct pt_regs *regs)
6217{
6218 u64 task_size;
6219
6220 /* No regs, no stack pointer, no dump. */
6221 if (!regs)
6222 return 0;
6223
6224 /*
6225 * Check if we fit in with the requested stack size into the:
6226 * - TASK_SIZE
6227 * If we don't, we limit the size to the TASK_SIZE.
6228 *
6229 * - remaining sample size
6230 * If we don't, we customize the stack size to
6231 * fit in to the remaining sample size.
6232 */
6233
6234 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6235 stack_size = min(stack_size, (u16) task_size);
6236
6237 /* Current header size plus static size and dynamic size. */
6238 header_size += 2 * sizeof(u64);
6239
6240 /* Do we fit in with the current stack dump size? */
6241 if ((u16) (header_size + stack_size) < header_size) {
6242 /*
6243 * If we overflow the maximum size for the sample,
6244 * we customize the stack dump size to fit in.
6245 */
6246 stack_size = USHRT_MAX - header_size - sizeof(u64);
6247 stack_size = round_up(stack_size, sizeof(u64));
6248 }
6249
6250 return stack_size;
6251}
6252
6253static void
6254perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6255 struct pt_regs *regs)
6256{
6257 /* Case of a kernel thread, nothing to dump */
6258 if (!regs) {
6259 u64 size = 0;
6260 perf_output_put(handle, size);
6261 } else {
6262 unsigned long sp;
6263 unsigned int rem;
6264 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006265 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006266
6267 /*
6268 * We dump:
6269 * static size
6270 * - the size requested by user or the best one we can fit
6271 * in to the sample max size
6272 * data
6273 * - user stack dump data
6274 * dynamic size
6275 * - the actual dumped size
6276 */
6277
6278 /* Static size. */
6279 perf_output_put(handle, dump_size);
6280
6281 /* Data. */
6282 sp = perf_user_stack_pointer(regs);
Yabin Cui02e18442018-08-23 15:59:35 -07006283 fs = get_fs();
6284 set_fs(USER_DS);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006285 rem = __output_copy_user(handle, (void *) sp, dump_size);
Yabin Cui02e18442018-08-23 15:59:35 -07006286 set_fs(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006287 dyn_size = dump_size - rem;
6288
6289 perf_output_skip(handle, rem);
6290
6291 /* Dynamic size. */
6292 perf_output_put(handle, dyn_size);
6293 }
6294}
6295
Alexander Shishkina4faf002019-10-25 17:08:33 +03006296static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6297 struct perf_sample_data *data,
6298 size_t size)
6299{
6300 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006301 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006302
6303 data->aux_size = 0;
6304
6305 if (!sampler)
6306 goto out;
6307
6308 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6309 goto out;
6310
6311 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6312 goto out;
6313
6314 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6315 if (!rb)
6316 goto out;
6317
6318 /*
6319 * If this is an NMI hit inside sampling code, don't take
6320 * the sample. See also perf_aux_sample_output().
6321 */
6322 if (READ_ONCE(rb->aux_in_sampling)) {
6323 data->aux_size = 0;
6324 } else {
6325 size = min_t(size_t, size, perf_aux_size(rb));
6326 data->aux_size = ALIGN(size, sizeof(u64));
6327 }
6328 ring_buffer_put(rb);
6329
6330out:
6331 return data->aux_size;
6332}
6333
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006334long perf_pmu_snapshot_aux(struct perf_buffer *rb,
Alexander Shishkina4faf002019-10-25 17:08:33 +03006335 struct perf_event *event,
6336 struct perf_output_handle *handle,
6337 unsigned long size)
6338{
6339 unsigned long flags;
6340 long ret;
6341
6342 /*
6343 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6344 * paths. If we start calling them in NMI context, they may race with
6345 * the IRQ ones, that is, for example, re-starting an event that's just
6346 * been stopped, which is why we're using a separate callback that
6347 * doesn't change the event state.
6348 *
6349 * IRQs need to be disabled to prevent IPIs from racing with us.
6350 */
6351 local_irq_save(flags);
6352 /*
6353 * Guard against NMI hits inside the critical section;
6354 * see also perf_prepare_sample_aux().
6355 */
6356 WRITE_ONCE(rb->aux_in_sampling, 1);
6357 barrier();
6358
6359 ret = event->pmu->snapshot_aux(event, handle, size);
6360
6361 barrier();
6362 WRITE_ONCE(rb->aux_in_sampling, 0);
6363 local_irq_restore(flags);
6364
6365 return ret;
6366}
6367
6368static void perf_aux_sample_output(struct perf_event *event,
6369 struct perf_output_handle *handle,
6370 struct perf_sample_data *data)
6371{
6372 struct perf_event *sampler = event->aux_event;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006373 struct perf_buffer *rb;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006374 unsigned long pad;
Alexander Shishkina4faf002019-10-25 17:08:33 +03006375 long size;
6376
6377 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6378 return;
6379
6380 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6381 if (!rb)
6382 return;
6383
6384 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6385
6386 /*
6387 * An error here means that perf_output_copy() failed (returned a
6388 * non-zero surplus that it didn't copy), which in its current
6389 * enlightened implementation is not possible. If that changes, we'd
6390 * like to know.
6391 */
6392 if (WARN_ON_ONCE(size < 0))
6393 goto out_put;
6394
6395 /*
6396 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6397 * perf_prepare_sample_aux(), so should not be more than that.
6398 */
6399 pad = data->aux_size - size;
6400 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6401 pad = 8;
6402
6403 if (pad) {
6404 u64 zero = 0;
6405 perf_output_copy(handle, &zero, pad);
6406 }
6407
6408out_put:
6409 ring_buffer_put(rb);
6410}
6411
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006412static void __perf_event_header__init_id(struct perf_event_header *header,
6413 struct perf_sample_data *data,
6414 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006415{
6416 u64 sample_type = event->attr.sample_type;
6417
6418 data->type = sample_type;
6419 header->size += event->id_header_size;
6420
6421 if (sample_type & PERF_SAMPLE_TID) {
6422 /* namespace issues */
6423 data->tid_entry.pid = perf_event_pid(event, current);
6424 data->tid_entry.tid = perf_event_tid(event, current);
6425 }
6426
6427 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006428 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006429
Adrian Hunterff3d5272013-08-27 11:23:07 +03006430 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006431 data->id = primary_event_id(event);
6432
6433 if (sample_type & PERF_SAMPLE_STREAM_ID)
6434 data->stream_id = event->id;
6435
6436 if (sample_type & PERF_SAMPLE_CPU) {
6437 data->cpu_entry.cpu = raw_smp_processor_id();
6438 data->cpu_entry.reserved = 0;
6439 }
6440}
6441
Frederic Weisbecker76369132011-05-19 19:55:04 +02006442void perf_event_header__init_id(struct perf_event_header *header,
6443 struct perf_sample_data *data,
6444 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006445{
6446 if (event->attr.sample_id_all)
6447 __perf_event_header__init_id(header, data, event);
6448}
6449
6450static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6451 struct perf_sample_data *data)
6452{
6453 u64 sample_type = data->type;
6454
6455 if (sample_type & PERF_SAMPLE_TID)
6456 perf_output_put(handle, data->tid_entry);
6457
6458 if (sample_type & PERF_SAMPLE_TIME)
6459 perf_output_put(handle, data->time);
6460
6461 if (sample_type & PERF_SAMPLE_ID)
6462 perf_output_put(handle, data->id);
6463
6464 if (sample_type & PERF_SAMPLE_STREAM_ID)
6465 perf_output_put(handle, data->stream_id);
6466
6467 if (sample_type & PERF_SAMPLE_CPU)
6468 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006469
6470 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6471 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006472}
6473
Frederic Weisbecker76369132011-05-19 19:55:04 +02006474void perf_event__output_id_sample(struct perf_event *event,
6475 struct perf_output_handle *handle,
6476 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006477{
6478 if (event->attr.sample_id_all)
6479 __perf_event__output_id_sample(handle, sample);
6480}
6481
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006482static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006483 struct perf_event *event,
6484 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006485{
6486 u64 read_format = event->attr.read_format;
6487 u64 values[4];
6488 int n = 0;
6489
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006490 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006491 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006492 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006493 atomic64_read(&event->child_total_time_enabled);
6494 }
6495 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006496 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006497 atomic64_read(&event->child_total_time_running);
6498 }
6499 if (read_format & PERF_FORMAT_ID)
6500 values[n++] = primary_event_id(event);
6501
Frederic Weisbecker76369132011-05-19 19:55:04 +02006502 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006503}
6504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006505static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006506 struct perf_event *event,
6507 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006508{
6509 struct perf_event *leader = event->group_leader, *sub;
6510 u64 read_format = event->attr.read_format;
6511 u64 values[5];
6512 int n = 0;
6513
6514 values[n++] = 1 + leader->nr_siblings;
6515
6516 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006517 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006518
6519 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006520 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006521
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006522 if ((leader != event) &&
6523 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006524 leader->pmu->read(leader);
6525
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006526 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006527 if (read_format & PERF_FORMAT_ID)
6528 values[n++] = primary_event_id(leader);
6529
Frederic Weisbecker76369132011-05-19 19:55:04 +02006530 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006531
Peter Zijlstraedb39592018-03-15 17:36:56 +01006532 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006533 n = 0;
6534
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006535 if ((sub != event) &&
6536 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006537 sub->pmu->read(sub);
6538
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006539 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540 if (read_format & PERF_FORMAT_ID)
6541 values[n++] = primary_event_id(sub);
6542
Frederic Weisbecker76369132011-05-19 19:55:04 +02006543 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006544 }
6545}
6546
Stephane Eranianeed01522010-10-26 16:08:01 +02006547#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6548 PERF_FORMAT_TOTAL_TIME_RUNNING)
6549
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006550/*
6551 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6552 *
6553 * The problem is that its both hard and excessively expensive to iterate the
6554 * child list, not to mention that its impossible to IPI the children running
6555 * on another CPU, from interrupt/NMI context.
6556 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006557static void perf_output_read(struct perf_output_handle *handle,
6558 struct perf_event *event)
6559{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006560 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006561 u64 read_format = event->attr.read_format;
6562
6563 /*
6564 * compute total_time_enabled, total_time_running
6565 * based on snapshot values taken when the event
6566 * was last scheduled in.
6567 *
6568 * we cannot simply called update_context_time()
6569 * because of locking issue as we are called in
6570 * NMI context
6571 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006572 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006573 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006574
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006575 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006576 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006577 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006578 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006579}
6580
Kan Liangbbfd5e42020-01-27 08:53:54 -08006581static inline bool perf_sample_save_hw_index(struct perf_event *event)
6582{
6583 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
6584}
6585
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006586void perf_output_sample(struct perf_output_handle *handle,
6587 struct perf_event_header *header,
6588 struct perf_sample_data *data,
6589 struct perf_event *event)
6590{
6591 u64 sample_type = data->type;
6592
6593 perf_output_put(handle, *header);
6594
Adrian Hunterff3d5272013-08-27 11:23:07 +03006595 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6596 perf_output_put(handle, data->id);
6597
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006598 if (sample_type & PERF_SAMPLE_IP)
6599 perf_output_put(handle, data->ip);
6600
6601 if (sample_type & PERF_SAMPLE_TID)
6602 perf_output_put(handle, data->tid_entry);
6603
6604 if (sample_type & PERF_SAMPLE_TIME)
6605 perf_output_put(handle, data->time);
6606
6607 if (sample_type & PERF_SAMPLE_ADDR)
6608 perf_output_put(handle, data->addr);
6609
6610 if (sample_type & PERF_SAMPLE_ID)
6611 perf_output_put(handle, data->id);
6612
6613 if (sample_type & PERF_SAMPLE_STREAM_ID)
6614 perf_output_put(handle, data->stream_id);
6615
6616 if (sample_type & PERF_SAMPLE_CPU)
6617 perf_output_put(handle, data->cpu_entry);
6618
6619 if (sample_type & PERF_SAMPLE_PERIOD)
6620 perf_output_put(handle, data->period);
6621
6622 if (sample_type & PERF_SAMPLE_READ)
6623 perf_output_read(handle, event);
6624
6625 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01006626 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006627
Jiri Olsa99e818c2018-01-07 17:03:50 +01006628 size += data->callchain->nr;
6629 size *= sizeof(u64);
6630 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006631 }
6632
6633 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006634 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07006635
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006636 if (raw) {
6637 struct perf_raw_frag *frag = &raw->frag;
6638
6639 perf_output_put(handle, raw->size);
6640 do {
6641 if (frag->copy) {
6642 __output_custom(handle, frag->copy,
6643 frag->data, frag->size);
6644 } else {
6645 __output_copy(handle, frag->data,
6646 frag->size);
6647 }
6648 if (perf_raw_frag_last(frag))
6649 break;
6650 frag = frag->next;
6651 } while (1);
6652 if (frag->pad)
6653 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006654 } else {
6655 struct {
6656 u32 size;
6657 u32 data;
6658 } raw = {
6659 .size = sizeof(u32),
6660 .data = 0,
6661 };
6662 perf_output_put(handle, raw);
6663 }
6664 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006665
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006666 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6667 if (data->br_stack) {
6668 size_t size;
6669
6670 size = data->br_stack->nr
6671 * sizeof(struct perf_branch_entry);
6672
6673 perf_output_put(handle, data->br_stack->nr);
Kan Liangbbfd5e42020-01-27 08:53:54 -08006674 if (perf_sample_save_hw_index(event))
6675 perf_output_put(handle, data->br_stack->hw_idx);
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006676 perf_output_copy(handle, data->br_stack->entries, size);
6677 } else {
6678 /*
6679 * we always store at least the value of nr
6680 */
6681 u64 nr = 0;
6682 perf_output_put(handle, nr);
6683 }
6684 }
Jiri Olsa40189942012-08-07 15:20:37 +02006685
6686 if (sample_type & PERF_SAMPLE_REGS_USER) {
6687 u64 abi = data->regs_user.abi;
6688
6689 /*
6690 * If there are no regs to dump, notice it through
6691 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6692 */
6693 perf_output_put(handle, abi);
6694
6695 if (abi) {
6696 u64 mask = event->attr.sample_regs_user;
6697 perf_output_sample_regs(handle,
6698 data->regs_user.regs,
6699 mask);
6700 }
6701 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006702
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006703 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02006704 perf_output_sample_ustack(handle,
6705 data->stack_user_size,
6706 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006707 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01006708
6709 if (sample_type & PERF_SAMPLE_WEIGHT)
6710 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01006711
6712 if (sample_type & PERF_SAMPLE_DATA_SRC)
6713 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006714
Andi Kleenfdfbbd02013-09-20 07:40:39 -07006715 if (sample_type & PERF_SAMPLE_TRANSACTION)
6716 perf_output_put(handle, data->txn);
6717
Stephane Eranian60e23642014-09-24 13:48:37 +02006718 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6719 u64 abi = data->regs_intr.abi;
6720 /*
6721 * If there are no regs to dump, notice it through
6722 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6723 */
6724 perf_output_put(handle, abi);
6725
6726 if (abi) {
6727 u64 mask = event->attr.sample_regs_intr;
6728
6729 perf_output_sample_regs(handle,
6730 data->regs_intr.regs,
6731 mask);
6732 }
6733 }
6734
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006735 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6736 perf_output_put(handle, data->phys_addr);
6737
Alexander Shishkina4faf002019-10-25 17:08:33 +03006738 if (sample_type & PERF_SAMPLE_AUX) {
6739 perf_output_put(handle, data->aux_size);
6740
6741 if (data->aux_size)
6742 perf_aux_sample_output(event, handle, data);
6743 }
6744
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006745 if (!event->attr.watermark) {
6746 int wakeup_events = event->attr.wakeup_events;
6747
6748 if (wakeup_events) {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05006749 struct perf_buffer *rb = handle->rb;
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006750 int events = local_inc_return(&rb->events);
6751
6752 if (events >= wakeup_events) {
6753 local_sub(wakeup_events, &rb->events);
6754 local_inc(&rb->wakeup);
6755 }
6756 }
6757 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006758}
6759
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006760static u64 perf_virt_to_phys(u64 virt)
6761{
6762 u64 phys_addr = 0;
6763 struct page *p = NULL;
6764
6765 if (!virt)
6766 return 0;
6767
6768 if (virt >= TASK_SIZE) {
6769 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6770 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6771 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6772 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6773 } else {
6774 /*
6775 * Walking the pages tables for user address.
6776 * Interrupts are disabled, so it prevents any tear down
6777 * of the page tables.
6778 * Try IRQ-safe __get_user_pages_fast first.
6779 * If failed, leave phys_addr as 0.
6780 */
6781 if ((current->mm != NULL) &&
6782 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6783 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6784
6785 if (p)
6786 put_page(p);
6787 }
6788
6789 return phys_addr;
6790}
6791
Jiri Olsa99e818c2018-01-07 17:03:50 +01006792static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6793
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006794struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006795perf_callchain(struct perf_event *event, struct pt_regs *regs)
6796{
6797 bool kernel = !event->attr.exclude_callchain_kernel;
6798 bool user = !event->attr.exclude_callchain_user;
6799 /* Disallow cross-task user callchains. */
6800 bool crosstask = event->ctx->task && event->ctx->task != current;
6801 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01006802 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006803
6804 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01006805 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006806
Jiri Olsa99e818c2018-01-07 17:03:50 +01006807 callchain = get_perf_callchain(regs, 0, kernel, user,
6808 max_stack, crosstask, true);
6809 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006810}
6811
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006812void perf_prepare_sample(struct perf_event_header *header,
6813 struct perf_sample_data *data,
6814 struct perf_event *event,
6815 struct pt_regs *regs)
6816{
6817 u64 sample_type = event->attr.sample_type;
6818
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006819 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006820 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006821
6822 header->misc = 0;
6823 header->misc |= perf_misc_flags(regs);
6824
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006825 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006826
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006827 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828 data->ip = perf_instruction_pointer(regs);
6829
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006830 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6831 int size = 1;
6832
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006833 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6834 data->callchain = perf_callchain(event, regs);
6835
Jiri Olsa99e818c2018-01-07 17:03:50 +01006836 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006837
6838 header->size += size * sizeof(u64);
6839 }
6840
6841 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006842 struct perf_raw_record *raw = data->raw;
6843 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006844
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006845 if (raw) {
6846 struct perf_raw_frag *frag = &raw->frag;
6847 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006848
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006849 do {
6850 sum += frag->size;
6851 if (perf_raw_frag_last(frag))
6852 break;
6853 frag = frag->next;
6854 } while (1);
6855
6856 size = round_up(sum + sizeof(u32), sizeof(u64));
6857 raw->size = size - sizeof(u32);
6858 frag->pad = raw->size - sum;
6859 } else {
6860 size = sizeof(u64);
6861 }
6862
6863 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006864 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006865
6866 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6867 int size = sizeof(u64); /* nr */
6868 if (data->br_stack) {
Kan Liangbbfd5e42020-01-27 08:53:54 -08006869 if (perf_sample_save_hw_index(event))
6870 size += sizeof(u64);
6871
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006872 size += data->br_stack->nr
6873 * sizeof(struct perf_branch_entry);
6874 }
6875 header->size += size;
6876 }
Jiri Olsa40189942012-08-07 15:20:37 +02006877
Peter Zijlstra25657112014-09-24 13:48:42 +02006878 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006879 perf_sample_regs_user(&data->regs_user, regs,
6880 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006881
Jiri Olsa40189942012-08-07 15:20:37 +02006882 if (sample_type & PERF_SAMPLE_REGS_USER) {
6883 /* regs dump ABI info */
6884 int size = sizeof(u64);
6885
Jiri Olsa40189942012-08-07 15:20:37 +02006886 if (data->regs_user.regs) {
6887 u64 mask = event->attr.sample_regs_user;
6888 size += hweight64(mask) * sizeof(u64);
6889 }
6890
6891 header->size += size;
6892 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006893
6894 if (sample_type & PERF_SAMPLE_STACK_USER) {
6895 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006896 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02006897 * processed as the last one or have additional check added
6898 * in case new sample type is added, because we could eat
6899 * up the rest of the sample size.
6900 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006901 u16 stack_size = event->attr.sample_stack_user;
6902 u16 size = sizeof(u64);
6903
Jiri Olsac5ebced2012-08-07 15:20:40 +02006904 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006905 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006906
6907 /*
6908 * If there is something to dump, add space for the dump
6909 * itself and for the field that tells the dynamic size,
6910 * which is how many have been actually dumped.
6911 */
6912 if (stack_size)
6913 size += sizeof(u64) + stack_size;
6914
6915 data->stack_user_size = stack_size;
6916 header->size += size;
6917 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006918
6919 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6920 /* regs dump ABI info */
6921 int size = sizeof(u64);
6922
6923 perf_sample_regs_intr(&data->regs_intr, regs);
6924
6925 if (data->regs_intr.regs) {
6926 u64 mask = event->attr.sample_regs_intr;
6927
6928 size += hweight64(mask) * sizeof(u64);
6929 }
6930
6931 header->size += size;
6932 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006933
6934 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6935 data->phys_addr = perf_virt_to_phys(data->addr);
Alexander Shishkina4faf002019-10-25 17:08:33 +03006936
6937 if (sample_type & PERF_SAMPLE_AUX) {
6938 u64 size;
6939
6940 header->size += sizeof(u64); /* size */
6941
6942 /*
6943 * Given the 16bit nature of header::size, an AUX sample can
6944 * easily overflow it, what with all the preceding sample bits.
6945 * Make sure this doesn't happen by using up to U16_MAX bytes
6946 * per sample in total (rounded down to 8 byte boundary).
6947 */
6948 size = min_t(size_t, U16_MAX - header->size,
6949 event->attr.aux_sample_size);
6950 size = rounddown(size, 8);
6951 size = perf_prepare_sample_aux(event, data, size);
6952
6953 WARN_ON_ONCE(size + header->size > U16_MAX);
6954 header->size += size;
6955 }
6956 /*
6957 * If you're adding more sample types here, you likely need to do
6958 * something about the overflowing header::size, like repurpose the
6959 * lowest 3 bits of size, which should be always zero at the moment.
6960 * This raises a more important question, do we really need 512k sized
6961 * samples and why, so good argumentation is in order for whatever you
6962 * do here next.
6963 */
6964 WARN_ON_ONCE(header->size & 7);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006965}
6966
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006967static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00006968__perf_event_output(struct perf_event *event,
6969 struct perf_sample_data *data,
6970 struct pt_regs *regs,
6971 int (*output_begin)(struct perf_output_handle *,
6972 struct perf_event *,
6973 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006974{
6975 struct perf_output_handle handle;
6976 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006977 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006978
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006979 /* protect the callchain buffers */
6980 rcu_read_lock();
6981
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006982 perf_prepare_sample(&header, data, event, regs);
6983
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006984 err = output_begin(&handle, event, header.size);
6985 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006986 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006987
6988 perf_output_sample(&handle, &header, data, event);
6989
6990 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006991
6992exit:
6993 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006994 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006995}
6996
Wang Nan9ecda412016-04-05 14:11:18 +00006997void
6998perf_event_output_forward(struct perf_event *event,
6999 struct perf_sample_data *data,
7000 struct pt_regs *regs)
7001{
7002 __perf_event_output(event, data, regs, perf_output_begin_forward);
7003}
7004
7005void
7006perf_event_output_backward(struct perf_event *event,
7007 struct perf_sample_data *data,
7008 struct pt_regs *regs)
7009{
7010 __perf_event_output(event, data, regs, perf_output_begin_backward);
7011}
7012
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007013int
Wang Nan9ecda412016-04-05 14:11:18 +00007014perf_event_output(struct perf_event *event,
7015 struct perf_sample_data *data,
7016 struct pt_regs *regs)
7017{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03007018 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00007019}
7020
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007021/*
7022 * read event_id
7023 */
7024
7025struct perf_read_event {
7026 struct perf_event_header header;
7027
7028 u32 pid;
7029 u32 tid;
7030};
7031
7032static void
7033perf_event_read_event(struct perf_event *event,
7034 struct task_struct *task)
7035{
7036 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007037 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007038 struct perf_read_event read_event = {
7039 .header = {
7040 .type = PERF_RECORD_READ,
7041 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007042 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007043 },
7044 .pid = perf_event_pid(event, task),
7045 .tid = perf_event_tid(event, task),
7046 };
7047 int ret;
7048
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007049 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007050 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007051 if (ret)
7052 return;
7053
7054 perf_output_put(&handle, read_event);
7055 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007056 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007057
7058 perf_output_end(&handle);
7059}
7060
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007061typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007062
7063static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007064perf_iterate_ctx(struct perf_event_context *ctx,
7065 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007066 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02007067{
7068 struct perf_event *event;
7069
7070 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007071 if (!all) {
7072 if (event->state < PERF_EVENT_STATE_INACTIVE)
7073 continue;
7074 if (!event_filter_match(event))
7075 continue;
7076 }
7077
Jiri Olsa67516842013-07-09 18:56:31 +02007078 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007079 }
7080}
7081
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007082static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07007083{
7084 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7085 struct perf_event *event;
7086
7087 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02007088 /*
7089 * Skip events that are not fully formed yet; ensure that
7090 * if we observe event->ctx, both event and ctx will be
7091 * complete enough. See perf_install_in_context().
7092 */
7093 if (!smp_load_acquire(&event->ctx))
7094 continue;
7095
Kan Liangf2fb6be2016-03-23 11:24:37 -07007096 if (event->state < PERF_EVENT_STATE_INACTIVE)
7097 continue;
7098 if (!event_filter_match(event))
7099 continue;
7100 output(event, data);
7101 }
7102}
7103
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007104/*
7105 * Iterate all events that need to receive side-band events.
7106 *
7107 * For new callers; ensure that account_pmu_sb_event() includes
7108 * your event, otherwise it might not get delivered.
7109 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007110static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007111perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007112 struct perf_event_context *task_ctx)
7113{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007114 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02007115 int ctxn;
7116
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007117 rcu_read_lock();
7118 preempt_disable();
7119
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007120 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007121 * If we have task_ctx != NULL we only notify the task context itself.
7122 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007123 * context.
7124 */
7125 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007126 perf_iterate_ctx(task_ctx, output, data, false);
7127 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01007128 }
7129
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007130 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07007131
7132 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02007133 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7134 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007135 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02007136 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007137done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07007138 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02007139 rcu_read_unlock();
7140}
7141
Alexander Shishkin375637b2016-04-27 18:44:46 +03007142/*
7143 * Clear all file-based filters at exec, they'll have to be
7144 * re-instated when/if these objects are mmapped again.
7145 */
7146static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7147{
7148 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7149 struct perf_addr_filter *filter;
7150 unsigned int restart = 0, count = 0;
7151 unsigned long flags;
7152
7153 if (!has_addr_filter(event))
7154 return;
7155
7156 raw_spin_lock_irqsave(&ifh->lock, flags);
7157 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07007158 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007159 event->addr_filter_ranges[count].start = 0;
7160 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007161 restart++;
7162 }
7163
7164 count++;
7165 }
7166
7167 if (restart)
7168 event->addr_filters_gen++;
7169 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7170
7171 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007172 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007173}
7174
7175void perf_event_exec(void)
7176{
7177 struct perf_event_context *ctx;
7178 int ctxn;
7179
7180 rcu_read_lock();
7181 for_each_task_context_nr(ctxn) {
7182 ctx = current->perf_event_ctxp[ctxn];
7183 if (!ctx)
7184 continue;
7185
7186 perf_event_enable_on_exec(ctxn);
7187
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007188 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03007189 true);
7190 }
7191 rcu_read_unlock();
7192}
7193
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007194struct remote_output {
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007195 struct perf_buffer *rb;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007196 int err;
7197};
7198
7199static void __perf_event_output_stop(struct perf_event *event, void *data)
7200{
7201 struct perf_event *parent = event->parent;
7202 struct remote_output *ro = data;
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -05007203 struct perf_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007204 struct stop_event_data sd = {
7205 .event = event,
7206 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007207
7208 if (!has_aux(event))
7209 return;
7210
7211 if (!parent)
7212 parent = event;
7213
7214 /*
7215 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03007216 * ring-buffer, but it will be the child that's actually using it.
7217 *
7218 * We are using event::rb to determine if the event should be stopped,
7219 * however this may race with ring_buffer_attach() (through set_output),
7220 * which will make us skip the event that actually needs to be stopped.
7221 * So ring_buffer_attach() has to stop an aux event before re-assigning
7222 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007223 */
7224 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007225 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007226}
7227
7228static int __perf_pmu_output_stop(void *info)
7229{
7230 struct perf_event *event = info;
Alexander Shishkinf3a519e2019-10-22 10:39:40 +03007231 struct pmu *pmu = event->ctx->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01007232 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007233 struct remote_output ro = {
7234 .rb = event->rb,
7235 };
7236
7237 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007238 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007239 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007240 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03007241 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02007242 rcu_read_unlock();
7243
7244 return ro.err;
7245}
7246
7247static void perf_pmu_output_stop(struct perf_event *event)
7248{
7249 struct perf_event *iter;
7250 int err, cpu;
7251
7252restart:
7253 rcu_read_lock();
7254 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7255 /*
7256 * For per-CPU events, we need to make sure that neither they
7257 * nor their children are running; for cpu==-1 events it's
7258 * sufficient to stop the event itself if it's active, since
7259 * it can't have children.
7260 */
7261 cpu = iter->cpu;
7262 if (cpu == -1)
7263 cpu = READ_ONCE(iter->oncpu);
7264
7265 if (cpu == -1)
7266 continue;
7267
7268 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7269 if (err == -EAGAIN) {
7270 rcu_read_unlock();
7271 goto restart;
7272 }
7273 }
7274 rcu_read_unlock();
7275}
7276
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007277/*
7278 * task tracking -- fork/exit
7279 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007280 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007281 */
7282
7283struct perf_task_event {
7284 struct task_struct *task;
7285 struct perf_event_context *task_ctx;
7286
7287 struct {
7288 struct perf_event_header header;
7289
7290 u32 pid;
7291 u32 ppid;
7292 u32 tid;
7293 u32 ptid;
7294 u64 time;
7295 } event_id;
7296};
7297
Jiri Olsa67516842013-07-09 18:56:31 +02007298static int perf_event_task_match(struct perf_event *event)
7299{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007300 return event->attr.comm || event->attr.mmap ||
7301 event->attr.mmap2 || event->attr.mmap_data ||
7302 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007303}
7304
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007305static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007306 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007307{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007308 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007309 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007310 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007311 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007312 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007313
Jiri Olsa67516842013-07-09 18:56:31 +02007314 if (!perf_event_task_match(event))
7315 return;
7316
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007317 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007318
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007319 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007320 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007321 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007322 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007323
7324 task_event->event_id.pid = perf_event_pid(event, task);
7325 task_event->event_id.ppid = perf_event_pid(event, current);
7326
7327 task_event->event_id.tid = perf_event_tid(event, task);
7328 task_event->event_id.ptid = perf_event_tid(event, current);
7329
Peter Zijlstra34f43922015-02-20 14:05:38 +01007330 task_event->event_id.time = perf_event_clock(event);
7331
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007332 perf_output_put(&handle, task_event->event_id);
7333
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007334 perf_event__output_id_sample(event, &handle, &sample);
7335
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007336 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007337out:
7338 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007339}
7340
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007341static void perf_event_task(struct task_struct *task,
7342 struct perf_event_context *task_ctx,
7343 int new)
7344{
7345 struct perf_task_event task_event;
7346
7347 if (!atomic_read(&nr_comm_events) &&
7348 !atomic_read(&nr_mmap_events) &&
7349 !atomic_read(&nr_task_events))
7350 return;
7351
7352 task_event = (struct perf_task_event){
7353 .task = task,
7354 .task_ctx = task_ctx,
7355 .event_id = {
7356 .header = {
7357 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7358 .misc = 0,
7359 .size = sizeof(task_event.event_id),
7360 },
7361 /* .pid */
7362 /* .ppid */
7363 /* .tid */
7364 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007365 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007366 },
7367 };
7368
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007369 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007370 &task_event,
7371 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007372}
7373
7374void perf_event_fork(struct task_struct *task)
7375{
7376 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307377 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007378}
7379
7380/*
7381 * comm tracking
7382 */
7383
7384struct perf_comm_event {
7385 struct task_struct *task;
7386 char *comm;
7387 int comm_size;
7388
7389 struct {
7390 struct perf_event_header header;
7391
7392 u32 pid;
7393 u32 tid;
7394 } event_id;
7395};
7396
Jiri Olsa67516842013-07-09 18:56:31 +02007397static int perf_event_comm_match(struct perf_event *event)
7398{
7399 return event->attr.comm;
7400}
7401
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007402static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007403 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007404{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007405 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007406 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007407 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007408 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007409 int ret;
7410
Jiri Olsa67516842013-07-09 18:56:31 +02007411 if (!perf_event_comm_match(event))
7412 return;
7413
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007414 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
7415 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007416 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007417
7418 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007419 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007420
7421 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7422 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
7423
7424 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02007425 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007426 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007427
7428 perf_event__output_id_sample(event, &handle, &sample);
7429
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007430 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007431out:
7432 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007433}
7434
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007435static void perf_event_comm_event(struct perf_comm_event *comm_event)
7436{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007437 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007438 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007439
7440 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01007441 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007442 size = ALIGN(strlen(comm)+1, sizeof(u64));
7443
7444 comm_event->comm = comm;
7445 comm_event->comm_size = size;
7446
7447 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007448
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007449 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007450 comm_event,
7451 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007452}
7453
Adrian Hunter82b89772014-05-28 11:45:04 +03007454void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007455{
7456 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007457
7458 if (!atomic_read(&nr_comm_events))
7459 return;
7460
7461 comm_event = (struct perf_comm_event){
7462 .task = task,
7463 /* .comm */
7464 /* .comm_size */
7465 .event_id = {
7466 .header = {
7467 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03007468 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007469 /* .size */
7470 },
7471 /* .pid */
7472 /* .tid */
7473 },
7474 };
7475
7476 perf_event_comm_event(&comm_event);
7477}
7478
7479/*
Hari Bathinie4222672017-03-08 02:11:36 +05307480 * namespaces tracking
7481 */
7482
7483struct perf_namespaces_event {
7484 struct task_struct *task;
7485
7486 struct {
7487 struct perf_event_header header;
7488
7489 u32 pid;
7490 u32 tid;
7491 u64 nr_namespaces;
7492 struct perf_ns_link_info link_info[NR_NAMESPACES];
7493 } event_id;
7494};
7495
7496static int perf_event_namespaces_match(struct perf_event *event)
7497{
7498 return event->attr.namespaces;
7499}
7500
7501static void perf_event_namespaces_output(struct perf_event *event,
7502 void *data)
7503{
7504 struct perf_namespaces_event *namespaces_event = data;
7505 struct perf_output_handle handle;
7506 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02007507 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05307508 int ret;
7509
7510 if (!perf_event_namespaces_match(event))
7511 return;
7512
7513 perf_event_header__init_id(&namespaces_event->event_id.header,
7514 &sample, event);
7515 ret = perf_output_begin(&handle, event,
7516 namespaces_event->event_id.header.size);
7517 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02007518 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05307519
7520 namespaces_event->event_id.pid = perf_event_pid(event,
7521 namespaces_event->task);
7522 namespaces_event->event_id.tid = perf_event_tid(event,
7523 namespaces_event->task);
7524
7525 perf_output_put(&handle, namespaces_event->event_id);
7526
7527 perf_event__output_id_sample(event, &handle, &sample);
7528
7529 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02007530out:
7531 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05307532}
7533
7534static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7535 struct task_struct *task,
7536 const struct proc_ns_operations *ns_ops)
7537{
7538 struct path ns_path;
7539 struct inode *ns_inode;
Aleksa Saraice623f82019-12-07 01:13:27 +11007540 int error;
Hari Bathinie4222672017-03-08 02:11:36 +05307541
7542 error = ns_get_path(&ns_path, task, ns_ops);
7543 if (!error) {
7544 ns_inode = ns_path.dentry->d_inode;
7545 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7546 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03007547 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05307548 }
7549}
7550
7551void perf_event_namespaces(struct task_struct *task)
7552{
7553 struct perf_namespaces_event namespaces_event;
7554 struct perf_ns_link_info *ns_link_info;
7555
7556 if (!atomic_read(&nr_namespaces_events))
7557 return;
7558
7559 namespaces_event = (struct perf_namespaces_event){
7560 .task = task,
7561 .event_id = {
7562 .header = {
7563 .type = PERF_RECORD_NAMESPACES,
7564 .misc = 0,
7565 .size = sizeof(namespaces_event.event_id),
7566 },
7567 /* .pid */
7568 /* .tid */
7569 .nr_namespaces = NR_NAMESPACES,
7570 /* .link_info[NR_NAMESPACES] */
7571 },
7572 };
7573
7574 ns_link_info = namespaces_event.event_id.link_info;
7575
7576 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7577 task, &mntns_operations);
7578
7579#ifdef CONFIG_USER_NS
7580 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7581 task, &userns_operations);
7582#endif
7583#ifdef CONFIG_NET_NS
7584 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7585 task, &netns_operations);
7586#endif
7587#ifdef CONFIG_UTS_NS
7588 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7589 task, &utsns_operations);
7590#endif
7591#ifdef CONFIG_IPC_NS
7592 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7593 task, &ipcns_operations);
7594#endif
7595#ifdef CONFIG_PID_NS
7596 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7597 task, &pidns_operations);
7598#endif
7599#ifdef CONFIG_CGROUPS
7600 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7601 task, &cgroupns_operations);
7602#endif
7603
7604 perf_iterate_sb(perf_event_namespaces_output,
7605 &namespaces_event,
7606 NULL);
7607}
7608
7609/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007610 * mmap tracking
7611 */
7612
7613struct perf_mmap_event {
7614 struct vm_area_struct *vma;
7615
7616 const char *file_name;
7617 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007618 int maj, min;
7619 u64 ino;
7620 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007621 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007622
7623 struct {
7624 struct perf_event_header header;
7625
7626 u32 pid;
7627 u32 tid;
7628 u64 start;
7629 u64 len;
7630 u64 pgoff;
7631 } event_id;
7632};
7633
Jiri Olsa67516842013-07-09 18:56:31 +02007634static int perf_event_mmap_match(struct perf_event *event,
7635 void *data)
7636{
7637 struct perf_mmap_event *mmap_event = data;
7638 struct vm_area_struct *vma = mmap_event->vma;
7639 int executable = vma->vm_flags & VM_EXEC;
7640
7641 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02007642 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02007643}
7644
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007645static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007646 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007647{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007648 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007649 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007650 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007651 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007652 u32 type = mmap_event->event_id.header.type;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007653 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007654
Jiri Olsa67516842013-07-09 18:56:31 +02007655 if (!perf_event_mmap_match(event, data))
7656 return;
7657
Stephane Eranian13d7a242013-08-21 12:10:24 +02007658 if (event->attr.mmap2) {
7659 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7660 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7661 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7662 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03007663 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007664 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7665 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007666 }
7667
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007668 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7669 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007670 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007671 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007672 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007673
7674 mmap_event->event_id.pid = perf_event_pid(event, current);
7675 mmap_event->event_id.tid = perf_event_tid(event, current);
7676
7677 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007678
7679 if (event->attr.mmap2) {
7680 perf_output_put(&handle, mmap_event->maj);
7681 perf_output_put(&handle, mmap_event->min);
7682 perf_output_put(&handle, mmap_event->ino);
7683 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007684 perf_output_put(&handle, mmap_event->prot);
7685 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007686 }
7687
Frederic Weisbecker76369132011-05-19 19:55:04 +02007688 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007689 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007690
7691 perf_event__output_id_sample(event, &handle, &sample);
7692
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007693 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007694out:
7695 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007696 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007697}
7698
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007699static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
7700{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007701 struct vm_area_struct *vma = mmap_event->vma;
7702 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007703 int maj = 0, min = 0;
7704 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007705 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007706 unsigned int size;
7707 char tmp[16];
7708 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007709 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007710
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01007711 if (vma->vm_flags & VM_READ)
7712 prot |= PROT_READ;
7713 if (vma->vm_flags & VM_WRITE)
7714 prot |= PROT_WRITE;
7715 if (vma->vm_flags & VM_EXEC)
7716 prot |= PROT_EXEC;
7717
7718 if (vma->vm_flags & VM_MAYSHARE)
7719 flags = MAP_SHARED;
7720 else
7721 flags = MAP_PRIVATE;
7722
7723 if (vma->vm_flags & VM_DENYWRITE)
7724 flags |= MAP_DENYWRITE;
7725 if (vma->vm_flags & VM_MAYEXEC)
7726 flags |= MAP_EXECUTABLE;
7727 if (vma->vm_flags & VM_LOCKED)
7728 flags |= MAP_LOCKED;
7729 if (vma->vm_flags & VM_HUGETLB)
7730 flags |= MAP_HUGETLB;
7731
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007732 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02007733 struct inode *inode;
7734 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007735
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007736 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007737 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007738 name = "//enomem";
7739 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007740 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007741 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007742 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007743 * need to add enough zero bytes after the string to handle
7744 * the 64bit alignment we do later.
7745 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02007746 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007747 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007748 name = "//toolong";
7749 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007750 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02007751 inode = file_inode(vma->vm_file);
7752 dev = inode->i_sb->s_dev;
7753 ino = inode->i_ino;
7754 gen = inode->i_generation;
7755 maj = MAJOR(dev);
7756 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007757
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007758 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007759 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02007760 if (vma->vm_ops && vma->vm_ops->name) {
7761 name = (char *) vma->vm_ops->name(vma);
7762 if (name)
7763 goto cpy_name;
7764 }
7765
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007766 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007767 if (name)
7768 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007769
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007770 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007771 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007772 name = "[heap]";
7773 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007774 }
7775 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007776 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007777 name = "[stack]";
7778 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007779 }
7780
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007781 name = "//anon";
7782 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007783 }
7784
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007785cpy_name:
7786 strlcpy(tmp, name, sizeof(tmp));
7787 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007788got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007789 /*
7790 * Since our buffer works in 8 byte units we need to align our string
7791 * size to a multiple of 8. However, we must guarantee the tail end is
7792 * zero'd out to avoid leaking random bits to userspace.
7793 */
7794 size = strlen(name)+1;
7795 while (!IS_ALIGNED(size, sizeof(u64)))
7796 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007797
7798 mmap_event->file_name = name;
7799 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007800 mmap_event->maj = maj;
7801 mmap_event->min = min;
7802 mmap_event->ino = ino;
7803 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007804 mmap_event->prot = prot;
7805 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007806
Stephane Eranian2fe85422013-01-24 16:10:39 +01007807 if (!(vma->vm_flags & VM_EXEC))
7808 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
7809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007810 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
7811
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007812 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007813 mmap_event,
7814 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007815
7816 kfree(buf);
7817}
7818
Alexander Shishkin375637b2016-04-27 18:44:46 +03007819/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03007820 * Check whether inode and address range match filter criteria.
7821 */
7822static bool perf_addr_filter_match(struct perf_addr_filter *filter,
7823 struct file *file, unsigned long offset,
7824 unsigned long size)
7825{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06007826 /* d_inode(NULL) won't be equal to any mapped user-space file */
7827 if (!filter->path.dentry)
7828 return false;
7829
Song Liu9511bce2018-04-17 23:29:07 -07007830 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007831 return false;
7832
7833 if (filter->offset > offset + size)
7834 return false;
7835
7836 if (filter->offset + filter->size < offset)
7837 return false;
7838
7839 return true;
7840}
7841
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007842static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
7843 struct vm_area_struct *vma,
7844 struct perf_addr_filter_range *fr)
7845{
7846 unsigned long vma_size = vma->vm_end - vma->vm_start;
7847 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7848 struct file *file = vma->vm_file;
7849
7850 if (!perf_addr_filter_match(filter, file, off, vma_size))
7851 return false;
7852
7853 if (filter->offset < off) {
7854 fr->start = vma->vm_start;
7855 fr->size = min(vma_size, filter->size - (off - filter->offset));
7856 } else {
7857 fr->start = vma->vm_start + filter->offset - off;
7858 fr->size = min(vma->vm_end - fr->start, filter->size);
7859 }
7860
7861 return true;
7862}
7863
Alexander Shishkin375637b2016-04-27 18:44:46 +03007864static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
7865{
7866 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7867 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007868 struct perf_addr_filter *filter;
7869 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007870 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007871
7872 if (!has_addr_filter(event))
7873 return;
7874
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007875 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007876 return;
7877
7878 raw_spin_lock_irqsave(&ifh->lock, flags);
7879 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007880 if (perf_addr_filter_vma_adjust(filter, vma,
7881 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007882 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007883
7884 count++;
7885 }
7886
7887 if (restart)
7888 event->addr_filters_gen++;
7889 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7890
7891 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007892 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007893}
7894
7895/*
7896 * Adjust all task's events' filters to the new vma
7897 */
7898static void perf_addr_filters_adjust(struct vm_area_struct *vma)
7899{
7900 struct perf_event_context *ctx;
7901 int ctxn;
7902
Mathieu Poirier12b40a22016-07-18 10:43:06 -06007903 /*
7904 * Data tracing isn't supported yet and as such there is no need
7905 * to keep track of anything that isn't related to executable code:
7906 */
7907 if (!(vma->vm_flags & VM_EXEC))
7908 return;
7909
Alexander Shishkin375637b2016-04-27 18:44:46 +03007910 rcu_read_lock();
7911 for_each_task_context_nr(ctxn) {
7912 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7913 if (!ctx)
7914 continue;
7915
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007916 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007917 }
7918 rcu_read_unlock();
7919}
7920
Eric B Munson3af9e852010-05-18 15:30:49 +01007921void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007922{
7923 struct perf_mmap_event mmap_event;
7924
7925 if (!atomic_read(&nr_mmap_events))
7926 return;
7927
7928 mmap_event = (struct perf_mmap_event){
7929 .vma = vma,
7930 /* .file_name */
7931 /* .file_size */
7932 .event_id = {
7933 .header = {
7934 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08007935 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007936 /* .size */
7937 },
7938 /* .pid */
7939 /* .tid */
7940 .start = vma->vm_start,
7941 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01007942 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007943 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02007944 /* .maj (attr_mmap2 only) */
7945 /* .min (attr_mmap2 only) */
7946 /* .ino (attr_mmap2 only) */
7947 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007948 /* .prot (attr_mmap2 only) */
7949 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007950 };
7951
Alexander Shishkin375637b2016-04-27 18:44:46 +03007952 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007953 perf_event_mmap_event(&mmap_event);
7954}
7955
Alexander Shishkin68db7e92015-01-14 14:18:15 +02007956void perf_event_aux_event(struct perf_event *event, unsigned long head,
7957 unsigned long size, u64 flags)
7958{
7959 struct perf_output_handle handle;
7960 struct perf_sample_data sample;
7961 struct perf_aux_event {
7962 struct perf_event_header header;
7963 u64 offset;
7964 u64 size;
7965 u64 flags;
7966 } rec = {
7967 .header = {
7968 .type = PERF_RECORD_AUX,
7969 .misc = 0,
7970 .size = sizeof(rec),
7971 },
7972 .offset = head,
7973 .size = size,
7974 .flags = flags,
7975 };
7976 int ret;
7977
7978 perf_event_header__init_id(&rec.header, &sample, event);
7979 ret = perf_output_begin(&handle, event, rec.header.size);
7980
7981 if (ret)
7982 return;
7983
7984 perf_output_put(&handle, rec);
7985 perf_event__output_id_sample(event, &handle, &sample);
7986
7987 perf_output_end(&handle);
7988}
7989
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007990/*
Kan Liangf38b0db2015-05-10 15:13:14 -04007991 * Lost/dropped samples logging
7992 */
7993void perf_log_lost_samples(struct perf_event *event, u64 lost)
7994{
7995 struct perf_output_handle handle;
7996 struct perf_sample_data sample;
7997 int ret;
7998
7999 struct {
8000 struct perf_event_header header;
8001 u64 lost;
8002 } lost_samples_event = {
8003 .header = {
8004 .type = PERF_RECORD_LOST_SAMPLES,
8005 .misc = 0,
8006 .size = sizeof(lost_samples_event),
8007 },
8008 .lost = lost,
8009 };
8010
8011 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8012
8013 ret = perf_output_begin(&handle, event,
8014 lost_samples_event.header.size);
8015 if (ret)
8016 return;
8017
8018 perf_output_put(&handle, lost_samples_event);
8019 perf_event__output_id_sample(event, &handle, &sample);
8020 perf_output_end(&handle);
8021}
8022
8023/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03008024 * context_switch tracking
8025 */
8026
8027struct perf_switch_event {
8028 struct task_struct *task;
8029 struct task_struct *next_prev;
8030
8031 struct {
8032 struct perf_event_header header;
8033 u32 next_prev_pid;
8034 u32 next_prev_tid;
8035 } event_id;
8036};
8037
8038static int perf_event_switch_match(struct perf_event *event)
8039{
8040 return event->attr.context_switch;
8041}
8042
8043static void perf_event_switch_output(struct perf_event *event, void *data)
8044{
8045 struct perf_switch_event *se = data;
8046 struct perf_output_handle handle;
8047 struct perf_sample_data sample;
8048 int ret;
8049
8050 if (!perf_event_switch_match(event))
8051 return;
8052
8053 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8054 if (event->ctx->task) {
8055 se->event_id.header.type = PERF_RECORD_SWITCH;
8056 se->event_id.header.size = sizeof(se->event_id.header);
8057 } else {
8058 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8059 se->event_id.header.size = sizeof(se->event_id);
8060 se->event_id.next_prev_pid =
8061 perf_event_pid(event, se->next_prev);
8062 se->event_id.next_prev_tid =
8063 perf_event_tid(event, se->next_prev);
8064 }
8065
8066 perf_event_header__init_id(&se->event_id.header, &sample, event);
8067
8068 ret = perf_output_begin(&handle, event, se->event_id.header.size);
8069 if (ret)
8070 return;
8071
8072 if (event->ctx->task)
8073 perf_output_put(&handle, se->event_id.header);
8074 else
8075 perf_output_put(&handle, se->event_id);
8076
8077 perf_event__output_id_sample(event, &handle, &sample);
8078
8079 perf_output_end(&handle);
8080}
8081
8082static void perf_event_switch(struct task_struct *task,
8083 struct task_struct *next_prev, bool sched_in)
8084{
8085 struct perf_switch_event switch_event;
8086
8087 /* N.B. caller checks nr_switch_events != 0 */
8088
8089 switch_event = (struct perf_switch_event){
8090 .task = task,
8091 .next_prev = next_prev,
8092 .event_id = {
8093 .header = {
8094 /* .type */
8095 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8096 /* .size */
8097 },
8098 /* .next_prev_pid */
8099 /* .next_prev_tid */
8100 },
8101 };
8102
Alexey Budankov101592b2018-04-09 10:25:32 +03008103 if (!sched_in && task->state == TASK_RUNNING)
8104 switch_event.event_id.header.misc |=
8105 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
8106
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008107 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03008108 &switch_event,
8109 NULL);
8110}
8111
8112/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008113 * IRQ throttle logging
8114 */
8115
8116static void perf_log_throttle(struct perf_event *event, int enable)
8117{
8118 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008119 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008120 int ret;
8121
8122 struct {
8123 struct perf_event_header header;
8124 u64 time;
8125 u64 id;
8126 u64 stream_id;
8127 } throttle_event = {
8128 .header = {
8129 .type = PERF_RECORD_THROTTLE,
8130 .misc = 0,
8131 .size = sizeof(throttle_event),
8132 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01008133 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008134 .id = primary_event_id(event),
8135 .stream_id = event->id,
8136 };
8137
8138 if (enable)
8139 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
8140
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008141 perf_event_header__init_id(&throttle_event.header, &sample, event);
8142
8143 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02008144 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008145 if (ret)
8146 return;
8147
8148 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02008149 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008150 perf_output_end(&handle);
8151}
8152
Song Liu76193a92019-01-17 08:15:13 -08008153/*
8154 * ksymbol register/unregister tracking
8155 */
8156
8157struct perf_ksymbol_event {
8158 const char *name;
8159 int name_len;
8160 struct {
8161 struct perf_event_header header;
8162 u64 addr;
8163 u32 len;
8164 u16 ksym_type;
8165 u16 flags;
8166 } event_id;
8167};
8168
8169static int perf_event_ksymbol_match(struct perf_event *event)
8170{
8171 return event->attr.ksymbol;
8172}
8173
8174static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8175{
8176 struct perf_ksymbol_event *ksymbol_event = data;
8177 struct perf_output_handle handle;
8178 struct perf_sample_data sample;
8179 int ret;
8180
8181 if (!perf_event_ksymbol_match(event))
8182 return;
8183
8184 perf_event_header__init_id(&ksymbol_event->event_id.header,
8185 &sample, event);
8186 ret = perf_output_begin(&handle, event,
8187 ksymbol_event->event_id.header.size);
8188 if (ret)
8189 return;
8190
8191 perf_output_put(&handle, ksymbol_event->event_id);
8192 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8193 perf_event__output_id_sample(event, &handle, &sample);
8194
8195 perf_output_end(&handle);
8196}
8197
8198void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8199 const char *sym)
8200{
8201 struct perf_ksymbol_event ksymbol_event;
8202 char name[KSYM_NAME_LEN];
8203 u16 flags = 0;
8204 int name_len;
8205
8206 if (!atomic_read(&nr_ksymbol_events))
8207 return;
8208
8209 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8210 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8211 goto err;
8212
8213 strlcpy(name, sym, KSYM_NAME_LEN);
8214 name_len = strlen(name) + 1;
8215 while (!IS_ALIGNED(name_len, sizeof(u64)))
8216 name[name_len++] = '\0';
8217 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8218
8219 if (unregister)
8220 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8221
8222 ksymbol_event = (struct perf_ksymbol_event){
8223 .name = name,
8224 .name_len = name_len,
8225 .event_id = {
8226 .header = {
8227 .type = PERF_RECORD_KSYMBOL,
8228 .size = sizeof(ksymbol_event.event_id) +
8229 name_len,
8230 },
8231 .addr = addr,
8232 .len = len,
8233 .ksym_type = ksym_type,
8234 .flags = flags,
8235 },
8236 };
8237
8238 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8239 return;
8240err:
8241 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8242}
8243
Song Liu6ee52e22019-01-17 08:15:15 -08008244/*
8245 * bpf program load/unload tracking
8246 */
8247
8248struct perf_bpf_event {
8249 struct bpf_prog *prog;
8250 struct {
8251 struct perf_event_header header;
8252 u16 type;
8253 u16 flags;
8254 u32 id;
8255 u8 tag[BPF_TAG_SIZE];
8256 } event_id;
8257};
8258
8259static int perf_event_bpf_match(struct perf_event *event)
8260{
8261 return event->attr.bpf_event;
8262}
8263
8264static void perf_event_bpf_output(struct perf_event *event, void *data)
8265{
8266 struct perf_bpf_event *bpf_event = data;
8267 struct perf_output_handle handle;
8268 struct perf_sample_data sample;
8269 int ret;
8270
8271 if (!perf_event_bpf_match(event))
8272 return;
8273
8274 perf_event_header__init_id(&bpf_event->event_id.header,
8275 &sample, event);
8276 ret = perf_output_begin(&handle, event,
8277 bpf_event->event_id.header.size);
8278 if (ret)
8279 return;
8280
8281 perf_output_put(&handle, bpf_event->event_id);
8282 perf_event__output_id_sample(event, &handle, &sample);
8283
8284 perf_output_end(&handle);
8285}
8286
8287static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8288 enum perf_bpf_event_type type)
8289{
8290 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
8291 char sym[KSYM_NAME_LEN];
8292 int i;
8293
8294 if (prog->aux->func_cnt == 0) {
8295 bpf_get_prog_name(prog, sym);
8296 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8297 (u64)(unsigned long)prog->bpf_func,
8298 prog->jited_len, unregister, sym);
8299 } else {
8300 for (i = 0; i < prog->aux->func_cnt; i++) {
8301 struct bpf_prog *subprog = prog->aux->func[i];
8302
8303 bpf_get_prog_name(subprog, sym);
8304 perf_event_ksymbol(
8305 PERF_RECORD_KSYMBOL_TYPE_BPF,
8306 (u64)(unsigned long)subprog->bpf_func,
8307 subprog->jited_len, unregister, sym);
8308 }
8309 }
8310}
8311
8312void perf_event_bpf_event(struct bpf_prog *prog,
8313 enum perf_bpf_event_type type,
8314 u16 flags)
8315{
8316 struct perf_bpf_event bpf_event;
8317
8318 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8319 type >= PERF_BPF_EVENT_MAX)
8320 return;
8321
8322 switch (type) {
8323 case PERF_BPF_EVENT_PROG_LOAD:
8324 case PERF_BPF_EVENT_PROG_UNLOAD:
8325 if (atomic_read(&nr_ksymbol_events))
8326 perf_event_bpf_emit_ksymbols(prog, type);
8327 break;
8328 default:
8329 break;
8330 }
8331
8332 if (!atomic_read(&nr_bpf_events))
8333 return;
8334
8335 bpf_event = (struct perf_bpf_event){
8336 .prog = prog,
8337 .event_id = {
8338 .header = {
8339 .type = PERF_RECORD_BPF_EVENT,
8340 .size = sizeof(bpf_event.event_id),
8341 },
8342 .type = type,
8343 .flags = flags,
8344 .id = prog->aux->id,
8345 },
8346 };
8347
8348 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8349
8350 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8351 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8352}
8353
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008354void perf_event_itrace_started(struct perf_event *event)
8355{
8356 event->attach_state |= PERF_ATTACH_ITRACE;
8357}
8358
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008359static void perf_log_itrace_start(struct perf_event *event)
8360{
8361 struct perf_output_handle handle;
8362 struct perf_sample_data sample;
8363 struct perf_aux_event {
8364 struct perf_event_header header;
8365 u32 pid;
8366 u32 tid;
8367 } rec;
8368 int ret;
8369
8370 if (event->parent)
8371 event = event->parent;
8372
8373 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008374 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008375 return;
8376
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008377 rec.header.type = PERF_RECORD_ITRACE_START;
8378 rec.header.misc = 0;
8379 rec.header.size = sizeof(rec);
8380 rec.pid = perf_event_pid(event, current);
8381 rec.tid = perf_event_tid(event, current);
8382
8383 perf_event_header__init_id(&rec.header, &sample, event);
8384 ret = perf_output_begin(&handle, event, rec.header.size);
8385
8386 if (ret)
8387 return;
8388
8389 perf_output_put(&handle, rec);
8390 perf_event__output_id_sample(event, &handle, &sample);
8391
8392 perf_output_end(&handle);
8393}
8394
Jiri Olsa475113d2016-12-28 14:31:03 +01008395static int
8396__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008397{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008398 struct hw_perf_event *hwc = &event->hw;
8399 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01008400 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01008401
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008402 seq = __this_cpu_read(perf_throttled_seq);
8403 if (seq != hwc->interrupts_seq) {
8404 hwc->interrupts_seq = seq;
8405 hwc->interrupts = 1;
8406 } else {
8407 hwc->interrupts++;
8408 if (unlikely(throttle
8409 && hwc->interrupts >= max_samples_per_tick)) {
8410 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008411 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01008412 hwc->interrupts = MAX_INTERRUPTS;
8413 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008414 ret = 1;
8415 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008416 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008417
8418 if (event->attr.freq) {
8419 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01008420 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008421
Peter Zijlstraabd50712010-01-26 18:50:16 +01008422 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008423
Peter Zijlstraabd50712010-01-26 18:50:16 +01008424 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01008425 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008426 }
8427
Jiri Olsa475113d2016-12-28 14:31:03 +01008428 return ret;
8429}
8430
8431int perf_event_account_interrupt(struct perf_event *event)
8432{
8433 return __perf_event_account_interrupt(event, 1);
8434}
8435
8436/*
8437 * Generic event overflow handling, sampling.
8438 */
8439
8440static int __perf_event_overflow(struct perf_event *event,
8441 int throttle, struct perf_sample_data *data,
8442 struct pt_regs *regs)
8443{
8444 int events = atomic_read(&event->event_limit);
8445 int ret = 0;
8446
8447 /*
8448 * Non-sampling counters might still use the PMI to fold short
8449 * hardware counters, ignore those.
8450 */
8451 if (unlikely(!is_sampling_event(event)))
8452 return 0;
8453
8454 ret = __perf_event_account_interrupt(event, throttle);
8455
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008456 /*
8457 * XXX event_limit might not quite work as expected on inherited
8458 * events
8459 */
8460
8461 event->pending_kill = POLL_IN;
8462 if (events && atomic_dec_and_test(&event->event_limit)) {
8463 ret = 1;
8464 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02008465
8466 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008467 }
8468
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008469 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01008470
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02008471 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008472 event->pending_wakeup = 1;
8473 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02008474 }
8475
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008476 return ret;
8477}
8478
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008479int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008480 struct perf_sample_data *data,
8481 struct pt_regs *regs)
8482{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008483 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008484}
8485
8486/*
8487 * Generic software event infrastructure
8488 */
8489
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008490struct swevent_htable {
8491 struct swevent_hlist *swevent_hlist;
8492 struct mutex hlist_mutex;
8493 int hlist_refcount;
8494
8495 /* Recursion avoidance in each contexts */
8496 int recursion[PERF_NR_CONTEXTS];
8497};
8498
8499static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
8500
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008501/*
8502 * We directly increment event->count and keep a second value in
8503 * event->hw.period_left to count intervals. This period event
8504 * is kept in the range [-sample_period, 0] so that we can use the
8505 * sign as trigger.
8506 */
8507
Jiri Olsaab573842013-05-01 17:25:44 +02008508u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008509{
8510 struct hw_perf_event *hwc = &event->hw;
8511 u64 period = hwc->last_period;
8512 u64 nr, offset;
8513 s64 old, val;
8514
8515 hwc->last_period = hwc->sample_period;
8516
8517again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02008518 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008519 if (val < 0)
8520 return 0;
8521
8522 nr = div64_u64(period + val, period);
8523 offset = nr * period;
8524 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02008525 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008526 goto again;
8527
8528 return nr;
8529}
8530
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008531static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008532 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008533 struct pt_regs *regs)
8534{
8535 struct hw_perf_event *hwc = &event->hw;
8536 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008537
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008538 if (!overflow)
8539 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008540
8541 if (hwc->interrupts == MAX_INTERRUPTS)
8542 return;
8543
8544 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008545 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008546 data, regs)) {
8547 /*
8548 * We inhibit the overflow from happening when
8549 * hwc->interrupts == MAX_INTERRUPTS.
8550 */
8551 break;
8552 }
8553 throttle = 1;
8554 }
8555}
8556
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008557static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008558 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008559 struct pt_regs *regs)
8560{
8561 struct hw_perf_event *hwc = &event->hw;
8562
Peter Zijlstrae7850592010-05-21 14:43:08 +02008563 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008564
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008565 if (!regs)
8566 return;
8567
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008568 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008569 return;
8570
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03008571 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
8572 data->period = nr;
8573 return perf_swevent_overflow(event, 1, data, regs);
8574 } else
8575 data->period = event->hw.last_period;
8576
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008577 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008578 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008579
Peter Zijlstrae7850592010-05-21 14:43:08 +02008580 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008581 return;
8582
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008583 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008584}
8585
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008586static int perf_exclude_event(struct perf_event *event,
8587 struct pt_regs *regs)
8588{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008589 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01008590 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008591
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008592 if (regs) {
8593 if (event->attr.exclude_user && user_mode(regs))
8594 return 1;
8595
8596 if (event->attr.exclude_kernel && !user_mode(regs))
8597 return 1;
8598 }
8599
8600 return 0;
8601}
8602
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008603static int perf_swevent_match(struct perf_event *event,
8604 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08008605 u32 event_id,
8606 struct perf_sample_data *data,
8607 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008608{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008609 if (event->attr.type != type)
8610 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008612 if (event->attr.config != event_id)
8613 return 0;
8614
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008615 if (perf_exclude_event(event, regs))
8616 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008617
8618 return 1;
8619}
8620
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008621static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008622{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008623 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008624
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008625 return hash_64(val, SWEVENT_HLIST_BITS);
8626}
8627
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008628static inline struct hlist_head *
8629__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008630{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008631 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008632
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008633 return &hlist->heads[hash];
8634}
8635
8636/* For the read side: events when they trigger */
8637static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008638find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008639{
8640 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008641
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008642 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008643 if (!hlist)
8644 return NULL;
8645
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008646 return __find_swevent_head(hlist, type, event_id);
8647}
8648
8649/* For the event head insertion and removal in the hlist */
8650static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008651find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008652{
8653 struct swevent_hlist *hlist;
8654 u32 event_id = event->attr.config;
8655 u64 type = event->attr.type;
8656
8657 /*
8658 * Event scheduling is always serialized against hlist allocation
8659 * and release. Which makes the protected version suitable here.
8660 * The context lock guarantees that.
8661 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008662 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008663 lockdep_is_held(&event->ctx->lock));
8664 if (!hlist)
8665 return NULL;
8666
8667 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008668}
8669
8670static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008671 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008672 struct perf_sample_data *data,
8673 struct pt_regs *regs)
8674{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008675 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008676 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008677 struct hlist_head *head;
8678
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008679 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008680 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008681 if (!head)
8682 goto end;
8683
Sasha Levinb67bfe02013-02-27 17:06:00 -08008684 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08008685 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008686 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008687 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008688end:
8689 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008690}
8691
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008692DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
8693
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008694int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008695{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008696 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008697
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008698 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008699}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01008700EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008701
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008702void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008703{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008704 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02008705
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008706 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008707}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008708
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008709void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008710{
Ingo Molnara4234bf2009-11-23 10:57:59 +01008711 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008712
8713 if (WARN_ON_ONCE(!regs))
8714 return;
8715
8716 perf_sample_data_init(&data, addr, 0);
8717 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
8718}
8719
8720void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8721{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008722 int rctx;
8723
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008724 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008725 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008726 if (unlikely(rctx < 0))
8727 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008728
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008729 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008730
8731 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008732fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008733 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008734}
8735
8736static void perf_swevent_read(struct perf_event *event)
8737{
8738}
8739
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008740static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008741{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008742 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008743 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008744 struct hlist_head *head;
8745
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008746 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008747 hwc->last_period = hwc->sample_period;
8748 perf_swevent_set_period(event);
8749 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008750
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008751 hwc->state = !(flags & PERF_EF_START);
8752
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008753 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01008754 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008755 return -EINVAL;
8756
8757 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08008758 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008759
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008760 return 0;
8761}
8762
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008763static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008764{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008765 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008766}
8767
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008768static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008769{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008770 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008771}
8772
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008773static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008774{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008775 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008776}
8777
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008778/* Deref the hlist from the update side */
8779static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008780swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008781{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008782 return rcu_dereference_protected(swhash->swevent_hlist,
8783 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008784}
8785
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008786static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008787{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008788 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008789
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008790 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008791 return;
8792
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03008793 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08008794 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008795}
8796
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008797static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008798{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008799 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008800
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008801 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008802
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008803 if (!--swhash->hlist_refcount)
8804 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008805
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008806 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008807}
8808
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008809static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008810{
8811 int cpu;
8812
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008813 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008814 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008815}
8816
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008817static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008818{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008819 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008820 int err = 0;
8821
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008822 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008823 if (!swevent_hlist_deref(swhash) &&
8824 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008825 struct swevent_hlist *hlist;
8826
8827 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
8828 if (!hlist) {
8829 err = -ENOMEM;
8830 goto exit;
8831 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008832 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008833 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008834 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008835exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008836 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008837
8838 return err;
8839}
8840
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008841static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008842{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008843 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008844
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008845 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008846 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008847 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008848 if (err) {
8849 failed_cpu = cpu;
8850 goto fail;
8851 }
8852 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008853 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008854 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008855fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008856 for_each_possible_cpu(cpu) {
8857 if (cpu == failed_cpu)
8858 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008859 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008860 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008861 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008862 return err;
8863}
8864
Ingo Molnarc5905af2012-02-24 08:31:31 +01008865struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008866
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008867static void sw_perf_event_destroy(struct perf_event *event)
8868{
8869 u64 event_id = event->attr.config;
8870
8871 WARN_ON(event->parent);
8872
Ingo Molnarc5905af2012-02-24 08:31:31 +01008873 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008874 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008875}
8876
8877static int perf_swevent_init(struct perf_event *event)
8878{
Tommi Rantala8176cce2013-04-13 22:49:14 +03008879 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008880
8881 if (event->attr.type != PERF_TYPE_SOFTWARE)
8882 return -ENOENT;
8883
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008884 /*
8885 * no branch sampling for software events
8886 */
8887 if (has_branch_stack(event))
8888 return -EOPNOTSUPP;
8889
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008890 switch (event_id) {
8891 case PERF_COUNT_SW_CPU_CLOCK:
8892 case PERF_COUNT_SW_TASK_CLOCK:
8893 return -ENOENT;
8894
8895 default:
8896 break;
8897 }
8898
Dan Carpenterce677832010-10-24 21:50:42 +02008899 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008900 return -ENOENT;
8901
8902 if (!event->parent) {
8903 int err;
8904
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008905 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008906 if (err)
8907 return err;
8908
Ingo Molnarc5905af2012-02-24 08:31:31 +01008909 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008910 event->destroy = sw_perf_event_destroy;
8911 }
8912
8913 return 0;
8914}
8915
8916static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008917 .task_ctx_nr = perf_sw_context,
8918
Peter Zijlstra34f43922015-02-20 14:05:38 +01008919 .capabilities = PERF_PMU_CAP_NO_NMI,
8920
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008921 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008922 .add = perf_swevent_add,
8923 .del = perf_swevent_del,
8924 .start = perf_swevent_start,
8925 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008926 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008927};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008928
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008929#ifdef CONFIG_EVENT_TRACING
8930
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008931static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008932 struct perf_sample_data *data)
8933{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008934 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008935
Peter Zijlstrab71b4372015-11-02 10:50:51 +01008936 /* only top level events have filters set */
8937 if (event->parent)
8938 event = event->parent;
8939
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008940 if (likely(!event->filter) || filter_match_preds(event->filter, record))
8941 return 1;
8942 return 0;
8943}
8944
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008945static int perf_tp_event_match(struct perf_event *event,
8946 struct perf_sample_data *data,
8947 struct pt_regs *regs)
8948{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01008949 if (event->hw.state & PERF_HES_STOPPED)
8950 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02008951 /*
Song Liu9fd2e482019-05-07 09:15:45 -07008952 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02008953 */
Song Liu9fd2e482019-05-07 09:15:45 -07008954 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008955 return 0;
8956
8957 if (!perf_tp_filter_match(event, data))
8958 return 0;
8959
8960 return 1;
8961}
8962
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008963void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
8964 struct trace_event_call *call, u64 count,
8965 struct pt_regs *regs, struct hlist_head *head,
8966 struct task_struct *task)
8967{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008968 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008969 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008970 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008971 perf_swevent_put_recursion_context(rctx);
8972 return;
8973 }
8974 }
8975 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008976 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008977}
8978EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
8979
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008980void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008981 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008982 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008983{
8984 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008985 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008986
8987 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008988 .frag = {
8989 .size = entry_size,
8990 .data = record,
8991 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008992 };
8993
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008994 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008995 data.raw = &raw;
8996
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008997 perf_trace_buf_update(record, event_type);
8998
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008999 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009000 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009001 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009002 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009003
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009004 /*
9005 * If we got specified a target task, also iterate its context and
9006 * deliver this event there too.
9007 */
9008 if (task && task != current) {
9009 struct perf_event_context *ctx;
9010 struct trace_entry *entry = record;
9011
9012 rcu_read_lock();
9013 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9014 if (!ctx)
9015 goto unlock;
9016
9017 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02009018 if (event->cpu != smp_processor_id())
9019 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04009020 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9021 continue;
9022 if (event->attr.config != entry->type)
9023 continue;
9024 if (perf_tp_event_match(event, &data, regs))
9025 perf_swevent_event(event, count, &data, regs);
9026 }
9027unlock:
9028 rcu_read_unlock();
9029 }
9030
Peter Zijlstraecc55f82010-05-21 15:11:34 +02009031 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009032}
9033EXPORT_SYMBOL_GPL(perf_tp_event);
9034
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009035static void tp_perf_event_destroy(struct perf_event *event)
9036{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009037 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009038}
9039
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009040static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009041{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009042 int err;
9043
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009044 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9045 return -ENOENT;
9046
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009047 /*
9048 * no branch sampling for tracepoint events
9049 */
9050 if (has_branch_stack(event))
9051 return -EOPNOTSUPP;
9052
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02009053 err = perf_trace_init(event);
9054 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009055 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009056
9057 event->destroy = tp_perf_event_destroy;
9058
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009059 return 0;
9060}
9061
9062static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009063 .task_ctx_nr = perf_sw_context,
9064
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009065 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009066 .add = perf_trace_add,
9067 .del = perf_trace_del,
9068 .start = perf_swevent_start,
9069 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009070 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009071};
9072
Song Liu33ea4b22017-12-06 14:45:16 -08009073#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08009074/*
9075 * Flags in config, used by dynamic PMU kprobe and uprobe
9076 * The flags should match following PMU_FORMAT_ATTR().
9077 *
9078 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9079 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07009080 *
9081 * The following values specify a reference counter (or semaphore in the
9082 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9083 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9084 *
9085 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9086 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08009087 */
9088enum perf_probe_config {
9089 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07009090 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9091 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08009092};
9093
9094PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07009095#endif
Song Liue12f03d2017-12-06 14:45:15 -08009096
Song Liua6ca88b2018-10-01 22:36:36 -07009097#ifdef CONFIG_KPROBE_EVENTS
9098static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08009099 &format_attr_retprobe.attr,
9100 NULL,
9101};
9102
Song Liua6ca88b2018-10-01 22:36:36 -07009103static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08009104 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07009105 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08009106};
9107
Song Liua6ca88b2018-10-01 22:36:36 -07009108static const struct attribute_group *kprobe_attr_groups[] = {
9109 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08009110 NULL,
9111};
9112
9113static int perf_kprobe_event_init(struct perf_event *event);
9114static struct pmu perf_kprobe = {
9115 .task_ctx_nr = perf_sw_context,
9116 .event_init = perf_kprobe_event_init,
9117 .add = perf_trace_add,
9118 .del = perf_trace_del,
9119 .start = perf_swevent_start,
9120 .stop = perf_swevent_stop,
9121 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009122 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08009123};
9124
9125static int perf_kprobe_event_init(struct perf_event *event)
9126{
9127 int err;
9128 bool is_retprobe;
9129
9130 if (event->attr.type != perf_kprobe.type)
9131 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009132
9133 if (!capable(CAP_SYS_ADMIN))
9134 return -EACCES;
9135
Song Liue12f03d2017-12-06 14:45:15 -08009136 /*
9137 * no branch sampling for probe events
9138 */
9139 if (has_branch_stack(event))
9140 return -EOPNOTSUPP;
9141
9142 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9143 err = perf_kprobe_init(event, is_retprobe);
9144 if (err)
9145 return err;
9146
9147 event->destroy = perf_kprobe_destroy;
9148
9149 return 0;
9150}
9151#endif /* CONFIG_KPROBE_EVENTS */
9152
Song Liu33ea4b22017-12-06 14:45:16 -08009153#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07009154PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9155
9156static struct attribute *uprobe_attrs[] = {
9157 &format_attr_retprobe.attr,
9158 &format_attr_ref_ctr_offset.attr,
9159 NULL,
9160};
9161
9162static struct attribute_group uprobe_format_group = {
9163 .name = "format",
9164 .attrs = uprobe_attrs,
9165};
9166
9167static const struct attribute_group *uprobe_attr_groups[] = {
9168 &uprobe_format_group,
9169 NULL,
9170};
9171
Song Liu33ea4b22017-12-06 14:45:16 -08009172static int perf_uprobe_event_init(struct perf_event *event);
9173static struct pmu perf_uprobe = {
9174 .task_ctx_nr = perf_sw_context,
9175 .event_init = perf_uprobe_event_init,
9176 .add = perf_trace_add,
9177 .del = perf_trace_del,
9178 .start = perf_swevent_start,
9179 .stop = perf_swevent_stop,
9180 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07009181 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08009182};
9183
9184static int perf_uprobe_event_init(struct perf_event *event)
9185{
9186 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07009187 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08009188 bool is_retprobe;
9189
9190 if (event->attr.type != perf_uprobe.type)
9191 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00009192
9193 if (!capable(CAP_SYS_ADMIN))
9194 return -EACCES;
9195
Song Liu33ea4b22017-12-06 14:45:16 -08009196 /*
9197 * no branch sampling for probe events
9198 */
9199 if (has_branch_stack(event))
9200 return -EOPNOTSUPP;
9201
9202 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07009203 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9204 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08009205 if (err)
9206 return err;
9207
9208 event->destroy = perf_uprobe_destroy;
9209
9210 return 0;
9211}
9212#endif /* CONFIG_UPROBE_EVENTS */
9213
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009214static inline void perf_tp_register(void)
9215{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009216 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08009217#ifdef CONFIG_KPROBE_EVENTS
9218 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9219#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009220#ifdef CONFIG_UPROBE_EVENTS
9221 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9222#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009223}
Li Zefan6fb29152009-10-15 11:21:42 +08009224
Li Zefan6fb29152009-10-15 11:21:42 +08009225static void perf_event_free_filter(struct perf_event *event)
9226{
9227 ftrace_profile_free_filter(event);
9228}
9229
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009230#ifdef CONFIG_BPF_SYSCALL
9231static void bpf_overflow_handler(struct perf_event *event,
9232 struct perf_sample_data *data,
9233 struct pt_regs *regs)
9234{
9235 struct bpf_perf_event_data_kern ctx = {
9236 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07009237 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009238 };
9239 int ret = 0;
9240
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01009241 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009242 preempt_disable();
9243 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
9244 goto out;
9245 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01009246 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009247 rcu_read_unlock();
9248out:
9249 __this_cpu_dec(bpf_prog_active);
9250 preempt_enable();
9251 if (!ret)
9252 return;
9253
9254 event->orig_overflow_handler(event, data, regs);
9255}
9256
9257static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9258{
9259 struct bpf_prog *prog;
9260
9261 if (event->overflow_handler_context)
9262 /* hw breakpoint or kernel counter */
9263 return -EINVAL;
9264
9265 if (event->prog)
9266 return -EEXIST;
9267
9268 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
9269 if (IS_ERR(prog))
9270 return PTR_ERR(prog);
9271
9272 event->prog = prog;
9273 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9274 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9275 return 0;
9276}
9277
9278static void perf_event_free_bpf_handler(struct perf_event *event)
9279{
9280 struct bpf_prog *prog = event->prog;
9281
9282 if (!prog)
9283 return;
9284
9285 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9286 event->prog = NULL;
9287 bpf_prog_put(prog);
9288}
9289#else
9290static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9291{
9292 return -EOPNOTSUPP;
9293}
9294static void perf_event_free_bpf_handler(struct perf_event *event)
9295{
9296}
9297#endif
9298
Song Liue12f03d2017-12-06 14:45:15 -08009299/*
9300 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9301 * with perf_event_open()
9302 */
9303static inline bool perf_event_is_tracing(struct perf_event *event)
9304{
9305 if (event->pmu == &perf_tracepoint)
9306 return true;
9307#ifdef CONFIG_KPROBE_EVENTS
9308 if (event->pmu == &perf_kprobe)
9309 return true;
9310#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009311#ifdef CONFIG_UPROBE_EVENTS
9312 if (event->pmu == &perf_uprobe)
9313 return true;
9314#endif
Song Liue12f03d2017-12-06 14:45:15 -08009315 return false;
9316}
9317
Alexei Starovoitov25415172015-03-25 12:49:20 -07009318static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9319{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009320 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009321 struct bpf_prog *prog;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009322 int ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009323
Song Liue12f03d2017-12-06 14:45:15 -08009324 if (!perf_event_is_tracing(event))
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07009325 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009326
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009327 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
9328 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009329 is_syscall_tp = is_syscall_trace_event(event->tp_event);
9330 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009331 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07009332 return -EINVAL;
9333
9334 prog = bpf_prog_get(prog_fd);
9335 if (IS_ERR(prog))
9336 return PTR_ERR(prog);
9337
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009338 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009339 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
9340 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07009341 /* valid fd, but invalid bpf program type */
9342 bpf_prog_put(prog);
9343 return -EINVAL;
9344 }
9345
Josef Bacik9802d862017-12-11 11:36:48 -05009346 /* Kprobe override only works for kprobes, not uprobes. */
9347 if (prog->kprobe_override &&
9348 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
9349 bpf_prog_put(prog);
9350 return -EINVAL;
9351 }
9352
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009353 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07009354 int off = trace_event_get_offsets(event->tp_event);
9355
9356 if (prog->aux->max_ctx_offset > off) {
9357 bpf_prog_put(prog);
9358 return -EACCES;
9359 }
9360 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07009361
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009362 ret = perf_event_attach_bpf_prog(event, prog);
9363 if (ret)
9364 bpf_prog_put(prog);
9365 return ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009366}
9367
9368static void perf_event_free_bpf_prog(struct perf_event *event)
9369{
Song Liue12f03d2017-12-06 14:45:15 -08009370 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -07009371 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009372 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009373 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009374 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009375}
9376
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009377#else
Li Zefan6fb29152009-10-15 11:21:42 +08009378
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009379static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009380{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009381}
Li Zefan6fb29152009-10-15 11:21:42 +08009382
Li Zefan6fb29152009-10-15 11:21:42 +08009383static void perf_event_free_filter(struct perf_event *event)
9384{
9385}
9386
Alexei Starovoitov25415172015-03-25 12:49:20 -07009387static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9388{
9389 return -ENOENT;
9390}
9391
9392static void perf_event_free_bpf_prog(struct perf_event *event)
9393{
9394}
Li Zefan07b139c2009-12-21 14:27:35 +08009395#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009396
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009397#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009398void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009399{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009400 struct perf_sample_data sample;
9401 struct pt_regs *regs = data;
9402
Robert Richterfd0d0002012-04-02 20:19:08 +02009403 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009404
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009405 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009406 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009407}
9408#endif
9409
Alexander Shishkin375637b2016-04-27 18:44:46 +03009410/*
9411 * Allocate a new address filter
9412 */
9413static struct perf_addr_filter *
9414perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
9415{
9416 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
9417 struct perf_addr_filter *filter;
9418
9419 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
9420 if (!filter)
9421 return NULL;
9422
9423 INIT_LIST_HEAD(&filter->entry);
9424 list_add_tail(&filter->entry, filters);
9425
9426 return filter;
9427}
9428
9429static void free_filters_list(struct list_head *filters)
9430{
9431 struct perf_addr_filter *filter, *iter;
9432
9433 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07009434 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009435 list_del(&filter->entry);
9436 kfree(filter);
9437 }
9438}
9439
9440/*
9441 * Free existing address filters and optionally install new ones
9442 */
9443static void perf_addr_filters_splice(struct perf_event *event,
9444 struct list_head *head)
9445{
9446 unsigned long flags;
9447 LIST_HEAD(list);
9448
9449 if (!has_addr_filter(event))
9450 return;
9451
9452 /* don't bother with children, they don't have their own filters */
9453 if (event->parent)
9454 return;
9455
9456 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
9457
9458 list_splice_init(&event->addr_filters.list, &list);
9459 if (head)
9460 list_splice(head, &event->addr_filters.list);
9461
9462 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
9463
9464 free_filters_list(&list);
9465}
9466
9467/*
9468 * Scan through mm's vmas and see if one of them matches the
9469 * @filter; if so, adjust filter's address range.
9470 * Called with mm::mmap_sem down for reading.
9471 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009472static void perf_addr_filter_apply(struct perf_addr_filter *filter,
9473 struct mm_struct *mm,
9474 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009475{
9476 struct vm_area_struct *vma;
9477
9478 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009479 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009480 continue;
9481
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009482 if (perf_addr_filter_vma_adjust(filter, vma, fr))
9483 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009484 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009485}
9486
9487/*
9488 * Update event's address range filters based on the
9489 * task's existing mappings, if any.
9490 */
9491static void perf_event_addr_filters_apply(struct perf_event *event)
9492{
9493 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
9494 struct task_struct *task = READ_ONCE(event->ctx->task);
9495 struct perf_addr_filter *filter;
9496 struct mm_struct *mm = NULL;
9497 unsigned int count = 0;
9498 unsigned long flags;
9499
9500 /*
9501 * We may observe TASK_TOMBSTONE, which means that the event tear-down
9502 * will stop on the parent's child_mutex that our caller is also holding
9503 */
9504 if (task == TASK_TOMBSTONE)
9505 return;
9506
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009507 if (ifh->nr_file_filters) {
9508 mm = get_task_mm(event->ctx->task);
9509 if (!mm)
9510 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009511
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009512 down_read(&mm->mmap_sem);
9513 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009514
9515 raw_spin_lock_irqsave(&ifh->lock, flags);
9516 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009517 if (filter->path.dentry) {
9518 /*
9519 * Adjust base offset if the filter is associated to a
9520 * binary that needs to be mapped:
9521 */
9522 event->addr_filter_ranges[count].start = 0;
9523 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009524
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009525 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009526 } else {
9527 event->addr_filter_ranges[count].start = filter->offset;
9528 event->addr_filter_ranges[count].size = filter->size;
9529 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009530
9531 count++;
9532 }
9533
9534 event->addr_filters_gen++;
9535 raw_spin_unlock_irqrestore(&ifh->lock, flags);
9536
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009537 if (ifh->nr_file_filters) {
9538 up_read(&mm->mmap_sem);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009539
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009540 mmput(mm);
9541 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009542
9543restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03009544 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009545}
9546
9547/*
9548 * Address range filtering: limiting the data to certain
9549 * instruction address ranges. Filters are ioctl()ed to us from
9550 * userspace as ascii strings.
9551 *
9552 * Filter string format:
9553 *
9554 * ACTION RANGE_SPEC
9555 * where ACTION is one of the
9556 * * "filter": limit the trace to this region
9557 * * "start": start tracing from this address
9558 * * "stop": stop tracing at this address/region;
9559 * RANGE_SPEC is
9560 * * for kernel addresses: <start address>[/<size>]
9561 * * for object files: <start address>[/<size>]@</path/to/object/file>
9562 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009563 * if <size> is not specified or is zero, the range is treated as a single
9564 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +03009565 */
9566enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02009567 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03009568 IF_ACT_FILTER,
9569 IF_ACT_START,
9570 IF_ACT_STOP,
9571 IF_SRC_FILE,
9572 IF_SRC_KERNEL,
9573 IF_SRC_FILEADDR,
9574 IF_SRC_KERNELADDR,
9575};
9576
9577enum {
9578 IF_STATE_ACTION = 0,
9579 IF_STATE_SOURCE,
9580 IF_STATE_END,
9581};
9582
9583static const match_table_t if_tokens = {
9584 { IF_ACT_FILTER, "filter" },
9585 { IF_ACT_START, "start" },
9586 { IF_ACT_STOP, "stop" },
9587 { IF_SRC_FILE, "%u/%u@%s" },
9588 { IF_SRC_KERNEL, "%u/%u" },
9589 { IF_SRC_FILEADDR, "%u@%s" },
9590 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02009591 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03009592};
9593
9594/*
9595 * Address filter string parser
9596 */
9597static int
9598perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9599 struct list_head *filters)
9600{
9601 struct perf_addr_filter *filter = NULL;
9602 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009603 substring_t args[MAX_OPT_ARGS];
9604 int state = IF_STATE_ACTION, token;
9605 unsigned int kernel = 0;
9606 int ret = -EINVAL;
9607
9608 orig = fstr = kstrdup(fstr, GFP_KERNEL);
9609 if (!fstr)
9610 return -ENOMEM;
9611
9612 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009613 static const enum perf_addr_filter_action_t actions[] = {
9614 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
9615 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
9616 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
9617 };
Alexander Shishkin375637b2016-04-27 18:44:46 +03009618 ret = -EINVAL;
9619
9620 if (!*start)
9621 continue;
9622
9623 /* filter definition begins */
9624 if (state == IF_STATE_ACTION) {
9625 filter = perf_addr_filter_new(event, filters);
9626 if (!filter)
9627 goto fail;
9628 }
9629
9630 token = match_token(start, if_tokens, args);
9631 switch (token) {
9632 case IF_ACT_FILTER:
9633 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +03009634 case IF_ACT_STOP:
9635 if (state != IF_STATE_ACTION)
9636 goto fail;
9637
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009638 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +03009639 state = IF_STATE_SOURCE;
9640 break;
9641
9642 case IF_SRC_KERNELADDR:
9643 case IF_SRC_KERNEL:
9644 kernel = 1;
Gustavo A. R. Silva10c34052019-02-12 14:54:30 -06009645 /* fall through */
Alexander Shishkin375637b2016-04-27 18:44:46 +03009646
9647 case IF_SRC_FILEADDR:
9648 case IF_SRC_FILE:
9649 if (state != IF_STATE_SOURCE)
9650 goto fail;
9651
Alexander Shishkin375637b2016-04-27 18:44:46 +03009652 *args[0].to = 0;
9653 ret = kstrtoul(args[0].from, 0, &filter->offset);
9654 if (ret)
9655 goto fail;
9656
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009657 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03009658 *args[1].to = 0;
9659 ret = kstrtoul(args[1].from, 0, &filter->size);
9660 if (ret)
9661 goto fail;
9662 }
9663
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009664 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009665 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009666
9667 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009668 if (!filename) {
9669 ret = -ENOMEM;
9670 goto fail;
9671 }
9672 }
9673
9674 state = IF_STATE_END;
9675 break;
9676
9677 default:
9678 goto fail;
9679 }
9680
9681 /*
9682 * Filter definition is fully parsed, validate and install it.
9683 * Make sure that it doesn't contradict itself or the event's
9684 * attribute.
9685 */
9686 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02009687 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009688 if (kernel && event->attr.exclude_kernel)
9689 goto fail;
9690
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009691 /*
9692 * ACTION "filter" must have a non-zero length region
9693 * specified.
9694 */
9695 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
9696 !filter->size)
9697 goto fail;
9698
Alexander Shishkin375637b2016-04-27 18:44:46 +03009699 if (!kernel) {
9700 if (!filename)
9701 goto fail;
9702
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009703 /*
9704 * For now, we only support file-based filters
9705 * in per-task events; doing so for CPU-wide
9706 * events requires additional context switching
9707 * trickery, since same object code will be
9708 * mapped at different virtual addresses in
9709 * different processes.
9710 */
9711 ret = -EOPNOTSUPP;
9712 if (!event->ctx->task)
9713 goto fail_free_name;
9714
Alexander Shishkin375637b2016-04-27 18:44:46 +03009715 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -07009716 ret = kern_path(filename, LOOKUP_FOLLOW,
9717 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009718 if (ret)
9719 goto fail_free_name;
9720
Alexander Shishkin375637b2016-04-27 18:44:46 +03009721 kfree(filename);
9722 filename = NULL;
9723
9724 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -07009725 if (!filter->path.dentry ||
9726 !S_ISREG(d_inode(filter->path.dentry)
9727 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009728 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009729
9730 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009731 }
9732
9733 /* ready to consume more filters */
9734 state = IF_STATE_ACTION;
9735 filter = NULL;
9736 }
9737 }
9738
9739 if (state != IF_STATE_ACTION)
9740 goto fail;
9741
9742 kfree(orig);
9743
9744 return 0;
9745
9746fail_free_name:
9747 kfree(filename);
9748fail:
9749 free_filters_list(filters);
9750 kfree(orig);
9751
9752 return ret;
9753}
9754
9755static int
9756perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
9757{
9758 LIST_HEAD(filters);
9759 int ret;
9760
9761 /*
9762 * Since this is called in perf_ioctl() path, we're already holding
9763 * ctx::mutex.
9764 */
9765 lockdep_assert_held(&event->ctx->mutex);
9766
9767 if (WARN_ON_ONCE(event->parent))
9768 return -EINVAL;
9769
Alexander Shishkin375637b2016-04-27 18:44:46 +03009770 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
9771 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009772 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009773
9774 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009775 if (ret)
9776 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009777
9778 /* remove existing filters, if any */
9779 perf_addr_filters_splice(event, &filters);
9780
9781 /* install new filters */
9782 perf_event_for_each_child(event, perf_event_addr_filters_apply);
9783
9784 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009785
9786fail_free_filters:
9787 free_filters_list(&filters);
9788
9789fail_clear_files:
9790 event->addr_filters.nr_file_filters = 0;
9791
9792 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009793}
9794
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009795static int perf_event_set_filter(struct perf_event *event, void __user *arg)
9796{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009797 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -08009798 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009799
9800 filter_str = strndup_user(arg, PAGE_SIZE);
9801 if (IS_ERR(filter_str))
9802 return PTR_ERR(filter_str);
9803
Song Liue12f03d2017-12-06 14:45:15 -08009804#ifdef CONFIG_EVENT_TRACING
9805 if (perf_event_is_tracing(event)) {
9806 struct perf_event_context *ctx = event->ctx;
9807
9808 /*
9809 * Beware, here be dragons!!
9810 *
9811 * the tracepoint muck will deadlock against ctx->mutex, but
9812 * the tracepoint stuff does not actually need it. So
9813 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
9814 * already have a reference on ctx.
9815 *
9816 * This can result in event getting moved to a different ctx,
9817 * but that does not affect the tracepoint state.
9818 */
9819 mutex_unlock(&ctx->mutex);
9820 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
9821 mutex_lock(&ctx->mutex);
9822 } else
9823#endif
9824 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009825 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009826
9827 kfree(filter_str);
9828 return ret;
9829}
9830
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009831/*
9832 * hrtimer based swevent callback
9833 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009834
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009835static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009836{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009837 enum hrtimer_restart ret = HRTIMER_RESTART;
9838 struct perf_sample_data data;
9839 struct pt_regs *regs;
9840 struct perf_event *event;
9841 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009842
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009843 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009844
9845 if (event->state != PERF_EVENT_STATE_ACTIVE)
9846 return HRTIMER_NORESTART;
9847
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009848 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009849
Robert Richterfd0d0002012-04-02 20:19:08 +02009850 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009851 regs = get_irq_regs();
9852
9853 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08009854 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02009855 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009856 ret = HRTIMER_NORESTART;
9857 }
9858
9859 period = max_t(u64, 10000, event->hw.sample_period);
9860 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
9861
9862 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009863}
9864
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009865static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009866{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009867 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009868 s64 period;
9869
9870 if (!is_sampling_event(event))
9871 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009872
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009873 period = local64_read(&hwc->period_left);
9874 if (period) {
9875 if (period < 0)
9876 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009877
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009878 local64_set(&hwc->period_left, 0);
9879 } else {
9880 period = max_t(u64, 10000, hwc->sample_period);
9881 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00009882 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02009883 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009884}
9885
9886static void perf_swevent_cancel_hrtimer(struct perf_event *event)
9887{
9888 struct hw_perf_event *hwc = &event->hw;
9889
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009890 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009891 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009892 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009893
9894 hrtimer_cancel(&hwc->hrtimer);
9895 }
9896}
9897
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009898static void perf_swevent_init_hrtimer(struct perf_event *event)
9899{
9900 struct hw_perf_event *hwc = &event->hw;
9901
9902 if (!is_sampling_event(event))
9903 return;
9904
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02009905 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009906 hwc->hrtimer.function = perf_swevent_hrtimer;
9907
9908 /*
9909 * Since hrtimers have a fixed rate, we can do a static freq->period
9910 * mapping and avoid the whole period adjust feedback stuff.
9911 */
9912 if (event->attr.freq) {
9913 long freq = event->attr.sample_freq;
9914
9915 event->attr.sample_period = NSEC_PER_SEC / freq;
9916 hwc->sample_period = event->attr.sample_period;
9917 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09009918 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009919 event->attr.freq = 0;
9920 }
9921}
9922
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009923/*
9924 * Software event: cpu wall time clock
9925 */
9926
9927static void cpu_clock_event_update(struct perf_event *event)
9928{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009929 s64 prev;
9930 u64 now;
9931
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009932 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009933 prev = local64_xchg(&event->hw.prev_count, now);
9934 local64_add(now - prev, &event->count);
9935}
9936
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009937static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009938{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009939 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009940 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009941}
9942
9943static void cpu_clock_event_stop(struct perf_event *event, int flags)
9944{
9945 perf_swevent_cancel_hrtimer(event);
9946 cpu_clock_event_update(event);
9947}
9948
9949static int cpu_clock_event_add(struct perf_event *event, int flags)
9950{
9951 if (flags & PERF_EF_START)
9952 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08009953 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009954
9955 return 0;
9956}
9957
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009958static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009959{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009960 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009961}
9962
9963static void cpu_clock_event_read(struct perf_event *event)
9964{
9965 cpu_clock_event_update(event);
9966}
9967
9968static int cpu_clock_event_init(struct perf_event *event)
9969{
9970 if (event->attr.type != PERF_TYPE_SOFTWARE)
9971 return -ENOENT;
9972
9973 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
9974 return -ENOENT;
9975
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009976 /*
9977 * no branch sampling for software events
9978 */
9979 if (has_branch_stack(event))
9980 return -EOPNOTSUPP;
9981
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009982 perf_swevent_init_hrtimer(event);
9983
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009984 return 0;
9985}
9986
9987static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009988 .task_ctx_nr = perf_sw_context,
9989
Peter Zijlstra34f43922015-02-20 14:05:38 +01009990 .capabilities = PERF_PMU_CAP_NO_NMI,
9991
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009992 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009993 .add = cpu_clock_event_add,
9994 .del = cpu_clock_event_del,
9995 .start = cpu_clock_event_start,
9996 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009997 .read = cpu_clock_event_read,
9998};
9999
10000/*
10001 * Software event: task time clock
10002 */
10003
10004static void task_clock_event_update(struct perf_event *event, u64 now)
10005{
10006 u64 prev;
10007 s64 delta;
10008
10009 prev = local64_xchg(&event->hw.prev_count, now);
10010 delta = now - prev;
10011 local64_add(delta, &event->count);
10012}
10013
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010014static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010015{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010016 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010017 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010018}
10019
10020static void task_clock_event_stop(struct perf_event *event, int flags)
10021{
10022 perf_swevent_cancel_hrtimer(event);
10023 task_clock_event_update(event, event->ctx->time);
10024}
10025
10026static int task_clock_event_add(struct perf_event *event, int flags)
10027{
10028 if (flags & PERF_EF_START)
10029 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -080010030 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010031
10032 return 0;
10033}
10034
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010035static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010036{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010037 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010038}
10039
10040static void task_clock_event_read(struct perf_event *event)
10041{
Peter Zijlstra768a06e2011-02-22 16:52:24 +010010042 u64 now = perf_clock();
10043 u64 delta = now - event->ctx->timestamp;
10044 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010045
10046 task_clock_event_update(event, time);
10047}
10048
10049static int task_clock_event_init(struct perf_event *event)
10050{
10051 if (event->attr.type != PERF_TYPE_SOFTWARE)
10052 return -ENOENT;
10053
10054 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10055 return -ENOENT;
10056
Stephane Eranian2481c5f2012-02-09 23:20:59 +010010057 /*
10058 * no branch sampling for software events
10059 */
10060 if (has_branch_stack(event))
10061 return -EOPNOTSUPP;
10062
Peter Zijlstraba3dd362011-02-15 12:41:46 +010010063 perf_swevent_init_hrtimer(event);
10064
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010065 return 0;
10066}
10067
10068static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010069 .task_ctx_nr = perf_sw_context,
10070
Peter Zijlstra34f43922015-02-20 14:05:38 +010010071 .capabilities = PERF_PMU_CAP_NO_NMI,
10072
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010073 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +020010074 .add = task_clock_event_add,
10075 .del = task_clock_event_del,
10076 .start = task_clock_event_start,
10077 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010078 .read = task_clock_event_read,
10079};
10080
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010081static void perf_pmu_nop_void(struct pmu *pmu)
10082{
10083}
10084
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010085static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10086{
10087}
10088
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010089static int perf_pmu_nop_int(struct pmu *pmu)
10090{
10091 return 0;
10092}
10093
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010094static int perf_event_nop_int(struct perf_event *event, u64 value)
10095{
10096 return 0;
10097}
10098
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010099static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010100
10101static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010102{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010103 __this_cpu_write(nop_txn_flags, flags);
10104
10105 if (flags & ~PERF_PMU_TXN_ADD)
10106 return;
10107
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010108 perf_pmu_disable(pmu);
10109}
10110
10111static int perf_pmu_commit_txn(struct pmu *pmu)
10112{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010113 unsigned int flags = __this_cpu_read(nop_txn_flags);
10114
10115 __this_cpu_write(nop_txn_flags, 0);
10116
10117 if (flags & ~PERF_PMU_TXN_ADD)
10118 return 0;
10119
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010120 perf_pmu_enable(pmu);
10121 return 0;
10122}
10123
10124static void perf_pmu_cancel_txn(struct pmu *pmu)
10125{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010126 unsigned int flags = __this_cpu_read(nop_txn_flags);
10127
10128 __this_cpu_write(nop_txn_flags, 0);
10129
10130 if (flags & ~PERF_PMU_TXN_ADD)
10131 return;
10132
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010133 perf_pmu_enable(pmu);
10134}
10135
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010136static int perf_event_idx_default(struct perf_event *event)
10137{
Peter Zijlstrac719f562014-10-21 11:10:21 +020010138 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010139}
10140
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010141/*
10142 * Ensures all contexts with the same task_ctx_nr have the same
10143 * pmu_cpu_context too.
10144 */
Mark Rutland9e317042014-02-10 17:44:18 +000010145static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010146{
10147 struct pmu *pmu;
10148
10149 if (ctxn < 0)
10150 return NULL;
10151
10152 list_for_each_entry(pmu, &pmus, entry) {
10153 if (pmu->task_ctx_nr == ctxn)
10154 return pmu->pmu_cpu_context;
10155 }
10156
10157 return NULL;
10158}
10159
Peter Zijlstra51676952010-12-07 14:18:20 +010010160static void free_pmu_context(struct pmu *pmu)
10161{
Will Deacondf0062b2017-10-03 15:20:50 +010010162 /*
10163 * Static contexts such as perf_sw_context have a global lifetime
10164 * and may be shared between different PMUs. Avoid freeing them
10165 * when a single PMU is going away.
10166 */
10167 if (pmu->task_ctx_nr > perf_invalid_context)
10168 return;
10169
Peter Zijlstra51676952010-12-07 14:18:20 +010010170 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010171}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010172
10173/*
10174 * Let userspace know that this PMU supports address range filtering:
10175 */
10176static ssize_t nr_addr_filters_show(struct device *dev,
10177 struct device_attribute *attr,
10178 char *page)
10179{
10180 struct pmu *pmu = dev_get_drvdata(dev);
10181
10182 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10183}
10184DEVICE_ATTR_RO(nr_addr_filters);
10185
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010186static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010187
Peter Zijlstraabe43402010-11-17 23:17:37 +010010188static ssize_t
10189type_show(struct device *dev, struct device_attribute *attr, char *page)
10190{
10191 struct pmu *pmu = dev_get_drvdata(dev);
10192
10193 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10194}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010195static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010196
Stephane Eranian62b85632013-04-03 14:21:34 +020010197static ssize_t
10198perf_event_mux_interval_ms_show(struct device *dev,
10199 struct device_attribute *attr,
10200 char *page)
10201{
10202 struct pmu *pmu = dev_get_drvdata(dev);
10203
10204 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10205}
10206
Peter Zijlstra272325c2015-04-15 11:41:58 +020010207static DEFINE_MUTEX(mux_interval_mutex);
10208
Stephane Eranian62b85632013-04-03 14:21:34 +020010209static ssize_t
10210perf_event_mux_interval_ms_store(struct device *dev,
10211 struct device_attribute *attr,
10212 const char *buf, size_t count)
10213{
10214 struct pmu *pmu = dev_get_drvdata(dev);
10215 int timer, cpu, ret;
10216
10217 ret = kstrtoint(buf, 0, &timer);
10218 if (ret)
10219 return ret;
10220
10221 if (timer < 1)
10222 return -EINVAL;
10223
10224 /* same value, noting to do */
10225 if (timer == pmu->hrtimer_interval_ms)
10226 return count;
10227
Peter Zijlstra272325c2015-04-15 11:41:58 +020010228 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010229 pmu->hrtimer_interval_ms = timer;
10230
10231 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010232 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010233 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +020010234 struct perf_cpu_context *cpuctx;
10235 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
10236 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
10237
Peter Zijlstra272325c2015-04-15 11:41:58 +020010238 cpu_function_call(cpu,
10239 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +020010240 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010241 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +020010242 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +020010243
10244 return count;
10245}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010246static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +020010247
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010248static struct attribute *pmu_dev_attrs[] = {
10249 &dev_attr_type.attr,
10250 &dev_attr_perf_event_mux_interval_ms.attr,
10251 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010252};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010253ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +010010254
10255static int pmu_bus_running;
10256static struct bus_type pmu_bus = {
10257 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -070010258 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +010010259};
10260
10261static void pmu_dev_release(struct device *dev)
10262{
10263 kfree(dev);
10264}
10265
10266static int pmu_dev_alloc(struct pmu *pmu)
10267{
10268 int ret = -ENOMEM;
10269
10270 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10271 if (!pmu->dev)
10272 goto out;
10273
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010010274 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010010275 device_initialize(pmu->dev);
10276 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10277 if (ret)
10278 goto free_dev;
10279
10280 dev_set_drvdata(pmu->dev, pmu);
10281 pmu->dev->bus = &pmu_bus;
10282 pmu->dev->release = pmu_dev_release;
10283 ret = device_add(pmu->dev);
10284 if (ret)
10285 goto free_dev;
10286
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010287 /* For PMUs with address filters, throw in an extra attribute: */
10288 if (pmu->nr_addr_filters)
10289 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10290
10291 if (ret)
10292 goto del_dev;
10293
Jiri Olsaf3a3a822019-05-12 17:55:11 +020010294 if (pmu->attr_update)
10295 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10296
10297 if (ret)
10298 goto del_dev;
10299
Peter Zijlstraabe43402010-11-17 23:17:37 +010010300out:
10301 return ret;
10302
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010303del_dev:
10304 device_del(pmu->dev);
10305
Peter Zijlstraabe43402010-11-17 23:17:37 +010010306free_dev:
10307 put_device(pmu->dev);
10308 goto out;
10309}
10310
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010311static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010312static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010313
Mischa Jonker03d8e802013-06-04 11:45:48 +020010314int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010315{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010316 int cpu, ret, max = PERF_TYPE_MAX;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010317
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010318 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010319 ret = -ENOMEM;
10320 pmu->pmu_disable_count = alloc_percpu(int);
10321 if (!pmu->pmu_disable_count)
10322 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010323
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010324 pmu->type = -1;
10325 if (!name)
10326 goto skip_type;
10327 pmu->name = name;
10328
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010329 if (type != PERF_TYPE_SOFTWARE) {
10330 if (type >= 0)
10331 max = type;
10332
10333 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
10334 if (ret < 0)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010335 goto free_pdc;
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010336
10337 WARN_ON(type >= 0 && ret != type);
10338
10339 type = ret;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010340 }
10341 pmu->type = type;
10342
Peter Zijlstraabe43402010-11-17 23:17:37 +010010343 if (pmu_bus_running) {
10344 ret = pmu_dev_alloc(pmu);
10345 if (ret)
10346 goto free_idr;
10347 }
10348
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010349skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010010350 if (pmu->task_ctx_nr == perf_hw_context) {
10351 static int hw_context_taken = 0;
10352
Mark Rutland5101ef22016-04-26 11:33:46 +010010353 /*
10354 * Other than systems with heterogeneous CPUs, it never makes
10355 * sense for two PMUs to share perf_hw_context. PMUs which are
10356 * uncore must use perf_invalid_context.
10357 */
10358 if (WARN_ON_ONCE(hw_context_taken &&
10359 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010010360 pmu->task_ctx_nr = perf_invalid_context;
10361
10362 hw_context_taken = 1;
10363 }
10364
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010365 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
10366 if (pmu->pmu_cpu_context)
10367 goto got_cpu_context;
10368
Wei Yongjunc4814202013-04-12 11:05:54 +080010369 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010370 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
10371 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010010372 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010373
10374 for_each_possible_cpu(cpu) {
10375 struct perf_cpu_context *cpuctx;
10376
10377 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020010378 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010379 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010380 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010381 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010382 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020010383
Peter Zijlstra272325c2015-04-15 11:41:58 +020010384 __perf_mux_hrtimer_init(cpuctx, cpu);
Ian Rogers836196be2020-02-13 23:51:31 -080010385
10386 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
10387 cpuctx->heap = cpuctx->heap_default;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010388 }
10389
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010390got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010391 if (!pmu->start_txn) {
10392 if (pmu->pmu_enable) {
10393 /*
10394 * If we have pmu_enable/pmu_disable calls, install
10395 * transaction stubs that use that to try and batch
10396 * hardware accesses.
10397 */
10398 pmu->start_txn = perf_pmu_start_txn;
10399 pmu->commit_txn = perf_pmu_commit_txn;
10400 pmu->cancel_txn = perf_pmu_cancel_txn;
10401 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010402 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010403 pmu->commit_txn = perf_pmu_nop_int;
10404 pmu->cancel_txn = perf_pmu_nop_void;
10405 }
10406 }
10407
10408 if (!pmu->pmu_enable) {
10409 pmu->pmu_enable = perf_pmu_nop_void;
10410 pmu->pmu_disable = perf_pmu_nop_void;
10411 }
10412
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010413 if (!pmu->check_period)
10414 pmu->check_period = perf_event_nop_int;
10415
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010416 if (!pmu->event_idx)
10417 pmu->event_idx = perf_event_idx_default;
10418
Liang, Kand44f8212019-10-22 11:13:09 +020010419 /*
10420 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
10421 * since these cannot be in the IDR. This way the linear search
10422 * is fast, provided a valid software event is provided.
10423 */
10424 if (type == PERF_TYPE_SOFTWARE || !name)
10425 list_add_rcu(&pmu->entry, &pmus);
10426 else
10427 list_add_tail_rcu(&pmu->entry, &pmus);
10428
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010429 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010430 ret = 0;
10431unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010432 mutex_unlock(&pmus_lock);
10433
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010434 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010435
Peter Zijlstraabe43402010-11-17 23:17:37 +010010436free_dev:
10437 device_del(pmu->dev);
10438 put_device(pmu->dev);
10439
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010440free_idr:
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010441 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010442 idr_remove(&pmu_idr, pmu->type);
10443
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010444free_pdc:
10445 free_percpu(pmu->pmu_disable_count);
10446 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010447}
Yan, Zhengc464c762014-03-18 16:56:41 +080010448EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010449
10450void perf_pmu_unregister(struct pmu *pmu)
10451{
10452 mutex_lock(&pmus_lock);
10453 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010454
10455 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020010456 * We dereference the pmu list under both SRCU and regular RCU, so
10457 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010458 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010459 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020010460 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010461
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010462 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010463 if (pmu->type != PERF_TYPE_SOFTWARE)
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010464 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010465 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020010466 if (pmu->nr_addr_filters)
10467 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
10468 device_del(pmu->dev);
10469 put_device(pmu->dev);
10470 }
Peter Zijlstra51676952010-12-07 14:18:20 +010010471 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010472 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010473}
Yan, Zhengc464c762014-03-18 16:56:41 +080010474EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010475
Kan Liange321d022019-05-28 15:08:30 -070010476static inline bool has_extended_regs(struct perf_event *event)
10477{
10478 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
10479 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
10480}
10481
Mark Rutlandcc34b982015-01-07 14:56:51 +000010482static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
10483{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010484 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000010485 int ret;
10486
10487 if (!try_module_get(pmu->module))
10488 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010489
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010010490 /*
10491 * A number of pmu->event_init() methods iterate the sibling_list to,
10492 * for example, validate if the group fits on the PMU. Therefore,
10493 * if this is a sibling event, acquire the ctx->mutex to protect
10494 * the sibling_list.
10495 */
10496 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020010497 /*
10498 * This ctx->mutex can nest when we're called through
10499 * inheritance. See the perf_event_ctx_lock_nested() comment.
10500 */
10501 ctx = perf_event_ctx_lock_nested(event->group_leader,
10502 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010503 BUG_ON(!ctx);
10504 }
10505
Mark Rutlandcc34b982015-01-07 14:56:51 +000010506 event->pmu = pmu;
10507 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010508
10509 if (ctx)
10510 perf_event_ctx_unlock(event->group_leader, ctx);
10511
Andrew Murraycc6795a2019-01-10 13:53:25 +000010512 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070010513 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
10514 has_extended_regs(event))
10515 ret = -EOPNOTSUPP;
10516
Andrew Murraycc6795a2019-01-10 13:53:25 +000010517 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070010518 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000010519 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070010520
10521 if (ret && event->destroy)
10522 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000010523 }
10524
Mark Rutlandcc34b982015-01-07 14:56:51 +000010525 if (ret)
10526 module_put(pmu->module);
10527
10528 return ret;
10529}
10530
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010531static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010532{
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010533 int idx, type, ret;
Dan Carpenter85c617a2017-05-22 12:03:49 +030010534 struct pmu *pmu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010535
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010536 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010537
Kan Liang40999312017-01-18 08:21:01 -050010538 /* Try parent's PMU first: */
10539 if (event->parent && event->parent->pmu) {
10540 pmu = event->parent->pmu;
10541 ret = perf_try_init_event(pmu, event);
10542 if (!ret)
10543 goto unlock;
10544 }
10545
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010546 /*
10547 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
10548 * are often aliases for PERF_TYPE_RAW.
10549 */
10550 type = event->attr.type;
10551 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE)
10552 type = PERF_TYPE_RAW;
10553
10554again:
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010555 rcu_read_lock();
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010556 pmu = idr_find(&pmu_idr, type);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010557 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080010558 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010559 ret = perf_try_init_event(pmu, event);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010560 if (ret == -ENOENT && event->attr.type != type) {
10561 type = event->attr.type;
10562 goto again;
10563 }
10564
Lin Ming940c5b22011-02-27 21:13:31 +080010565 if (ret)
10566 pmu = ERR_PTR(ret);
Peter Zijlstra66d258c2019-10-17 20:31:03 +020010567
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010568 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080010569 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010570
Sebastian Andrzej Siewior9f0bff12019-11-19 13:14:29 +010010571 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010572 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010573 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010574 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010575
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010576 if (ret != -ENOENT) {
10577 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010578 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010579 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010580 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010581 pmu = ERR_PTR(-ENOENT);
10582unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010583 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010584
10585 return pmu;
10586}
10587
Kan Liangf2fb6be2016-03-23 11:24:37 -070010588static void attach_sb_event(struct perf_event *event)
10589{
10590 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
10591
10592 raw_spin_lock(&pel->lock);
10593 list_add_rcu(&event->sb_list, &pel->list);
10594 raw_spin_unlock(&pel->lock);
10595}
10596
Peter Zijlstraaab5b712016-05-12 17:26:46 +020010597/*
10598 * We keep a list of all !task (and therefore per-cpu) events
10599 * that need to receive side-band records.
10600 *
10601 * This avoids having to scan all the various PMU per-cpu contexts
10602 * looking for them.
10603 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070010604static void account_pmu_sb_event(struct perf_event *event)
10605{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070010606 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070010607 attach_sb_event(event);
10608}
10609
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010610static void account_event_cpu(struct perf_event *event, int cpu)
10611{
10612 if (event->parent)
10613 return;
10614
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010615 if (is_cgroup_event(event))
10616 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
10617}
10618
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010619/* Freq events need the tick to stay alive (see perf_event_task_tick). */
10620static void account_freq_event_nohz(void)
10621{
10622#ifdef CONFIG_NO_HZ_FULL
10623 /* Lock so we don't race with concurrent unaccount */
10624 spin_lock(&nr_freq_lock);
10625 if (atomic_inc_return(&nr_freq_events) == 1)
10626 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
10627 spin_unlock(&nr_freq_lock);
10628#endif
10629}
10630
10631static void account_freq_event(void)
10632{
10633 if (tick_nohz_full_enabled())
10634 account_freq_event_nohz();
10635 else
10636 atomic_inc(&nr_freq_events);
10637}
10638
10639
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010640static void account_event(struct perf_event *event)
10641{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010642 bool inc = false;
10643
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010644 if (event->parent)
10645 return;
10646
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010647 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010648 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010649 if (event->attr.mmap || event->attr.mmap_data)
10650 atomic_inc(&nr_mmap_events);
10651 if (event->attr.comm)
10652 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053010653 if (event->attr.namespaces)
10654 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010655 if (event->attr.task)
10656 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010657 if (event->attr.freq)
10658 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030010659 if (event->attr.context_switch) {
10660 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010661 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030010662 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010663 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010664 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010665 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010666 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080010667 if (event->attr.ksymbol)
10668 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080010669 if (event->attr.bpf_event)
10670 atomic_inc(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010671
Peter Zijlstra9107c892016-02-24 18:45:45 +010010672 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030010673 /*
10674 * We need the mutex here because static_branch_enable()
10675 * must complete *before* the perf_sched_count increment
10676 * becomes visible.
10677 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010010678 if (atomic_inc_not_zero(&perf_sched_count))
10679 goto enabled;
10680
10681 mutex_lock(&perf_sched_mutex);
10682 if (!atomic_read(&perf_sched_count)) {
10683 static_branch_enable(&perf_sched_events);
10684 /*
10685 * Guarantee that all CPUs observe they key change and
10686 * call the perf scheduling hooks before proceeding to
10687 * install events that need them.
10688 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080010689 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010010690 }
10691 /*
10692 * Now that we have waited for the sync_sched(), allow further
10693 * increments to by-pass the mutex.
10694 */
10695 atomic_inc(&perf_sched_count);
10696 mutex_unlock(&perf_sched_mutex);
10697 }
10698enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010699
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010700 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070010701
10702 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010703}
10704
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010705/*
Tobias Tefke788faab2018-07-09 12:57:15 +020010706 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010707 */
10708static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010709perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010710 struct task_struct *task,
10711 struct perf_event *group_leader,
10712 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010713 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000010714 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010715{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020010716 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010717 struct perf_event *event;
10718 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010719 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010720
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010721 if ((unsigned)cpu >= nr_cpu_ids) {
10722 if (!task || cpu != -1)
10723 return ERR_PTR(-EINVAL);
10724 }
10725
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010726 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010727 if (!event)
10728 return ERR_PTR(-ENOMEM);
10729
10730 /*
10731 * Single events are their own group leaders, with an
10732 * empty sibling list:
10733 */
10734 if (!group_leader)
10735 group_leader = event;
10736
10737 mutex_init(&event->child_mutex);
10738 INIT_LIST_HEAD(&event->child_list);
10739
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010740 INIT_LIST_HEAD(&event->event_entry);
10741 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010010742 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030010743 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010744 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010010745 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010746 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010010747 INIT_HLIST_NODE(&event->hlist_entry);
10748
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010749
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010750 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020010751 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080010752 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010753
10754 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010755 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010756
Al Viroa6fa9412012-08-20 14:59:25 +010010757 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010758 event->cpu = cpu;
10759 event->attr = *attr;
10760 event->group_leader = group_leader;
10761 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010762 event->oncpu = -1;
10763
10764 event->parent = parent_event;
10765
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080010766 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010767 event->id = atomic64_inc_return(&perf_event_id);
10768
10769 event->state = PERF_EVENT_STATE_INACTIVE;
10770
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010771 if (task) {
10772 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010773 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010010774 * XXX pmu::event_init needs to know what task to account to
10775 * and we cannot use the ctx information because we need the
10776 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010777 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070010778 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010779 }
10780
Peter Zijlstra34f43922015-02-20 14:05:38 +010010781 event->clock = &local_clock;
10782 if (parent_event)
10783 event->clock = parent_event->clock;
10784
Avi Kivity4dc0da82011-06-29 18:42:35 +030010785 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010010786 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010787 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020010788#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010789 if (overflow_handler == bpf_overflow_handler) {
Andrii Nakryiko85192db2019-11-17 09:28:03 -080010790 struct bpf_prog *prog = parent_event->prog;
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010791
Andrii Nakryiko85192db2019-11-17 09:28:03 -080010792 bpf_prog_inc(prog);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010793 event->prog = prog;
10794 event->orig_overflow_handler =
10795 parent_event->orig_overflow_handler;
10796 }
10797#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030010798 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010799
Wang Nan18794452016-03-28 06:41:30 +000010800 if (overflow_handler) {
10801 event->overflow_handler = overflow_handler;
10802 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000010803 } else if (is_write_backward(event)){
10804 event->overflow_handler = perf_event_output_backward;
10805 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000010806 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000010807 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000010808 event->overflow_handler_context = NULL;
10809 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020010810
Jiri Olsa0231bb52013-02-01 11:23:45 +010010811 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010812
10813 pmu = NULL;
10814
10815 hwc = &event->hw;
10816 hwc->sample_period = attr->sample_period;
10817 if (attr->freq && attr->sample_freq)
10818 hwc->sample_period = 1;
10819 hwc->last_period = hwc->sample_period;
10820
Peter Zijlstrae7850592010-05-21 14:43:08 +020010821 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010822
10823 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010824 * We currently do not support PERF_SAMPLE_READ on inherited events.
10825 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010826 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010827 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010828 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010829
Yan, Zhenga46a2302014-11-04 21:56:06 -050010830 if (!has_branch_stack(event))
10831 event->attr.branch_sample_type = 0;
10832
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010833 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030010834 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010835 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010836 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010837 }
10838
Peter Zijlstra09f4e8f2019-11-06 12:51:04 +010010839 /*
10840 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
10841 * be different on other CPUs in the uncore mask.
10842 */
10843 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
10844 err = -EINVAL;
10845 goto err_pmu;
10846 }
10847
Alexander Shishkinab437622019-08-06 11:46:00 +030010848 if (event->attr.aux_output &&
10849 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
10850 err = -EOPNOTSUPP;
10851 goto err_pmu;
10852 }
10853
Peter Zijlstra98add2a2020-02-13 23:51:28 -080010854 if (cgroup_fd != -1) {
10855 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
10856 if (err)
10857 goto err_pmu;
10858 }
10859
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010860 err = exclusive_event_init(event);
10861 if (err)
10862 goto err_pmu;
10863
Alexander Shishkin375637b2016-04-27 18:44:46 +030010864 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010865 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
10866 sizeof(struct perf_addr_filter_range),
10867 GFP_KERNEL);
10868 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010869 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010870 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010871 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010872
Alexander Shishkin18736ee2019-02-15 13:56:54 +020010873 /*
10874 * Clone the parent's vma offsets: they are valid until exec()
10875 * even if the mm is not shared with the parent.
10876 */
10877 if (event->parent) {
10878 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10879
10880 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010881 memcpy(event->addr_filter_ranges,
10882 event->parent->addr_filter_ranges,
10883 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020010884 raw_spin_unlock_irq(&ifh->lock);
10885 }
10886
Alexander Shishkin375637b2016-04-27 18:44:46 +030010887 /* force hw sync on the address filters */
10888 event->addr_filters_gen = 1;
10889 }
10890
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010891 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020010892 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030010893 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010894 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010895 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010010896 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010897 }
10898
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010899 err = security_perf_event_alloc(event);
10900 if (err)
10901 goto err_callchain_buffer;
10902
Alexander Shishkin927a5572016-03-02 13:24:14 +020010903 /* symmetric to unaccount_event() in _free_event() */
10904 account_event(event);
10905
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010906 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010907
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010908err_callchain_buffer:
10909 if (!event->parent) {
10910 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
10911 put_callchain_buffers();
10912 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010913err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010914 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010915
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010916err_per_task:
10917 exclusive_event_destroy(event);
10918
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010919err_pmu:
Peter Zijlstra98add2a2020-02-13 23:51:28 -080010920 if (is_cgroup_event(event))
10921 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010922 if (event->destroy)
10923 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080010924 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010925err_ns:
10926 if (event->ns)
10927 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090010928 if (event->hw.target)
10929 put_task_struct(event->hw.target);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010930 kfree(event);
10931
10932 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010933}
10934
10935static int perf_copy_attr(struct perf_event_attr __user *uattr,
10936 struct perf_event_attr *attr)
10937{
10938 u32 size;
10939 int ret;
10940
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010941 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010942 memset(attr, 0, sizeof(*attr));
10943
10944 ret = get_user(size, &uattr->size);
10945 if (ret)
10946 return ret;
10947
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010948 /* ABI compatibility quirk: */
10949 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010950 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010951 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010952 goto err_size;
10953
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010954 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
10955 if (ret) {
10956 if (ret == -E2BIG)
10957 goto err_size;
10958 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010959 }
10960
Meng Xuf12f42a2017-08-23 17:07:50 -040010961 attr->size = size;
10962
Alexander Shishkina4faf002019-10-25 17:08:33 +030010963 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010964 return -EINVAL;
10965
10966 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
10967 return -EINVAL;
10968
10969 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
10970 return -EINVAL;
10971
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010972 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
10973 u64 mask = attr->branch_sample_type;
10974
10975 /* only using defined bits */
10976 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
10977 return -EINVAL;
10978
10979 /* at least one branch bit must be set */
10980 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
10981 return -EINVAL;
10982
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010983 /* propagate priv level, when not set for branch */
10984 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
10985
10986 /* exclude_kernel checked on syscall entry */
10987 if (!attr->exclude_kernel)
10988 mask |= PERF_SAMPLE_BRANCH_KERNEL;
10989
10990 if (!attr->exclude_user)
10991 mask |= PERF_SAMPLE_BRANCH_USER;
10992
10993 if (!attr->exclude_hv)
10994 mask |= PERF_SAMPLE_BRANCH_HV;
10995 /*
10996 * adjust user setting (for HW filter setup)
10997 */
10998 attr->branch_sample_type = mask;
10999 }
Stephane Eraniane7122092013-06-06 11:02:04 +020011000 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011001 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11002 ret = perf_allow_kernel(attr);
11003 if (ret)
11004 return ret;
11005 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010011006 }
Jiri Olsa40189942012-08-07 15:20:37 +020011007
Jiri Olsac5ebced2012-08-07 15:20:40 +020011008 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020011009 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020011010 if (ret)
11011 return ret;
11012 }
11013
11014 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11015 if (!arch_perf_have_user_stack_dump())
11016 return -ENOSYS;
11017
11018 /*
11019 * We have __u32 type for the size, but so far
11020 * we can only use __u16 as maximum due to the
11021 * __u16 sample size limit.
11022 */
11023 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020011024 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011025 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020011026 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020011027 }
Jiri Olsa40189942012-08-07 15:20:37 +020011028
Jiri Olsa5f970522018-03-12 14:45:46 +010011029 if (!attr->sample_max_stack)
11030 attr->sample_max_stack = sysctl_perf_event_max_stack;
11031
Stephane Eranian60e23642014-09-24 13:48:37 +020011032 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11033 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011034out:
11035 return ret;
11036
11037err_size:
11038 put_user(sizeof(*attr), &uattr->size);
11039 ret = -E2BIG;
11040 goto out;
11041}
11042
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011043static int
11044perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011045{
Steven Rostedt (VMware)56de4e82019-12-13 13:21:30 -050011046 struct perf_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011047 int ret = -EINVAL;
11048
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011049 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011050 goto set;
11051
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011052 /* don't allow circular references */
11053 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011054 goto out;
11055
Peter Zijlstra0f139302010-05-20 14:35:15 +020011056 /*
11057 * Don't allow cross-cpu buffers
11058 */
11059 if (output_event->cpu != event->cpu)
11060 goto out;
11061
11062 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020011063 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020011064 */
11065 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11066 goto out;
11067
Peter Zijlstra34f43922015-02-20 14:05:38 +010011068 /*
11069 * Mixing clocks in the same buffer is trouble you don't need.
11070 */
11071 if (output_event->clock != event->clock)
11072 goto out;
11073
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011074 /*
Wang Nan9ecda412016-04-05 14:11:18 +000011075 * Either writing ring buffer from beginning or from end.
11076 * Mixing is not allowed.
11077 */
11078 if (is_write_backward(output_event) != is_write_backward(event))
11079 goto out;
11080
11081 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020011082 * If both events generate aux data, they must be on the same PMU
11083 */
11084 if (has_aux(event) && has_aux(output_event) &&
11085 event->pmu != output_event->pmu)
11086 goto out;
11087
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011088set:
11089 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011090 /* Can't redirect output if we've got an active mmap() */
11091 if (atomic_read(&event->mmap_count))
11092 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011093
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011094 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020011095 /* get the rb we want to redirect to */
11096 rb = ring_buffer_get(output_event);
11097 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011098 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011099 }
11100
Peter Zijlstrab69cf532014-03-14 10:50:33 +010011101 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020011102
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011103 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011104unlock:
11105 mutex_unlock(&event->mmap_mutex);
11106
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011107out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011108 return ret;
11109}
11110
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011111static void mutex_lock_double(struct mutex *a, struct mutex *b)
11112{
11113 if (b < a)
11114 swap(a, b);
11115
11116 mutex_lock(a);
11117 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11118}
11119
Peter Zijlstra34f43922015-02-20 14:05:38 +010011120static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11121{
11122 bool nmi_safe = false;
11123
11124 switch (clk_id) {
11125 case CLOCK_MONOTONIC:
11126 event->clock = &ktime_get_mono_fast_ns;
11127 nmi_safe = true;
11128 break;
11129
11130 case CLOCK_MONOTONIC_RAW:
11131 event->clock = &ktime_get_raw_fast_ns;
11132 nmi_safe = true;
11133 break;
11134
11135 case CLOCK_REALTIME:
11136 event->clock = &ktime_get_real_ns;
11137 break;
11138
11139 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011140 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011141 break;
11142
11143 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011144 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011145 break;
11146
11147 default:
11148 return -EINVAL;
11149 }
11150
11151 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11152 return -EINVAL;
11153
11154 return 0;
11155}
11156
Peter Zijlstra321027c2017-01-11 21:09:50 +010011157/*
11158 * Variation on perf_event_ctx_lock_nested(), except we take two context
11159 * mutexes.
11160 */
11161static struct perf_event_context *
11162__perf_event_ctx_lock_double(struct perf_event *group_leader,
11163 struct perf_event_context *ctx)
11164{
11165 struct perf_event_context *gctx;
11166
11167again:
11168 rcu_read_lock();
11169 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020011170 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011171 rcu_read_unlock();
11172 goto again;
11173 }
11174 rcu_read_unlock();
11175
11176 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11177
11178 if (group_leader->ctx != gctx) {
11179 mutex_unlock(&ctx->mutex);
11180 mutex_unlock(&gctx->mutex);
11181 put_ctx(gctx);
11182 goto again;
11183 }
11184
11185 return gctx;
11186}
11187
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011188/**
11189 * sys_perf_event_open - open a performance event, associate it to a task/cpu
11190 *
11191 * @attr_uptr: event_id type attributes for monitoring/sampling
11192 * @pid: target pid
11193 * @cpu: target cpu
11194 * @group_fd: group leader event fd
11195 */
11196SYSCALL_DEFINE5(perf_event_open,
11197 struct perf_event_attr __user *, attr_uptr,
11198 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
11199{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011200 struct perf_event *group_leader = NULL, *output_event = NULL;
11201 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011202 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011203 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011204 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040011205 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070011206 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011207 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040011208 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011209 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011210 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010011211 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000011212 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011213
11214 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020011215 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011216 return -EINVAL;
11217
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011218 /* Do we allow access to perf_event_open(2) ? */
11219 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
11220 if (err)
11221 return err;
11222
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011223 err = perf_copy_attr(attr_uptr, &attr);
11224 if (err)
11225 return err;
11226
11227 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011228 err = perf_allow_kernel(&attr);
11229 if (err)
11230 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011231 }
11232
Hari Bathinie4222672017-03-08 02:11:36 +053011233 if (attr.namespaces) {
11234 if (!capable(CAP_SYS_ADMIN))
11235 return -EACCES;
11236 }
11237
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011238 if (attr.freq) {
11239 if (attr.sample_freq > sysctl_perf_event_sample_rate)
11240 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020011241 } else {
11242 if (attr.sample_period & (1ULL << 63))
11243 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011244 }
11245
Kan Liangfc7ce9c2017-08-28 20:52:49 -040011246 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040011247 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
11248 err = perf_allow_kernel(&attr);
11249 if (err)
11250 return err;
11251 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040011252
David Howellsb0c8fdc2019-08-19 17:18:00 -070011253 err = security_locked_down(LOCKDOWN_PERF);
11254 if (err && (attr.sample_type & PERF_SAMPLE_REGS_INTR))
11255 /* REGS_INTR can leak data, lockdown must prevent this */
11256 return err;
11257
11258 err = 0;
11259
Stephane Eraniane5d13672011-02-14 11:20:01 +020011260 /*
11261 * In cgroup mode, the pid argument is used to pass the fd
11262 * opened to the cgroup directory in cgroupfs. The cpu argument
11263 * designates the cpu on which to monitor threads from that
11264 * cgroup.
11265 */
11266 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
11267 return -EINVAL;
11268
Yann Droneauda21b0b32014-01-05 21:36:33 +010011269 if (flags & PERF_FLAG_FD_CLOEXEC)
11270 f_flags |= O_CLOEXEC;
11271
11272 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040011273 if (event_fd < 0)
11274 return event_fd;
11275
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011276 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040011277 err = perf_fget_light(group_fd, &group);
11278 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011279 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040011280 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011281 if (flags & PERF_FLAG_FD_OUTPUT)
11282 output_event = group_leader;
11283 if (flags & PERF_FLAG_FD_NO_GROUP)
11284 group_leader = NULL;
11285 }
11286
Stephane Eraniane5d13672011-02-14 11:20:01 +020011287 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011288 task = find_lively_task_by_vpid(pid);
11289 if (IS_ERR(task)) {
11290 err = PTR_ERR(task);
11291 goto err_group_fd;
11292 }
11293 }
11294
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020011295 if (task && group_leader &&
11296 group_leader->attr.inherit != attr.inherit) {
11297 err = -EINVAL;
11298 goto err_task;
11299 }
11300
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011301 if (task) {
11302 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
11303 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +000011304 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011305
11306 /*
11307 * Reuse ptrace permission checks for now.
11308 *
11309 * We must hold cred_guard_mutex across this and any potential
11310 * perf_install_in_context() call for this new event to
11311 * serialize against exec() altering our credentials (and the
11312 * perf_event_exit_task() that could imply).
11313 */
11314 err = -EACCES;
11315 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
11316 goto err_cred;
11317 }
11318
Matt Fleming79dff512015-01-23 18:45:42 +000011319 if (flags & PERF_FLAG_PID_CGROUP)
11320 cgroup_fd = pid;
11321
Avi Kivity4dc0da82011-06-29 18:42:35 +030011322 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011323 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011324 if (IS_ERR(event)) {
11325 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011326 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011327 }
11328
Vince Weaver53b25332014-05-16 17:12:12 -040011329 if (is_sampling_event(event)) {
11330 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053011331 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040011332 goto err_alloc;
11333 }
11334 }
11335
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011336 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011337 * Special case software events and allow them to be part of
11338 * any hardware group.
11339 */
11340 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011341
Peter Zijlstra34f43922015-02-20 14:05:38 +010011342 if (attr.use_clockid) {
11343 err = perf_event_set_clock(event, attr.clockid);
11344 if (err)
11345 goto err_alloc;
11346 }
11347
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011348 if (pmu->task_ctx_nr == perf_sw_context)
11349 event->event_caps |= PERF_EV_CAP_SOFTWARE;
11350
Song Liua1150c22018-05-03 12:47:16 -070011351 if (group_leader) {
11352 if (is_software_event(event) &&
11353 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011354 /*
Song Liua1150c22018-05-03 12:47:16 -070011355 * If the event is a sw event, but the group_leader
11356 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011357 *
Song Liua1150c22018-05-03 12:47:16 -070011358 * Allow the addition of software events to hw
11359 * groups, this is safe because software events
11360 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011361 */
Song Liua1150c22018-05-03 12:47:16 -070011362 pmu = group_leader->ctx->pmu;
11363 } else if (!is_software_event(event) &&
11364 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011365 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011366 /*
11367 * In case the group is a pure software group, and we
11368 * try to add a hardware event, move the whole group to
11369 * the hardware context.
11370 */
11371 move_group = 1;
11372 }
11373 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011374
11375 /*
11376 * Get the target context (task or percpu):
11377 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011378 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011379 if (IS_ERR(ctx)) {
11380 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011381 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011382 }
11383
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011384 /*
11385 * Look up the group leader (we will attach this event to it):
11386 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011387 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011388 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011389
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011390 /*
11391 * Do not allow a recursive hierarchy (this new sibling
11392 * becoming part of another group-sibling):
11393 */
11394 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011395 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011396
11397 /* All events in a group should have the same clock */
11398 if (group_leader->clock != event->clock)
11399 goto err_context;
11400
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011401 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010011402 * Make sure we're both events for the same CPU;
11403 * grouping events for different CPUs is broken; since
11404 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011405 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010011406 if (group_leader->cpu != event->cpu)
11407 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010011408
Mark Rutland64aee2a2017-06-22 15:41:38 +010011409 /*
11410 * Make sure we're both on the same task, or both
11411 * per-CPU events.
11412 */
11413 if (group_leader->ctx->task != ctx->task)
11414 goto err_context;
11415
11416 /*
11417 * Do not allow to attach to a group in a different task
11418 * or CPU context. If we're moving SW events, we'll fix
11419 * this up later, so allow that.
11420 */
11421 if (!move_group && group_leader->ctx != ctx)
11422 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011423
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011424 /*
11425 * Only a group leader can be exclusive or pinned
11426 */
11427 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011428 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011429 }
11430
11431 if (output_event) {
11432 err = perf_event_set_output(event, output_event);
11433 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011434 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011435 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011436
Yann Droneauda21b0b32014-01-05 21:36:33 +010011437 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
11438 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040011439 if (IS_ERR(event_file)) {
11440 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020011441 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011442 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040011443 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011444
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011445 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011446 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
11447
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011448 if (gctx->task == TASK_TOMBSTONE) {
11449 err = -ESRCH;
11450 goto err_locked;
11451 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010011452
11453 /*
11454 * Check if we raced against another sys_perf_event_open() call
11455 * moving the software group underneath us.
11456 */
11457 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
11458 /*
11459 * If someone moved the group out from under us, check
11460 * if this new event wound up on the same ctx, if so
11461 * its the regular !move_group case, otherwise fail.
11462 */
11463 if (gctx != ctx) {
11464 err = -EINVAL;
11465 goto err_locked;
11466 } else {
11467 perf_event_ctx_unlock(group_leader, gctx);
11468 move_group = 0;
11469 }
11470 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030011471
11472 /*
11473 * Failure to create exclusive events returns -EBUSY.
11474 */
11475 err = -EBUSY;
11476 if (!exclusive_event_installable(group_leader, ctx))
11477 goto err_locked;
11478
11479 for_each_sibling_event(sibling, group_leader) {
11480 if (!exclusive_event_installable(sibling, ctx))
11481 goto err_locked;
11482 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011483 } else {
11484 mutex_lock(&ctx->mutex);
11485 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011486
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011487 if (ctx->task == TASK_TOMBSTONE) {
11488 err = -ESRCH;
11489 goto err_locked;
11490 }
11491
Peter Zijlstraa7239682015-09-09 19:06:33 +020011492 if (!perf_event_validate_size(event)) {
11493 err = -E2BIG;
11494 goto err_locked;
11495 }
11496
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011497 if (!task) {
11498 /*
11499 * Check if the @cpu we're creating an event for is online.
11500 *
11501 * We use the perf_cpu_context::ctx::mutex to serialize against
11502 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11503 */
11504 struct perf_cpu_context *cpuctx =
11505 container_of(ctx, struct perf_cpu_context, ctx);
11506
11507 if (!cpuctx->online) {
11508 err = -ENODEV;
11509 goto err_locked;
11510 }
11511 }
11512
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000011513 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
11514 err = -EINVAL;
Alexander Shishkinab437622019-08-06 11:46:00 +030011515 goto err_locked;
Mark Rutlandda9ec3d2020-01-06 12:03:39 +000011516 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011517
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011518 /*
11519 * Must be under the same ctx::mutex as perf_install_in_context(),
11520 * because we need to serialize with concurrent event creation.
11521 */
11522 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011523 err = -EBUSY;
11524 goto err_locked;
11525 }
11526
11527 WARN_ON_ONCE(ctx->parent_ctx);
11528
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011529 /*
11530 * This is the point on no return; we cannot fail hereafter. This is
11531 * where we start modifying current state.
11532 */
11533
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011534 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011535 /*
11536 * See perf_event_ctx_lock() for comments on the details
11537 * of swizzling perf_event::ctx.
11538 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011539 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010011540 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010011541
Peter Zijlstraedb39592018-03-15 17:36:56 +010011542 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011543 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011544 put_ctx(gctx);
11545 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011546
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011547 /*
11548 * Wait for everybody to stop referencing the events through
11549 * the old lists, before installing it on new lists.
11550 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011551 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011552
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011553 /*
11554 * Install the group siblings before the group leader.
11555 *
11556 * Because a group leader will try and install the entire group
11557 * (through the sibling list, which is still in-tact), we can
11558 * end up with siblings installed in the wrong context.
11559 *
11560 * By installing siblings first we NO-OP because they're not
11561 * reachable through the group lists.
11562 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010011563 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011564 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010011565 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011566 get_ctx(ctx);
11567 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011568
11569 /*
11570 * Removing from the context ends up with disabled
11571 * event. What we want here is event in the initial
11572 * startup state, ready to be add into new context.
11573 */
11574 perf_event__state_init(group_leader);
11575 perf_install_in_context(ctx, group_leader, group_leader->cpu);
11576 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011577 }
11578
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020011579 /*
11580 * Precalculate sample_data sizes; do while holding ctx::mutex such
11581 * that we're serialized against further additions and before
11582 * perf_install_in_context() which is the point the event is active and
11583 * can use these values.
11584 */
11585 perf_event__header_size(event);
11586 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011587
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010011588 event->owner = current;
11589
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080011590 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011591 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011592
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011593 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011594 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011595 mutex_unlock(&ctx->mutex);
11596
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011597 if (task) {
11598 mutex_unlock(&task->signal->cred_guard_mutex);
11599 put_task_struct(task);
11600 }
11601
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011602 mutex_lock(&current->perf_event_mutex);
11603 list_add_tail(&event->owner_entry, &current->perf_event_list);
11604 mutex_unlock(&current->perf_event_mutex);
11605
Peter Zijlstra8a495422010-05-27 15:47:49 +020011606 /*
11607 * Drop the reference on the group_event after placing the
11608 * new event on the sibling_list. This ensures destruction
11609 * of the group leader will find the pointer to itself in
11610 * perf_group_detach().
11611 */
Al Viro2903ff02012-08-28 12:52:22 -040011612 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011613 fd_install(event_fd, event_file);
11614 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011615
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011616err_locked:
11617 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011618 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011619 mutex_unlock(&ctx->mutex);
11620/* err_file: */
11621 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011622err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011623 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040011624 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011625err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010011626 /*
11627 * If event_file is set, the fput() above will have called ->release()
11628 * and that will take care of freeing the event.
11629 */
11630 if (!event_file)
11631 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011632err_cred:
11633 if (task)
11634 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020011635err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020011636 if (task)
11637 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011638err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040011639 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011640err_fd:
11641 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011642 return err;
11643}
11644
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011645/**
11646 * perf_event_create_kernel_counter
11647 *
11648 * @attr: attributes of the counter to create
11649 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070011650 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011651 */
11652struct perf_event *
11653perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070011654 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011655 perf_overflow_handler_t overflow_handler,
11656 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011657{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011658 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011659 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011660 int err;
11661
Alexander Shishkindce5aff2019-10-30 15:47:31 +020011662 /*
11663 * Grouping is not supported for kernel events, neither is 'AUX',
11664 * make sure the caller's intentions are adjusted.
11665 */
11666 if (attr->aux_output)
11667 return ERR_PTR(-EINVAL);
11668
Avi Kivity4dc0da82011-06-29 18:42:35 +030011669 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011670 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011671 if (IS_ERR(event)) {
11672 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011673 goto err;
11674 }
11675
Jiri Olsaf8697762014-08-01 14:33:01 +020011676 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011677 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020011678
Alexander Shishkinf25d8ba2019-10-30 15:47:30 +020011679 /*
11680 * Get the target context (task or percpu):
11681 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011682 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011683 if (IS_ERR(ctx)) {
11684 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011685 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011686 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011687
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011688 WARN_ON_ONCE(ctx->parent_ctx);
11689 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011690 if (ctx->task == TASK_TOMBSTONE) {
11691 err = -ESRCH;
11692 goto err_unlock;
11693 }
11694
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011695 if (!task) {
11696 /*
11697 * Check if the @cpu we're creating an event for is online.
11698 *
11699 * We use the perf_cpu_context::ctx::mutex to serialize against
11700 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11701 */
11702 struct perf_cpu_context *cpuctx =
11703 container_of(ctx, struct perf_cpu_context, ctx);
11704 if (!cpuctx->online) {
11705 err = -ENODEV;
11706 goto err_unlock;
11707 }
11708 }
11709
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011710 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011711 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011712 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011713 }
11714
Leonard Crestez4ce54af2019-07-24 15:53:24 +030011715 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011716 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011717 mutex_unlock(&ctx->mutex);
11718
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011719 return event;
11720
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011721err_unlock:
11722 mutex_unlock(&ctx->mutex);
11723 perf_unpin_context(ctx);
11724 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011725err_free:
11726 free_event(event);
11727err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011728 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011729}
11730EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
11731
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011732void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
11733{
11734 struct perf_event_context *src_ctx;
11735 struct perf_event_context *dst_ctx;
11736 struct perf_event *event, *tmp;
11737 LIST_HEAD(events);
11738
11739 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
11740 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
11741
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011742 /*
11743 * See perf_event_ctx_lock() for comments on the details
11744 * of swizzling perf_event::ctx.
11745 */
11746 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011747 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
11748 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011749 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011750 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011751 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020011752 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011753 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011754
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011755 /*
11756 * Wait for the events to quiesce before re-instating them.
11757 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011758 synchronize_rcu();
11759
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011760 /*
11761 * Re-instate events in 2 passes.
11762 *
11763 * Skip over group leaders and only install siblings on this first
11764 * pass, siblings will not get enabled without a leader, however a
11765 * leader will enable its siblings, even if those are still on the old
11766 * context.
11767 */
11768 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11769 if (event->group_leader == event)
11770 continue;
11771
11772 list_del(&event->migrate_entry);
11773 if (event->state >= PERF_EVENT_STATE_OFF)
11774 event->state = PERF_EVENT_STATE_INACTIVE;
11775 account_event_cpu(event, dst_cpu);
11776 perf_install_in_context(dst_ctx, event, dst_cpu);
11777 get_ctx(dst_ctx);
11778 }
11779
11780 /*
11781 * Once all the siblings are setup properly, install the group leaders
11782 * to make it go.
11783 */
Peter Zijlstra98861672013-10-03 16:02:23 +020011784 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11785 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011786 if (event->state >= PERF_EVENT_STATE_OFF)
11787 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011788 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011789 perf_install_in_context(dst_ctx, event, dst_cpu);
11790 get_ctx(dst_ctx);
11791 }
11792 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011793 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011794}
11795EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
11796
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011797static void sync_child_event(struct perf_event *child_event,
11798 struct task_struct *child)
11799{
11800 struct perf_event *parent_event = child_event->parent;
11801 u64 child_val;
11802
11803 if (child_event->attr.inherit_stat)
11804 perf_event_read_event(child_event, child);
11805
Peter Zijlstrab5e58792010-05-21 14:43:12 +020011806 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011807
11808 /*
11809 * Add back the child's count to the parent's count:
11810 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020011811 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011812 atomic64_add(child_event->total_time_enabled,
11813 &parent_event->child_total_time_enabled);
11814 atomic64_add(child_event->total_time_running,
11815 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011816}
11817
11818static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011819perf_event_exit_event(struct perf_event *child_event,
11820 struct perf_event_context *child_ctx,
11821 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011822{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011823 struct perf_event *parent_event = child_event->parent;
11824
Peter Zijlstra1903d502014-07-15 17:27:27 +020011825 /*
11826 * Do not destroy the 'original' grouping; because of the context
11827 * switch optimization the original events could've ended up in a
11828 * random child task.
11829 *
11830 * If we were to destroy the original group, all group related
11831 * operations would cease to function properly after this random
11832 * child dies.
11833 *
11834 * Do destroy all inherited groups, we don't care about those
11835 * and being thorough is better.
11836 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011837 raw_spin_lock_irq(&child_ctx->lock);
11838 WARN_ON_ONCE(child_ctx->is_active);
11839
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011840 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010011841 perf_group_detach(child_event);
11842 list_del_event(child_event, child_ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +020011843 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011844 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011845
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011846 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011847 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011848 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011849 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040011850 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011851 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011852 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011853 /*
11854 * Child events can be cleaned up.
11855 */
11856
11857 sync_child_event(child_event, child);
11858
11859 /*
11860 * Remove this event from the parent's list
11861 */
11862 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
11863 mutex_lock(&parent_event->child_mutex);
11864 list_del_init(&child_event->child_list);
11865 mutex_unlock(&parent_event->child_mutex);
11866
11867 /*
11868 * Kick perf_poll() for is_event_hup().
11869 */
11870 perf_event_wakeup(parent_event);
11871 free_event(child_event);
11872 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011873}
11874
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011875static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011876{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011877 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011878 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011879
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011880 WARN_ON_ONCE(child != current);
11881
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011882 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011883 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011884 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011885
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011886 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011887 * In order to reduce the amount of tricky in ctx tear-down, we hold
11888 * ctx::mutex over the entire thing. This serializes against almost
11889 * everything that wants to access the ctx.
11890 *
11891 * The exception is sys_perf_event_open() /
11892 * perf_event_create_kernel_count() which does find_get_context()
11893 * without ctx::mutex (it cannot because of the move_group double mutex
11894 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011895 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011896 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011897
11898 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011899 * In a single ctx::lock section, de-schedule the events and detach the
11900 * context from the task such that we cannot ever get it scheduled back
11901 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011902 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011903 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020011904 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011905
11906 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011907 * Now that the context is inactive, destroy the task <-> ctx relation
11908 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011909 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011910 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
11911 put_ctx(child_ctx); /* cannot be last */
11912 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
11913 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011914
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011915 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011916 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011917
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011918 if (clone_ctx)
11919 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011920
11921 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011922 * Report the task dead after unscheduling the events so that we
11923 * won't get any samples after PERF_RECORD_EXIT. We can however still
11924 * get a few PERF_RECORD_READ events.
11925 */
11926 perf_event_task(child, child_ctx, 0);
11927
Peter Zijlstraebf905f2014-05-29 19:00:24 +020011928 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011929 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011930
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011931 mutex_unlock(&child_ctx->mutex);
11932
11933 put_ctx(child_ctx);
11934}
11935
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011936/*
11937 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011938 *
11939 * Can be called with cred_guard_mutex held when called from
11940 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011941 */
11942void perf_event_exit_task(struct task_struct *child)
11943{
Peter Zijlstra88821352010-11-09 19:01:43 +010011944 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011945 int ctxn;
11946
Peter Zijlstra88821352010-11-09 19:01:43 +010011947 mutex_lock(&child->perf_event_mutex);
11948 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
11949 owner_entry) {
11950 list_del_init(&event->owner_entry);
11951
11952 /*
11953 * Ensure the list deletion is visible before we clear
11954 * the owner, closes a race against perf_release() where
11955 * we need to serialize on the owner->perf_event_mutex.
11956 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010011957 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010011958 }
11959 mutex_unlock(&child->perf_event_mutex);
11960
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011961 for_each_task_context_nr(ctxn)
11962 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010011963
11964 /*
11965 * The perf_event_exit_task_context calls perf_event_task
11966 * with child's task_ctx, which generates EXIT events for
11967 * child contexts and sets child->perf_event_ctxp[] to NULL.
11968 * At this point we need to send EXIT events to cpu contexts.
11969 */
11970 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011971}
11972
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011973static void perf_free_event(struct perf_event *event,
11974 struct perf_event_context *ctx)
11975{
11976 struct perf_event *parent = event->parent;
11977
11978 if (WARN_ON_ONCE(!parent))
11979 return;
11980
11981 mutex_lock(&parent->child_mutex);
11982 list_del_init(&event->child_list);
11983 mutex_unlock(&parent->child_mutex);
11984
Al Viroa6fa9412012-08-20 14:59:25 +010011985 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011986
Peter Zijlstra652884f2015-01-23 11:20:10 +010011987 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020011988 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011989 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010011990 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011991 free_event(event);
11992}
11993
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011994/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020011995 * Free a context as created by inheritance by perf_event_init_task() below,
11996 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010011997 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020011998 * Even though the task has never lived, the context and events have been
11999 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012000 */
12001void perf_event_free_task(struct task_struct *task)
12002{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012003 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012004 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012005 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012006
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012007 for_each_task_context_nr(ctxn) {
12008 ctx = task->perf_event_ctxp[ctxn];
12009 if (!ctx)
12010 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012011
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012012 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010012013 raw_spin_lock_irq(&ctx->lock);
12014 /*
12015 * Destroy the task <-> ctx relation and mark the context dead.
12016 *
12017 * This is important because even though the task hasn't been
12018 * exposed yet the context has been (through child_list).
12019 */
12020 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12021 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12022 put_task_struct(task); /* cannot be last */
12023 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012024
Peter Zijlstra15121c72017-03-16 13:47:50 +010012025 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012026 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012027
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012028 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020012029
12030 /*
12031 * perf_event_release_kernel() could've stolen some of our
12032 * child events and still have them on its free_list. In that
12033 * case we must wait for these events to have been freed (in
12034 * particular all their references to this task must've been
12035 * dropped).
12036 *
12037 * Without this copy_process() will unconditionally free this
12038 * task (irrespective of its reference count) and
12039 * _free_event()'s put_task_struct(event->hw.target) will be a
12040 * use-after-free.
12041 *
12042 * Wait for all events to drop their context reference.
12043 */
12044 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12045 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012046 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012047}
12048
Peter Zijlstra4e231c72010-09-09 21:01:59 +020012049void perf_event_delayed_put(struct task_struct *task)
12050{
12051 int ctxn;
12052
12053 for_each_task_context_nr(ctxn)
12054 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12055}
12056
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012057struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000012058{
Al Viro02e5ad92019-06-26 20:43:53 -040012059 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012060 if (!file)
12061 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000012062
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012063 if (file->f_op != &perf_fops) {
12064 fput(file);
12065 return ERR_PTR(-EBADF);
12066 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000012067
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080012068 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000012069}
12070
Yonghong Songf8d959a2018-05-24 11:21:08 -070012071const struct perf_event *perf_get_event(struct file *file)
12072{
12073 if (file->f_op != &perf_fops)
12074 return ERR_PTR(-EINVAL);
12075
12076 return file->private_data;
12077}
12078
Kaixu Xiaffe86902015-08-06 07:02:32 +000012079const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12080{
12081 if (!event)
12082 return ERR_PTR(-EINVAL);
12083
12084 return &event->attr;
12085}
12086
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012087/*
Tobias Tefke788faab2018-07-09 12:57:15 +020012088 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012089 *
12090 * Returns:
12091 * - valid pointer on success
12092 * - NULL for orphaned events
12093 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012094 */
12095static struct perf_event *
12096inherit_event(struct perf_event *parent_event,
12097 struct task_struct *parent,
12098 struct perf_event_context *parent_ctx,
12099 struct task_struct *child,
12100 struct perf_event *group_leader,
12101 struct perf_event_context *child_ctx)
12102{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020012103 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012104 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020012105 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012106
12107 /*
12108 * Instead of creating recursive hierarchies of events,
12109 * we link inherited events back to the original parent,
12110 * which has a filp for sure, which we use as the reference
12111 * count:
12112 */
12113 if (parent_event->parent)
12114 parent_event = parent_event->parent;
12115
12116 child_event = perf_event_alloc(&parent_event->attr,
12117 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020012118 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012119 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000012120 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012121 if (IS_ERR(child_event))
12122 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010012123
Jiri Olsa313ccb92018-01-07 17:03:47 +010012124
12125 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12126 !child_ctx->task_ctx_data) {
12127 struct pmu *pmu = child_event->pmu;
12128
12129 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
12130 GFP_KERNEL);
12131 if (!child_ctx->task_ctx_data) {
12132 free_event(child_event);
Alexander Shishkin697d8772019-11-05 09:57:02 +020012133 return ERR_PTR(-ENOMEM);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012134 }
12135 }
12136
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012137 /*
12138 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12139 * must be under the same lock in order to serialize against
12140 * perf_event_release_kernel(), such that either we must observe
12141 * is_orphaned_event() or they will observe us on the child_list.
12142 */
12143 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020012144 if (is_orphaned_event(parent_event) ||
12145 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020012146 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010012147 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010012148 free_event(child_event);
12149 return NULL;
12150 }
12151
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012152 get_ctx(child_ctx);
12153
12154 /*
12155 * Make the child state follow the state of the parent event,
12156 * not its attr.disabled bit. We hold the parent's mutex,
12157 * so we won't race with perf_event_{en, dis}able_family.
12158 */
Jiri Olsa1929def2014-09-12 13:18:27 +020012159 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012160 child_event->state = PERF_EVENT_STATE_INACTIVE;
12161 else
12162 child_event->state = PERF_EVENT_STATE_OFF;
12163
12164 if (parent_event->attr.freq) {
12165 u64 sample_period = parent_event->hw.sample_period;
12166 struct hw_perf_event *hwc = &child_event->hw;
12167
12168 hwc->sample_period = sample_period;
12169 hwc->last_period = sample_period;
12170
12171 local64_set(&hwc->period_left, sample_period);
12172 }
12173
12174 child_event->ctx = child_ctx;
12175 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030012176 child_event->overflow_handler_context
12177 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012178
12179 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020012180 * Precalculate sample_data sizes
12181 */
12182 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020012183 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020012184
12185 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012186 * Link it up in the child's context:
12187 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020012188 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012189 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020012190 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012191
12192 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012193 * Link this into the parent event's child list
12194 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012195 list_add_tail(&child_event->child_list, &parent_event->child_list);
12196 mutex_unlock(&parent_event->child_mutex);
12197
12198 return child_event;
12199}
12200
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012201/*
12202 * Inherits an event group.
12203 *
12204 * This will quietly suppress orphaned events; !inherit_event() is not an error.
12205 * This matches with perf_event_release_kernel() removing all child events.
12206 *
12207 * Returns:
12208 * - 0 on success
12209 * - <0 on error
12210 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012211static int inherit_group(struct perf_event *parent_event,
12212 struct task_struct *parent,
12213 struct perf_event_context *parent_ctx,
12214 struct task_struct *child,
12215 struct perf_event_context *child_ctx)
12216{
12217 struct perf_event *leader;
12218 struct perf_event *sub;
12219 struct perf_event *child_ctr;
12220
12221 leader = inherit_event(parent_event, parent, parent_ctx,
12222 child, NULL, child_ctx);
12223 if (IS_ERR(leader))
12224 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012225 /*
12226 * @leader can be NULL here because of is_orphaned_event(). In this
12227 * case inherit_event() will create individual events, similar to what
12228 * perf_group_detach() would do anyway.
12229 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010012230 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012231 child_ctr = inherit_event(sub, parent, parent_ctx,
12232 child, leader, child_ctx);
12233 if (IS_ERR(child_ctr))
12234 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012235
Alexander Shishkin00496fe2019-11-01 17:12:48 +020012236 if (sub->aux_event == parent_event && child_ctr &&
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030012237 !perf_get_aux_event(child_ctr, leader))
12238 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020012239 }
12240 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012241}
12242
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010012243/*
12244 * Creates the child task context and tries to inherit the event-group.
12245 *
12246 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
12247 * inherited_all set when we 'fail' to inherit an orphaned event; this is
12248 * consistent with perf_event_release_kernel() removing all child events.
12249 *
12250 * Returns:
12251 * - 0 on success
12252 * - <0 on error
12253 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012254static int
12255inherit_task_group(struct perf_event *event, struct task_struct *parent,
12256 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012257 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012258 int *inherited_all)
12259{
12260 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012261 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012262
12263 if (!event->attr.inherit) {
12264 *inherited_all = 0;
12265 return 0;
12266 }
12267
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012268 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012269 if (!child_ctx) {
12270 /*
12271 * This is executed from the parent task context, so
12272 * inherit events that have been marked for cloning.
12273 * First allocate and initialize a context for the
12274 * child.
12275 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020012276 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012277 if (!child_ctx)
12278 return -ENOMEM;
12279
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012280 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012281 }
12282
12283 ret = inherit_group(event, parent, parent_ctx,
12284 child, child_ctx);
12285
12286 if (ret)
12287 *inherited_all = 0;
12288
12289 return ret;
12290}
12291
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012292/*
12293 * Initialize the perf_event context in task_struct
12294 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020012295static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012296{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012297 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012298 struct perf_event_context *cloned_ctx;
12299 struct perf_event *event;
12300 struct task_struct *parent = current;
12301 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012302 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012303 int ret = 0;
12304
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012305 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012306 return 0;
12307
12308 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012309 * If the parent's context is a clone, pin it so it won't get
12310 * swapped under us.
12311 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012312 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020012313 if (!parent_ctx)
12314 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012315
12316 /*
12317 * No need to check if parent_ctx != NULL here; since we saw
12318 * it non-NULL earlier, the only reason for it to become NULL
12319 * is if we exit, and since we're currently in the middle of
12320 * a fork we can't be exiting at the same time.
12321 */
12322
12323 /*
12324 * Lock the parent list. No need to lock the child - not PID
12325 * hashed yet and not running, so nobody can access it.
12326 */
12327 mutex_lock(&parent_ctx->mutex);
12328
12329 /*
12330 * We dont have to disable NMIs - we are only looking at
12331 * the list, not manipulating it:
12332 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012333 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012334 ret = inherit_task_group(event, parent, parent_ctx,
12335 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012336 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012337 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012338 }
12339
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012340 /*
12341 * We can't hold ctx->lock when iterating the ->flexible_group list due
12342 * to allocations, but we need to prevent rotation because
12343 * rotate_ctx() will change the list from interrupt context.
12344 */
12345 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12346 parent_ctx->rotate_disable = 1;
12347 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
12348
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012349 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012350 ret = inherit_task_group(event, parent, parent_ctx,
12351 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012352 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012353 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012354 }
12355
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012356 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12357 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012358
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012359 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012360
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010012361 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012362 /*
12363 * Mark the child context as a clone of the parent
12364 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012365 *
12366 * Note that if the parent is a clone, the holding of
12367 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012368 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012369 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012370 if (cloned_ctx) {
12371 child_ctx->parent_ctx = cloned_ctx;
12372 child_ctx->parent_gen = parent_ctx->parent_gen;
12373 } else {
12374 child_ctx->parent_ctx = parent_ctx;
12375 child_ctx->parent_gen = parent_ctx->generation;
12376 }
12377 get_ctx(child_ctx->parent_ctx);
12378 }
12379
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012380 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012381out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012382 mutex_unlock(&parent_ctx->mutex);
12383
12384 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012385 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012386
12387 return ret;
12388}
12389
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012390/*
12391 * Initialize the perf_event context in task_struct
12392 */
12393int perf_event_init_task(struct task_struct *child)
12394{
12395 int ctxn, ret;
12396
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010012397 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
12398 mutex_init(&child->perf_event_mutex);
12399 INIT_LIST_HEAD(&child->perf_event_list);
12400
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012401 for_each_task_context_nr(ctxn) {
12402 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012403 if (ret) {
12404 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012405 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012406 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012407 }
12408
12409 return 0;
12410}
12411
Paul Mackerras220b1402010-03-10 20:45:52 +110012412static void __init perf_event_init_all_cpus(void)
12413{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012414 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110012415 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110012416
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012417 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
12418
Paul Mackerras220b1402010-03-10 20:45:52 +110012419 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012420 swhash = &per_cpu(swevent_htable, cpu);
12421 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000012422 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070012423
12424 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
12425 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012426
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080012427#ifdef CONFIG_CGROUP_PERF
12428 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
12429#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012430 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110012431 }
12432}
12433
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040012434static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012435{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012436 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012437
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012438 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000012439 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012440 struct swevent_hlist *hlist;
12441
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012442 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
12443 WARN_ON(!hlist);
12444 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012445 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012446 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012447}
12448
Dave Young2965faa2015-09-09 15:38:55 -070012449#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012450static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012451{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012452 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012453 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
12454 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012455
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012456 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020012457 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012458 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012459 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012460 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012461}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012462
12463static void perf_event_exit_cpu_context(int cpu)
12464{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012465 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012466 struct perf_event_context *ctx;
12467 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012468
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012469 mutex_lock(&pmus_lock);
12470 list_for_each_entry(pmu, &pmus, entry) {
12471 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12472 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012473
12474 mutex_lock(&ctx->mutex);
12475 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012476 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012477 mutex_unlock(&ctx->mutex);
12478 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012479 cpumask_clear_cpu(cpu, perf_online_mask);
12480 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012481}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012482#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012483
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012484static void perf_event_exit_cpu_context(int cpu) { }
12485
12486#endif
12487
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012488int perf_event_init_cpu(unsigned int cpu)
12489{
12490 struct perf_cpu_context *cpuctx;
12491 struct perf_event_context *ctx;
12492 struct pmu *pmu;
12493
12494 perf_swevent_init_cpu(cpu);
12495
12496 mutex_lock(&pmus_lock);
12497 cpumask_set_cpu(cpu, perf_online_mask);
12498 list_for_each_entry(pmu, &pmus, entry) {
12499 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12500 ctx = &cpuctx->ctx;
12501
12502 mutex_lock(&ctx->mutex);
12503 cpuctx->online = 1;
12504 mutex_unlock(&ctx->mutex);
12505 }
12506 mutex_unlock(&pmus_lock);
12507
12508 return 0;
12509}
12510
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012511int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012512{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010012513 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012514 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012515}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012516
Peter Zijlstrac2774432010-12-08 15:29:02 +010012517static int
12518perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
12519{
12520 int cpu;
12521
12522 for_each_online_cpu(cpu)
12523 perf_event_exit_cpu(cpu);
12524
12525 return NOTIFY_OK;
12526}
12527
12528/*
12529 * Run the perf reboot notifier at the very last possible moment so that
12530 * the generic watchdog code runs as long as possible.
12531 */
12532static struct notifier_block perf_reboot_notifier = {
12533 .notifier_call = perf_reboot,
12534 .priority = INT_MIN,
12535};
12536
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012537void __init perf_event_init(void)
12538{
Jason Wessel3c502e72010-11-04 17:33:01 -050012539 int ret;
12540
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012541 idr_init(&pmu_idr);
12542
Paul Mackerras220b1402010-03-10 20:45:52 +110012543 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012544 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012545 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
12546 perf_pmu_register(&perf_cpu_clock, NULL, -1);
12547 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012548 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012549 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010012550 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050012551
12552 ret = init_hw_breakpoint();
12553 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020012554
Jiri Olsab01c3a02012-03-23 15:41:20 +010012555 /*
12556 * Build time assertion that we keep the data_head at the intended
12557 * location. IOW, validation we got the __reserved[] size right.
12558 */
12559 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
12560 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012561}
Peter Zijlstraabe43402010-11-17 23:17:37 +010012562
Cody P Schaferfd979c02015-01-30 13:45:57 -080012563ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
12564 char *page)
12565{
12566 struct perf_pmu_events_attr *pmu_attr =
12567 container_of(attr, struct perf_pmu_events_attr, attr);
12568
12569 if (pmu_attr->event_str)
12570 return sprintf(page, "%s\n", pmu_attr->event_str);
12571
12572 return 0;
12573}
Thomas Gleixner675965b2016-02-22 22:19:27 +000012574EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080012575
Peter Zijlstraabe43402010-11-17 23:17:37 +010012576static int __init perf_event_sysfs_init(void)
12577{
12578 struct pmu *pmu;
12579 int ret;
12580
12581 mutex_lock(&pmus_lock);
12582
12583 ret = bus_register(&pmu_bus);
12584 if (ret)
12585 goto unlock;
12586
12587 list_for_each_entry(pmu, &pmus, entry) {
12588 if (!pmu->name || pmu->type < 0)
12589 continue;
12590
12591 ret = pmu_dev_alloc(pmu);
12592 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
12593 }
12594 pmu_bus_running = 1;
12595 ret = 0;
12596
12597unlock:
12598 mutex_unlock(&pmus_lock);
12599
12600 return ret;
12601}
12602device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012603
12604#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040012605static struct cgroup_subsys_state *
12606perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012607{
12608 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020012609
Li Zefan1b15d052011-03-03 14:26:06 +080012610 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012611 if (!jc)
12612 return ERR_PTR(-ENOMEM);
12613
Stephane Eraniane5d13672011-02-14 11:20:01 +020012614 jc->info = alloc_percpu(struct perf_cgroup_info);
12615 if (!jc->info) {
12616 kfree(jc);
12617 return ERR_PTR(-ENOMEM);
12618 }
12619
Stephane Eraniane5d13672011-02-14 11:20:01 +020012620 return &jc->css;
12621}
12622
Tejun Heoeb954192013-08-08 20:11:23 -040012623static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012624{
Tejun Heoeb954192013-08-08 20:11:23 -040012625 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
12626
Stephane Eraniane5d13672011-02-14 11:20:01 +020012627 free_percpu(jc->info);
12628 kfree(jc);
12629}
12630
12631static int __perf_cgroup_move(void *info)
12632{
12633 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012634 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012635 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012636 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012637 return 0;
12638}
12639
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012640static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012641{
Tejun Heobb9d97b2011-12-12 18:12:21 -080012642 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012643 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080012644
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012645 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080012646 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012647}
12648
Tejun Heo073219e2014-02-08 10:36:58 -050012649struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080012650 .css_alloc = perf_cgroup_css_alloc,
12651 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080012652 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050012653 /*
12654 * Implicitly enable on dfl hierarchy so that perf events can
12655 * always be filtered by cgroup2 path as long as perf_event
12656 * controller is not mounted on a legacy hierarchy.
12657 */
12658 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040012659 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020012660};
12661#endif /* CONFIG_CGROUP_PERF */