blob: f9a5d4356562d29b1ce9b47ea6984de39dba6715 [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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020052
Frederic Weisbecker76369132011-05-19 19:55:04 +020053#include "internal.h"
54
Ingo Molnarcdd6c482009-09-21 12:02:48 +020055#include <asm/irq_regs.h>
56
Peter Zijlstra272325c2015-04-15 11:41:58 +020057typedef int (*remote_function_f)(void *);
58
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010059struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020060 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020061 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020062 void *info;
63 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010064};
65
66static void remote_function(void *data)
67{
68 struct remote_function_call *tfc = data;
69 struct task_struct *p = tfc->p;
70
71 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010072 /* -EAGAIN */
73 if (task_cpu(p) != smp_processor_id())
74 return;
75
76 /*
77 * Now that we're on right CPU with IRQs disabled, we can test
78 * if we hit the right task without races.
79 */
80
81 tfc->ret = -ESRCH; /* No such (running) process */
82 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010083 return;
84 }
85
86 tfc->ret = tfc->func(tfc->info);
87}
88
89/**
90 * task_function_call - call a function on the cpu on which a task runs
91 * @p: the task to evaluate
92 * @func: the function to be called
93 * @info: the function call argument
94 *
95 * Calls the function @func when the task is currently running. This might
96 * be on the current CPU, which just calls the function directly
97 *
98 * returns: @func return value, or
99 * -ESRCH - when the process isn't running
100 * -EAGAIN - when the process moved away
101 */
102static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200103task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100104{
105 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200106 .p = p,
107 .func = func,
108 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100109 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100110 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100111 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100112
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100113 do {
114 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
115 if (!ret)
116 ret = data.ret;
117 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100118
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100119 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100120}
121
122/**
123 * cpu_function_call - call a function on the cpu
124 * @func: the function to be called
125 * @info: the function call argument
126 *
127 * Calls the function @func on the remote cpu.
128 *
129 * returns: @func return value or -ENXIO when the cpu is offline
130 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200131static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100132{
133 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200134 .p = NULL,
135 .func = func,
136 .info = info,
137 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100138 };
139
140 smp_call_function_single(cpu, remote_function, &data, 1);
141
142 return data.ret;
143}
144
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100145static inline struct perf_cpu_context *
146__get_cpu_context(struct perf_event_context *ctx)
147{
148 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
149}
150
151static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
152 struct perf_event_context *ctx)
153{
154 raw_spin_lock(&cpuctx->ctx.lock);
155 if (ctx)
156 raw_spin_lock(&ctx->lock);
157}
158
159static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
160 struct perf_event_context *ctx)
161{
162 if (ctx)
163 raw_spin_unlock(&ctx->lock);
164 raw_spin_unlock(&cpuctx->ctx.lock);
165}
166
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100167#define TASK_TOMBSTONE ((void *)-1L)
168
169static bool is_kernel_event(struct perf_event *event)
170{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100171 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100172}
173
Peter Zijlstra39a43642016-01-11 12:46:35 +0100174/*
175 * On task ctx scheduling...
176 *
177 * When !ctx->nr_events a task context will not be scheduled. This means
178 * we can disable the scheduler hooks (for performance) without leaving
179 * pending task ctx state.
180 *
181 * This however results in two special cases:
182 *
183 * - removing the last event from a task ctx; this is relatively straight
184 * forward and is done in __perf_remove_from_context.
185 *
186 * - adding the first event to a task ctx; this is tricky because we cannot
187 * rely on ctx->is_active and therefore cannot use event_function_call().
188 * See perf_install_in_context().
189 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100190 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
191 */
192
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100193typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
194 struct perf_event_context *, void *);
195
196struct event_function_struct {
197 struct perf_event *event;
198 event_f func;
199 void *data;
200};
201
202static int event_function(void *info)
203{
204 struct event_function_struct *efs = info;
205 struct perf_event *event = efs->event;
206 struct perf_event_context *ctx = event->ctx;
207 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
208 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100209 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100210
Frederic Weisbecker16444642017-11-06 16:01:24 +0100211 lockdep_assert_irqs_disabled();
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100212
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100213 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100214 /*
215 * Since we do the IPI call without holding ctx->lock things can have
216 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100217 */
218 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100219 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100220 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100221 goto unlock;
222 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100223
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100224 /*
225 * We only use event_function_call() on established contexts,
226 * and event_function() is only ever called when active (or
227 * rather, we'll have bailed in task_function_call() or the
228 * above ctx->task != current test), therefore we must have
229 * ctx->is_active here.
230 */
231 WARN_ON_ONCE(!ctx->is_active);
232 /*
233 * And since we have ctx->is_active, cpuctx->task_ctx must
234 * match.
235 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100236 WARN_ON_ONCE(task_ctx != ctx);
237 } else {
238 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100239 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100240
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100241 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100242unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100243 perf_ctx_unlock(cpuctx, task_ctx);
244
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100245 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100246}
247
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100248static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100249{
250 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100251 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100252 struct event_function_struct efs = {
253 .event = event,
254 .func = func,
255 .data = data,
256 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100257
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100258 if (!event->parent) {
259 /*
260 * If this is a !child event, we must hold ctx::mutex to
261 * stabilize the the event->ctx relation. See
262 * perf_event_ctx_lock().
263 */
264 lockdep_assert_held(&ctx->mutex);
265 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100266
267 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100268 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100269 return;
270 }
271
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100272 if (task == TASK_TOMBSTONE)
273 return;
274
Peter Zijlstraa0963092016-02-24 18:45:50 +0100275again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100276 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100277 return;
278
279 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100280 /*
281 * Reload the task pointer, it might have been changed by
282 * a concurrent perf_event_context_sched_out().
283 */
284 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100285 if (task == TASK_TOMBSTONE) {
286 raw_spin_unlock_irq(&ctx->lock);
287 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100288 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100289 if (ctx->is_active) {
290 raw_spin_unlock_irq(&ctx->lock);
291 goto again;
292 }
293 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100294 raw_spin_unlock_irq(&ctx->lock);
295}
296
Peter Zijlstracca20942016-08-16 13:33:26 +0200297/*
298 * Similar to event_function_call() + event_function(), but hard assumes IRQs
299 * are already disabled and we're on the right CPU.
300 */
301static void event_function_local(struct perf_event *event, event_f func, void *data)
302{
303 struct perf_event_context *ctx = event->ctx;
304 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
305 struct task_struct *task = READ_ONCE(ctx->task);
306 struct perf_event_context *task_ctx = NULL;
307
Frederic Weisbecker16444642017-11-06 16:01:24 +0100308 lockdep_assert_irqs_disabled();
Peter Zijlstracca20942016-08-16 13:33:26 +0200309
310 if (task) {
311 if (task == TASK_TOMBSTONE)
312 return;
313
314 task_ctx = ctx;
315 }
316
317 perf_ctx_lock(cpuctx, task_ctx);
318
319 task = ctx->task;
320 if (task == TASK_TOMBSTONE)
321 goto unlock;
322
323 if (task) {
324 /*
325 * We must be either inactive or active and the right task,
326 * otherwise we're screwed, since we cannot IPI to somewhere
327 * else.
328 */
329 if (ctx->is_active) {
330 if (WARN_ON_ONCE(task != current))
331 goto unlock;
332
333 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
334 goto unlock;
335 }
336 } else {
337 WARN_ON_ONCE(&cpuctx->ctx != ctx);
338 }
339
340 func(event, cpuctx, ctx, data);
341unlock:
342 perf_ctx_unlock(cpuctx, task_ctx);
343}
344
Stephane Eraniane5d13672011-02-14 11:20:01 +0200345#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
346 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100347 PERF_FLAG_PID_CGROUP |\
348 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200349
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100350/*
351 * branch priv levels that need permission checks
352 */
353#define PERF_SAMPLE_BRANCH_PERM_PLM \
354 (PERF_SAMPLE_BRANCH_KERNEL |\
355 PERF_SAMPLE_BRANCH_HV)
356
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200357enum event_type_t {
358 EVENT_FLEXIBLE = 0x1,
359 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100360 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200361 /* see ctx_resched() for details */
362 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200363 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
364};
365
Stephane Eraniane5d13672011-02-14 11:20:01 +0200366/*
367 * perf_sched_events : >0 events exist
368 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
369 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100370
371static void perf_sched_delayed(struct work_struct *work);
372DEFINE_STATIC_KEY_FALSE(perf_sched_events);
373static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
374static DEFINE_MUTEX(perf_sched_mutex);
375static atomic_t perf_sched_count;
376
Stephane Eraniane5d13672011-02-14 11:20:01 +0200377static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500378static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700379static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200380
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200381static atomic_t nr_mmap_events __read_mostly;
382static atomic_t nr_comm_events __read_mostly;
Hari Bathinie4222672017-03-08 02:11:36 +0530383static atomic_t nr_namespaces_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200384static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200385static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300386static atomic_t nr_switch_events __read_mostly;
Song Liu76193a92019-01-17 08:15:13 -0800387static atomic_t nr_ksymbol_events __read_mostly;
Song Liu6ee52e22019-01-17 08:15:15 -0800388static atomic_t nr_bpf_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200389
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200390static LIST_HEAD(pmus);
391static DEFINE_MUTEX(pmus_lock);
392static struct srcu_struct pmus_srcu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +0200393static cpumask_var_t perf_online_mask;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200394
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200395/*
396 * perf event paranoia level:
397 * -1 - not paranoid at all
398 * 0 - disallow raw tracepoint access for unpriv
399 * 1 - disallow cpu events for unpriv
400 * 2 - disallow kernel profiling for unpriv
401 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700402int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200403
Frederic Weisbecker20443382011-03-31 03:33:29 +0200404/* Minimum for 512 kiB + 1 user control page */
405int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200406
407/*
408 * max perf event sample rate
409 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700410#define DEFAULT_MAX_SAMPLE_RATE 100000
411#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
412#define DEFAULT_CPU_TIME_MAX_PERCENT 25
413
414int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
415
416static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
417static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
418
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200419static int perf_sample_allowed_ns __read_mostly =
420 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700421
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800422static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700423{
424 u64 tmp = perf_sample_period_ns;
425
426 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100427 tmp = div_u64(tmp, 100);
428 if (!tmp)
429 tmp = 1;
430
431 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700432}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100433
Peter Zijlstra8d5bce02018-03-09 14:56:27 +0100434static bool perf_rotate_context(struct perf_cpu_context *cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +0200435
Peter Zijlstra163ec432011-02-16 11:22:34 +0100436int perf_proc_update_handler(struct ctl_table *table, int write,
437 void __user *buffer, size_t *lenp,
438 loff_t *ppos)
439{
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800440 int ret;
441 int perf_cpu = sysctl_perf_cpu_time_max_percent;
Kan Liangab7fdef2016-05-03 00:26:06 -0700442 /*
443 * If throttling is disabled don't allow the write:
444 */
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800445 if (write && (perf_cpu == 100 || perf_cpu == 0))
Kan Liangab7fdef2016-05-03 00:26:06 -0700446 return -EINVAL;
447
Stephane Eranian1a51c5d2019-01-10 17:17:16 -0800448 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
449 if (ret || !write)
450 return ret;
451
Peter Zijlstra163ec432011-02-16 11:22:34 +0100452 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700453 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
454 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100455
456 return 0;
457}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200458
Dave Hansen14c63f12013-06-21 08:51:36 -0700459int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
460
461int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
462 void __user *buffer, size_t *lenp,
463 loff_t *ppos)
464{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800465 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700466
467 if (ret || !write)
468 return ret;
469
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200470 if (sysctl_perf_cpu_time_max_percent == 100 ||
471 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100472 printk(KERN_WARNING
473 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
474 WRITE_ONCE(perf_sample_allowed_ns, 0);
475 } else {
476 update_perf_cpu_limits();
477 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700478
479 return 0;
480}
481
482/*
483 * perf samples are done in some very critical code paths (NMIs).
484 * If they take too much CPU time, the system can lock up and not
485 * get any real work done. This will drop the sample rate when
486 * we detect that events are taking too long.
487 */
488#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200489static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700490
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100491static u64 __report_avg;
492static u64 __report_allowed;
493
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100494static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700495{
David Ahern0d87d7e2016-08-01 13:49:29 -0700496 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100497 "perf: interrupt took too long (%lld > %lld), lowering "
498 "kernel.perf_event_max_sample_rate to %d\n",
499 __report_avg, __report_allowed,
500 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100501}
502
503static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
504
505void perf_sample_event_took(u64 sample_len_ns)
506{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100507 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
508 u64 running_len;
509 u64 avg_len;
510 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700511
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100512 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700513 return;
514
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100515 /* Decay the counter by 1 average sample. */
516 running_len = __this_cpu_read(running_sample_length);
517 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
518 running_len += sample_len_ns;
519 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700520
521 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100522 * Note: this will be biased artifically low until we have
523 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700524 * from having to maintain a count.
525 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100526 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
527 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700528 return;
529
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100530 __report_avg = avg_len;
531 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700532
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100533 /*
534 * Compute a throttle threshold 25% below the current duration.
535 */
536 avg_len += avg_len / 4;
537 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
538 if (avg_len < max)
539 max /= (u32)avg_len;
540 else
541 max = 1;
542
543 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
544 WRITE_ONCE(max_samples_per_tick, max);
545
546 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700547 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
548
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100549 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100550 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100551 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100552 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100553 sysctl_perf_event_sample_rate);
554 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700555}
556
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200557static atomic64_t perf_event_id;
558
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200559static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
560 enum event_type_t event_type);
561
562static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200563 enum event_type_t event_type,
564 struct task_struct *task);
565
566static void update_context_time(struct perf_event_context *ctx);
567static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200568
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200569void __weak perf_event_print_debug(void) { }
570
Matt Fleming84c79912010-10-03 21:41:13 +0100571extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200572{
Matt Fleming84c79912010-10-03 21:41:13 +0100573 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200574}
575
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200576static inline u64 perf_clock(void)
577{
578 return local_clock();
579}
580
Peter Zijlstra34f43922015-02-20 14:05:38 +0100581static inline u64 perf_event_clock(struct perf_event *event)
582{
583 return event->clock();
584}
585
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200586/*
587 * State based event timekeeping...
588 *
589 * The basic idea is to use event->state to determine which (if any) time
590 * fields to increment with the current delta. This means we only need to
591 * update timestamps when we change state or when they are explicitly requested
592 * (read).
593 *
594 * Event groups make things a little more complicated, but not terribly so. The
595 * rules for a group are that if the group leader is OFF the entire group is
596 * OFF, irrespecive of what the group member states are. This results in
597 * __perf_effective_state().
598 *
599 * A futher ramification is that when a group leader flips between OFF and
600 * !OFF, we need to update all group member times.
601 *
602 *
603 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
604 * need to make sure the relevant context time is updated before we try and
605 * update our timestamps.
606 */
607
608static __always_inline enum perf_event_state
609__perf_effective_state(struct perf_event *event)
610{
611 struct perf_event *leader = event->group_leader;
612
613 if (leader->state <= PERF_EVENT_STATE_OFF)
614 return leader->state;
615
616 return event->state;
617}
618
619static __always_inline void
620__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
621{
622 enum perf_event_state state = __perf_effective_state(event);
623 u64 delta = now - event->tstamp;
624
625 *enabled = event->total_time_enabled;
626 if (state >= PERF_EVENT_STATE_INACTIVE)
627 *enabled += delta;
628
629 *running = event->total_time_running;
630 if (state >= PERF_EVENT_STATE_ACTIVE)
631 *running += delta;
632}
633
634static void perf_event_update_time(struct perf_event *event)
635{
636 u64 now = perf_event_time(event);
637
638 __perf_update_times(event, now, &event->total_time_enabled,
639 &event->total_time_running);
640 event->tstamp = now;
641}
642
643static void perf_event_update_sibling_time(struct perf_event *leader)
644{
645 struct perf_event *sibling;
646
Peter Zijlstraedb39592018-03-15 17:36:56 +0100647 for_each_sibling_event(sibling, leader)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200648 perf_event_update_time(sibling);
649}
650
651static void
652perf_event_set_state(struct perf_event *event, enum perf_event_state state)
653{
654 if (event->state == state)
655 return;
656
657 perf_event_update_time(event);
658 /*
659 * If a group leader gets enabled/disabled all its siblings
660 * are affected too.
661 */
662 if ((event->state < 0) ^ (state < 0))
663 perf_event_update_sibling_time(event);
664
665 WRITE_ONCE(event->state, state);
666}
667
Stephane Eraniane5d13672011-02-14 11:20:01 +0200668#ifdef CONFIG_CGROUP_PERF
669
Stephane Eraniane5d13672011-02-14 11:20:01 +0200670static inline bool
671perf_cgroup_match(struct perf_event *event)
672{
673 struct perf_event_context *ctx = event->ctx;
674 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
675
Tejun Heoef824fa2013-04-08 19:00:38 -0700676 /* @event doesn't care about cgroup */
677 if (!event->cgrp)
678 return true;
679
680 /* wants specific cgroup scope but @cpuctx isn't associated with any */
681 if (!cpuctx->cgrp)
682 return false;
683
684 /*
685 * Cgroup scoping is recursive. An event enabled for a cgroup is
686 * also enabled for all its descendant cgroups. If @cpuctx's
687 * cgroup is a descendant of @event's (the test covers identity
688 * case), it's a match.
689 */
690 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
691 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200692}
693
Stephane Eraniane5d13672011-02-14 11:20:01 +0200694static inline void perf_detach_cgroup(struct perf_event *event)
695{
Zefan Li4e2ba652014-09-19 16:53:14 +0800696 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200697 event->cgrp = NULL;
698}
699
700static inline int is_cgroup_event(struct perf_event *event)
701{
702 return event->cgrp != NULL;
703}
704
705static inline u64 perf_cgroup_event_time(struct perf_event *event)
706{
707 struct perf_cgroup_info *t;
708
709 t = per_cpu_ptr(event->cgrp->info, event->cpu);
710 return t->time;
711}
712
713static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
714{
715 struct perf_cgroup_info *info;
716 u64 now;
717
718 now = perf_clock();
719
720 info = this_cpu_ptr(cgrp->info);
721
722 info->time += now - info->timestamp;
723 info->timestamp = now;
724}
725
726static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
727{
Song Liuc917e0f22018-03-12 09:59:43 -0700728 struct perf_cgroup *cgrp = cpuctx->cgrp;
729 struct cgroup_subsys_state *css;
730
731 if (cgrp) {
732 for (css = &cgrp->css; css; css = css->parent) {
733 cgrp = container_of(css, struct perf_cgroup, css);
734 __update_cgrp_time(cgrp);
735 }
736 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200737}
738
739static inline void update_cgrp_time_from_event(struct perf_event *event)
740{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200741 struct perf_cgroup *cgrp;
742
Stephane Eraniane5d13672011-02-14 11:20:01 +0200743 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200744 * ensure we access cgroup data only when needed and
745 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200746 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200747 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200748 return;
749
Stephane Eranian614e4c42015-11-12 11:00:04 +0100750 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200751 /*
752 * Do not update time when cgroup is not active
753 */
Colin Ian King28fa7412018-10-29 23:32:11 +0000754 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200755 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200756}
757
758static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200759perf_cgroup_set_timestamp(struct task_struct *task,
760 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200761{
762 struct perf_cgroup *cgrp;
763 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700764 struct cgroup_subsys_state *css;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200765
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200766 /*
767 * ctx->lock held by caller
768 * ensure we do not access cgroup data
769 * unless we have the cgroup pinned (css_get)
770 */
771 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200772 return;
773
Stephane Eranian614e4c42015-11-12 11:00:04 +0100774 cgrp = perf_cgroup_from_task(task, ctx);
Song Liuc917e0f22018-03-12 09:59:43 -0700775
776 for (css = &cgrp->css; css; css = css->parent) {
777 cgrp = container_of(css, struct perf_cgroup, css);
778 info = this_cpu_ptr(cgrp->info);
779 info->timestamp = ctx->timestamp;
780 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200781}
782
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800783static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
784
Stephane Eraniane5d13672011-02-14 11:20:01 +0200785#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
786#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
787
788/*
789 * reschedule events based on the cgroup constraint of task.
790 *
791 * mode SWOUT : schedule out everything
792 * mode SWIN : schedule in based on cgroup for next
793 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800794static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200795{
796 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800797 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200798 unsigned long flags;
799
800 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800801 * Disable interrupts and preemption to avoid this CPU's
802 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200803 */
804 local_irq_save(flags);
805
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800806 list = this_cpu_ptr(&cgrp_cpuctx_list);
807 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
808 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200809
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800810 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
811 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200812
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800813 if (mode & PERF_CGROUP_SWOUT) {
814 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
815 /*
816 * must not be done before ctxswout due
817 * to event_filter_match() in event_sched_out()
818 */
819 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200820 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800821
822 if (mode & PERF_CGROUP_SWIN) {
823 WARN_ON_ONCE(cpuctx->cgrp);
824 /*
825 * set cgrp before ctxsw in to allow
826 * event_filter_match() to not have to pass
827 * task around
828 * we pass the cpuctx->ctx to perf_cgroup_from_task()
829 * because cgorup events are only per-cpu
830 */
831 cpuctx->cgrp = perf_cgroup_from_task(task,
832 &cpuctx->ctx);
833 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
834 }
835 perf_pmu_enable(cpuctx->ctx.pmu);
836 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200837 }
838
Stephane Eraniane5d13672011-02-14 11:20:01 +0200839 local_irq_restore(flags);
840}
841
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200842static inline void perf_cgroup_sched_out(struct task_struct *task,
843 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200844{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200845 struct perf_cgroup *cgrp1;
846 struct perf_cgroup *cgrp2 = NULL;
847
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100848 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200849 /*
850 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100851 * we do not need to pass the ctx here because we know
852 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200853 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100854 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100855 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200856
857 /*
858 * only schedule out current cgroup events if we know
859 * that we are switching to a different cgroup. Otherwise,
860 * do no touch the cgroup events.
861 */
862 if (cgrp1 != cgrp2)
863 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100864
865 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200866}
867
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200868static inline void perf_cgroup_sched_in(struct task_struct *prev,
869 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200870{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200871 struct perf_cgroup *cgrp1;
872 struct perf_cgroup *cgrp2 = NULL;
873
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100874 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200875 /*
876 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100877 * we do not need to pass the ctx here because we know
878 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200879 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100880 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100881 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200882
883 /*
884 * only need to schedule in cgroup events if we are changing
885 * cgroup during ctxsw. Cgroup events were not scheduled
886 * out of ctxsw out if that was not the case.
887 */
888 if (cgrp1 != cgrp2)
889 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100890
891 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200892}
893
894static inline int perf_cgroup_connect(int fd, struct perf_event *event,
895 struct perf_event_attr *attr,
896 struct perf_event *group_leader)
897{
898 struct perf_cgroup *cgrp;
899 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400900 struct fd f = fdget(fd);
901 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200902
Al Viro2903ff02012-08-28 12:52:22 -0400903 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200904 return -EBADF;
905
Al Virob5830432014-10-31 01:22:04 -0400906 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400907 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800908 if (IS_ERR(css)) {
909 ret = PTR_ERR(css);
910 goto out;
911 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200912
913 cgrp = container_of(css, struct perf_cgroup, css);
914 event->cgrp = cgrp;
915
916 /*
917 * all events in a group must monitor
918 * the same cgroup because a task belongs
919 * to only one perf cgroup at a time
920 */
921 if (group_leader && group_leader->cgrp != cgrp) {
922 perf_detach_cgroup(event);
923 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200924 }
Li Zefan3db272c2011-03-03 14:25:37 +0800925out:
Al Viro2903ff02012-08-28 12:52:22 -0400926 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200927 return ret;
928}
929
930static inline void
931perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
932{
933 struct perf_cgroup_info *t;
934 t = per_cpu_ptr(event->cgrp->info, event->cpu);
935 event->shadow_ctx_time = now - t->timestamp;
936}
937
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700938/*
939 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
940 * cleared when last cgroup event is removed.
941 */
942static inline void
943list_update_cgroup_event(struct perf_event *event,
944 struct perf_event_context *ctx, bool add)
945{
946 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800947 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700948
949 if (!is_cgroup_event(event))
950 return;
951
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700952 /*
953 * Because cgroup events are always per-cpu events,
954 * this will always be called from the right CPU.
955 */
956 cpuctx = __get_cpu_context(ctx);
leilei.lin33801b92018-03-06 17:36:37 +0800957
958 /*
959 * Since setting cpuctx->cgrp is conditional on the current @cgrp
960 * matching the event's cgroup, we must do this for every new event,
961 * because if the first would mismatch, the second would not try again
962 * and we would leave cpuctx->cgrp unset.
963 */
964 if (add && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -0700965 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
966
Tejun Heobe96b312017-10-28 09:49:37 -0700967 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
968 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800969 }
leilei.lin33801b92018-03-06 17:36:37 +0800970
971 if (add && ctx->nr_cgroups++)
972 return;
973 else if (!add && --ctx->nr_cgroups)
974 return;
975
976 /* no cgroup running */
977 if (!add)
978 cpuctx->cgrp = NULL;
979
980 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
981 if (add)
982 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
983 else
984 list_del(cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700985}
986
Stephane Eraniane5d13672011-02-14 11:20:01 +0200987#else /* !CONFIG_CGROUP_PERF */
988
989static inline bool
990perf_cgroup_match(struct perf_event *event)
991{
992 return true;
993}
994
995static inline void perf_detach_cgroup(struct perf_event *event)
996{}
997
998static inline int is_cgroup_event(struct perf_event *event)
999{
1000 return 0;
1001}
1002
Stephane Eraniane5d13672011-02-14 11:20:01 +02001003static inline void update_cgrp_time_from_event(struct perf_event *event)
1004{
1005}
1006
1007static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1008{
1009}
1010
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001011static inline void perf_cgroup_sched_out(struct task_struct *task,
1012 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001013{
1014}
1015
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001016static inline void perf_cgroup_sched_in(struct task_struct *prev,
1017 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001018{
1019}
1020
1021static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1022 struct perf_event_attr *attr,
1023 struct perf_event *group_leader)
1024{
1025 return -EINVAL;
1026}
1027
1028static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001029perf_cgroup_set_timestamp(struct task_struct *task,
1030 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001031{
1032}
1033
1034void
1035perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1036{
1037}
1038
1039static inline void
1040perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1041{
1042}
1043
1044static inline u64 perf_cgroup_event_time(struct perf_event *event)
1045{
1046 return 0;
1047}
1048
1049static inline void
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001050list_update_cgroup_event(struct perf_event *event,
1051 struct perf_event_context *ctx, bool add)
1052{
1053}
1054
Stephane Eraniane5d13672011-02-14 11:20:01 +02001055#endif
1056
Stephane Eranian9e630202013-04-03 14:21:33 +02001057/*
1058 * set default to be dependent on timer tick just
1059 * like original code
1060 */
1061#define PERF_CPU_HRTIMER (1000 / HZ)
1062/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001063 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001064 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001065static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001066{
1067 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001068 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001069
Frederic Weisbecker16444642017-11-06 16:01:24 +01001070 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001071
1072 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001073 rotations = perf_rotate_context(cpuctx);
1074
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001075 raw_spin_lock(&cpuctx->hrtimer_lock);
1076 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001077 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001078 else
1079 cpuctx->hrtimer_active = 0;
1080 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001081
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001082 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001083}
1084
Peter Zijlstra272325c2015-04-15 11:41:58 +02001085static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001086{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001087 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001088 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001089 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001090
1091 /* no multiplexing needed for SW PMU */
1092 if (pmu->task_ctx_nr == perf_sw_context)
1093 return;
1094
Stephane Eranian62b85632013-04-03 14:21:34 +02001095 /*
1096 * check default is sane, if not set then force to
1097 * default interval (1/tick)
1098 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001099 interval = pmu->hrtimer_interval_ms;
1100 if (interval < 1)
1101 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001102
Peter Zijlstra272325c2015-04-15 11:41:58 +02001103 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001104
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001105 raw_spin_lock_init(&cpuctx->hrtimer_lock);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001106 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001107 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001108}
1109
Peter Zijlstra272325c2015-04-15 11:41:58 +02001110static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001111{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001112 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001113 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001114 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001115
1116 /* not for SW PMU */
1117 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001118 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001119
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001120 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1121 if (!cpuctx->hrtimer_active) {
1122 cpuctx->hrtimer_active = 1;
1123 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02001124 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001125 }
1126 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001127
Peter Zijlstra272325c2015-04-15 11:41:58 +02001128 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001129}
1130
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001131void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001132{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001133 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1134 if (!(*count)++)
1135 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001136}
1137
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001138void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001139{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001140 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1141 if (!--(*count))
1142 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001143}
1144
Mark Rutland2fde4f92015-01-07 15:01:54 +00001145static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001146
1147/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001148 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1149 * perf_event_task_tick() are fully serialized because they're strictly cpu
1150 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1151 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001152 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001153static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001154{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001155 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001156
Frederic Weisbecker16444642017-11-06 16:01:24 +01001157 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001158
Mark Rutland2fde4f92015-01-07 15:01:54 +00001159 WARN_ON(!list_empty(&ctx->active_ctx_list));
1160
1161 list_add(&ctx->active_ctx_list, head);
1162}
1163
1164static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1165{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001166 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001167
1168 WARN_ON(list_empty(&ctx->active_ctx_list));
1169
1170 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171}
1172
1173static void get_ctx(struct perf_event_context *ctx)
1174{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001175 refcount_inc(&ctx->refcount);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001176}
1177
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001178static void free_ctx(struct rcu_head *head)
1179{
1180 struct perf_event_context *ctx;
1181
1182 ctx = container_of(head, struct perf_event_context, rcu_head);
1183 kfree(ctx->task_ctx_data);
1184 kfree(ctx);
1185}
1186
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001187static void put_ctx(struct perf_event_context *ctx)
1188{
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001189 if (refcount_dec_and_test(&ctx->refcount)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001190 if (ctx->parent_ctx)
1191 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001192 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001193 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001194 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001195 }
1196}
1197
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001198/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001199 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1200 * perf_pmu_migrate_context() we need some magic.
1201 *
1202 * Those places that change perf_event::ctx will hold both
1203 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1204 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001205 * Lock ordering is by mutex address. There are two other sites where
1206 * perf_event_context::mutex nests and those are:
1207 *
1208 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001209 * perf_event_exit_event()
1210 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001211 *
1212 * - perf_event_init_context() [ parent, 0 ]
1213 * inherit_task_group()
1214 * inherit_group()
1215 * inherit_event()
1216 * perf_event_alloc()
1217 * perf_init_event()
1218 * perf_try_init_event() [ child , 1 ]
1219 *
1220 * While it appears there is an obvious deadlock here -- the parent and child
1221 * nesting levels are inverted between the two. This is in fact safe because
1222 * life-time rules separate them. That is an exiting task cannot fork, and a
1223 * spawning task cannot (yet) exit.
1224 *
1225 * But remember that that these are parent<->child context relations, and
1226 * migration does not affect children, therefore these two orderings should not
1227 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001228 *
1229 * The change in perf_event::ctx does not affect children (as claimed above)
1230 * because the sys_perf_event_open() case will install a new event and break
1231 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1232 * concerned with cpuctx and that doesn't have children.
1233 *
1234 * The places that change perf_event::ctx will issue:
1235 *
1236 * perf_remove_from_context();
1237 * synchronize_rcu();
1238 * perf_install_in_context();
1239 *
1240 * to affect the change. The remove_from_context() + synchronize_rcu() should
1241 * quiesce the event, after which we can install it in the new location. This
1242 * means that only external vectors (perf_fops, prctl) can perturb the event
1243 * while in transit. Therefore all such accessors should also acquire
1244 * perf_event_context::mutex to serialize against this.
1245 *
1246 * However; because event->ctx can change while we're waiting to acquire
1247 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1248 * function.
1249 *
1250 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001251 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001252 * task_struct::perf_event_mutex
1253 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001254 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001255 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001256 * perf_event::mmap_mutex
1257 * mmap_sem
Alexander Shishkin18736ee2019-02-15 13:56:54 +02001258 * perf_addr_filters_head::lock
Peter Zijlstra82d94852018-01-09 13:10:30 +01001259 *
1260 * cpu_hotplug_lock
1261 * pmus_lock
1262 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001263 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001264static struct perf_event_context *
1265perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001266{
1267 struct perf_event_context *ctx;
1268
1269again:
1270 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001271 ctx = READ_ONCE(event->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001272 if (!refcount_inc_not_zero(&ctx->refcount)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001273 rcu_read_unlock();
1274 goto again;
1275 }
1276 rcu_read_unlock();
1277
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001278 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001279 if (event->ctx != ctx) {
1280 mutex_unlock(&ctx->mutex);
1281 put_ctx(ctx);
1282 goto again;
1283 }
1284
1285 return ctx;
1286}
1287
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001288static inline struct perf_event_context *
1289perf_event_ctx_lock(struct perf_event *event)
1290{
1291 return perf_event_ctx_lock_nested(event, 0);
1292}
1293
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001294static void perf_event_ctx_unlock(struct perf_event *event,
1295 struct perf_event_context *ctx)
1296{
1297 mutex_unlock(&ctx->mutex);
1298 put_ctx(ctx);
1299}
1300
1301/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001302 * This must be done under the ctx->lock, such as to serialize against
1303 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1304 * calling scheduler related locks and ctx->lock nests inside those.
1305 */
1306static __must_check struct perf_event_context *
1307unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001308{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001309 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1310
1311 lockdep_assert_held(&ctx->lock);
1312
1313 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001314 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001315 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001316
1317 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001318}
1319
Oleg Nesterov1d953112017-08-22 17:59:28 +02001320static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1321 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001322{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001323 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001324 /*
1325 * only top level events have the pid namespace they were created in
1326 */
1327 if (event->parent)
1328 event = event->parent;
1329
Oleg Nesterov1d953112017-08-22 17:59:28 +02001330 nr = __task_pid_nr_ns(p, type, event->ns);
1331 /* avoid -1 if it is idle thread or runs in another ns */
1332 if (!nr && !pid_alive(p))
1333 nr = -1;
1334 return nr;
1335}
1336
1337static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1338{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001339 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001340}
1341
1342static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1343{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001344 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001345}
1346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001347/*
1348 * If we inherit events we want to return the parent event id
1349 * to userspace.
1350 */
1351static u64 primary_event_id(struct perf_event *event)
1352{
1353 u64 id = event->id;
1354
1355 if (event->parent)
1356 id = event->parent->id;
1357
1358 return id;
1359}
1360
1361/*
1362 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001363 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001364 * This has to cope with with the fact that until it is locked,
1365 * the context could get moved to another task.
1366 */
1367static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001368perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001369{
1370 struct perf_event_context *ctx;
1371
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001372retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001373 /*
1374 * One of the few rules of preemptible RCU is that one cannot do
1375 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001376 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001377 * rcu_read_unlock_special().
1378 *
1379 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001380 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001381 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001382 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001383 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001384 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001385 if (ctx) {
1386 /*
1387 * If this context is a clone of another, it might
1388 * get swapped for another underneath us by
1389 * perf_event_task_sched_out, though the
1390 * rcu_read_lock() protects us from any context
1391 * getting freed. Lock the context and check if it
1392 * got swapped before we could get the lock, and retry
1393 * if so. If we locked the right context, then it
1394 * can't get swapped on us any more.
1395 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001396 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001397 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001398 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001399 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001400 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001401 goto retry;
1402 }
1403
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001404 if (ctx->task == TASK_TOMBSTONE ||
Elena Reshetova8c94abb2019-01-28 14:27:26 +02001405 !refcount_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001406 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001407 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001408 } else {
1409 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001410 }
1411 }
1412 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001413 if (!ctx)
1414 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001415 return ctx;
1416}
1417
1418/*
1419 * Get the context for a task and increment its pin_count so it
1420 * can't get swapped to another task. This also increments its
1421 * reference count so that the context can't get freed.
1422 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001423static struct perf_event_context *
1424perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001425{
1426 struct perf_event_context *ctx;
1427 unsigned long flags;
1428
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001429 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001430 if (ctx) {
1431 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001432 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001433 }
1434 return ctx;
1435}
1436
1437static void perf_unpin_context(struct perf_event_context *ctx)
1438{
1439 unsigned long flags;
1440
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001441 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001442 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001443 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444}
1445
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001446/*
1447 * Update the record of the current time in a context.
1448 */
1449static void update_context_time(struct perf_event_context *ctx)
1450{
1451 u64 now = perf_clock();
1452
1453 ctx->time += now - ctx->timestamp;
1454 ctx->timestamp = now;
1455}
1456
Stephane Eranian41587552011-01-03 18:20:01 +02001457static u64 perf_event_time(struct perf_event *event)
1458{
1459 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001460
1461 if (is_cgroup_event(event))
1462 return perf_cgroup_event_time(event);
1463
Stephane Eranian41587552011-01-03 18:20:01 +02001464 return ctx ? ctx->time : 0;
1465}
1466
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001467static enum event_type_t get_event_type(struct perf_event *event)
1468{
1469 struct perf_event_context *ctx = event->ctx;
1470 enum event_type_t event_type;
1471
1472 lockdep_assert_held(&ctx->lock);
1473
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001474 /*
1475 * It's 'group type', really, because if our group leader is
1476 * pinned, so are we.
1477 */
1478 if (event->group_leader != event)
1479 event = event->group_leader;
1480
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001481 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1482 if (!ctx->task)
1483 event_type |= EVENT_CPU;
1484
1485 return event_type;
1486}
1487
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001488/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001489 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001490 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001491static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001492{
1493 RB_CLEAR_NODE(&event->group_node);
1494 event->group_index = 0;
1495}
1496
1497/*
1498 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001499 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001500 */
1501static struct perf_event_groups *
1502get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001503{
1504 if (event->attr.pinned)
1505 return &ctx->pinned_groups;
1506 else
1507 return &ctx->flexible_groups;
1508}
1509
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001510/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001511 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001512 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001513static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001514{
1515 groups->tree = RB_ROOT;
1516 groups->index = 0;
1517}
1518
1519/*
1520 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001521 *
1522 * Implements complex key that first sorts by CPU and then by virtual index
1523 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001524 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001525static bool
1526perf_event_groups_less(struct perf_event *left, struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001527{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001528 if (left->cpu < right->cpu)
1529 return true;
1530 if (left->cpu > right->cpu)
1531 return false;
1532
1533 if (left->group_index < right->group_index)
1534 return true;
1535 if (left->group_index > right->group_index)
1536 return false;
1537
1538 return false;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001539}
1540
1541/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001542 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1543 * key (see perf_event_groups_less). This places it last inside the CPU
1544 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001545 */
1546static void
1547perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001548 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001549{
1550 struct perf_event *node_event;
1551 struct rb_node *parent;
1552 struct rb_node **node;
1553
1554 event->group_index = ++groups->index;
1555
1556 node = &groups->tree.rb_node;
1557 parent = *node;
1558
1559 while (*node) {
1560 parent = *node;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001561 node_event = container_of(*node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001562
1563 if (perf_event_groups_less(event, node_event))
1564 node = &parent->rb_left;
1565 else
1566 node = &parent->rb_right;
1567 }
1568
1569 rb_link_node(&event->group_node, parent, node);
1570 rb_insert_color(&event->group_node, &groups->tree);
1571}
1572
1573/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001574 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001575 */
1576static void
1577add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1578{
1579 struct perf_event_groups *groups;
1580
1581 groups = get_event_groups(event, ctx);
1582 perf_event_groups_insert(groups, event);
1583}
1584
1585/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001586 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001587 */
1588static void
1589perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001590 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001591{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001592 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1593 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001594
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001595 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001596 init_event_group(event);
1597}
1598
1599/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001600 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001601 */
1602static void
1603del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1604{
1605 struct perf_event_groups *groups;
1606
1607 groups = get_event_groups(event, ctx);
1608 perf_event_groups_delete(groups, event);
1609}
1610
1611/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001612 * Get the leftmost event in the @cpu subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001613 */
1614static struct perf_event *
1615perf_event_groups_first(struct perf_event_groups *groups, int cpu)
1616{
1617 struct perf_event *node_event = NULL, *match = NULL;
1618 struct rb_node *node = groups->tree.rb_node;
1619
1620 while (node) {
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001621 node_event = container_of(node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001622
1623 if (cpu < node_event->cpu) {
1624 node = node->rb_left;
1625 } else if (cpu > node_event->cpu) {
1626 node = node->rb_right;
1627 } else {
1628 match = node_event;
1629 node = node->rb_left;
1630 }
1631 }
1632
1633 return match;
1634}
1635
1636/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001637 * Like rb_entry_next_safe() for the @cpu subtree.
1638 */
1639static struct perf_event *
1640perf_event_groups_next(struct perf_event *event)
1641{
1642 struct perf_event *next;
1643
1644 next = rb_entry_safe(rb_next(&event->group_node), typeof(*event), group_node);
1645 if (next && next->cpu == event->cpu)
1646 return next;
1647
1648 return NULL;
1649}
1650
1651/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001652 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001653 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001654#define perf_event_groups_for_each(event, groups) \
1655 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1656 typeof(*event), group_node); event; \
1657 event = rb_entry_safe(rb_next(&event->group_node), \
1658 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001659
1660/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001661 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001662 * Must be called with ctx->mutex and ctx->lock held.
1663 */
1664static void
1665list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1666{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001667 lockdep_assert_held(&ctx->lock);
1668
Peter Zijlstra8a495422010-05-27 15:47:49 +02001669 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1670 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001672 event->tstamp = perf_event_time(event);
1673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001675 * If we're a stand alone event or group leader, we go to the context
1676 * list, group events are kept attached to the group so that
1677 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001678 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001679 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001680 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001681 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001682 }
1683
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001684 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001685
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001686 list_add_rcu(&event->event_entry, &ctx->event_list);
1687 ctx->nr_events++;
1688 if (event->attr.inherit_stat)
1689 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001690
1691 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001692}
1693
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001694/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001695 * Initialize event state based on the perf_event_attr::disabled.
1696 */
1697static inline void perf_event__state_init(struct perf_event *event)
1698{
1699 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1700 PERF_EVENT_STATE_INACTIVE;
1701}
1702
Peter Zijlstraa7239682015-09-09 19:06:33 +02001703static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001704{
1705 int entry = sizeof(u64); /* value */
1706 int size = 0;
1707 int nr = 1;
1708
1709 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1710 size += sizeof(u64);
1711
1712 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1713 size += sizeof(u64);
1714
1715 if (event->attr.read_format & PERF_FORMAT_ID)
1716 entry += sizeof(u64);
1717
1718 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001719 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001720 size += sizeof(u64);
1721 }
1722
1723 size += entry * nr;
1724 event->read_size = size;
1725}
1726
Peter Zijlstraa7239682015-09-09 19:06:33 +02001727static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001728{
1729 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001730 u16 size = 0;
1731
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001732 if (sample_type & PERF_SAMPLE_IP)
1733 size += sizeof(data->ip);
1734
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001735 if (sample_type & PERF_SAMPLE_ADDR)
1736 size += sizeof(data->addr);
1737
1738 if (sample_type & PERF_SAMPLE_PERIOD)
1739 size += sizeof(data->period);
1740
Andi Kleenc3feedf2013-01-24 16:10:28 +01001741 if (sample_type & PERF_SAMPLE_WEIGHT)
1742 size += sizeof(data->weight);
1743
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001744 if (sample_type & PERF_SAMPLE_READ)
1745 size += event->read_size;
1746
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001747 if (sample_type & PERF_SAMPLE_DATA_SRC)
1748 size += sizeof(data->data_src.val);
1749
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001750 if (sample_type & PERF_SAMPLE_TRANSACTION)
1751 size += sizeof(data->txn);
1752
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001753 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1754 size += sizeof(data->phys_addr);
1755
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001756 event->header_size = size;
1757}
1758
Peter Zijlstraa7239682015-09-09 19:06:33 +02001759/*
1760 * Called at perf_event creation and when events are attached/detached from a
1761 * group.
1762 */
1763static void perf_event__header_size(struct perf_event *event)
1764{
1765 __perf_event_read_size(event,
1766 event->group_leader->nr_siblings);
1767 __perf_event_header_size(event, event->attr.sample_type);
1768}
1769
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001770static void perf_event__id_header_size(struct perf_event *event)
1771{
1772 struct perf_sample_data *data;
1773 u64 sample_type = event->attr.sample_type;
1774 u16 size = 0;
1775
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001776 if (sample_type & PERF_SAMPLE_TID)
1777 size += sizeof(data->tid_entry);
1778
1779 if (sample_type & PERF_SAMPLE_TIME)
1780 size += sizeof(data->time);
1781
Adrian Hunterff3d5272013-08-27 11:23:07 +03001782 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1783 size += sizeof(data->id);
1784
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001785 if (sample_type & PERF_SAMPLE_ID)
1786 size += sizeof(data->id);
1787
1788 if (sample_type & PERF_SAMPLE_STREAM_ID)
1789 size += sizeof(data->stream_id);
1790
1791 if (sample_type & PERF_SAMPLE_CPU)
1792 size += sizeof(data->cpu_entry);
1793
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001794 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001795}
1796
Peter Zijlstraa7239682015-09-09 19:06:33 +02001797static bool perf_event_validate_size(struct perf_event *event)
1798{
1799 /*
1800 * The values computed here will be over-written when we actually
1801 * attach the event.
1802 */
1803 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1804 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1805 perf_event__id_header_size(event);
1806
1807 /*
1808 * Sum the lot; should not exceed the 64k limit we have on records.
1809 * Conservative limit to allow for callchains and other variable fields.
1810 */
1811 if (event->read_size + event->header_size +
1812 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1813 return false;
1814
1815 return true;
1816}
1817
Peter Zijlstra8a495422010-05-27 15:47:49 +02001818static void perf_group_attach(struct perf_event *event)
1819{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001820 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001821
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001822 lockdep_assert_held(&event->ctx->lock);
1823
Peter Zijlstra74c33372010-10-15 11:40:29 +02001824 /*
1825 * We can have double attach due to group movement in perf_event_open.
1826 */
1827 if (event->attach_state & PERF_ATTACH_GROUP)
1828 return;
1829
Peter Zijlstra8a495422010-05-27 15:47:49 +02001830 event->attach_state |= PERF_ATTACH_GROUP;
1831
1832 if (group_leader == event)
1833 return;
1834
Peter Zijlstra652884f2015-01-23 11:20:10 +01001835 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1836
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001837 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001838
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001839 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001840 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001841
1842 perf_event__header_size(group_leader);
1843
Peter Zijlstraedb39592018-03-15 17:36:56 +01001844 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001845 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001846}
1847
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001848/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001849 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850 * Must be called with ctx->mutex and ctx->lock held.
1851 */
1852static void
1853list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1854{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001855 WARN_ON_ONCE(event->ctx != ctx);
1856 lockdep_assert_held(&ctx->lock);
1857
Peter Zijlstra8a495422010-05-27 15:47:49 +02001858 /*
1859 * We can have double detach due to exit/hot-unplug + close.
1860 */
1861 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001862 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001863
1864 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1865
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001866 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001868 ctx->nr_events--;
1869 if (event->attr.inherit_stat)
1870 ctx->nr_stat--;
1871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 list_del_rcu(&event->event_entry);
1873
Peter Zijlstra8a495422010-05-27 15:47:49 +02001874 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001875 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001876
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001877 /*
1878 * If event was in error state, then keep it
1879 * that way, otherwise bogus counts will be
1880 * returned on read(). The only way to get out
1881 * of error state is by explicit re-enabling
1882 * of the event
1883 */
1884 if (event->state > PERF_EVENT_STATE_OFF)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001885 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001886
1887 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001888}
1889
Alexander Shishkinab437622019-08-06 11:46:00 +03001890static int
1891perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
1892{
1893 if (!has_aux(aux_event))
1894 return 0;
1895
1896 if (!event->pmu->aux_output_match)
1897 return 0;
1898
1899 return event->pmu->aux_output_match(aux_event);
1900}
1901
1902static void put_event(struct perf_event *event);
1903static void event_sched_out(struct perf_event *event,
1904 struct perf_cpu_context *cpuctx,
1905 struct perf_event_context *ctx);
1906
1907static void perf_put_aux_event(struct perf_event *event)
1908{
1909 struct perf_event_context *ctx = event->ctx;
1910 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1911 struct perf_event *iter;
1912
1913 /*
1914 * If event uses aux_event tear down the link
1915 */
1916 if (event->aux_event) {
1917 iter = event->aux_event;
1918 event->aux_event = NULL;
1919 put_event(iter);
1920 return;
1921 }
1922
1923 /*
1924 * If the event is an aux_event, tear down all links to
1925 * it from other events.
1926 */
1927 for_each_sibling_event(iter, event->group_leader) {
1928 if (iter->aux_event != event)
1929 continue;
1930
1931 iter->aux_event = NULL;
1932 put_event(event);
1933
1934 /*
1935 * If it's ACTIVE, schedule it out and put it into ERROR
1936 * state so that we don't try to schedule it again. Note
1937 * that perf_event_enable() will clear the ERROR status.
1938 */
1939 event_sched_out(iter, cpuctx, ctx);
1940 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
1941 }
1942}
1943
1944static int perf_get_aux_event(struct perf_event *event,
1945 struct perf_event *group_leader)
1946{
1947 /*
1948 * Our group leader must be an aux event if we want to be
1949 * an aux_output. This way, the aux event will precede its
1950 * aux_output events in the group, and therefore will always
1951 * schedule first.
1952 */
1953 if (!group_leader)
1954 return 0;
1955
1956 if (!perf_aux_output_match(event, group_leader))
1957 return 0;
1958
1959 if (!atomic_long_inc_not_zero(&group_leader->refcount))
1960 return 0;
1961
1962 /*
1963 * Link aux_outputs to their aux event; this is undone in
1964 * perf_group_detach() by perf_put_aux_event(). When the
1965 * group in torn down, the aux_output events loose their
1966 * link to the aux_event and can't schedule any more.
1967 */
1968 event->aux_event = group_leader;
1969
1970 return 1;
1971}
1972
Peter Zijlstra8a495422010-05-27 15:47:49 +02001973static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001974{
1975 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01001976 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001977
Peter Zijlstra66681282017-11-13 14:28:38 +01001978 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001979
Peter Zijlstra8a495422010-05-27 15:47:49 +02001980 /*
1981 * We can have double detach due to exit/hot-unplug + close.
1982 */
1983 if (!(event->attach_state & PERF_ATTACH_GROUP))
1984 return;
1985
1986 event->attach_state &= ~PERF_ATTACH_GROUP;
1987
Alexander Shishkinab437622019-08-06 11:46:00 +03001988 perf_put_aux_event(event);
1989
Peter Zijlstra8a495422010-05-27 15:47:49 +02001990 /*
1991 * If this is a sibling, remove it from its group.
1992 */
1993 if (event->group_leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001994 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001995 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001996 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001997 }
1998
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999 /*
2000 * If this was a group event with sibling events then
2001 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02002002 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002003 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01002004 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002005
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002006 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00002007 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002008
2009 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002010 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002011
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002012 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002013 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01002014
2015 if (sibling->state == PERF_EVENT_STATE_ACTIVE) {
2016 struct list_head *list = sibling->attr.pinned ?
2017 &ctx->pinned_active : &ctx->flexible_active;
2018
2019 list_add_tail(&sibling->active_list, list);
2020 }
Alexey Budankov8e1a2032017-09-08 11:47:03 +03002021 }
2022
Peter Zijlstra652884f2015-01-23 11:20:10 +01002023 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002024 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002025
2026out:
2027 perf_event__header_size(event->group_leader);
2028
Peter Zijlstraedb39592018-03-15 17:36:56 +01002029 for_each_sibling_event(tmp, event->group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002030 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002031}
2032
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002033static bool is_orphaned_event(struct perf_event *event)
2034{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01002035 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02002036}
2037
Mark Rutland2c81a642016-06-14 16:10:41 +01002038static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01002039{
2040 struct pmu *pmu = event->pmu;
2041 return pmu->filter_match ? pmu->filter_match(event) : 1;
2042}
2043
Mark Rutland2c81a642016-06-14 16:10:41 +01002044/*
2045 * Check whether we should attempt to schedule an event group based on
2046 * PMU-specific filtering. An event group can consist of HW and SW events,
2047 * potentially with a SW leader, so we must check all the filters, to
2048 * determine whether a group is schedulable:
2049 */
2050static inline int pmu_filter_match(struct perf_event *event)
2051{
Peter Zijlstraedb39592018-03-15 17:36:56 +01002052 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01002053
2054 if (!__pmu_filter_match(event))
2055 return 0;
2056
Peter Zijlstraedb39592018-03-15 17:36:56 +01002057 for_each_sibling_event(sibling, event) {
2058 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01002059 return 0;
2060 }
2061
2062 return 1;
2063}
2064
Stephane Eranianfa66f072010-08-26 16:40:01 +02002065static inline int
2066event_filter_match(struct perf_event *event)
2067{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002068 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2069 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02002070}
2071
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002072static void
2073event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002074 struct perf_cpu_context *cpuctx,
2075 struct perf_event_context *ctx)
2076{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002077 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01002078
2079 WARN_ON_ONCE(event->ctx != ctx);
2080 lockdep_assert_held(&ctx->lock);
2081
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002082 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002083 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002084
Peter Zijlstra66681282017-11-13 14:28:38 +01002085 /*
2086 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2087 * we can schedule events _OUT_ individually through things like
2088 * __perf_remove_from_context().
2089 */
2090 list_del_init(&event->active_list);
2091
Alexander Shishkin44377272013-12-16 14:17:36 +02002092 perf_pmu_disable(event->pmu);
2093
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002094 event->pmu->del(event, 0);
2095 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002096
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002097 if (READ_ONCE(event->pending_disable) >= 0) {
2098 WRITE_ONCE(event->pending_disable, -1);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002099 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002101 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102
2103 if (!is_software_event(event))
2104 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002105 if (!--ctx->nr_active)
2106 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002107 if (event->attr.freq && event->attr.sample_freq)
2108 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002109 if (event->attr.exclusive || !cpuctx->active_oncpu)
2110 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002111
2112 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002113}
2114
2115static void
2116group_sched_out(struct perf_event *group_event,
2117 struct perf_cpu_context *cpuctx,
2118 struct perf_event_context *ctx)
2119{
2120 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002121
2122 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2123 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002124
Mark Rutland3f005e72016-07-26 18:12:21 +01002125 perf_pmu_disable(ctx->pmu);
2126
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002127 event_sched_out(group_event, cpuctx, ctx);
2128
2129 /*
2130 * Schedule out siblings (if any):
2131 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002132 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002133 event_sched_out(event, cpuctx, ctx);
2134
Mark Rutland3f005e72016-07-26 18:12:21 +01002135 perf_pmu_enable(ctx->pmu);
2136
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002137 if (group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002138 cpuctx->exclusive = 0;
2139}
2140
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002141#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002142
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143/*
2144 * Cross CPU call to remove a performance event
2145 *
2146 * We disable the event on the hardware level first. After that we
2147 * remove it from the context list.
2148 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002149static void
2150__perf_remove_from_context(struct perf_event *event,
2151 struct perf_cpu_context *cpuctx,
2152 struct perf_event_context *ctx,
2153 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002155 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002156
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002157 if (ctx->is_active & EVENT_TIME) {
2158 update_context_time(ctx);
2159 update_cgrp_time_from_cpuctx(cpuctx);
2160 }
2161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002162 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002163 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002164 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002165 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002166
Peter Zijlstra39a43642016-01-11 12:46:35 +01002167 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002168 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002169 if (ctx->task) {
2170 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2171 cpuctx->task_ctx = NULL;
2172 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002174}
2175
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002176/*
2177 * Remove the event from a task's (or a CPU's) list of events.
2178 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002179 * If event->ctx is a cloned context, callers must make sure that
2180 * every task struct that event->ctx->task could possibly point to
2181 * remains valid. This is OK when called from perf_release since
2182 * that only calls us on the top-level context, which can't be a clone.
2183 * When called from perf_event_exit_task, it's OK because the
2184 * context has been detached from its task.
2185 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002186static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002187{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002188 struct perf_event_context *ctx = event->ctx;
2189
2190 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002191
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002192 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002193
2194 /*
2195 * The above event_function_call() can NO-OP when it hits
2196 * TASK_TOMBSTONE. In that case we must already have been detached
2197 * from the context (by perf_event_exit_event()) but the grouping
2198 * might still be in-tact.
2199 */
2200 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
2201 if ((flags & DETACH_GROUP) &&
2202 (event->attach_state & PERF_ATTACH_GROUP)) {
2203 /*
2204 * Since in that case we cannot possibly be scheduled, simply
2205 * detach now.
2206 */
2207 raw_spin_lock_irq(&ctx->lock);
2208 perf_group_detach(event);
2209 raw_spin_unlock_irq(&ctx->lock);
2210 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002211}
2212
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002213/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002214 * Cross CPU call to disable a performance event
2215 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002216static void __perf_event_disable(struct perf_event *event,
2217 struct perf_cpu_context *cpuctx,
2218 struct perf_event_context *ctx,
2219 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002220{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002221 if (event->state < PERF_EVENT_STATE_INACTIVE)
2222 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002223
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002224 if (ctx->is_active & EVENT_TIME) {
2225 update_context_time(ctx);
2226 update_cgrp_time_from_event(event);
2227 }
2228
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002229 if (event == event->group_leader)
2230 group_sched_out(event, cpuctx, ctx);
2231 else
2232 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002233
2234 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002235}
2236
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002237/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002238 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002239 *
2240 * If event->ctx is a cloned context, callers must make sure that
2241 * every task struct that event->ctx->task could possibly point to
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03002242 * remains valid. This condition is satisfied when called through
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002243 * perf_event_for_each_child or perf_event_for_each because they
2244 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002245 * goes to exit will block in perf_event_exit_event().
2246 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002247 * When called from perf_pending_event it's OK because event->ctx
2248 * is the current context on this CPU and preemption is disabled,
2249 * hence we can't get into perf_event_task_sched_out for this context.
2250 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002251static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002252{
2253 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002254
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002255 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002256 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002257 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002258 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002259 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002260 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002261
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002262 event_function_call(event, __perf_event_disable, NULL);
2263}
2264
2265void perf_event_disable_local(struct perf_event *event)
2266{
2267 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002268}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002269
2270/*
2271 * Strictly speaking kernel users cannot create groups and therefore this
2272 * interface does not need the perf_event_ctx_lock() magic.
2273 */
2274void perf_event_disable(struct perf_event *event)
2275{
2276 struct perf_event_context *ctx;
2277
2278 ctx = perf_event_ctx_lock(event);
2279 _perf_event_disable(event);
2280 perf_event_ctx_unlock(event, ctx);
2281}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002282EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002283
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002284void perf_event_disable_inatomic(struct perf_event *event)
2285{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02002286 WRITE_ONCE(event->pending_disable, smp_processor_id());
2287 /* can fail, see perf_pending_event_disable() */
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002288 irq_work_queue(&event->pending);
2289}
2290
Stephane Eraniane5d13672011-02-14 11:20:01 +02002291static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002292 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002293{
2294 /*
2295 * use the correct time source for the time snapshot
2296 *
2297 * We could get by without this by leveraging the
2298 * fact that to get to this function, the caller
2299 * has most likely already called update_context_time()
2300 * and update_cgrp_time_xx() and thus both timestamp
2301 * are identical (or very close). Given that tstamp is,
2302 * already adjusted for cgroup, we could say that:
2303 * tstamp - ctx->timestamp
2304 * is equivalent to
2305 * tstamp - cgrp->timestamp.
2306 *
2307 * Then, in perf_output_read(), the calculation would
2308 * work with no changes because:
2309 * - event is guaranteed scheduled in
2310 * - no scheduled out in between
2311 * - thus the timestamp would be the same
2312 *
2313 * But this is a bit hairy.
2314 *
2315 * So instead, we have an explicit cgroup call to remain
2316 * within the time time source all along. We believe it
2317 * is cleaner and simpler to understand.
2318 */
2319 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002320 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002321 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002322 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002323}
2324
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002325#define MAX_INTERRUPTS (~0ULL)
2326
2327static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002328static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002329
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002330static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002331event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002332 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002333 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002334{
Alexander Shishkin44377272013-12-16 14:17:36 +02002335 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002336
Peter Zijlstra63342412014-05-05 11:49:16 +02002337 lockdep_assert_held(&ctx->lock);
2338
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002339 if (event->state <= PERF_EVENT_STATE_OFF)
2340 return 0;
2341
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002342 WRITE_ONCE(event->oncpu, smp_processor_id());
2343 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002344 * Order event::oncpu write to happen before the ACTIVE state is
2345 * visible. This allows perf_event_{stop,read}() to observe the correct
2346 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002347 */
2348 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002349 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002350
2351 /*
2352 * Unthrottle events, since we scheduled we might have missed several
2353 * ticks already, also for a heavily scheduling task there is little
2354 * guarantee it'll get a tick in a timely manner.
2355 */
2356 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2357 perf_log_throttle(event, 1);
2358 event->hw.interrupts = 0;
2359 }
2360
Alexander Shishkin44377272013-12-16 14:17:36 +02002361 perf_pmu_disable(event->pmu);
2362
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002363 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002364
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002365 perf_log_itrace_start(event);
2366
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002367 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002368 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002369 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002370 ret = -EAGAIN;
2371 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372 }
2373
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002374 if (!is_software_event(event))
2375 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002376 if (!ctx->nr_active++)
2377 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002378 if (event->attr.freq && event->attr.sample_freq)
2379 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002380
2381 if (event->attr.exclusive)
2382 cpuctx->exclusive = 1;
2383
Alexander Shishkin44377272013-12-16 14:17:36 +02002384out:
2385 perf_pmu_enable(event->pmu);
2386
2387 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002388}
2389
2390static int
2391group_sched_in(struct perf_event *group_event,
2392 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002393 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394{
Lin Ming6bde9b62010-04-23 13:56:00 +08002395 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002396 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002397
2398 if (group_event->state == PERF_EVENT_STATE_OFF)
2399 return 0;
2400
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002401 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002402
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002403 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002404 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002405 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002406 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002407 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002408
2409 /*
2410 * Schedule in siblings as one group (if any):
2411 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002412 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002413 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002414 partial_group = event;
2415 goto group_error;
2416 }
2417 }
2418
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002419 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002420 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422group_error:
2423 /*
2424 * Groups can be scheduled in as one unit only, so undo any
2425 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002426 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002427 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002428 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002430 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002431
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002432 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002433 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002434 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002435
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002436 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002437
Peter Zijlstra272325c2015-04-15 11:41:58 +02002438 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002440 return -EAGAIN;
2441}
2442
2443/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444 * Work out whether we can put this event group on the CPU now.
2445 */
2446static int group_can_go_on(struct perf_event *event,
2447 struct perf_cpu_context *cpuctx,
2448 int can_add_hw)
2449{
2450 /*
2451 * Groups consisting entirely of software events can always go on.
2452 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002453 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002454 return 1;
2455 /*
2456 * If an exclusive group is already on, no other hardware
2457 * events can go on.
2458 */
2459 if (cpuctx->exclusive)
2460 return 0;
2461 /*
2462 * If this group is exclusive and there are already
2463 * events on the CPU, it can't go on.
2464 */
2465 if (event->attr.exclusive && cpuctx->active_oncpu)
2466 return 0;
2467 /*
2468 * Otherwise, try to add it if all previous groups were able
2469 * to go on.
2470 */
2471 return can_add_hw;
2472}
2473
2474static void add_event_to_ctx(struct perf_event *event,
2475 struct perf_event_context *ctx)
2476{
2477 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002478 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002479}
2480
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002481static void ctx_sched_out(struct perf_event_context *ctx,
2482 struct perf_cpu_context *cpuctx,
2483 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002484static void
2485ctx_sched_in(struct perf_event_context *ctx,
2486 struct perf_cpu_context *cpuctx,
2487 enum event_type_t event_type,
2488 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002489
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002490static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002491 struct perf_event_context *ctx,
2492 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002493{
2494 if (!cpuctx->task_ctx)
2495 return;
2496
2497 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2498 return;
2499
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002500 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002501}
2502
Peter Zijlstradce58552011-04-09 21:17:46 +02002503static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2504 struct perf_event_context *ctx,
2505 struct task_struct *task)
2506{
2507 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2508 if (ctx)
2509 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2510 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2511 if (ctx)
2512 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2513}
2514
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002515/*
2516 * We want to maintain the following priority of scheduling:
2517 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2518 * - task pinned (EVENT_PINNED)
2519 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2520 * - task flexible (EVENT_FLEXIBLE).
2521 *
2522 * In order to avoid unscheduling and scheduling back in everything every
2523 * time an event is added, only do it for the groups of equal priority and
2524 * below.
2525 *
2526 * This can be called after a batch operation on task events, in which case
2527 * event_type is a bit mask of the types of events involved. For CPU events,
2528 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2529 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002530static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002531 struct perf_event_context *task_ctx,
2532 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002533{
Song Liubd903af2018-03-05 21:55:04 -08002534 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002535 bool cpu_event = !!(event_type & EVENT_CPU);
2536
2537 /*
2538 * If pinned groups are involved, flexible groups also need to be
2539 * scheduled out.
2540 */
2541 if (event_type & EVENT_PINNED)
2542 event_type |= EVENT_FLEXIBLE;
2543
Song Liubd903af2018-03-05 21:55:04 -08002544 ctx_event_type = event_type & EVENT_ALL;
2545
Peter Zijlstra3e349502016-01-08 10:01:18 +01002546 perf_pmu_disable(cpuctx->ctx.pmu);
2547 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002548 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2549
2550 /*
2551 * Decide which cpu ctx groups to schedule out based on the types
2552 * of events that caused rescheduling:
2553 * - EVENT_CPU: schedule out corresponding groups;
2554 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2555 * - otherwise, do nothing more.
2556 */
2557 if (cpu_event)
2558 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2559 else if (ctx_event_type & EVENT_PINNED)
2560 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2561
Peter Zijlstra3e349502016-01-08 10:01:18 +01002562 perf_event_sched_in(cpuctx, task_ctx, current);
2563 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002564}
2565
Stephane Eranianc68d2242019-04-08 10:32:51 -07002566void perf_pmu_resched(struct pmu *pmu)
2567{
2568 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2569 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2570
2571 perf_ctx_lock(cpuctx, task_ctx);
2572 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2573 perf_ctx_unlock(cpuctx, task_ctx);
2574}
2575
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002576/*
2577 * Cross CPU call to install and enable a performance event
2578 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002579 * Very similar to remote_function() + event_function() but cannot assume that
2580 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002581 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002582static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002583{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002584 struct perf_event *event = info;
2585 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002586 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002587 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002588 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002589 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002590
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002591 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002592 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002593 raw_spin_lock(&ctx->lock);
2594 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002595
Peter Zijlstra63cae122016-12-09 14:59:00 +01002596 reprogram = (ctx->task == current);
2597
2598 /*
2599 * If the task is running, it must be running on this CPU,
2600 * otherwise we cannot reprogram things.
2601 *
2602 * If its not running, we don't care, ctx->lock will
2603 * serialize against it becoming runnable.
2604 */
2605 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002606 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002607 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002608 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002609
Peter Zijlstra63cae122016-12-09 14:59:00 +01002610 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002611 } else if (task_ctx) {
2612 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002613 }
2614
leilei.lin33801b92018-03-06 17:36:37 +08002615#ifdef CONFIG_CGROUP_PERF
2616 if (is_cgroup_event(event)) {
2617 /*
2618 * If the current cgroup doesn't match the event's
2619 * cgroup, we should not try to schedule it.
2620 */
2621 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2622 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2623 event->cgrp->css.cgroup);
2624 }
2625#endif
2626
Peter Zijlstra63cae122016-12-09 14:59:00 +01002627 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002628 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2629 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002630 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002631 } else {
2632 add_event_to_ctx(event, ctx);
2633 }
2634
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002635unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002636 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002637
Peter Zijlstraa0963092016-02-24 18:45:50 +01002638 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002639}
2640
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002641static bool exclusive_event_installable(struct perf_event *event,
2642 struct perf_event_context *ctx);
2643
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002644/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002645 * Attach a performance event to a context.
2646 *
2647 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002648 */
2649static void
2650perf_install_in_context(struct perf_event_context *ctx,
2651 struct perf_event *event,
2652 int cpu)
2653{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002654 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002655
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002656 lockdep_assert_held(&ctx->mutex);
2657
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03002658 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2659
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002660 if (event->cpu != -1)
2661 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002662
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002663 /*
2664 * Ensures that if we can observe event->ctx, both the event and ctx
2665 * will be 'complete'. See perf_iterate_sb_cpu().
2666 */
2667 smp_store_release(&event->ctx, ctx);
2668
Peter Zijlstraa0963092016-02-24 18:45:50 +01002669 if (!task) {
2670 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002671 return;
2672 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002673
Peter Zijlstraa0963092016-02-24 18:45:50 +01002674 /*
2675 * Should not happen, we validate the ctx is still alive before calling.
2676 */
2677 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2678 return;
2679
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680 /*
2681 * Installing events is tricky because we cannot rely on ctx->is_active
2682 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002683 *
2684 * Instead we use task_curr(), which tells us if the task is running.
2685 * However, since we use task_curr() outside of rq::lock, we can race
2686 * against the actual state. This means the result can be wrong.
2687 *
2688 * If we get a false positive, we retry, this is harmless.
2689 *
2690 * If we get a false negative, things are complicated. If we are after
2691 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2692 * value must be correct. If we're before, it doesn't matter since
2693 * perf_event_context_sched_in() will program the counter.
2694 *
2695 * However, this hinges on the remote context switch having observed
2696 * our task->perf_event_ctxp[] store, such that it will in fact take
2697 * ctx::lock in perf_event_context_sched_in().
2698 *
2699 * We do this by task_function_call(), if the IPI fails to hit the task
2700 * we know any future context switch of task must see the
2701 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002702 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002703
Peter Zijlstraa0963092016-02-24 18:45:50 +01002704 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002705 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2706 * task_cpu() load, such that if the IPI then does not find the task
2707 * running, a future context switch of that task must observe the
2708 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002709 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002710 smp_mb();
2711again:
2712 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002713 return;
2714
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002715 raw_spin_lock_irq(&ctx->lock);
2716 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002717 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2718 /*
2719 * Cannot happen because we already checked above (which also
2720 * cannot happen), and we hold ctx->mutex, which serializes us
2721 * against perf_event_exit_task_context().
2722 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002723 raw_spin_unlock_irq(&ctx->lock);
2724 return;
2725 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002726 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002727 * If the task is not running, ctx->lock will avoid it becoming so,
2728 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002729 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002730 if (task_curr(task)) {
2731 raw_spin_unlock_irq(&ctx->lock);
2732 goto again;
2733 }
2734 add_event_to_ctx(event, ctx);
2735 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002736}
2737
2738/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002739 * Cross CPU call to enable a performance event
2740 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002741static void __perf_event_enable(struct perf_event *event,
2742 struct perf_cpu_context *cpuctx,
2743 struct perf_event_context *ctx,
2744 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002745{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002746 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002747 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002748
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002749 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2750 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002751 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002753 if (ctx->is_active)
2754 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2755
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002756 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002757
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002758 if (!ctx->is_active)
2759 return;
2760
Stephane Eraniane5d13672011-02-14 11:20:01 +02002761 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002762 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002763 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002764 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002765
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002766 /*
2767 * If the event is in a group and isn't the group leader,
2768 * then don't put it on unless the group is on.
2769 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002770 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2771 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002772 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002773 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002774
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002775 task_ctx = cpuctx->task_ctx;
2776 if (ctx->task)
2777 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002778
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002779 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002780}
2781
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002782/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002783 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002784 *
2785 * If event->ctx is a cloned context, callers must make sure that
2786 * every task struct that event->ctx->task could possibly point to
2787 * remains valid. This condition is satisfied when called through
2788 * perf_event_for_each_child or perf_event_for_each as described
2789 * for perf_event_disable.
2790 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002791static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002792{
2793 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002794
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002795 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002796 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2797 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002798 raw_spin_unlock_irq(&ctx->lock);
2799 return;
2800 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002801
2802 /*
2803 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002804 *
2805 * That way, if we see the event in error state below, we know that it
2806 * has gone back into error state, as distinct from the task having
2807 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002808 */
2809 if (event->state == PERF_EVENT_STATE_ERROR)
2810 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002811 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002812
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002813 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002815
2816/*
2817 * See perf_event_disable();
2818 */
2819void perf_event_enable(struct perf_event *event)
2820{
2821 struct perf_event_context *ctx;
2822
2823 ctx = perf_event_ctx_lock(event);
2824 _perf_event_enable(event);
2825 perf_event_ctx_unlock(event, ctx);
2826}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002827EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002828
Alexander Shishkin375637b2016-04-27 18:44:46 +03002829struct stop_event_data {
2830 struct perf_event *event;
2831 unsigned int restart;
2832};
2833
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002834static int __perf_event_stop(void *info)
2835{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002836 struct stop_event_data *sd = info;
2837 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002838
Alexander Shishkin375637b2016-04-27 18:44:46 +03002839 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002840 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2841 return 0;
2842
2843 /* matches smp_wmb() in event_sched_in() */
2844 smp_rmb();
2845
2846 /*
2847 * There is a window with interrupts enabled before we get here,
2848 * so we need to check again lest we try to stop another CPU's event.
2849 */
2850 if (READ_ONCE(event->oncpu) != smp_processor_id())
2851 return -EAGAIN;
2852
2853 event->pmu->stop(event, PERF_EF_UPDATE);
2854
Alexander Shishkin375637b2016-04-27 18:44:46 +03002855 /*
2856 * May race with the actual stop (through perf_pmu_output_stop()),
2857 * but it is only used for events with AUX ring buffer, and such
2858 * events will refuse to restart because of rb::aux_mmap_count==0,
2859 * see comments in perf_aux_output_begin().
2860 *
Tobias Tefke788faab2018-07-09 12:57:15 +02002861 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03002862 * while restarting.
2863 */
2864 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002865 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002866
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002867 return 0;
2868}
2869
Alexander Shishkin767ae082016-09-06 16:23:49 +03002870static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002871{
2872 struct stop_event_data sd = {
2873 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002874 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002875 };
2876 int ret = 0;
2877
2878 do {
2879 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2880 return 0;
2881
2882 /* matches smp_wmb() in event_sched_in() */
2883 smp_rmb();
2884
2885 /*
2886 * We only want to restart ACTIVE events, so if the event goes
2887 * inactive here (event->oncpu==-1), there's nothing more to do;
2888 * fall through with ret==-ENXIO.
2889 */
2890 ret = cpu_function_call(READ_ONCE(event->oncpu),
2891 __perf_event_stop, &sd);
2892 } while (ret == -EAGAIN);
2893
2894 return ret;
2895}
2896
2897/*
2898 * In order to contain the amount of racy and tricky in the address filter
2899 * configuration management, it is a two part process:
2900 *
2901 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2902 * we update the addresses of corresponding vmas in
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02002903 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
Alexander Shishkin375637b2016-04-27 18:44:46 +03002904 * (p2) when an event is scheduled in (pmu::add), it calls
2905 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2906 * if the generation has changed since the previous call.
2907 *
2908 * If (p1) happens while the event is active, we restart it to force (p2).
2909 *
2910 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2911 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2912 * ioctl;
2913 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2914 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2915 * for reading;
2916 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2917 * of exec.
2918 */
2919void perf_event_addr_filters_sync(struct perf_event *event)
2920{
2921 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2922
2923 if (!has_addr_filter(event))
2924 return;
2925
2926 raw_spin_lock(&ifh->lock);
2927 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2928 event->pmu->addr_filters_sync(event);
2929 event->hw.addr_filters_gen = event->addr_filters_gen;
2930 }
2931 raw_spin_unlock(&ifh->lock);
2932}
2933EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2934
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002935static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002936{
2937 /*
2938 * not supported on inherited events
2939 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002940 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002941 return -EINVAL;
2942
2943 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002944 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002945
2946 return 0;
2947}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002948
2949/*
2950 * See perf_event_disable()
2951 */
2952int perf_event_refresh(struct perf_event *event, int refresh)
2953{
2954 struct perf_event_context *ctx;
2955 int ret;
2956
2957 ctx = perf_event_ctx_lock(event);
2958 ret = _perf_event_refresh(event, refresh);
2959 perf_event_ctx_unlock(event, ctx);
2960
2961 return ret;
2962}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002963EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002964
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002965static int perf_event_modify_breakpoint(struct perf_event *bp,
2966 struct perf_event_attr *attr)
2967{
2968 int err;
2969
2970 _perf_event_disable(bp);
2971
2972 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002973
Jiri Olsabf062782018-08-27 11:12:28 +02002974 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002975 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02002976
2977 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002978}
2979
2980static int perf_event_modify_attr(struct perf_event *event,
2981 struct perf_event_attr *attr)
2982{
2983 if (event->attr.type != attr->type)
2984 return -EINVAL;
2985
2986 switch (event->attr.type) {
2987 case PERF_TYPE_BREAKPOINT:
2988 return perf_event_modify_breakpoint(event, attr);
2989 default:
2990 /* Place holder for future additions. */
2991 return -EOPNOTSUPP;
2992 }
2993}
2994
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002995static void ctx_sched_out(struct perf_event_context *ctx,
2996 struct perf_cpu_context *cpuctx,
2997 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002998{
Peter Zijlstra66681282017-11-13 14:28:38 +01002999 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02003000 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003001
3002 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003
Peter Zijlstra39a43642016-01-11 12:46:35 +01003004 if (likely(!ctx->nr_events)) {
3005 /*
3006 * See __perf_remove_from_context().
3007 */
3008 WARN_ON_ONCE(ctx->is_active);
3009 if (ctx->task)
3010 WARN_ON_ONCE(cpuctx->task_ctx);
3011 return;
3012 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003013
Peter Zijlstradb24d332011-04-09 21:17:45 +02003014 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003015 if (!(ctx->is_active & EVENT_ALL))
3016 ctx->is_active = 0;
3017
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003018 if (ctx->task) {
3019 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3020 if (!ctx->is_active)
3021 cpuctx->task_ctx = NULL;
3022 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003023
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003024 /*
3025 * Always update time if it was set; not only when it changes.
3026 * Otherwise we can 'forget' to update time for any but the last
3027 * context we sched out. For example:
3028 *
3029 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3030 * ctx_sched_out(.event_type = EVENT_PINNED)
3031 *
3032 * would only update time for the pinned events.
3033 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003034 if (is_active & EVENT_TIME) {
3035 /* update (and stop) ctx time */
3036 update_context_time(ctx);
3037 update_cgrp_time_from_cpuctx(cpuctx);
3038 }
3039
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02003040 is_active ^= ctx->is_active; /* changed bits */
3041
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003042 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003043 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003044
Ian Rogersfd7d5512019-06-01 01:27:22 -07003045 /*
3046 * If we had been multiplexing, no rotations are necessary, now no events
3047 * are active.
3048 */
3049 ctx->rotate_necessary = 0;
3050
Peter Zijlstra075e0b02011-04-09 21:17:40 +02003051 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003052 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003053 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003054 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003055 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003056
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003057 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003058 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003059 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003060 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003061 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062}
3063
3064/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003065 * Test whether two contexts are equivalent, i.e. whether they have both been
3066 * cloned from the same version of the same context.
3067 *
3068 * Equivalence is measured using a generation number in the context that is
3069 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3070 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071 */
3072static int context_equiv(struct perf_event_context *ctx1,
3073 struct perf_event_context *ctx2)
3074{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003075 lockdep_assert_held(&ctx1->lock);
3076 lockdep_assert_held(&ctx2->lock);
3077
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003078 /* Pinning disables the swap optimization */
3079 if (ctx1->pin_count || ctx2->pin_count)
3080 return 0;
3081
3082 /* If ctx1 is the parent of ctx2 */
3083 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3084 return 1;
3085
3086 /* If ctx2 is the parent of ctx1 */
3087 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3088 return 1;
3089
3090 /*
3091 * If ctx1 and ctx2 have the same parent; we flatten the parent
3092 * hierarchy, see perf_event_init_context().
3093 */
3094 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3095 ctx1->parent_gen == ctx2->parent_gen)
3096 return 1;
3097
3098 /* Unmatched */
3099 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003100}
3101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102static void __perf_event_sync_stat(struct perf_event *event,
3103 struct perf_event *next_event)
3104{
3105 u64 value;
3106
3107 if (!event->attr.inherit_stat)
3108 return;
3109
3110 /*
3111 * Update the event value, we cannot use perf_event_read()
3112 * because we're in the middle of a context switch and have IRQs
3113 * disabled, which upsets smp_call_function_single(), however
3114 * we know the event must be on the current CPU, therefore we
3115 * don't need to use it.
3116 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003117 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003118 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003119
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003120 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003121
3122 /*
3123 * In order to keep per-task stats reliable we need to flip the event
3124 * values when we flip the contexts.
3125 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003126 value = local64_read(&next_event->count);
3127 value = local64_xchg(&event->count, value);
3128 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129
3130 swap(event->total_time_enabled, next_event->total_time_enabled);
3131 swap(event->total_time_running, next_event->total_time_running);
3132
3133 /*
3134 * Since we swizzled the values, update the user visible data too.
3135 */
3136 perf_event_update_userpage(event);
3137 perf_event_update_userpage(next_event);
3138}
3139
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003140static void perf_event_sync_stat(struct perf_event_context *ctx,
3141 struct perf_event_context *next_ctx)
3142{
3143 struct perf_event *event, *next_event;
3144
3145 if (!ctx->nr_stat)
3146 return;
3147
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003148 update_context_time(ctx);
3149
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003150 event = list_first_entry(&ctx->event_list,
3151 struct perf_event, event_entry);
3152
3153 next_event = list_first_entry(&next_ctx->event_list,
3154 struct perf_event, event_entry);
3155
3156 while (&event->event_entry != &ctx->event_list &&
3157 &next_event->event_entry != &next_ctx->event_list) {
3158
3159 __perf_event_sync_stat(event, next_event);
3160
3161 event = list_next_entry(event, event_entry);
3162 next_event = list_next_entry(next_event, event_entry);
3163 }
3164}
3165
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003166static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3167 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003168{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003169 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003170 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003171 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003172 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003173 int do_switch = 1;
3174
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003175 if (likely(!ctx))
3176 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003177
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003178 cpuctx = __get_cpu_context(ctx);
3179 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003180 return;
3181
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003182 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003183 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003184 if (!next_ctx)
3185 goto unlock;
3186
3187 parent = rcu_dereference(ctx->parent_ctx);
3188 next_parent = rcu_dereference(next_ctx->parent_ctx);
3189
3190 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003191 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003192 goto unlock;
3193
3194 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003195 /*
3196 * Looks like the two contexts are clones, so we might be
3197 * able to optimize the context switch. We lock both
3198 * contexts and check that they are clones under the
3199 * lock (including re-checking that neither has been
3200 * uncloned in the meantime). It doesn't matter which
3201 * order we take the locks because no other cpu could
3202 * be trying to lock both of these tasks.
3203 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003204 raw_spin_lock(&ctx->lock);
3205 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003206 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003207 WRITE_ONCE(ctx->task, next);
3208 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003209
3210 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
3211
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003212 /*
3213 * RCU_INIT_POINTER here is safe because we've not
3214 * modified the ctx and the above modification of
3215 * ctx->task and ctx->task_ctx_data are immaterial
3216 * since those values are always verified under
3217 * ctx->lock which we're now holding.
3218 */
3219 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3220 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003222 do_switch = 0;
3223
3224 perf_event_sync_stat(ctx, next_ctx);
3225 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003226 raw_spin_unlock(&next_ctx->lock);
3227 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003228 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003229unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003230 rcu_read_unlock();
3231
3232 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003233 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003234 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003235 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003236 }
3237}
3238
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003239static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3240
Yan, Zhengba532502014-11-04 21:55:58 -05003241void perf_sched_cb_dec(struct pmu *pmu)
3242{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003243 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3244
Yan, Zhengba532502014-11-04 21:55:58 -05003245 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003246
3247 if (!--cpuctx->sched_cb_usage)
3248 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003249}
3250
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003251
Yan, Zhengba532502014-11-04 21:55:58 -05003252void perf_sched_cb_inc(struct pmu *pmu)
3253{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003254 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3255
3256 if (!cpuctx->sched_cb_usage++)
3257 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3258
Yan, Zhengba532502014-11-04 21:55:58 -05003259 this_cpu_inc(perf_sched_cb_usages);
3260}
3261
3262/*
3263 * This function provides the context switch callback to the lower code
3264 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003265 *
3266 * This callback is relevant even to per-cpu events; for example multi event
3267 * PEBS requires this to provide PID/TID information. This requires we flush
3268 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003269 */
3270static void perf_pmu_sched_task(struct task_struct *prev,
3271 struct task_struct *next,
3272 bool sched_in)
3273{
3274 struct perf_cpu_context *cpuctx;
3275 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05003276
3277 if (prev == next)
3278 return;
3279
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003280 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08003281 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05003282
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003283 if (WARN_ON_ONCE(!pmu->sched_task))
3284 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05003285
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003286 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3287 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05003288
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003289 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003290
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003291 perf_pmu_enable(pmu);
3292 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003293 }
Yan, Zhengba532502014-11-04 21:55:58 -05003294}
3295
Adrian Hunter45ac1402015-07-21 12:44:02 +03003296static void perf_event_switch(struct task_struct *task,
3297 struct task_struct *next_prev, bool sched_in);
3298
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003299#define for_each_task_context_nr(ctxn) \
3300 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3301
3302/*
3303 * Called from scheduler to remove the events of the current task,
3304 * with interrupts disabled.
3305 *
3306 * We stop each event and update the event value in event->count.
3307 *
3308 * This does not protect us against NMI, but disable()
3309 * sets the disabled bit in the control field of event _before_
3310 * accessing the event control register. If a NMI hits, then it will
3311 * not restart the event.
3312 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003313void __perf_event_task_sched_out(struct task_struct *task,
3314 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003315{
3316 int ctxn;
3317
Yan, Zhengba532502014-11-04 21:55:58 -05003318 if (__this_cpu_read(perf_sched_cb_usages))
3319 perf_pmu_sched_task(task, next, false);
3320
Adrian Hunter45ac1402015-07-21 12:44:02 +03003321 if (atomic_read(&nr_switch_events))
3322 perf_event_switch(task, next, false);
3323
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003324 for_each_task_context_nr(ctxn)
3325 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003326
3327 /*
3328 * if cgroup events exist on this CPU, then we need
3329 * to check if we have to switch out PMU state.
3330 * cgroup event are system-wide mode only
3331 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003332 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003333 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003334}
3335
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003336/*
3337 * Called with IRQs disabled
3338 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003339static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3340 enum event_type_t event_type)
3341{
3342 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003343}
3344
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003345static int visit_groups_merge(struct perf_event_groups *groups, int cpu,
3346 int (*func)(struct perf_event *, void *), void *data)
3347{
3348 struct perf_event **evt, *evt1, *evt2;
3349 int ret;
3350
3351 evt1 = perf_event_groups_first(groups, -1);
3352 evt2 = perf_event_groups_first(groups, cpu);
3353
3354 while (evt1 || evt2) {
3355 if (evt1 && evt2) {
3356 if (evt1->group_index < evt2->group_index)
3357 evt = &evt1;
3358 else
3359 evt = &evt2;
3360 } else if (evt1) {
3361 evt = &evt1;
3362 } else {
3363 evt = &evt2;
3364 }
3365
3366 ret = func(*evt, data);
3367 if (ret)
3368 return ret;
3369
3370 *evt = perf_event_groups_next(*evt);
3371 }
3372
3373 return 0;
3374}
3375
3376struct sched_in_data {
3377 struct perf_event_context *ctx;
3378 struct perf_cpu_context *cpuctx;
3379 int can_add_hw;
3380};
3381
3382static int pinned_sched_in(struct perf_event *event, void *data)
3383{
3384 struct sched_in_data *sid = data;
3385
3386 if (event->state <= PERF_EVENT_STATE_OFF)
3387 return 0;
3388
3389 if (!event_filter_match(event))
3390 return 0;
3391
Peter Zijlstra66681282017-11-13 14:28:38 +01003392 if (group_can_go_on(event, sid->cpuctx, sid->can_add_hw)) {
3393 if (!group_sched_in(event, sid->cpuctx, sid->ctx))
3394 list_add_tail(&event->active_list, &sid->ctx->pinned_active);
3395 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003396
3397 /*
3398 * If this pinned group hasn't been scheduled,
3399 * put it in error state.
3400 */
3401 if (event->state == PERF_EVENT_STATE_INACTIVE)
3402 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
3403
3404 return 0;
3405}
3406
3407static int flexible_sched_in(struct perf_event *event, void *data)
3408{
3409 struct sched_in_data *sid = data;
3410
3411 if (event->state <= PERF_EVENT_STATE_OFF)
3412 return 0;
3413
3414 if (!event_filter_match(event))
3415 return 0;
3416
3417 if (group_can_go_on(event, sid->cpuctx, sid->can_add_hw)) {
Ian Rogersfd7d5512019-06-01 01:27:22 -07003418 int ret = group_sched_in(event, sid->cpuctx, sid->ctx);
3419 if (ret) {
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003420 sid->can_add_hw = 0;
Ian Rogersfd7d5512019-06-01 01:27:22 -07003421 sid->ctx->rotate_necessary = 1;
3422 return 0;
3423 }
3424 list_add_tail(&event->active_list, &sid->ctx->flexible_active);
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003425 }
3426
3427 return 0;
3428}
3429
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003430static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003431ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003432 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433{
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003434 struct sched_in_data sid = {
3435 .ctx = ctx,
3436 .cpuctx = cpuctx,
3437 .can_add_hw = 1,
3438 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003439
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003440 visit_groups_merge(&ctx->pinned_groups,
3441 smp_processor_id(),
3442 pinned_sched_in, &sid);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003443}
3444
3445static void
3446ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003447 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003448{
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003449 struct sched_in_data sid = {
3450 .ctx = ctx,
3451 .cpuctx = cpuctx,
3452 .can_add_hw = 1,
3453 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003454
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003455 visit_groups_merge(&ctx->flexible_groups,
3456 smp_processor_id(),
3457 flexible_sched_in, &sid);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003458}
3459
3460static void
3461ctx_sched_in(struct perf_event_context *ctx,
3462 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003463 enum event_type_t event_type,
3464 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003465{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003466 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003467 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003468
Peter Zijlstrac994d612016-01-08 09:20:23 +01003469 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003470
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003471 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003472 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003473
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003474 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003475 if (ctx->task) {
3476 if (!is_active)
3477 cpuctx->task_ctx = ctx;
3478 else
3479 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3480 }
3481
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003482 is_active ^= ctx->is_active; /* changed bits */
3483
3484 if (is_active & EVENT_TIME) {
3485 /* start ctx time */
3486 now = perf_clock();
3487 ctx->timestamp = now;
3488 perf_cgroup_set_timestamp(task, ctx);
3489 }
3490
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003491 /*
3492 * First go through the list and put on any pinned groups
3493 * in order to give them the best chance of going on.
3494 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003495 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003496 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003497
3498 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003499 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003500 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003501}
3502
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003503static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003504 enum event_type_t event_type,
3505 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003506{
3507 struct perf_event_context *ctx = &cpuctx->ctx;
3508
Stephane Eraniane5d13672011-02-14 11:20:01 +02003509 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003510}
3511
Stephane Eraniane5d13672011-02-14 11:20:01 +02003512static void perf_event_context_sched_in(struct perf_event_context *ctx,
3513 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003514{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003515 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003516
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003517 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003518 if (cpuctx->task_ctx == ctx)
3519 return;
3520
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003521 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003522 /*
3523 * We must check ctx->nr_events while holding ctx->lock, such
3524 * that we serialize against perf_install_in_context().
3525 */
3526 if (!ctx->nr_events)
3527 goto unlock;
3528
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003529 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003530 /*
3531 * We want to keep the following priority order:
3532 * cpu pinned (that don't need to move), task pinned,
3533 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003534 *
3535 * However, if task's ctx is not carrying any pinned
3536 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003537 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003538 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003539 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003540 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003541 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003542
3543unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003544 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003545}
3546
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003547/*
3548 * Called from scheduler to add the events of the current task
3549 * with interrupts disabled.
3550 *
3551 * We restore the event value and then enable it.
3552 *
3553 * This does not protect us against NMI, but enable()
3554 * sets the enabled bit in the control field of event _before_
3555 * accessing the event control register. If a NMI hits, then it will
3556 * keep the event running.
3557 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003558void __perf_event_task_sched_in(struct task_struct *prev,
3559 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003560{
3561 struct perf_event_context *ctx;
3562 int ctxn;
3563
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003564 /*
3565 * If cgroup events exist on this CPU, then we need to check if we have
3566 * to switch in PMU state; cgroup event are system-wide mode only.
3567 *
3568 * Since cgroup events are CPU events, we must schedule these in before
3569 * we schedule in the task events.
3570 */
3571 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3572 perf_cgroup_sched_in(prev, task);
3573
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003574 for_each_task_context_nr(ctxn) {
3575 ctx = task->perf_event_ctxp[ctxn];
3576 if (likely(!ctx))
3577 continue;
3578
Stephane Eraniane5d13672011-02-14 11:20:01 +02003579 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003580 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003581
Adrian Hunter45ac1402015-07-21 12:44:02 +03003582 if (atomic_read(&nr_switch_events))
3583 perf_event_switch(task, prev, true);
3584
Yan, Zhengba532502014-11-04 21:55:58 -05003585 if (__this_cpu_read(perf_sched_cb_usages))
3586 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003587}
3588
Peter Zijlstraabd50712010-01-26 18:50:16 +01003589static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3590{
3591 u64 frequency = event->attr.sample_freq;
3592 u64 sec = NSEC_PER_SEC;
3593 u64 divisor, dividend;
3594
3595 int count_fls, nsec_fls, frequency_fls, sec_fls;
3596
3597 count_fls = fls64(count);
3598 nsec_fls = fls64(nsec);
3599 frequency_fls = fls64(frequency);
3600 sec_fls = 30;
3601
3602 /*
3603 * We got @count in @nsec, with a target of sample_freq HZ
3604 * the target period becomes:
3605 *
3606 * @count * 10^9
3607 * period = -------------------
3608 * @nsec * sample_freq
3609 *
3610 */
3611
3612 /*
3613 * Reduce accuracy by one bit such that @a and @b converge
3614 * to a similar magnitude.
3615 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003616#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003617do { \
3618 if (a##_fls > b##_fls) { \
3619 a >>= 1; \
3620 a##_fls--; \
3621 } else { \
3622 b >>= 1; \
3623 b##_fls--; \
3624 } \
3625} while (0)
3626
3627 /*
3628 * Reduce accuracy until either term fits in a u64, then proceed with
3629 * the other, so that finally we can do a u64/u64 division.
3630 */
3631 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3632 REDUCE_FLS(nsec, frequency);
3633 REDUCE_FLS(sec, count);
3634 }
3635
3636 if (count_fls + sec_fls > 64) {
3637 divisor = nsec * frequency;
3638
3639 while (count_fls + sec_fls > 64) {
3640 REDUCE_FLS(count, sec);
3641 divisor >>= 1;
3642 }
3643
3644 dividend = count * sec;
3645 } else {
3646 dividend = count * sec;
3647
3648 while (nsec_fls + frequency_fls > 64) {
3649 REDUCE_FLS(nsec, frequency);
3650 dividend >>= 1;
3651 }
3652
3653 divisor = nsec * frequency;
3654 }
3655
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003656 if (!divisor)
3657 return dividend;
3658
Peter Zijlstraabd50712010-01-26 18:50:16 +01003659 return div64_u64(dividend, divisor);
3660}
3661
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003662static DEFINE_PER_CPU(int, perf_throttled_count);
3663static DEFINE_PER_CPU(u64, perf_throttled_seq);
3664
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003665static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003666{
3667 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003668 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669 s64 delta;
3670
Peter Zijlstraabd50712010-01-26 18:50:16 +01003671 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003672
3673 delta = (s64)(period - hwc->sample_period);
3674 delta = (delta + 7) / 8; /* low pass filter */
3675
3676 sample_period = hwc->sample_period + delta;
3677
3678 if (!sample_period)
3679 sample_period = 1;
3680
3681 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003682
Peter Zijlstrae7850592010-05-21 14:43:08 +02003683 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003684 if (disable)
3685 event->pmu->stop(event, PERF_EF_UPDATE);
3686
Peter Zijlstrae7850592010-05-21 14:43:08 +02003687 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003688
3689 if (disable)
3690 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003691 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003692}
3693
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003694/*
3695 * combine freq adjustment with unthrottling to avoid two passes over the
3696 * events. At the same time, make sure, having freq events does not change
3697 * the rate of unthrottling as that would introduce bias.
3698 */
3699static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3700 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003701{
3702 struct perf_event *event;
3703 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003704 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003705 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003706
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003707 /*
3708 * only need to iterate over all events iff:
3709 * - context have events in frequency mode (needs freq adjust)
3710 * - there are events to unthrottle on this cpu
3711 */
3712 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003713 return;
3714
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003715 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003716 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003717
Paul Mackerras03541f82009-10-14 16:58:03 +11003718 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003719 if (event->state != PERF_EVENT_STATE_ACTIVE)
3720 continue;
3721
Stephane Eranian5632ab12011-01-03 18:20:01 +02003722 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003723 continue;
3724
Alexander Shishkin44377272013-12-16 14:17:36 +02003725 perf_pmu_disable(event->pmu);
3726
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003727 hwc = &event->hw;
3728
Jiri Olsaae23bff2013-08-24 16:45:54 +02003729 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003730 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003731 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003732 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003733 }
3734
3735 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003736 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003737
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003738 /*
3739 * stop the event and update event->count
3740 */
3741 event->pmu->stop(event, PERF_EF_UPDATE);
3742
Peter Zijlstrae7850592010-05-21 14:43:08 +02003743 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003744 delta = now - hwc->freq_count_stamp;
3745 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003747 /*
3748 * restart the event
3749 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003750 * we have stopped the event so tell that
3751 * to perf_adjust_period() to avoid stopping it
3752 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003753 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003754 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003755 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003756
3757 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003758 next:
3759 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003760 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003761
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003762 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003763 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003764}
3765
3766/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003767 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003768 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003769static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003770{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003771 /*
3772 * Rotate the first entry last of non-pinned groups. Rotation might be
3773 * disabled by the inheritance code.
3774 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003775 if (ctx->rotate_disable)
3776 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003777
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003778 perf_event_groups_delete(&ctx->flexible_groups, event);
3779 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003780}
3781
Song Liu7fa343b72019-10-08 09:59:49 -07003782/* pick an event from the flexible_groups to rotate */
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003783static inline struct perf_event *
Song Liu7fa343b72019-10-08 09:59:49 -07003784ctx_event_to_rotate(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003785{
Song Liu7fa343b72019-10-08 09:59:49 -07003786 struct perf_event *event;
3787
3788 /* pick the first active flexible event */
3789 event = list_first_entry_or_null(&ctx->flexible_active,
3790 struct perf_event, active_list);
3791
3792 /* if no active flexible event, pick the first event */
3793 if (!event) {
3794 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
3795 typeof(*event), group_node);
3796 }
3797
3798 return event;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003799}
3800
3801static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
3802{
3803 struct perf_event *cpu_event = NULL, *task_event = NULL;
Ian Rogersfd7d5512019-06-01 01:27:22 -07003804 struct perf_event_context *task_ctx = NULL;
3805 int cpu_rotate, task_rotate;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003806
3807 /*
3808 * Since we run this from IRQ context, nobody can install new
3809 * events, thus the event count values are stable.
3810 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003811
Ian Rogersfd7d5512019-06-01 01:27:22 -07003812 cpu_rotate = cpuctx->ctx.rotate_necessary;
3813 task_ctx = cpuctx->task_ctx;
3814 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003815
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003816 if (!(cpu_rotate || task_rotate))
3817 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003818
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003819 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003820 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003821
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003822 if (task_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07003823 task_event = ctx_event_to_rotate(task_ctx);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003824 if (cpu_rotate)
Song Liu7fa343b72019-10-08 09:59:49 -07003825 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003826
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003827 /*
3828 * As per the order given at ctx_resched() first 'pop' task flexible
3829 * and then, if needed CPU flexible.
3830 */
Ian Rogersfd7d5512019-06-01 01:27:22 -07003831 if (task_event || (task_ctx && cpu_event))
3832 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003833 if (cpu_event)
3834 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003835
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003836 if (task_event)
Ian Rogersfd7d5512019-06-01 01:27:22 -07003837 rotate_ctx(task_ctx, task_event);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003838 if (cpu_event)
3839 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003840
Ian Rogersfd7d5512019-06-01 01:27:22 -07003841 perf_event_sched_in(cpuctx, task_ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003842
3843 perf_pmu_enable(cpuctx->ctx.pmu);
3844 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02003845
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003846 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003847}
3848
3849void perf_event_task_tick(void)
3850{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003851 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3852 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003853 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003854
Frederic Weisbecker16444642017-11-06 16:01:24 +01003855 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003856
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003857 __this_cpu_inc(perf_throttled_seq);
3858 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003859 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003860
Mark Rutland2fde4f92015-01-07 15:01:54 +00003861 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003862 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003863}
3864
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003865static int event_enable_on_exec(struct perf_event *event,
3866 struct perf_event_context *ctx)
3867{
3868 if (!event->attr.enable_on_exec)
3869 return 0;
3870
3871 event->attr.enable_on_exec = 0;
3872 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3873 return 0;
3874
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003875 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003876
3877 return 1;
3878}
3879
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003880/*
3881 * Enable all of a task's events that have been marked enable-on-exec.
3882 * This expects task == current.
3883 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003884static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003885{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003886 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003887 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003888 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003889 struct perf_event *event;
3890 unsigned long flags;
3891 int enabled = 0;
3892
3893 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003894 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003895 if (!ctx || !ctx->nr_events)
3896 goto out;
3897
Peter Zijlstra3e349502016-01-08 10:01:18 +01003898 cpuctx = __get_cpu_context(ctx);
3899 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003900 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003901 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003902 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003903 event_type |= get_event_type(event);
3904 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003905
3906 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003907 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003908 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003909 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003910 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003911 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003912 } else {
3913 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003914 }
3915 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003916
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003917out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003918 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003919
3920 if (clone_ctx)
3921 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003922}
3923
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003924struct perf_read_data {
3925 struct perf_event *event;
3926 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003927 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003928};
3929
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003930static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003931{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003932 u16 local_pkg, event_pkg;
3933
3934 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003935 int local_cpu = smp_processor_id();
3936
3937 event_pkg = topology_physical_package_id(event_cpu);
3938 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003939
3940 if (event_pkg == local_pkg)
3941 return local_cpu;
3942 }
3943
3944 return event_cpu;
3945}
3946
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003947/*
3948 * Cross CPU call to read the hardware event
3949 */
3950static void __perf_event_read(void *info)
3951{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003952 struct perf_read_data *data = info;
3953 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003954 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003955 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003956 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003957
3958 /*
3959 * If this is a task context, we need to check whether it is
3960 * the current task context of this cpu. If not it has been
3961 * scheduled out before the smp call arrived. In that case
3962 * event->count would have been updated to a recent sample
3963 * when the event was scheduled out.
3964 */
3965 if (ctx->task && cpuctx->task_ctx != ctx)
3966 return;
3967
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003968 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003969 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003970 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003971 update_cgrp_time_from_event(event);
3972 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003973
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003974 perf_event_update_time(event);
3975 if (data->group)
3976 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003977
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003978 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003979 goto unlock;
3980
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003981 if (!data->group) {
3982 pmu->read(event);
3983 data->ret = 0;
3984 goto unlock;
3985 }
3986
3987 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3988
3989 pmu->read(event);
3990
Peter Zijlstraedb39592018-03-15 17:36:56 +01003991 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003992 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3993 /*
3994 * Use sibling's PMU rather than @event's since
3995 * sibling could be on different (eg: software) PMU.
3996 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003997 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003998 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003999 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07004000
4001 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004002
4003unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004004 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004005}
4006
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004007static inline u64 perf_event_count(struct perf_event *event)
4008{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07004009 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004010}
4011
Kaixu Xiaffe86902015-08-06 07:02:32 +00004012/*
4013 * NMI-safe method to read a local event, that is an event that
4014 * is:
4015 * - either for the current task, or for this CPU
4016 * - does not have inherit set, for inherited task events
4017 * will not be local and we cannot read them atomically
4018 * - must not have a pmu::count method
4019 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07004020int perf_event_read_local(struct perf_event *event, u64 *value,
4021 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00004022{
4023 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004024 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004025
4026 /*
4027 * Disabling interrupts avoids all counter scheduling (context
4028 * switches, timer based rotation and IPIs).
4029 */
4030 local_irq_save(flags);
4031
Kaixu Xiaffe86902015-08-06 07:02:32 +00004032 /*
4033 * It must not be an event with inherit set, we cannot read
4034 * all child counters from atomic context.
4035 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004036 if (event->attr.inherit) {
4037 ret = -EOPNOTSUPP;
4038 goto out;
4039 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004040
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004041 /* If this is a per-task event, it must be for current */
4042 if ((event->attach_state & PERF_ATTACH_TASK) &&
4043 event->hw.target != current) {
4044 ret = -EINVAL;
4045 goto out;
4046 }
4047
4048 /* If this is a per-CPU event, it must be for this CPU */
4049 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4050 event->cpu != smp_processor_id()) {
4051 ret = -EINVAL;
4052 goto out;
4053 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00004054
Reinette Chatrebefb1b32018-09-19 10:29:06 -07004055 /* If this is a pinned event it must be running on this CPU */
4056 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4057 ret = -EBUSY;
4058 goto out;
4059 }
4060
Kaixu Xiaffe86902015-08-06 07:02:32 +00004061 /*
4062 * If the event is currently on this CPU, its either a per-task event,
4063 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4064 * oncpu == -1).
4065 */
4066 if (event->oncpu == smp_processor_id())
4067 event->pmu->read(event);
4068
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004069 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004070 if (enabled || running) {
4071 u64 now = event->shadow_ctx_time + perf_clock();
4072 u64 __enabled, __running;
4073
4074 __perf_update_times(event, now, &__enabled, &__running);
4075 if (enabled)
4076 *enabled = __enabled;
4077 if (running)
4078 *running = __running;
4079 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004080out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00004081 local_irq_restore(flags);
4082
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07004083 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00004084}
4085
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004086static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004087{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004088 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004089 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004090
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004091 /*
4092 * If event is enabled and currently active on a CPU, update the
4093 * value in the event structure:
4094 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004095again:
4096 if (state == PERF_EVENT_STATE_ACTIVE) {
4097 struct perf_read_data data;
4098
4099 /*
4100 * Orders the ->state and ->oncpu loads such that if we see
4101 * ACTIVE we must also see the right ->oncpu.
4102 *
4103 * Matches the smp_wmb() from event_sched_in().
4104 */
4105 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004106
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004107 event_cpu = READ_ONCE(event->oncpu);
4108 if ((unsigned)event_cpu >= nr_cpu_ids)
4109 return 0;
4110
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004111 data = (struct perf_read_data){
4112 .event = event,
4113 .group = group,
4114 .ret = 0,
4115 };
4116
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004117 preempt_disable();
4118 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004119
Peter Zijlstra58763142016-08-30 10:15:03 +02004120 /*
4121 * Purposely ignore the smp_call_function_single() return
4122 * value.
4123 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004124 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004125 * scheduled out and that will have updated the event count.
4126 *
4127 * Therefore, either way, we'll have an up-to-date event count
4128 * after this.
4129 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004130 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4131 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004132 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004133
4134 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004135 struct perf_event_context *ctx = event->ctx;
4136 unsigned long flags;
4137
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004138 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004139 state = event->state;
4140 if (state != PERF_EVENT_STATE_INACTIVE) {
4141 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4142 goto again;
4143 }
4144
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004145 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004146 * May read while context is not active (e.g., thread is
4147 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004148 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004149 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004150 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004151 update_cgrp_time_from_event(event);
4152 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004153
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004154 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004155 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004156 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004157 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004158 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004159
4160 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004161}
4162
4163/*
4164 * Initialize the perf_event context in a task_struct:
4165 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004166static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004168 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004169 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004170 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004171 perf_event_groups_init(&ctx->pinned_groups);
4172 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004174 INIT_LIST_HEAD(&ctx->pinned_active);
4175 INIT_LIST_HEAD(&ctx->flexible_active);
Elena Reshetova8c94abb2019-01-28 14:27:26 +02004176 refcount_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004177}
4178
Peter Zijlstraeb184472010-09-07 15:55:13 +02004179static struct perf_event_context *
4180alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004181{
4182 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004183
4184 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4185 if (!ctx)
4186 return NULL;
4187
4188 __perf_event_init_context(ctx);
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -07004189 if (task)
4190 ctx->task = get_task_struct(task);
Peter Zijlstraeb184472010-09-07 15:55:13 +02004191 ctx->pmu = pmu;
4192
4193 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004194}
4195
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004196static struct task_struct *
4197find_lively_task_by_vpid(pid_t vpid)
4198{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004199 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004201 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004202 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004203 task = current;
4204 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004205 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004206 if (task)
4207 get_task_struct(task);
4208 rcu_read_unlock();
4209
4210 if (!task)
4211 return ERR_PTR(-ESRCH);
4212
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004213 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004214}
4215
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004216/*
4217 * Returns a matching context with refcount and pincount.
4218 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004219static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004220find_get_context(struct pmu *pmu, struct task_struct *task,
4221 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004222{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004223 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004224 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004225 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004226 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004227 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004228 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004229
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004230 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004231 /* Must be root to operate on a CPU event: */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004232 err = perf_allow_cpu(&event->attr);
4233 if (err)
4234 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004235
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004236 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004237 ctx = &cpuctx->ctx;
4238 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004239 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004240
4241 return ctx;
4242 }
4243
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004244 err = -EINVAL;
4245 ctxn = pmu->task_ctx_nr;
4246 if (ctxn < 0)
4247 goto errout;
4248
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004249 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
4250 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
4251 if (!task_ctx_data) {
4252 err = -ENOMEM;
4253 goto errout;
4254 }
4255 }
4256
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004257retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004258 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004259 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004260 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004261 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004262
4263 if (task_ctx_data && !ctx->task_ctx_data) {
4264 ctx->task_ctx_data = task_ctx_data;
4265 task_ctx_data = NULL;
4266 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004267 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004268
4269 if (clone_ctx)
4270 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004271 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004272 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004273 err = -ENOMEM;
4274 if (!ctx)
4275 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004276
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004277 if (task_ctx_data) {
4278 ctx->task_ctx_data = task_ctx_data;
4279 task_ctx_data = NULL;
4280 }
4281
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004282 err = 0;
4283 mutex_lock(&task->perf_event_mutex);
4284 /*
4285 * If it has already passed perf_event_exit_task().
4286 * we must see PF_EXITING, it takes this mutex too.
4287 */
4288 if (task->flags & PF_EXITING)
4289 err = -ESRCH;
4290 else if (task->perf_event_ctxp[ctxn])
4291 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004292 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004293 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004294 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004295 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004296 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004297 mutex_unlock(&task->perf_event_mutex);
4298
4299 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004300 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004301
4302 if (err == -EAGAIN)
4303 goto retry;
4304 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004305 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306 }
4307
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004308 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004309 return ctx;
4310
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004311errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004312 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004313 return ERR_PTR(err);
4314}
4315
Li Zefan6fb29152009-10-15 11:21:42 +08004316static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004317static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08004318
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004319static void free_event_rcu(struct rcu_head *head)
4320{
4321 struct perf_event *event;
4322
4323 event = container_of(head, struct perf_event, rcu_head);
4324 if (event->ns)
4325 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004326 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004327 kfree(event);
4328}
4329
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004330static void ring_buffer_attach(struct perf_event *event,
4331 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004332
Kan Liangf2fb6be2016-03-23 11:24:37 -07004333static void detach_sb_event(struct perf_event *event)
4334{
4335 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4336
4337 raw_spin_lock(&pel->lock);
4338 list_del_rcu(&event->sb_list);
4339 raw_spin_unlock(&pel->lock);
4340}
4341
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004342static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004343{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004344 struct perf_event_attr *attr = &event->attr;
4345
Kan Liangf2fb6be2016-03-23 11:24:37 -07004346 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004347 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004348
4349 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004350 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004351
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004352 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4353 attr->comm || attr->comm_exec ||
Song Liu76193a92019-01-17 08:15:13 -08004354 attr->task || attr->ksymbol ||
Song Liu21038f22019-02-25 16:20:05 -08004355 attr->context_switch ||
4356 attr->bpf_event)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004357 return true;
4358 return false;
4359}
4360
4361static void unaccount_pmu_sb_event(struct perf_event *event)
4362{
4363 if (is_sb_event(event))
4364 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004365}
4366
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004367static void unaccount_event_cpu(struct perf_event *event, int cpu)
4368{
4369 if (event->parent)
4370 return;
4371
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004372 if (is_cgroup_event(event))
4373 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4374}
4375
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004376#ifdef CONFIG_NO_HZ_FULL
4377static DEFINE_SPINLOCK(nr_freq_lock);
4378#endif
4379
4380static void unaccount_freq_event_nohz(void)
4381{
4382#ifdef CONFIG_NO_HZ_FULL
4383 spin_lock(&nr_freq_lock);
4384 if (atomic_dec_and_test(&nr_freq_events))
4385 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4386 spin_unlock(&nr_freq_lock);
4387#endif
4388}
4389
4390static void unaccount_freq_event(void)
4391{
4392 if (tick_nohz_full_enabled())
4393 unaccount_freq_event_nohz();
4394 else
4395 atomic_dec(&nr_freq_events);
4396}
4397
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004398static void unaccount_event(struct perf_event *event)
4399{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004400 bool dec = false;
4401
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004402 if (event->parent)
4403 return;
4404
4405 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004406 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004407 if (event->attr.mmap || event->attr.mmap_data)
4408 atomic_dec(&nr_mmap_events);
4409 if (event->attr.comm)
4410 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304411 if (event->attr.namespaces)
4412 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004413 if (event->attr.task)
4414 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004415 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004416 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004417 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004418 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004419 atomic_dec(&nr_switch_events);
4420 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004421 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004422 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004423 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004424 dec = true;
Song Liu76193a92019-01-17 08:15:13 -08004425 if (event->attr.ksymbol)
4426 atomic_dec(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -08004427 if (event->attr.bpf_event)
4428 atomic_dec(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004429
Peter Zijlstra9107c892016-02-24 18:45:45 +01004430 if (dec) {
4431 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4432 schedule_delayed_work(&perf_sched_work, HZ);
4433 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004434
4435 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004436
4437 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004438}
4439
Peter Zijlstra9107c892016-02-24 18:45:45 +01004440static void perf_sched_delayed(struct work_struct *work)
4441{
4442 mutex_lock(&perf_sched_mutex);
4443 if (atomic_dec_and_test(&perf_sched_count))
4444 static_branch_disable(&perf_sched_events);
4445 mutex_unlock(&perf_sched_mutex);
4446}
4447
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004448/*
4449 * The following implement mutual exclusion of events on "exclusive" pmus
4450 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4451 * at a time, so we disallow creating events that might conflict, namely:
4452 *
4453 * 1) cpu-wide events in the presence of per-task events,
4454 * 2) per-task events in the presence of cpu-wide events,
4455 * 3) two matching events on the same context.
4456 *
4457 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004458 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004459 */
4460static int exclusive_event_init(struct perf_event *event)
4461{
4462 struct pmu *pmu = event->pmu;
4463
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004464 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004465 return 0;
4466
4467 /*
4468 * Prevent co-existence of per-task and cpu-wide events on the
4469 * same exclusive pmu.
4470 *
4471 * Negative pmu::exclusive_cnt means there are cpu-wide
4472 * events on this "exclusive" pmu, positive means there are
4473 * per-task events.
4474 *
4475 * Since this is called in perf_event_alloc() path, event::ctx
4476 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4477 * to mean "per-task event", because unlike other attach states it
4478 * never gets cleared.
4479 */
4480 if (event->attach_state & PERF_ATTACH_TASK) {
4481 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4482 return -EBUSY;
4483 } else {
4484 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4485 return -EBUSY;
4486 }
4487
4488 return 0;
4489}
4490
4491static void exclusive_event_destroy(struct perf_event *event)
4492{
4493 struct pmu *pmu = event->pmu;
4494
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004495 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004496 return;
4497
4498 /* see comment in exclusive_event_init() */
4499 if (event->attach_state & PERF_ATTACH_TASK)
4500 atomic_dec(&pmu->exclusive_cnt);
4501 else
4502 atomic_inc(&pmu->exclusive_cnt);
4503}
4504
4505static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4506{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004507 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004508 (e1->cpu == e2->cpu ||
4509 e1->cpu == -1 ||
4510 e2->cpu == -1))
4511 return true;
4512 return false;
4513}
4514
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004515static bool exclusive_event_installable(struct perf_event *event,
4516 struct perf_event_context *ctx)
4517{
4518 struct perf_event *iter_event;
4519 struct pmu *pmu = event->pmu;
4520
Alexander Shishkin8a58dda2019-07-01 14:07:55 +03004521 lockdep_assert_held(&ctx->mutex);
4522
4523 if (!is_exclusive_pmu(pmu))
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004524 return true;
4525
4526 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4527 if (exclusive_event_match(iter_event, event))
4528 return false;
4529 }
4530
4531 return true;
4532}
4533
Alexander Shishkin375637b2016-04-27 18:44:46 +03004534static void perf_addr_filters_splice(struct perf_event *event,
4535 struct list_head *head);
4536
Peter Zijlstra683ede42014-05-05 12:11:24 +02004537static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004538{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004539 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004540
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004541 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004542
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004543 security_perf_event_free(event);
4544
Frederic Weisbecker76369132011-05-19 19:55:04 +02004545 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004546 /*
4547 * Can happen when we close an event with re-directed output.
4548 *
4549 * Since we have a 0 refcount, perf_mmap_close() will skip
4550 * over us; possibly making our ring_buffer_put() the last.
4551 */
4552 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004553 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004554 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004555 }
4556
Stephane Eraniane5d13672011-02-14 11:20:01 +02004557 if (is_cgroup_event(event))
4558 perf_detach_cgroup(event);
4559
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004560 if (!event->parent) {
4561 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4562 put_callchain_buffers();
4563 }
4564
4565 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004566 perf_addr_filters_splice(event, NULL);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02004567 kfree(event->addr_filter_ranges);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004568
4569 if (event->destroy)
4570 event->destroy(event);
4571
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004572 /*
4573 * Must be after ->destroy(), due to uprobe_perf_close() using
4574 * hw.target.
4575 */
Prashant Bhole621b6d22018-04-09 19:03:46 +09004576 if (event->hw.target)
4577 put_task_struct(event->hw.target);
4578
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004579 /*
4580 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4581 * all task references must be cleaned up.
4582 */
4583 if (event->ctx)
4584 put_ctx(event->ctx);
4585
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004586 exclusive_event_destroy(event);
4587 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004588
4589 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004590}
4591
Peter Zijlstra683ede42014-05-05 12:11:24 +02004592/*
4593 * Used to free events which have a known refcount of 1, such as in error paths
4594 * where the event isn't exposed yet and inherited events.
4595 */
4596static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004597{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004598 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4599 "unexpected event refcount: %ld; ptr=%p\n",
4600 atomic_long_read(&event->refcount), event)) {
4601 /* leak to avoid use-after-free */
4602 return;
4603 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004604
Peter Zijlstra683ede42014-05-05 12:11:24 +02004605 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004606}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004607
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004608/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004609 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004610 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004611static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004612{
Peter Zijlstra88821352010-11-09 19:01:43 +01004613 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004614
Peter Zijlstra88821352010-11-09 19:01:43 +01004615 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004616 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004617 * Matches the smp_store_release() in perf_event_exit_task(). If we
4618 * observe !owner it means the list deletion is complete and we can
4619 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004620 * owner->perf_event_mutex.
4621 */
Will Deacon506458e2017-10-24 11:22:48 +01004622 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004623 if (owner) {
4624 /*
4625 * Since delayed_put_task_struct() also drops the last
4626 * task reference we can safely take a new reference
4627 * while holding the rcu_read_lock().
4628 */
4629 get_task_struct(owner);
4630 }
4631 rcu_read_unlock();
4632
4633 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004634 /*
4635 * If we're here through perf_event_exit_task() we're already
4636 * holding ctx->mutex which would be an inversion wrt. the
4637 * normal lock order.
4638 *
4639 * However we can safely take this lock because its the child
4640 * ctx->mutex.
4641 */
4642 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4643
Peter Zijlstra88821352010-11-09 19:01:43 +01004644 /*
4645 * We have to re-check the event->owner field, if it is cleared
4646 * we raced with perf_event_exit_task(), acquiring the mutex
4647 * ensured they're done, and we can proceed with freeing the
4648 * event.
4649 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004650 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004651 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004652 smp_store_release(&event->owner, NULL);
4653 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004654 mutex_unlock(&owner->perf_event_mutex);
4655 put_task_struct(owner);
4656 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004657}
4658
Jiri Olsaf8697762014-08-01 14:33:01 +02004659static void put_event(struct perf_event *event)
4660{
Jiri Olsaf8697762014-08-01 14:33:01 +02004661 if (!atomic_long_dec_and_test(&event->refcount))
4662 return;
4663
Peter Zijlstra683ede42014-05-05 12:11:24 +02004664 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004665}
4666
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004667/*
4668 * Kill an event dead; while event:refcount will preserve the event
4669 * object, it will not preserve its functionality. Once the last 'user'
4670 * gives up the object, we'll destroy the thing.
4671 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004672int perf_event_release_kernel(struct perf_event *event)
4673{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004674 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004675 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01004676 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004677
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004678 /*
4679 * If we got here through err_file: fput(event_file); we will not have
4680 * attached to a context yet.
4681 */
4682 if (!ctx) {
4683 WARN_ON_ONCE(event->attach_state &
4684 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4685 goto no_ctx;
4686 }
4687
Peter Zijlstra88821352010-11-09 19:01:43 +01004688 if (!is_kernel_event(event))
4689 perf_remove_from_owner(event);
4690
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004691 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004692 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004693 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004694
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004695 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004696 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004697 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004698 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004699 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004700 * Anybody acquiring event->child_mutex after the below loop _must_
4701 * also see this, most importantly inherit_event() which will avoid
4702 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004703 *
4704 * Thus this guarantees that we will in fact observe and kill _ALL_
4705 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004706 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004707 event->state = PERF_EVENT_STATE_DEAD;
4708 raw_spin_unlock_irq(&ctx->lock);
4709
4710 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004711
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004712again:
4713 mutex_lock(&event->child_mutex);
4714 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004715
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004716 /*
4717 * Cannot change, child events are not migrated, see the
4718 * comment with perf_event_ctx_lock_nested().
4719 */
Will Deacon506458e2017-10-24 11:22:48 +01004720 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004721 /*
4722 * Since child_mutex nests inside ctx::mutex, we must jump
4723 * through hoops. We start by grabbing a reference on the ctx.
4724 *
4725 * Since the event cannot get freed while we hold the
4726 * child_mutex, the context must also exist and have a !0
4727 * reference count.
4728 */
4729 get_ctx(ctx);
4730
4731 /*
4732 * Now that we have a ctx ref, we can drop child_mutex, and
4733 * acquire ctx::mutex without fear of it going away. Then we
4734 * can re-acquire child_mutex.
4735 */
4736 mutex_unlock(&event->child_mutex);
4737 mutex_lock(&ctx->mutex);
4738 mutex_lock(&event->child_mutex);
4739
4740 /*
4741 * Now that we hold ctx::mutex and child_mutex, revalidate our
4742 * state, if child is still the first entry, it didn't get freed
4743 * and we can continue doing so.
4744 */
4745 tmp = list_first_entry_or_null(&event->child_list,
4746 struct perf_event, child_list);
4747 if (tmp == child) {
4748 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004749 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004750 /*
4751 * This matches the refcount bump in inherit_event();
4752 * this can't be the last reference.
4753 */
4754 put_event(event);
4755 }
4756
4757 mutex_unlock(&event->child_mutex);
4758 mutex_unlock(&ctx->mutex);
4759 put_ctx(ctx);
4760 goto again;
4761 }
4762 mutex_unlock(&event->child_mutex);
4763
Peter Zijlstra82d94852018-01-09 13:10:30 +01004764 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004765 void *var = &child->ctx->refcount;
4766
Peter Zijlstra82d94852018-01-09 13:10:30 +01004767 list_del(&child->child_list);
4768 free_event(child);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +02004769
4770 /*
4771 * Wake any perf_event_free_task() waiting for this event to be
4772 * freed.
4773 */
4774 smp_mb(); /* pairs with wait_var_event() */
4775 wake_up_var(var);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004776 }
4777
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004778no_ctx:
4779 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004780 return 0;
4781}
4782EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4783
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004784/*
4785 * Called when the last reference to the file is gone.
4786 */
Al Viroa6fa9412012-08-20 14:59:25 +01004787static int perf_release(struct inode *inode, struct file *file)
4788{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004789 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004790 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004791}
4792
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004793static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004794{
4795 struct perf_event *child;
4796 u64 total = 0;
4797
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004798 *enabled = 0;
4799 *running = 0;
4800
Peter Zijlstra6f105812009-11-20 22:19:56 +01004801 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004802
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004803 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004804 total += perf_event_count(event);
4805
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004806 *enabled += event->total_time_enabled +
4807 atomic64_read(&event->child_total_time_enabled);
4808 *running += event->total_time_running +
4809 atomic64_read(&event->child_total_time_running);
4810
4811 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004812 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004813 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004814 *enabled += child->total_time_enabled;
4815 *running += child->total_time_running;
4816 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004817 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004818
4819 return total;
4820}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004821
4822u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
4823{
4824 struct perf_event_context *ctx;
4825 u64 count;
4826
4827 ctx = perf_event_ctx_lock(event);
4828 count = __perf_event_read_value(event, enabled, running);
4829 perf_event_ctx_unlock(event, ctx);
4830
4831 return count;
4832}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004833EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004834
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004835static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004836 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004837{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004838 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004839 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004840 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004841 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004842 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004843
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004844 ret = perf_event_read(leader, true);
4845 if (ret)
4846 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004847
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02004848 raw_spin_lock_irqsave(&ctx->lock, flags);
4849
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004850 /*
4851 * Since we co-schedule groups, {enabled,running} times of siblings
4852 * will be identical to those of the leader, so we only publish one
4853 * set.
4854 */
4855 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4856 values[n++] += leader->total_time_enabled +
4857 atomic64_read(&leader->child_total_time_enabled);
4858 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004859
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004860 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4861 values[n++] += leader->total_time_running +
4862 atomic64_read(&leader->child_total_time_running);
4863 }
4864
4865 /*
4866 * Write {count,id} tuples for every sibling.
4867 */
4868 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004869 if (read_format & PERF_FORMAT_ID)
4870 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004871
Peter Zijlstraedb39592018-03-15 17:36:56 +01004872 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004873 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004874 if (read_format & PERF_FORMAT_ID)
4875 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004876 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004877
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004878 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004879 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004880}
4881
4882static int perf_read_group(struct perf_event *event,
4883 u64 read_format, char __user *buf)
4884{
4885 struct perf_event *leader = event->group_leader, *child;
4886 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004887 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004888 u64 *values;
4889
4890 lockdep_assert_held(&ctx->mutex);
4891
4892 values = kzalloc(event->read_size, GFP_KERNEL);
4893 if (!values)
4894 return -ENOMEM;
4895
4896 values[0] = 1 + leader->nr_siblings;
4897
4898 /*
4899 * By locking the child_mutex of the leader we effectively
4900 * lock the child list of all siblings.. XXX explain how.
4901 */
4902 mutex_lock(&leader->child_mutex);
4903
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004904 ret = __perf_read_group_add(leader, read_format, values);
4905 if (ret)
4906 goto unlock;
4907
4908 list_for_each_entry(child, &leader->child_list, child_list) {
4909 ret = __perf_read_group_add(child, read_format, values);
4910 if (ret)
4911 goto unlock;
4912 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004913
4914 mutex_unlock(&leader->child_mutex);
4915
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004916 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004917 if (copy_to_user(buf, values, event->read_size))
4918 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004919 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004920
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004921unlock:
4922 mutex_unlock(&leader->child_mutex);
4923out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004924 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004925 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926}
4927
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004928static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004929 u64 read_format, char __user *buf)
4930{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004931 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004932 u64 values[4];
4933 int n = 0;
4934
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004935 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004936 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4937 values[n++] = enabled;
4938 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4939 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004940 if (read_format & PERF_FORMAT_ID)
4941 values[n++] = primary_event_id(event);
4942
4943 if (copy_to_user(buf, values, n * sizeof(u64)))
4944 return -EFAULT;
4945
4946 return n * sizeof(u64);
4947}
4948
Jiri Olsadc633982014-09-12 13:18:26 +02004949static bool is_event_hup(struct perf_event *event)
4950{
4951 bool no_children;
4952
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004953 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004954 return false;
4955
4956 mutex_lock(&event->child_mutex);
4957 no_children = list_empty(&event->child_list);
4958 mutex_unlock(&event->child_mutex);
4959 return no_children;
4960}
4961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004962/*
4963 * Read the performance event - simple non blocking version for now
4964 */
4965static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004966__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004967{
4968 u64 read_format = event->attr.read_format;
4969 int ret;
4970
4971 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02004972 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004973 * error state (i.e. because it was pinned but it couldn't be
4974 * scheduled on to the CPU at some point).
4975 */
4976 if (event->state == PERF_EVENT_STATE_ERROR)
4977 return 0;
4978
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004979 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004980 return -ENOSPC;
4981
4982 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004983 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004984 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004985 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004986 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004987
4988 return ret;
4989}
4990
4991static ssize_t
4992perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4993{
4994 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004995 struct perf_event_context *ctx;
4996 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004997
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04004998 ret = security_perf_event_read(event);
4999 if (ret)
5000 return ret;
5001
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005002 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07005003 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005004 perf_event_ctx_unlock(event, ctx);
5005
5006 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005007}
5008
Al Viro9dd95742017-07-03 00:42:43 -04005009static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005010{
5011 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005012 struct ring_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08005013 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005014
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02005015 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04005016
Jiri Olsadc633982014-09-12 13:18:26 +02005017 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04005018 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005019
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005020 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005021 * Pin the event->rb by taking event->mmap_mutex; otherwise
5022 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005023 */
5024 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005025 rb = event->rb;
5026 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005027 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005028 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005029 return events;
5030}
5031
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005032static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005033{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07005034 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02005035 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005036 perf_event_update_userpage(event);
5037}
5038
5039/*
5040 * Holding the top-level event's child_mutex means that any
5041 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01005042 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005043 * task existence requirements of perf_event_enable/disable.
5044 */
5045static void perf_event_for_each_child(struct perf_event *event,
5046 void (*func)(struct perf_event *))
5047{
5048 struct perf_event *child;
5049
5050 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005051
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005052 mutex_lock(&event->child_mutex);
5053 func(event);
5054 list_for_each_entry(child, &event->child_list, child_list)
5055 func(child);
5056 mutex_unlock(&event->child_mutex);
5057}
5058
5059static void perf_event_for_each(struct perf_event *event,
5060 void (*func)(struct perf_event *))
5061{
5062 struct perf_event_context *ctx = event->ctx;
5063 struct perf_event *sibling;
5064
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005065 lockdep_assert_held(&ctx->mutex);
5066
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005067 event = event->group_leader;
5068
5069 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01005070 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10005071 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005072}
5073
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005074static void __perf_event_period(struct perf_event *event,
5075 struct perf_cpu_context *cpuctx,
5076 struct perf_event_context *ctx,
5077 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01005078{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005079 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005080 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005081
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005082 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005083 event->attr.sample_freq = value;
5084 } else {
5085 event->attr.sample_period = value;
5086 event->hw.sample_period = value;
5087 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005088
5089 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5090 if (active) {
5091 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01005092 /*
5093 * We could be throttled; unthrottle now to avoid the tick
5094 * trying to unthrottle while we already re-started the event.
5095 */
5096 if (event->hw.interrupts == MAX_INTERRUPTS) {
5097 event->hw.interrupts = 0;
5098 perf_log_throttle(event, 1);
5099 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00005100 event->pmu->stop(event, PERF_EF_UPDATE);
5101 }
5102
5103 local64_set(&event->hw.period_left, 0);
5104
5105 if (active) {
5106 event->pmu->start(event, PERF_EF_RELOAD);
5107 perf_pmu_enable(ctx->pmu);
5108 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005109}
5110
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005111static int perf_event_check_period(struct perf_event *event, u64 value)
5112{
5113 return event->pmu->check_period(event, value);
5114}
5115
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005116static int perf_event_period(struct perf_event *event, u64 __user *arg)
5117{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005118 u64 value;
5119
5120 if (!is_sampling_event(event))
5121 return -EINVAL;
5122
5123 if (copy_from_user(&value, arg, sizeof(value)))
5124 return -EFAULT;
5125
5126 if (!value)
5127 return -EINVAL;
5128
5129 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5130 return -EINVAL;
5131
Jiri Olsa81ec3f32019-02-04 13:35:32 +01005132 if (perf_event_check_period(event, value))
5133 return -EINVAL;
5134
Ravi Bangoria913a90b2019-06-04 09:59:53 +05305135 if (!event->attr.freq && (value & (1ULL << 63)))
5136 return -EINVAL;
5137
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005138 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005139
Peter Zijlstrac7999c62015-08-04 19:22:49 +02005140 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005141}
5142
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005143static const struct file_operations perf_fops;
5144
Al Viro2903ff02012-08-28 12:52:22 -04005145static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005146{
Al Viro2903ff02012-08-28 12:52:22 -04005147 struct fd f = fdget(fd);
5148 if (!f.file)
5149 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005150
Al Viro2903ff02012-08-28 12:52:22 -04005151 if (f.file->f_op != &perf_fops) {
5152 fdput(f);
5153 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005154 }
Al Viro2903ff02012-08-28 12:52:22 -04005155 *p = f;
5156 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005157}
5158
5159static int perf_event_set_output(struct perf_event *event,
5160 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005161static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07005162static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005163static int perf_copy_attr(struct perf_event_attr __user *uattr,
5164 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005165
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005166static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005167{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168 void (*func)(struct perf_event *);
5169 u32 flags = arg;
5170
5171 switch (cmd) {
5172 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005173 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005174 break;
5175 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005176 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005177 break;
5178 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005179 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180 break;
5181
5182 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005183 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005184
5185 case PERF_EVENT_IOC_PERIOD:
5186 return perf_event_period(event, (u64 __user *)arg);
5187
Jiri Olsacf4957f2012-10-24 13:37:58 +02005188 case PERF_EVENT_IOC_ID:
5189 {
5190 u64 id = primary_event_id(event);
5191
5192 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5193 return -EFAULT;
5194 return 0;
5195 }
5196
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005197 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005198 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005199 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005200 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005201 struct perf_event *output_event;
5202 struct fd output;
5203 ret = perf_fget_light(arg, &output);
5204 if (ret)
5205 return ret;
5206 output_event = output.file->private_data;
5207 ret = perf_event_set_output(event, output_event);
5208 fdput(output);
5209 } else {
5210 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005211 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005212 return ret;
5213 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005214
Li Zefan6fb29152009-10-15 11:21:42 +08005215 case PERF_EVENT_IOC_SET_FILTER:
5216 return perf_event_set_filter(event, (void __user *)arg);
5217
Alexei Starovoitov25415172015-03-25 12:49:20 -07005218 case PERF_EVENT_IOC_SET_BPF:
5219 return perf_event_set_bpf_prog(event, arg);
5220
Wang Nan86e79722016-03-28 06:41:29 +00005221 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
5222 struct ring_buffer *rb;
5223
5224 rcu_read_lock();
5225 rb = rcu_dereference(event->rb);
5226 if (!rb || !rb->nr_pages) {
5227 rcu_read_unlock();
5228 return -EINVAL;
5229 }
5230 rb_toggle_paused(rb, !!arg);
5231 rcu_read_unlock();
5232 return 0;
5233 }
Yonghong Songf371b302017-12-11 11:39:02 -08005234
5235 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005236 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005237
5238 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5239 struct perf_event_attr new_attr;
5240 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5241 &new_attr);
5242
5243 if (err)
5244 return err;
5245
5246 return perf_event_modify_attr(event, &new_attr);
5247 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005248 default:
5249 return -ENOTTY;
5250 }
5251
5252 if (flags & PERF_IOC_FLAG_GROUP)
5253 perf_event_for_each(event, func);
5254 else
5255 perf_event_for_each_child(event, func);
5256
5257 return 0;
5258}
5259
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005260static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5261{
5262 struct perf_event *event = file->private_data;
5263 struct perf_event_context *ctx;
5264 long ret;
5265
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005266 /* Treat ioctl like writes as it is likely a mutating operation. */
5267 ret = security_perf_event_write(event);
5268 if (ret)
5269 return ret;
5270
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005271 ctx = perf_event_ctx_lock(event);
5272 ret = _perf_ioctl(event, cmd, arg);
5273 perf_event_ctx_unlock(event, ctx);
5274
5275 return ret;
5276}
5277
Pawel Mollb3f20782014-06-13 16:03:32 +01005278#ifdef CONFIG_COMPAT
5279static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5280 unsigned long arg)
5281{
5282 switch (_IOC_NR(cmd)) {
5283 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5284 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005285 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5286 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005287 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5288 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5289 cmd &= ~IOCSIZE_MASK;
5290 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5291 }
5292 break;
5293 }
5294 return perf_ioctl(file, cmd, arg);
5295}
5296#else
5297# define perf_compat_ioctl NULL
5298#endif
5299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005300int perf_event_task_enable(void)
5301{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005302 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005303 struct perf_event *event;
5304
5305 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005306 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5307 ctx = perf_event_ctx_lock(event);
5308 perf_event_for_each_child(event, _perf_event_enable);
5309 perf_event_ctx_unlock(event, ctx);
5310 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005311 mutex_unlock(&current->perf_event_mutex);
5312
5313 return 0;
5314}
5315
5316int perf_event_task_disable(void)
5317{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005318 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005319 struct perf_event *event;
5320
5321 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005322 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5323 ctx = perf_event_ctx_lock(event);
5324 perf_event_for_each_child(event, _perf_event_disable);
5325 perf_event_ctx_unlock(event, ctx);
5326 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005327 mutex_unlock(&current->perf_event_mutex);
5328
5329 return 0;
5330}
5331
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005332static int perf_event_index(struct perf_event *event)
5333{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005334 if (event->hw.state & PERF_HES_STOPPED)
5335 return 0;
5336
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005337 if (event->state != PERF_EVENT_STATE_ACTIVE)
5338 return 0;
5339
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005340 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005341}
5342
Eric B Munsonc4794292011-06-23 16:34:38 -04005343static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005344 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005345 u64 *enabled,
5346 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005347{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005348 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005349
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005350 *now = perf_clock();
5351 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005352 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005353}
5354
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005355static void perf_event_init_userpage(struct perf_event *event)
5356{
5357 struct perf_event_mmap_page *userpg;
5358 struct ring_buffer *rb;
5359
5360 rcu_read_lock();
5361 rb = rcu_dereference(event->rb);
5362 if (!rb)
5363 goto unlock;
5364
5365 userpg = rb->user_page;
5366
5367 /* Allow new userspace to detect that bit 0 is deprecated */
5368 userpg->cap_bit0_is_deprecated = 1;
5369 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005370 userpg->data_offset = PAGE_SIZE;
5371 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005372
5373unlock:
5374 rcu_read_unlock();
5375}
5376
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005377void __weak arch_perf_update_userpage(
5378 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005379{
5380}
5381
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005382/*
5383 * Callers need to ensure there can be no nesting of this function, otherwise
5384 * the seqlock logic goes bad. We can not serialize this because the arch
5385 * code calls this from NMI context.
5386 */
5387void perf_event_update_userpage(struct perf_event *event)
5388{
5389 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005390 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005391 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005392
5393 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005394 rb = rcu_dereference(event->rb);
5395 if (!rb)
5396 goto unlock;
5397
Eric B Munson0d641202011-06-24 12:26:26 -04005398 /*
5399 * compute total_time_enabled, total_time_running
5400 * based on snapshot values taken when the event
5401 * was last scheduled in.
5402 *
5403 * we cannot simply called update_context_time()
5404 * because of locking issue as we can be called in
5405 * NMI context
5406 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005407 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408
Frederic Weisbecker76369132011-05-19 19:55:04 +02005409 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005410 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005411 * Disable preemption to guarantee consistent time stamps are stored to
5412 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413 */
5414 preempt_disable();
5415 ++userpg->lock;
5416 barrier();
5417 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005418 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005419 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005420 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005421
Eric B Munson0d641202011-06-24 12:26:26 -04005422 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005423 atomic64_read(&event->child_total_time_enabled);
5424
Eric B Munson0d641202011-06-24 12:26:26 -04005425 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005426 atomic64_read(&event->child_total_time_running);
5427
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005428 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005429
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430 barrier();
5431 ++userpg->lock;
5432 preempt_enable();
5433unlock:
5434 rcu_read_unlock();
5435}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005436EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005437
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305438static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005439{
Dave Jiang11bac802017-02-24 14:56:41 -08005440 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005441 struct ring_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305442 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005443
5444 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5445 if (vmf->pgoff == 0)
5446 ret = 0;
5447 return ret;
5448 }
5449
5450 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005451 rb = rcu_dereference(event->rb);
5452 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005453 goto unlock;
5454
5455 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5456 goto unlock;
5457
Frederic Weisbecker76369132011-05-19 19:55:04 +02005458 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005459 if (!vmf->page)
5460 goto unlock;
5461
5462 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005463 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005464 vmf->page->index = vmf->pgoff;
5465
5466 ret = 0;
5467unlock:
5468 rcu_read_unlock();
5469
5470 return ret;
5471}
5472
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005473static void ring_buffer_attach(struct perf_event *event,
5474 struct ring_buffer *rb)
5475{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005476 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005477 unsigned long flags;
5478
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005479 if (event->rb) {
5480 /*
5481 * Should be impossible, we set this when removing
5482 * event->rb_entry and wait/clear when adding event->rb_entry.
5483 */
5484 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005485
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005486 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005487 spin_lock_irqsave(&old_rb->event_lock, flags);
5488 list_del_rcu(&event->rb_entry);
5489 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005490
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005491 event->rcu_batches = get_state_synchronize_rcu();
5492 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005493 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005494
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005495 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005496 if (event->rcu_pending) {
5497 cond_synchronize_rcu(event->rcu_batches);
5498 event->rcu_pending = 0;
5499 }
5500
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005501 spin_lock_irqsave(&rb->event_lock, flags);
5502 list_add_rcu(&event->rb_entry, &rb->event_list);
5503 spin_unlock_irqrestore(&rb->event_lock, flags);
5504 }
5505
Alexander Shishkin767ae082016-09-06 16:23:49 +03005506 /*
5507 * Avoid racing with perf_mmap_close(AUX): stop the event
5508 * before swizzling the event::rb pointer; if it's getting
5509 * unmapped, its aux_mmap_count will be 0 and it won't
5510 * restart. See the comment in __perf_pmu_output_stop().
5511 *
5512 * Data will inevitably be lost when set_output is done in
5513 * mid-air, but then again, whoever does it like this is
5514 * not in for the data anyway.
5515 */
5516 if (has_aux(event))
5517 perf_event_stop(event, 0);
5518
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005519 rcu_assign_pointer(event->rb, rb);
5520
5521 if (old_rb) {
5522 ring_buffer_put(old_rb);
5523 /*
5524 * Since we detached before setting the new rb, so that we
5525 * could attach the new rb, we could have missed a wakeup.
5526 * Provide it now.
5527 */
5528 wake_up_all(&event->waitq);
5529 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005530}
5531
5532static void ring_buffer_wakeup(struct perf_event *event)
5533{
5534 struct ring_buffer *rb;
5535
5536 rcu_read_lock();
5537 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005538 if (rb) {
5539 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5540 wake_up_all(&event->waitq);
5541 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005542 rcu_read_unlock();
5543}
5544
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005545struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005546{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005547 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005548
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005549 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005550 rb = rcu_dereference(event->rb);
5551 if (rb) {
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005552 if (!refcount_inc_not_zero(&rb->refcount))
Frederic Weisbecker76369132011-05-19 19:55:04 +02005553 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005554 }
5555 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005556
Frederic Weisbecker76369132011-05-19 19:55:04 +02005557 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005558}
5559
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005560void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005561{
Elena Reshetovafecb8ed2019-01-28 14:27:27 +02005562 if (!refcount_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005563 return;
5564
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005565 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005566
Frederic Weisbecker76369132011-05-19 19:55:04 +02005567 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005568}
5569
5570static void perf_mmap_open(struct vm_area_struct *vma)
5571{
5572 struct perf_event *event = vma->vm_file->private_data;
5573
5574 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005575 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005576
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005577 if (vma->vm_pgoff)
5578 atomic_inc(&event->rb->aux_mmap_count);
5579
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005580 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005581 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005582}
5583
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005584static void perf_pmu_output_stop(struct perf_event *event);
5585
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005586/*
5587 * A buffer can be mmap()ed multiple times; either directly through the same
5588 * event, or through other events by use of perf_event_set_output().
5589 *
5590 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5591 * the buffer here, where we still have a VM context. This means we need
5592 * to detach all events redirecting to us.
5593 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005594static void perf_mmap_close(struct vm_area_struct *vma)
5595{
5596 struct perf_event *event = vma->vm_file->private_data;
5597
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005598 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005599 struct user_struct *mmap_user = rb->mmap_user;
5600 int mmap_locked = rb->mmap_locked;
5601 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005602
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005603 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005604 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005605
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005606 /*
5607 * rb->aux_mmap_count will always drop before rb->mmap_count and
5608 * event->mmap_count, so it is ok to use event->mmap_mutex to
5609 * serialize with perf_mmap here.
5610 */
5611 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5612 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005613 /*
5614 * Stop all AUX events that are writing to this buffer,
5615 * so that we can free its AUX pages and corresponding PMU
5616 * data. Note that after rb::aux_mmap_count dropped to zero,
5617 * they won't start any more (see perf_aux_output_begin()).
5618 */
5619 perf_pmu_output_stop(event);
5620
5621 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005622 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005623 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005624
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005625 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005626 rb_free_aux(rb);
Elena Reshetovaca3bb3d2019-01-28 14:27:28 +02005627 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005628
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005629 mutex_unlock(&event->mmap_mutex);
5630 }
5631
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005632 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005633
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005634 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005635 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005636
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005637 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005638 mutex_unlock(&event->mmap_mutex);
5639
5640 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005641 if (atomic_read(&rb->mmap_count))
5642 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005643
5644 /*
5645 * No other mmap()s, detach from all other events that might redirect
5646 * into the now unreachable buffer. Somewhat complicated by the
5647 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5648 */
5649again:
5650 rcu_read_lock();
5651 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5652 if (!atomic_long_inc_not_zero(&event->refcount)) {
5653 /*
5654 * This event is en-route to free_event() which will
5655 * detach it and remove it from the list.
5656 */
5657 continue;
5658 }
5659 rcu_read_unlock();
5660
5661 mutex_lock(&event->mmap_mutex);
5662 /*
5663 * Check we didn't race with perf_event_set_output() which can
5664 * swizzle the rb from under us while we were waiting to
5665 * acquire mmap_mutex.
5666 *
5667 * If we find a different rb; ignore this event, a next
5668 * iteration will no longer find it on the list. We have to
5669 * still restart the iteration to make sure we're not now
5670 * iterating the wrong list.
5671 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005672 if (event->rb == rb)
5673 ring_buffer_attach(event, NULL);
5674
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005675 mutex_unlock(&event->mmap_mutex);
5676 put_event(event);
5677
5678 /*
5679 * Restart the iteration; either we're on the wrong list or
5680 * destroyed its integrity by doing a deletion.
5681 */
5682 goto again;
5683 }
5684 rcu_read_unlock();
5685
5686 /*
5687 * It could be there's still a few 0-ref events on the list; they'll
5688 * get cleaned up by free_event() -- they'll also still have their
5689 * ref on the rb and will free it whenever they are done with it.
5690 *
5691 * Aside from that, this buffer is 'fully' detached and unmapped,
5692 * undo the VM accounting.
5693 */
5694
Song Liud44248a2019-09-04 14:46:18 -07005695 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
5696 &mmap_user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005697 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005698 free_uid(mmap_user);
5699
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005700out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005701 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702}
5703
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005704static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005705 .open = perf_mmap_open,
Ingo Molnarfca0c112018-12-03 10:52:21 +01005706 .close = perf_mmap_close, /* non mergeable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707 .fault = perf_mmap_fault,
5708 .page_mkwrite = perf_mmap_fault,
5709};
5710
5711static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5712{
5713 struct perf_event *event = file->private_data;
5714 unsigned long user_locked, user_lock_limit;
5715 struct user_struct *user = current_user();
5716 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005717 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005718 unsigned long vma_size;
5719 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005720 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005721 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005722
Peter Zijlstrac7920612010-05-18 10:33:24 +02005723 /*
5724 * Don't allow mmap() of inherited per-task counters. This would
5725 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005726 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005727 */
5728 if (event->cpu == -1 && event->attr.inherit)
5729 return -EINVAL;
5730
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005731 if (!(vma->vm_flags & VM_SHARED))
5732 return -EINVAL;
5733
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005734 ret = security_perf_event_read(event);
5735 if (ret)
5736 return ret;
5737
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005738 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005739
5740 if (vma->vm_pgoff == 0) {
5741 nr_pages = (vma_size / PAGE_SIZE) - 1;
5742 } else {
5743 /*
5744 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5745 * mapped, all subsequent mappings should have the same size
5746 * and offset. Must be above the normal perf buffer.
5747 */
5748 u64 aux_offset, aux_size;
5749
5750 if (!event->rb)
5751 return -EINVAL;
5752
5753 nr_pages = vma_size / PAGE_SIZE;
5754
5755 mutex_lock(&event->mmap_mutex);
5756 ret = -EINVAL;
5757
5758 rb = event->rb;
5759 if (!rb)
5760 goto aux_unlock;
5761
Mark Rutland6aa7de02017-10-23 14:07:29 -07005762 aux_offset = READ_ONCE(rb->user_page->aux_offset);
5763 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005764
5765 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5766 goto aux_unlock;
5767
5768 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5769 goto aux_unlock;
5770
5771 /* already mapped with a different offset */
5772 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5773 goto aux_unlock;
5774
5775 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5776 goto aux_unlock;
5777
5778 /* already mapped with a different size */
5779 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5780 goto aux_unlock;
5781
5782 if (!is_power_of_2(nr_pages))
5783 goto aux_unlock;
5784
5785 if (!atomic_inc_not_zero(&rb->mmap_count))
5786 goto aux_unlock;
5787
5788 if (rb_has_aux(rb)) {
5789 atomic_inc(&rb->aux_mmap_count);
5790 ret = 0;
5791 goto unlock;
5792 }
5793
5794 atomic_set(&rb->aux_mmap_count, 1);
5795 user_extra = nr_pages;
5796
5797 goto accounting;
5798 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005799
5800 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005801 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005802 * can do bitmasks instead of modulo.
5803 */
Kan Liang2ed11312015-03-02 02:14:26 -05005804 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005805 return -EINVAL;
5806
5807 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5808 return -EINVAL;
5809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005810 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005811again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005812 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005813 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005814 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005815 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005816 goto unlock;
5817 }
5818
5819 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5820 /*
5821 * Raced against perf_mmap_close() through
5822 * perf_event_set_output(). Try again, hope for better
5823 * luck.
5824 */
5825 mutex_unlock(&event->mmap_mutex);
5826 goto again;
5827 }
5828
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005829 goto unlock;
5830 }
5831
5832 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005833
5834accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005835 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5836
5837 /*
5838 * Increase the limit linearly with more CPUs:
5839 */
5840 user_lock_limit *= num_online_cpus();
5841
5842 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5843
Song Liud44248a2019-09-04 14:46:18 -07005844 if (user_locked <= user_lock_limit) {
5845 /* charge all to locked_vm */
5846 } else if (atomic_long_read(&user->locked_vm) >= user_lock_limit) {
5847 /* charge all to pinned_vm */
5848 extra = user_extra;
5849 user_extra = 0;
5850 } else {
5851 /*
5852 * charge locked_vm until it hits user_lock_limit;
5853 * charge the rest from pinned_vm
5854 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005855 extra = user_locked - user_lock_limit;
Song Liud44248a2019-09-04 14:46:18 -07005856 user_extra -= extra;
5857 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005858
Jiri Slaby78d7d402010-03-05 13:42:54 -08005859 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005860 lock_limit >>= PAGE_SHIFT;
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005861 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005862
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04005863 if ((locked > lock_limit) && perf_is_paranoid() &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005864 !capable(CAP_IPC_LOCK)) {
5865 ret = -EPERM;
5866 goto unlock;
5867 }
5868
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005869 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005870
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005871 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005872 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005873
Frederic Weisbecker76369132011-05-19 19:55:04 +02005874 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005875 rb = rb_alloc(nr_pages,
5876 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5877 event->cpu, flags);
5878
5879 if (!rb) {
5880 ret = -ENOMEM;
5881 goto unlock;
5882 }
5883
5884 atomic_set(&rb->mmap_count, 1);
5885 rb->mmap_user = get_current_user();
5886 rb->mmap_locked = extra;
5887
5888 ring_buffer_attach(event, rb);
5889
5890 perf_event_init_userpage(event);
5891 perf_event_update_userpage(event);
5892 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005893 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5894 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005895 if (!ret)
5896 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005897 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005898
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005899unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005900 if (!ret) {
5901 atomic_long_add(user_extra, &user->locked_vm);
Davidlohr Bueso70f8a3c2019-02-06 09:59:15 -08005902 atomic64_add(extra, &vma->vm_mm->pinned_vm);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005903
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005904 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005905 } else if (rb) {
5906 atomic_dec(&rb->mmap_count);
5907 }
5908aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005909 mutex_unlock(&event->mmap_mutex);
5910
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005911 /*
5912 * Since pinned accounting is per vm we cannot allow fork() to copy our
5913 * vma.
5914 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005915 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005916 vma->vm_ops = &perf_mmap_vmops;
5917
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005918 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005919 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005920
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005921 return ret;
5922}
5923
5924static int perf_fasync(int fd, struct file *filp, int on)
5925{
Al Viro496ad9a2013-01-23 17:07:38 -05005926 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005927 struct perf_event *event = filp->private_data;
5928 int retval;
5929
Al Viro59551022016-01-22 15:40:57 -05005930 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005931 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005932 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005933
5934 if (retval < 0)
5935 return retval;
5936
5937 return 0;
5938}
5939
5940static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005941 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005942 .release = perf_release,
5943 .read = perf_read,
5944 .poll = perf_poll,
5945 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005946 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005947 .mmap = perf_mmap,
5948 .fasync = perf_fasync,
5949};
5950
5951/*
5952 * Perf event wakeup
5953 *
5954 * If there's data, ensure we set the poll() state and publish everything
5955 * to user-space before waking everybody up.
5956 */
5957
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005958static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5959{
5960 /* only the parent has fasync state */
5961 if (event->parent)
5962 event = event->parent;
5963 return &event->fasync;
5964}
5965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966void perf_event_wakeup(struct perf_event *event)
5967{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005968 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005969
5970 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005971 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005972 event->pending_kill = 0;
5973 }
5974}
5975
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02005976static void perf_pending_event_disable(struct perf_event *event)
5977{
5978 int cpu = READ_ONCE(event->pending_disable);
5979
5980 if (cpu < 0)
5981 return;
5982
5983 if (cpu == smp_processor_id()) {
5984 WRITE_ONCE(event->pending_disable, -1);
5985 perf_event_disable_local(event);
5986 return;
5987 }
5988
5989 /*
5990 * CPU-A CPU-B
5991 *
5992 * perf_event_disable_inatomic()
5993 * @pending_disable = CPU-A;
5994 * irq_work_queue();
5995 *
5996 * sched-out
5997 * @pending_disable = -1;
5998 *
5999 * sched-in
6000 * perf_event_disable_inatomic()
6001 * @pending_disable = CPU-B;
6002 * irq_work_queue(); // FAILS
6003 *
6004 * irq_work_run()
6005 * perf_pending_event()
6006 *
6007 * But the event runs on CPU-B and wants disabling there.
6008 */
6009 irq_work_queue_on(&event->pending, cpu);
6010}
6011
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006012static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006013{
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006014 struct perf_event *event = container_of(entry, struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01006015 int rctx;
6016
6017 rctx = perf_swevent_get_recursion_context();
6018 /*
6019 * If we 'fail' here, that's OK, it means recursion is already disabled
6020 * and we won't recurse 'further'.
6021 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006022
Peter Zijlstra1d54ad92019-04-04 15:03:00 +02006023 perf_pending_event_disable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006024
6025 if (event->pending_wakeup) {
6026 event->pending_wakeup = 0;
6027 perf_event_wakeup(event);
6028 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01006029
6030 if (rctx >= 0)
6031 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006032}
6033
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006034/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006035 * We assume there is only KVM supporting the callbacks.
6036 * Later on, we might change it to a list if there is
6037 * another virtualization implementation supporting the callbacks.
6038 */
6039struct perf_guest_info_callbacks *perf_guest_cbs;
6040
6041int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6042{
6043 perf_guest_cbs = cbs;
6044 return 0;
6045}
6046EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6047
6048int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6049{
6050 perf_guest_cbs = NULL;
6051 return 0;
6052}
6053EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
6054
Jiri Olsa40189942012-08-07 15:20:37 +02006055static void
6056perf_output_sample_regs(struct perf_output_handle *handle,
6057 struct pt_regs *regs, u64 mask)
6058{
6059 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306060 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02006061
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05306062 bitmap_from_u64(_mask, mask);
6063 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02006064 u64 val;
6065
6066 val = perf_reg_value(regs, bit);
6067 perf_output_put(handle, val);
6068 }
6069}
6070
Stephane Eranian60e23642014-09-24 13:48:37 +02006071static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006072 struct pt_regs *regs,
6073 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02006074{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006075 if (user_mode(regs)) {
6076 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02006077 regs_user->regs = regs;
Peter Zijlstra085ebfe2019-05-29 14:37:24 +02006078 } else if (!(current->flags & PF_KTHREAD)) {
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006079 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006080 } else {
6081 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6082 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02006083 }
6084}
6085
Stephane Eranian60e23642014-09-24 13:48:37 +02006086static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6087 struct pt_regs *regs)
6088{
6089 regs_intr->regs = regs;
6090 regs_intr->abi = perf_reg_abi(current);
6091}
6092
6093
Jiri Olsac5ebced2012-08-07 15:20:40 +02006094/*
6095 * Get remaining task size from user stack pointer.
6096 *
6097 * It'd be better to take stack vma map and limit this more
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006098 * precisely, but there's no way to get it safely under interrupt,
Jiri Olsac5ebced2012-08-07 15:20:40 +02006099 * so using TASK_SIZE as limit.
6100 */
6101static u64 perf_ustack_task_size(struct pt_regs *regs)
6102{
6103 unsigned long addr = perf_user_stack_pointer(regs);
6104
6105 if (!addr || addr >= TASK_SIZE)
6106 return 0;
6107
6108 return TASK_SIZE - addr;
6109}
6110
6111static u16
6112perf_sample_ustack_size(u16 stack_size, u16 header_size,
6113 struct pt_regs *regs)
6114{
6115 u64 task_size;
6116
6117 /* No regs, no stack pointer, no dump. */
6118 if (!regs)
6119 return 0;
6120
6121 /*
6122 * Check if we fit in with the requested stack size into the:
6123 * - TASK_SIZE
6124 * If we don't, we limit the size to the TASK_SIZE.
6125 *
6126 * - remaining sample size
6127 * If we don't, we customize the stack size to
6128 * fit in to the remaining sample size.
6129 */
6130
6131 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6132 stack_size = min(stack_size, (u16) task_size);
6133
6134 /* Current header size plus static size and dynamic size. */
6135 header_size += 2 * sizeof(u64);
6136
6137 /* Do we fit in with the current stack dump size? */
6138 if ((u16) (header_size + stack_size) < header_size) {
6139 /*
6140 * If we overflow the maximum size for the sample,
6141 * we customize the stack dump size to fit in.
6142 */
6143 stack_size = USHRT_MAX - header_size - sizeof(u64);
6144 stack_size = round_up(stack_size, sizeof(u64));
6145 }
6146
6147 return stack_size;
6148}
6149
6150static void
6151perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6152 struct pt_regs *regs)
6153{
6154 /* Case of a kernel thread, nothing to dump */
6155 if (!regs) {
6156 u64 size = 0;
6157 perf_output_put(handle, size);
6158 } else {
6159 unsigned long sp;
6160 unsigned int rem;
6161 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07006162 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02006163
6164 /*
6165 * We dump:
6166 * static size
6167 * - the size requested by user or the best one we can fit
6168 * in to the sample max size
6169 * data
6170 * - user stack dump data
6171 * dynamic size
6172 * - the actual dumped size
6173 */
6174
6175 /* Static size. */
6176 perf_output_put(handle, dump_size);
6177
6178 /* Data. */
6179 sp = perf_user_stack_pointer(regs);
Yabin Cui02e18442018-08-23 15:59:35 -07006180 fs = get_fs();
6181 set_fs(USER_DS);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006182 rem = __output_copy_user(handle, (void *) sp, dump_size);
Yabin Cui02e18442018-08-23 15:59:35 -07006183 set_fs(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006184 dyn_size = dump_size - rem;
6185
6186 perf_output_skip(handle, rem);
6187
6188 /* Dynamic size. */
6189 perf_output_put(handle, dyn_size);
6190 }
6191}
6192
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006193static void __perf_event_header__init_id(struct perf_event_header *header,
6194 struct perf_sample_data *data,
6195 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006196{
6197 u64 sample_type = event->attr.sample_type;
6198
6199 data->type = sample_type;
6200 header->size += event->id_header_size;
6201
6202 if (sample_type & PERF_SAMPLE_TID) {
6203 /* namespace issues */
6204 data->tid_entry.pid = perf_event_pid(event, current);
6205 data->tid_entry.tid = perf_event_tid(event, current);
6206 }
6207
6208 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01006209 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006210
Adrian Hunterff3d5272013-08-27 11:23:07 +03006211 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006212 data->id = primary_event_id(event);
6213
6214 if (sample_type & PERF_SAMPLE_STREAM_ID)
6215 data->stream_id = event->id;
6216
6217 if (sample_type & PERF_SAMPLE_CPU) {
6218 data->cpu_entry.cpu = raw_smp_processor_id();
6219 data->cpu_entry.reserved = 0;
6220 }
6221}
6222
Frederic Weisbecker76369132011-05-19 19:55:04 +02006223void perf_event_header__init_id(struct perf_event_header *header,
6224 struct perf_sample_data *data,
6225 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006226{
6227 if (event->attr.sample_id_all)
6228 __perf_event_header__init_id(header, data, event);
6229}
6230
6231static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6232 struct perf_sample_data *data)
6233{
6234 u64 sample_type = data->type;
6235
6236 if (sample_type & PERF_SAMPLE_TID)
6237 perf_output_put(handle, data->tid_entry);
6238
6239 if (sample_type & PERF_SAMPLE_TIME)
6240 perf_output_put(handle, data->time);
6241
6242 if (sample_type & PERF_SAMPLE_ID)
6243 perf_output_put(handle, data->id);
6244
6245 if (sample_type & PERF_SAMPLE_STREAM_ID)
6246 perf_output_put(handle, data->stream_id);
6247
6248 if (sample_type & PERF_SAMPLE_CPU)
6249 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006250
6251 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6252 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006253}
6254
Frederic Weisbecker76369132011-05-19 19:55:04 +02006255void perf_event__output_id_sample(struct perf_event *event,
6256 struct perf_output_handle *handle,
6257 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006258{
6259 if (event->attr.sample_id_all)
6260 __perf_event__output_id_sample(handle, sample);
6261}
6262
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006263static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006264 struct perf_event *event,
6265 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006266{
6267 u64 read_format = event->attr.read_format;
6268 u64 values[4];
6269 int n = 0;
6270
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006271 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006272 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006273 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006274 atomic64_read(&event->child_total_time_enabled);
6275 }
6276 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006277 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006278 atomic64_read(&event->child_total_time_running);
6279 }
6280 if (read_format & PERF_FORMAT_ID)
6281 values[n++] = primary_event_id(event);
6282
Frederic Weisbecker76369132011-05-19 19:55:04 +02006283 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006284}
6285
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006286static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006287 struct perf_event *event,
6288 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006289{
6290 struct perf_event *leader = event->group_leader, *sub;
6291 u64 read_format = event->attr.read_format;
6292 u64 values[5];
6293 int n = 0;
6294
6295 values[n++] = 1 + leader->nr_siblings;
6296
6297 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006298 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006299
6300 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006301 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006302
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006303 if ((leader != event) &&
6304 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006305 leader->pmu->read(leader);
6306
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006307 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006308 if (read_format & PERF_FORMAT_ID)
6309 values[n++] = primary_event_id(leader);
6310
Frederic Weisbecker76369132011-05-19 19:55:04 +02006311 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006312
Peter Zijlstraedb39592018-03-15 17:36:56 +01006313 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006314 n = 0;
6315
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006316 if ((sub != event) &&
6317 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006318 sub->pmu->read(sub);
6319
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006320 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006321 if (read_format & PERF_FORMAT_ID)
6322 values[n++] = primary_event_id(sub);
6323
Frederic Weisbecker76369132011-05-19 19:55:04 +02006324 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006325 }
6326}
6327
Stephane Eranianeed01522010-10-26 16:08:01 +02006328#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6329 PERF_FORMAT_TOTAL_TIME_RUNNING)
6330
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006331/*
6332 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6333 *
6334 * The problem is that its both hard and excessively expensive to iterate the
6335 * child list, not to mention that its impossible to IPI the children running
6336 * on another CPU, from interrupt/NMI context.
6337 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006338static void perf_output_read(struct perf_output_handle *handle,
6339 struct perf_event *event)
6340{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006341 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006342 u64 read_format = event->attr.read_format;
6343
6344 /*
6345 * compute total_time_enabled, total_time_running
6346 * based on snapshot values taken when the event
6347 * was last scheduled in.
6348 *
6349 * we cannot simply called update_context_time()
6350 * because of locking issue as we are called in
6351 * NMI context
6352 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006353 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006354 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006356 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006357 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006358 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006359 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006360}
6361
6362void perf_output_sample(struct perf_output_handle *handle,
6363 struct perf_event_header *header,
6364 struct perf_sample_data *data,
6365 struct perf_event *event)
6366{
6367 u64 sample_type = data->type;
6368
6369 perf_output_put(handle, *header);
6370
Adrian Hunterff3d5272013-08-27 11:23:07 +03006371 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6372 perf_output_put(handle, data->id);
6373
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006374 if (sample_type & PERF_SAMPLE_IP)
6375 perf_output_put(handle, data->ip);
6376
6377 if (sample_type & PERF_SAMPLE_TID)
6378 perf_output_put(handle, data->tid_entry);
6379
6380 if (sample_type & PERF_SAMPLE_TIME)
6381 perf_output_put(handle, data->time);
6382
6383 if (sample_type & PERF_SAMPLE_ADDR)
6384 perf_output_put(handle, data->addr);
6385
6386 if (sample_type & PERF_SAMPLE_ID)
6387 perf_output_put(handle, data->id);
6388
6389 if (sample_type & PERF_SAMPLE_STREAM_ID)
6390 perf_output_put(handle, data->stream_id);
6391
6392 if (sample_type & PERF_SAMPLE_CPU)
6393 perf_output_put(handle, data->cpu_entry);
6394
6395 if (sample_type & PERF_SAMPLE_PERIOD)
6396 perf_output_put(handle, data->period);
6397
6398 if (sample_type & PERF_SAMPLE_READ)
6399 perf_output_read(handle, event);
6400
6401 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01006402 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006403
Jiri Olsa99e818c2018-01-07 17:03:50 +01006404 size += data->callchain->nr;
6405 size *= sizeof(u64);
6406 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006407 }
6408
6409 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006410 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07006411
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006412 if (raw) {
6413 struct perf_raw_frag *frag = &raw->frag;
6414
6415 perf_output_put(handle, raw->size);
6416 do {
6417 if (frag->copy) {
6418 __output_custom(handle, frag->copy,
6419 frag->data, frag->size);
6420 } else {
6421 __output_copy(handle, frag->data,
6422 frag->size);
6423 }
6424 if (perf_raw_frag_last(frag))
6425 break;
6426 frag = frag->next;
6427 } while (1);
6428 if (frag->pad)
6429 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006430 } else {
6431 struct {
6432 u32 size;
6433 u32 data;
6434 } raw = {
6435 .size = sizeof(u32),
6436 .data = 0,
6437 };
6438 perf_output_put(handle, raw);
6439 }
6440 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006441
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006442 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6443 if (data->br_stack) {
6444 size_t size;
6445
6446 size = data->br_stack->nr
6447 * sizeof(struct perf_branch_entry);
6448
6449 perf_output_put(handle, data->br_stack->nr);
6450 perf_output_copy(handle, data->br_stack->entries, size);
6451 } else {
6452 /*
6453 * we always store at least the value of nr
6454 */
6455 u64 nr = 0;
6456 perf_output_put(handle, nr);
6457 }
6458 }
Jiri Olsa40189942012-08-07 15:20:37 +02006459
6460 if (sample_type & PERF_SAMPLE_REGS_USER) {
6461 u64 abi = data->regs_user.abi;
6462
6463 /*
6464 * If there are no regs to dump, notice it through
6465 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6466 */
6467 perf_output_put(handle, abi);
6468
6469 if (abi) {
6470 u64 mask = event->attr.sample_regs_user;
6471 perf_output_sample_regs(handle,
6472 data->regs_user.regs,
6473 mask);
6474 }
6475 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006476
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006477 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02006478 perf_output_sample_ustack(handle,
6479 data->stack_user_size,
6480 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006481 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01006482
6483 if (sample_type & PERF_SAMPLE_WEIGHT)
6484 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01006485
6486 if (sample_type & PERF_SAMPLE_DATA_SRC)
6487 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006488
Andi Kleenfdfbbd02013-09-20 07:40:39 -07006489 if (sample_type & PERF_SAMPLE_TRANSACTION)
6490 perf_output_put(handle, data->txn);
6491
Stephane Eranian60e23642014-09-24 13:48:37 +02006492 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6493 u64 abi = data->regs_intr.abi;
6494 /*
6495 * If there are no regs to dump, notice it through
6496 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6497 */
6498 perf_output_put(handle, abi);
6499
6500 if (abi) {
6501 u64 mask = event->attr.sample_regs_intr;
6502
6503 perf_output_sample_regs(handle,
6504 data->regs_intr.regs,
6505 mask);
6506 }
6507 }
6508
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006509 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6510 perf_output_put(handle, data->phys_addr);
6511
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006512 if (!event->attr.watermark) {
6513 int wakeup_events = event->attr.wakeup_events;
6514
6515 if (wakeup_events) {
6516 struct ring_buffer *rb = handle->rb;
6517 int events = local_inc_return(&rb->events);
6518
6519 if (events >= wakeup_events) {
6520 local_sub(wakeup_events, &rb->events);
6521 local_inc(&rb->wakeup);
6522 }
6523 }
6524 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006525}
6526
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006527static u64 perf_virt_to_phys(u64 virt)
6528{
6529 u64 phys_addr = 0;
6530 struct page *p = NULL;
6531
6532 if (!virt)
6533 return 0;
6534
6535 if (virt >= TASK_SIZE) {
6536 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6537 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6538 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6539 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6540 } else {
6541 /*
6542 * Walking the pages tables for user address.
6543 * Interrupts are disabled, so it prevents any tear down
6544 * of the page tables.
6545 * Try IRQ-safe __get_user_pages_fast first.
6546 * If failed, leave phys_addr as 0.
6547 */
6548 if ((current->mm != NULL) &&
6549 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6550 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6551
6552 if (p)
6553 put_page(p);
6554 }
6555
6556 return phys_addr;
6557}
6558
Jiri Olsa99e818c2018-01-07 17:03:50 +01006559static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6560
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006561struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006562perf_callchain(struct perf_event *event, struct pt_regs *regs)
6563{
6564 bool kernel = !event->attr.exclude_callchain_kernel;
6565 bool user = !event->attr.exclude_callchain_user;
6566 /* Disallow cross-task user callchains. */
6567 bool crosstask = event->ctx->task && event->ctx->task != current;
6568 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01006569 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006570
6571 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01006572 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006573
Jiri Olsa99e818c2018-01-07 17:03:50 +01006574 callchain = get_perf_callchain(regs, 0, kernel, user,
6575 max_stack, crosstask, true);
6576 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006577}
6578
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006579void perf_prepare_sample(struct perf_event_header *header,
6580 struct perf_sample_data *data,
6581 struct perf_event *event,
6582 struct pt_regs *regs)
6583{
6584 u64 sample_type = event->attr.sample_type;
6585
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006586 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006587 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006588
6589 header->misc = 0;
6590 header->misc |= perf_misc_flags(regs);
6591
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006592 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006593
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006594 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595 data->ip = perf_instruction_pointer(regs);
6596
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006597 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6598 int size = 1;
6599
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006600 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6601 data->callchain = perf_callchain(event, regs);
6602
Jiri Olsa99e818c2018-01-07 17:03:50 +01006603 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006604
6605 header->size += size * sizeof(u64);
6606 }
6607
6608 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006609 struct perf_raw_record *raw = data->raw;
6610 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006612 if (raw) {
6613 struct perf_raw_frag *frag = &raw->frag;
6614 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006615
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006616 do {
6617 sum += frag->size;
6618 if (perf_raw_frag_last(frag))
6619 break;
6620 frag = frag->next;
6621 } while (1);
6622
6623 size = round_up(sum + sizeof(u32), sizeof(u64));
6624 raw->size = size - sizeof(u32);
6625 frag->pad = raw->size - sum;
6626 } else {
6627 size = sizeof(u64);
6628 }
6629
6630 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006631 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006632
6633 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6634 int size = sizeof(u64); /* nr */
6635 if (data->br_stack) {
6636 size += data->br_stack->nr
6637 * sizeof(struct perf_branch_entry);
6638 }
6639 header->size += size;
6640 }
Jiri Olsa40189942012-08-07 15:20:37 +02006641
Peter Zijlstra25657112014-09-24 13:48:42 +02006642 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006643 perf_sample_regs_user(&data->regs_user, regs,
6644 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006645
Jiri Olsa40189942012-08-07 15:20:37 +02006646 if (sample_type & PERF_SAMPLE_REGS_USER) {
6647 /* regs dump ABI info */
6648 int size = sizeof(u64);
6649
Jiri Olsa40189942012-08-07 15:20:37 +02006650 if (data->regs_user.regs) {
6651 u64 mask = event->attr.sample_regs_user;
6652 size += hweight64(mask) * sizeof(u64);
6653 }
6654
6655 header->size += size;
6656 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006657
6658 if (sample_type & PERF_SAMPLE_STACK_USER) {
6659 /*
Roy Ben Shlomo9f014e32019-09-20 20:12:53 +03006660 * Either we need PERF_SAMPLE_STACK_USER bit to be always
Jiri Olsac5ebced2012-08-07 15:20:40 +02006661 * processed as the last one or have additional check added
6662 * in case new sample type is added, because we could eat
6663 * up the rest of the sample size.
6664 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006665 u16 stack_size = event->attr.sample_stack_user;
6666 u16 size = sizeof(u64);
6667
Jiri Olsac5ebced2012-08-07 15:20:40 +02006668 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006669 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006670
6671 /*
6672 * If there is something to dump, add space for the dump
6673 * itself and for the field that tells the dynamic size,
6674 * which is how many have been actually dumped.
6675 */
6676 if (stack_size)
6677 size += sizeof(u64) + stack_size;
6678
6679 data->stack_user_size = stack_size;
6680 header->size += size;
6681 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006682
6683 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6684 /* regs dump ABI info */
6685 int size = sizeof(u64);
6686
6687 perf_sample_regs_intr(&data->regs_intr, regs);
6688
6689 if (data->regs_intr.regs) {
6690 u64 mask = event->attr.sample_regs_intr;
6691
6692 size += hweight64(mask) * sizeof(u64);
6693 }
6694
6695 header->size += size;
6696 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006697
6698 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6699 data->phys_addr = perf_virt_to_phys(data->addr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006700}
6701
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006702static __always_inline int
Wang Nan9ecda412016-04-05 14:11:18 +00006703__perf_event_output(struct perf_event *event,
6704 struct perf_sample_data *data,
6705 struct pt_regs *regs,
6706 int (*output_begin)(struct perf_output_handle *,
6707 struct perf_event *,
6708 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006709{
6710 struct perf_output_handle handle;
6711 struct perf_event_header header;
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006712 int err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006713
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006714 /* protect the callchain buffers */
6715 rcu_read_lock();
6716
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006717 perf_prepare_sample(&header, data, event, regs);
6718
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006719 err = output_begin(&handle, event, header.size);
6720 if (err)
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006721 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006722
6723 perf_output_sample(&handle, &header, data, event);
6724
6725 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006726
6727exit:
6728 rcu_read_unlock();
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006729 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006730}
6731
Wang Nan9ecda412016-04-05 14:11:18 +00006732void
6733perf_event_output_forward(struct perf_event *event,
6734 struct perf_sample_data *data,
6735 struct pt_regs *regs)
6736{
6737 __perf_event_output(event, data, regs, perf_output_begin_forward);
6738}
6739
6740void
6741perf_event_output_backward(struct perf_event *event,
6742 struct perf_sample_data *data,
6743 struct pt_regs *regs)
6744{
6745 __perf_event_output(event, data, regs, perf_output_begin_backward);
6746}
6747
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006748int
Wang Nan9ecda412016-04-05 14:11:18 +00006749perf_event_output(struct perf_event *event,
6750 struct perf_sample_data *data,
6751 struct pt_regs *regs)
6752{
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -03006753 return __perf_event_output(event, data, regs, perf_output_begin);
Wang Nan9ecda412016-04-05 14:11:18 +00006754}
6755
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006756/*
6757 * read event_id
6758 */
6759
6760struct perf_read_event {
6761 struct perf_event_header header;
6762
6763 u32 pid;
6764 u32 tid;
6765};
6766
6767static void
6768perf_event_read_event(struct perf_event *event,
6769 struct task_struct *task)
6770{
6771 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006772 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006773 struct perf_read_event read_event = {
6774 .header = {
6775 .type = PERF_RECORD_READ,
6776 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006777 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006778 },
6779 .pid = perf_event_pid(event, task),
6780 .tid = perf_event_tid(event, task),
6781 };
6782 int ret;
6783
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006784 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006785 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006786 if (ret)
6787 return;
6788
6789 perf_output_put(&handle, read_event);
6790 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006791 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006792
6793 perf_output_end(&handle);
6794}
6795
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006796typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006797
6798static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006799perf_iterate_ctx(struct perf_event_context *ctx,
6800 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006801 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006802{
6803 struct perf_event *event;
6804
6805 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006806 if (!all) {
6807 if (event->state < PERF_EVENT_STATE_INACTIVE)
6808 continue;
6809 if (!event_filter_match(event))
6810 continue;
6811 }
6812
Jiri Olsa67516842013-07-09 18:56:31 +02006813 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006814 }
6815}
6816
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006817static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006818{
6819 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6820 struct perf_event *event;
6821
6822 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006823 /*
6824 * Skip events that are not fully formed yet; ensure that
6825 * if we observe event->ctx, both event and ctx will be
6826 * complete enough. See perf_install_in_context().
6827 */
6828 if (!smp_load_acquire(&event->ctx))
6829 continue;
6830
Kan Liangf2fb6be2016-03-23 11:24:37 -07006831 if (event->state < PERF_EVENT_STATE_INACTIVE)
6832 continue;
6833 if (!event_filter_match(event))
6834 continue;
6835 output(event, data);
6836 }
6837}
6838
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006839/*
6840 * Iterate all events that need to receive side-band events.
6841 *
6842 * For new callers; ensure that account_pmu_sb_event() includes
6843 * your event, otherwise it might not get delivered.
6844 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006845static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006846perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006847 struct perf_event_context *task_ctx)
6848{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006849 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006850 int ctxn;
6851
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006852 rcu_read_lock();
6853 preempt_disable();
6854
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006855 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006856 * If we have task_ctx != NULL we only notify the task context itself.
6857 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006858 * context.
6859 */
6860 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006861 perf_iterate_ctx(task_ctx, output, data, false);
6862 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006863 }
6864
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006865 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006866
6867 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006868 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6869 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006870 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006871 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006872done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006873 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006874 rcu_read_unlock();
6875}
6876
Alexander Shishkin375637b2016-04-27 18:44:46 +03006877/*
6878 * Clear all file-based filters at exec, they'll have to be
6879 * re-instated when/if these objects are mmapped again.
6880 */
6881static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6882{
6883 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6884 struct perf_addr_filter *filter;
6885 unsigned int restart = 0, count = 0;
6886 unsigned long flags;
6887
6888 if (!has_addr_filter(event))
6889 return;
6890
6891 raw_spin_lock_irqsave(&ifh->lock, flags);
6892 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07006893 if (filter->path.dentry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02006894 event->addr_filter_ranges[count].start = 0;
6895 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006896 restart++;
6897 }
6898
6899 count++;
6900 }
6901
6902 if (restart)
6903 event->addr_filters_gen++;
6904 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6905
6906 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006907 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006908}
6909
6910void perf_event_exec(void)
6911{
6912 struct perf_event_context *ctx;
6913 int ctxn;
6914
6915 rcu_read_lock();
6916 for_each_task_context_nr(ctxn) {
6917 ctx = current->perf_event_ctxp[ctxn];
6918 if (!ctx)
6919 continue;
6920
6921 perf_event_enable_on_exec(ctxn);
6922
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006923 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006924 true);
6925 }
6926 rcu_read_unlock();
6927}
6928
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006929struct remote_output {
6930 struct ring_buffer *rb;
6931 int err;
6932};
6933
6934static void __perf_event_output_stop(struct perf_event *event, void *data)
6935{
6936 struct perf_event *parent = event->parent;
6937 struct remote_output *ro = data;
6938 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006939 struct stop_event_data sd = {
6940 .event = event,
6941 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006942
6943 if (!has_aux(event))
6944 return;
6945
6946 if (!parent)
6947 parent = event;
6948
6949 /*
6950 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006951 * ring-buffer, but it will be the child that's actually using it.
6952 *
6953 * We are using event::rb to determine if the event should be stopped,
6954 * however this may race with ring_buffer_attach() (through set_output),
6955 * which will make us skip the event that actually needs to be stopped.
6956 * So ring_buffer_attach() has to stop an aux event before re-assigning
6957 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006958 */
6959 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006960 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006961}
6962
6963static int __perf_pmu_output_stop(void *info)
6964{
6965 struct perf_event *event = info;
6966 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006967 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006968 struct remote_output ro = {
6969 .rb = event->rb,
6970 };
6971
6972 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006973 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006974 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006975 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006976 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006977 rcu_read_unlock();
6978
6979 return ro.err;
6980}
6981
6982static void perf_pmu_output_stop(struct perf_event *event)
6983{
6984 struct perf_event *iter;
6985 int err, cpu;
6986
6987restart:
6988 rcu_read_lock();
6989 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6990 /*
6991 * For per-CPU events, we need to make sure that neither they
6992 * nor their children are running; for cpu==-1 events it's
6993 * sufficient to stop the event itself if it's active, since
6994 * it can't have children.
6995 */
6996 cpu = iter->cpu;
6997 if (cpu == -1)
6998 cpu = READ_ONCE(iter->oncpu);
6999
7000 if (cpu == -1)
7001 continue;
7002
7003 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7004 if (err == -EAGAIN) {
7005 rcu_read_unlock();
7006 goto restart;
7007 }
7008 }
7009 rcu_read_unlock();
7010}
7011
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007012/*
7013 * task tracking -- fork/exit
7014 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02007015 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007016 */
7017
7018struct perf_task_event {
7019 struct task_struct *task;
7020 struct perf_event_context *task_ctx;
7021
7022 struct {
7023 struct perf_event_header header;
7024
7025 u32 pid;
7026 u32 ppid;
7027 u32 tid;
7028 u32 ptid;
7029 u64 time;
7030 } event_id;
7031};
7032
Jiri Olsa67516842013-07-09 18:56:31 +02007033static int perf_event_task_match(struct perf_event *event)
7034{
Stephane Eranian13d7a242013-08-21 12:10:24 +02007035 return event->attr.comm || event->attr.mmap ||
7036 event->attr.mmap2 || event->attr.mmap_data ||
7037 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02007038}
7039
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007040static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007041 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007042{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007043 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007045 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007046 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007047 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01007048
Jiri Olsa67516842013-07-09 18:56:31 +02007049 if (!perf_event_task_match(event))
7050 return;
7051
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007052 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007053
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007054 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007055 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02007056 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007057 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007058
7059 task_event->event_id.pid = perf_event_pid(event, task);
7060 task_event->event_id.ppid = perf_event_pid(event, current);
7061
7062 task_event->event_id.tid = perf_event_tid(event, task);
7063 task_event->event_id.ptid = perf_event_tid(event, current);
7064
Peter Zijlstra34f43922015-02-20 14:05:38 +01007065 task_event->event_id.time = perf_event_clock(event);
7066
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007067 perf_output_put(&handle, task_event->event_id);
7068
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007069 perf_event__output_id_sample(event, &handle, &sample);
7070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007071 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007072out:
7073 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007074}
7075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007076static void perf_event_task(struct task_struct *task,
7077 struct perf_event_context *task_ctx,
7078 int new)
7079{
7080 struct perf_task_event task_event;
7081
7082 if (!atomic_read(&nr_comm_events) &&
7083 !atomic_read(&nr_mmap_events) &&
7084 !atomic_read(&nr_task_events))
7085 return;
7086
7087 task_event = (struct perf_task_event){
7088 .task = task,
7089 .task_ctx = task_ctx,
7090 .event_id = {
7091 .header = {
7092 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
7093 .misc = 0,
7094 .size = sizeof(task_event.event_id),
7095 },
7096 /* .pid */
7097 /* .ppid */
7098 /* .tid */
7099 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01007100 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007101 },
7102 };
7103
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007104 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007105 &task_event,
7106 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007107}
7108
7109void perf_event_fork(struct task_struct *task)
7110{
7111 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05307112 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007113}
7114
7115/*
7116 * comm tracking
7117 */
7118
7119struct perf_comm_event {
7120 struct task_struct *task;
7121 char *comm;
7122 int comm_size;
7123
7124 struct {
7125 struct perf_event_header header;
7126
7127 u32 pid;
7128 u32 tid;
7129 } event_id;
7130};
7131
Jiri Olsa67516842013-07-09 18:56:31 +02007132static int perf_event_comm_match(struct perf_event *event)
7133{
7134 return event->attr.comm;
7135}
7136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007137static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007138 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007139{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007140 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007141 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007142 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007143 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007144 int ret;
7145
Jiri Olsa67516842013-07-09 18:56:31 +02007146 if (!perf_event_comm_match(event))
7147 return;
7148
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007149 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
7150 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007151 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007152
7153 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007154 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007155
7156 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7157 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
7158
7159 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02007160 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007161 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007162
7163 perf_event__output_id_sample(event, &handle, &sample);
7164
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007165 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007166out:
7167 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168}
7169
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007170static void perf_event_comm_event(struct perf_comm_event *comm_event)
7171{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007173 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007174
7175 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01007176 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007177 size = ALIGN(strlen(comm)+1, sizeof(u64));
7178
7179 comm_event->comm = comm;
7180 comm_event->comm_size = size;
7181
7182 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007183
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007184 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007185 comm_event,
7186 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007187}
7188
Adrian Hunter82b89772014-05-28 11:45:04 +03007189void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007190{
7191 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007192
7193 if (!atomic_read(&nr_comm_events))
7194 return;
7195
7196 comm_event = (struct perf_comm_event){
7197 .task = task,
7198 /* .comm */
7199 /* .comm_size */
7200 .event_id = {
7201 .header = {
7202 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03007203 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007204 /* .size */
7205 },
7206 /* .pid */
7207 /* .tid */
7208 },
7209 };
7210
7211 perf_event_comm_event(&comm_event);
7212}
7213
7214/*
Hari Bathinie4222672017-03-08 02:11:36 +05307215 * namespaces tracking
7216 */
7217
7218struct perf_namespaces_event {
7219 struct task_struct *task;
7220
7221 struct {
7222 struct perf_event_header header;
7223
7224 u32 pid;
7225 u32 tid;
7226 u64 nr_namespaces;
7227 struct perf_ns_link_info link_info[NR_NAMESPACES];
7228 } event_id;
7229};
7230
7231static int perf_event_namespaces_match(struct perf_event *event)
7232{
7233 return event->attr.namespaces;
7234}
7235
7236static void perf_event_namespaces_output(struct perf_event *event,
7237 void *data)
7238{
7239 struct perf_namespaces_event *namespaces_event = data;
7240 struct perf_output_handle handle;
7241 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02007242 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05307243 int ret;
7244
7245 if (!perf_event_namespaces_match(event))
7246 return;
7247
7248 perf_event_header__init_id(&namespaces_event->event_id.header,
7249 &sample, event);
7250 ret = perf_output_begin(&handle, event,
7251 namespaces_event->event_id.header.size);
7252 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02007253 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05307254
7255 namespaces_event->event_id.pid = perf_event_pid(event,
7256 namespaces_event->task);
7257 namespaces_event->event_id.tid = perf_event_tid(event,
7258 namespaces_event->task);
7259
7260 perf_output_put(&handle, namespaces_event->event_id);
7261
7262 perf_event__output_id_sample(event, &handle, &sample);
7263
7264 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02007265out:
7266 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05307267}
7268
7269static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7270 struct task_struct *task,
7271 const struct proc_ns_operations *ns_ops)
7272{
7273 struct path ns_path;
7274 struct inode *ns_inode;
7275 void *error;
7276
7277 error = ns_get_path(&ns_path, task, ns_ops);
7278 if (!error) {
7279 ns_inode = ns_path.dentry->d_inode;
7280 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7281 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03007282 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05307283 }
7284}
7285
7286void perf_event_namespaces(struct task_struct *task)
7287{
7288 struct perf_namespaces_event namespaces_event;
7289 struct perf_ns_link_info *ns_link_info;
7290
7291 if (!atomic_read(&nr_namespaces_events))
7292 return;
7293
7294 namespaces_event = (struct perf_namespaces_event){
7295 .task = task,
7296 .event_id = {
7297 .header = {
7298 .type = PERF_RECORD_NAMESPACES,
7299 .misc = 0,
7300 .size = sizeof(namespaces_event.event_id),
7301 },
7302 /* .pid */
7303 /* .tid */
7304 .nr_namespaces = NR_NAMESPACES,
7305 /* .link_info[NR_NAMESPACES] */
7306 },
7307 };
7308
7309 ns_link_info = namespaces_event.event_id.link_info;
7310
7311 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7312 task, &mntns_operations);
7313
7314#ifdef CONFIG_USER_NS
7315 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7316 task, &userns_operations);
7317#endif
7318#ifdef CONFIG_NET_NS
7319 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7320 task, &netns_operations);
7321#endif
7322#ifdef CONFIG_UTS_NS
7323 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7324 task, &utsns_operations);
7325#endif
7326#ifdef CONFIG_IPC_NS
7327 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7328 task, &ipcns_operations);
7329#endif
7330#ifdef CONFIG_PID_NS
7331 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7332 task, &pidns_operations);
7333#endif
7334#ifdef CONFIG_CGROUPS
7335 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7336 task, &cgroupns_operations);
7337#endif
7338
7339 perf_iterate_sb(perf_event_namespaces_output,
7340 &namespaces_event,
7341 NULL);
7342}
7343
7344/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007345 * mmap tracking
7346 */
7347
7348struct perf_mmap_event {
7349 struct vm_area_struct *vma;
7350
7351 const char *file_name;
7352 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007353 int maj, min;
7354 u64 ino;
7355 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007356 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007357
7358 struct {
7359 struct perf_event_header header;
7360
7361 u32 pid;
7362 u32 tid;
7363 u64 start;
7364 u64 len;
7365 u64 pgoff;
7366 } event_id;
7367};
7368
Jiri Olsa67516842013-07-09 18:56:31 +02007369static int perf_event_mmap_match(struct perf_event *event,
7370 void *data)
7371{
7372 struct perf_mmap_event *mmap_event = data;
7373 struct vm_area_struct *vma = mmap_event->vma;
7374 int executable = vma->vm_flags & VM_EXEC;
7375
7376 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02007377 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02007378}
7379
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007380static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007381 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007382{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007383 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007384 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007385 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007386 int size = mmap_event->event_id.header.size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007387 u32 type = mmap_event->event_id.header.type;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007388 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007389
Jiri Olsa67516842013-07-09 18:56:31 +02007390 if (!perf_event_mmap_match(event, data))
7391 return;
7392
Stephane Eranian13d7a242013-08-21 12:10:24 +02007393 if (event->attr.mmap2) {
7394 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7395 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7396 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7397 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03007398 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007399 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7400 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007401 }
7402
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007403 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7404 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007405 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007406 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007407 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007408
7409 mmap_event->event_id.pid = perf_event_pid(event, current);
7410 mmap_event->event_id.tid = perf_event_tid(event, current);
7411
7412 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007413
7414 if (event->attr.mmap2) {
7415 perf_output_put(&handle, mmap_event->maj);
7416 perf_output_put(&handle, mmap_event->min);
7417 perf_output_put(&handle, mmap_event->ino);
7418 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007419 perf_output_put(&handle, mmap_event->prot);
7420 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007421 }
7422
Frederic Weisbecker76369132011-05-19 19:55:04 +02007423 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007424 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007425
7426 perf_event__output_id_sample(event, &handle, &sample);
7427
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007428 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007429out:
7430 mmap_event->event_id.header.size = size;
Stephane Eraniand9c1bb22019-03-07 10:52:33 -08007431 mmap_event->event_id.header.type = type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007432}
7433
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007434static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
7435{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007436 struct vm_area_struct *vma = mmap_event->vma;
7437 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007438 int maj = 0, min = 0;
7439 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007440 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007441 unsigned int size;
7442 char tmp[16];
7443 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007444 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007445
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01007446 if (vma->vm_flags & VM_READ)
7447 prot |= PROT_READ;
7448 if (vma->vm_flags & VM_WRITE)
7449 prot |= PROT_WRITE;
7450 if (vma->vm_flags & VM_EXEC)
7451 prot |= PROT_EXEC;
7452
7453 if (vma->vm_flags & VM_MAYSHARE)
7454 flags = MAP_SHARED;
7455 else
7456 flags = MAP_PRIVATE;
7457
7458 if (vma->vm_flags & VM_DENYWRITE)
7459 flags |= MAP_DENYWRITE;
7460 if (vma->vm_flags & VM_MAYEXEC)
7461 flags |= MAP_EXECUTABLE;
7462 if (vma->vm_flags & VM_LOCKED)
7463 flags |= MAP_LOCKED;
7464 if (vma->vm_flags & VM_HUGETLB)
7465 flags |= MAP_HUGETLB;
7466
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007467 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02007468 struct inode *inode;
7469 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007470
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007471 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007472 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007473 name = "//enomem";
7474 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007475 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007476 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007477 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007478 * need to add enough zero bytes after the string to handle
7479 * the 64bit alignment we do later.
7480 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02007481 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007482 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007483 name = "//toolong";
7484 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007485 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02007486 inode = file_inode(vma->vm_file);
7487 dev = inode->i_sb->s_dev;
7488 ino = inode->i_ino;
7489 gen = inode->i_generation;
7490 maj = MAJOR(dev);
7491 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007492
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007493 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007494 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02007495 if (vma->vm_ops && vma->vm_ops->name) {
7496 name = (char *) vma->vm_ops->name(vma);
7497 if (name)
7498 goto cpy_name;
7499 }
7500
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007501 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007502 if (name)
7503 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007504
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007505 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007506 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007507 name = "[heap]";
7508 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007509 }
7510 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007511 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007512 name = "[stack]";
7513 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007514 }
7515
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007516 name = "//anon";
7517 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007518 }
7519
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007520cpy_name:
7521 strlcpy(tmp, name, sizeof(tmp));
7522 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007523got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007524 /*
7525 * Since our buffer works in 8 byte units we need to align our string
7526 * size to a multiple of 8. However, we must guarantee the tail end is
7527 * zero'd out to avoid leaking random bits to userspace.
7528 */
7529 size = strlen(name)+1;
7530 while (!IS_ALIGNED(size, sizeof(u64)))
7531 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007532
7533 mmap_event->file_name = name;
7534 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007535 mmap_event->maj = maj;
7536 mmap_event->min = min;
7537 mmap_event->ino = ino;
7538 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007539 mmap_event->prot = prot;
7540 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007541
Stephane Eranian2fe85422013-01-24 16:10:39 +01007542 if (!(vma->vm_flags & VM_EXEC))
7543 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
7544
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007545 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
7546
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007547 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007548 mmap_event,
7549 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007550
7551 kfree(buf);
7552}
7553
Alexander Shishkin375637b2016-04-27 18:44:46 +03007554/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03007555 * Check whether inode and address range match filter criteria.
7556 */
7557static bool perf_addr_filter_match(struct perf_addr_filter *filter,
7558 struct file *file, unsigned long offset,
7559 unsigned long size)
7560{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06007561 /* d_inode(NULL) won't be equal to any mapped user-space file */
7562 if (!filter->path.dentry)
7563 return false;
7564
Song Liu9511bce2018-04-17 23:29:07 -07007565 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007566 return false;
7567
7568 if (filter->offset > offset + size)
7569 return false;
7570
7571 if (filter->offset + filter->size < offset)
7572 return false;
7573
7574 return true;
7575}
7576
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007577static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
7578 struct vm_area_struct *vma,
7579 struct perf_addr_filter_range *fr)
7580{
7581 unsigned long vma_size = vma->vm_end - vma->vm_start;
7582 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7583 struct file *file = vma->vm_file;
7584
7585 if (!perf_addr_filter_match(filter, file, off, vma_size))
7586 return false;
7587
7588 if (filter->offset < off) {
7589 fr->start = vma->vm_start;
7590 fr->size = min(vma_size, filter->size - (off - filter->offset));
7591 } else {
7592 fr->start = vma->vm_start + filter->offset - off;
7593 fr->size = min(vma->vm_end - fr->start, filter->size);
7594 }
7595
7596 return true;
7597}
7598
Alexander Shishkin375637b2016-04-27 18:44:46 +03007599static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
7600{
7601 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7602 struct vm_area_struct *vma = data;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007603 struct perf_addr_filter *filter;
7604 unsigned int restart = 0, count = 0;
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007605 unsigned long flags;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007606
7607 if (!has_addr_filter(event))
7608 return;
7609
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007610 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03007611 return;
7612
7613 raw_spin_lock_irqsave(&ifh->lock, flags);
7614 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02007615 if (perf_addr_filter_vma_adjust(filter, vma,
7616 &event->addr_filter_ranges[count]))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007617 restart++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03007618
7619 count++;
7620 }
7621
7622 if (restart)
7623 event->addr_filters_gen++;
7624 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7625
7626 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007627 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007628}
7629
7630/*
7631 * Adjust all task's events' filters to the new vma
7632 */
7633static void perf_addr_filters_adjust(struct vm_area_struct *vma)
7634{
7635 struct perf_event_context *ctx;
7636 int ctxn;
7637
Mathieu Poirier12b40a22016-07-18 10:43:06 -06007638 /*
7639 * Data tracing isn't supported yet and as such there is no need
7640 * to keep track of anything that isn't related to executable code:
7641 */
7642 if (!(vma->vm_flags & VM_EXEC))
7643 return;
7644
Alexander Shishkin375637b2016-04-27 18:44:46 +03007645 rcu_read_lock();
7646 for_each_task_context_nr(ctxn) {
7647 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7648 if (!ctx)
7649 continue;
7650
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007651 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007652 }
7653 rcu_read_unlock();
7654}
7655
Eric B Munson3af9e852010-05-18 15:30:49 +01007656void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007657{
7658 struct perf_mmap_event mmap_event;
7659
7660 if (!atomic_read(&nr_mmap_events))
7661 return;
7662
7663 mmap_event = (struct perf_mmap_event){
7664 .vma = vma,
7665 /* .file_name */
7666 /* .file_size */
7667 .event_id = {
7668 .header = {
7669 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08007670 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007671 /* .size */
7672 },
7673 /* .pid */
7674 /* .tid */
7675 .start = vma->vm_start,
7676 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01007677 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007678 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02007679 /* .maj (attr_mmap2 only) */
7680 /* .min (attr_mmap2 only) */
7681 /* .ino (attr_mmap2 only) */
7682 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007683 /* .prot (attr_mmap2 only) */
7684 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007685 };
7686
Alexander Shishkin375637b2016-04-27 18:44:46 +03007687 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007688 perf_event_mmap_event(&mmap_event);
7689}
7690
Alexander Shishkin68db7e92015-01-14 14:18:15 +02007691void perf_event_aux_event(struct perf_event *event, unsigned long head,
7692 unsigned long size, u64 flags)
7693{
7694 struct perf_output_handle handle;
7695 struct perf_sample_data sample;
7696 struct perf_aux_event {
7697 struct perf_event_header header;
7698 u64 offset;
7699 u64 size;
7700 u64 flags;
7701 } rec = {
7702 .header = {
7703 .type = PERF_RECORD_AUX,
7704 .misc = 0,
7705 .size = sizeof(rec),
7706 },
7707 .offset = head,
7708 .size = size,
7709 .flags = flags,
7710 };
7711 int ret;
7712
7713 perf_event_header__init_id(&rec.header, &sample, event);
7714 ret = perf_output_begin(&handle, event, rec.header.size);
7715
7716 if (ret)
7717 return;
7718
7719 perf_output_put(&handle, rec);
7720 perf_event__output_id_sample(event, &handle, &sample);
7721
7722 perf_output_end(&handle);
7723}
7724
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007725/*
Kan Liangf38b0db2015-05-10 15:13:14 -04007726 * Lost/dropped samples logging
7727 */
7728void perf_log_lost_samples(struct perf_event *event, u64 lost)
7729{
7730 struct perf_output_handle handle;
7731 struct perf_sample_data sample;
7732 int ret;
7733
7734 struct {
7735 struct perf_event_header header;
7736 u64 lost;
7737 } lost_samples_event = {
7738 .header = {
7739 .type = PERF_RECORD_LOST_SAMPLES,
7740 .misc = 0,
7741 .size = sizeof(lost_samples_event),
7742 },
7743 .lost = lost,
7744 };
7745
7746 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
7747
7748 ret = perf_output_begin(&handle, event,
7749 lost_samples_event.header.size);
7750 if (ret)
7751 return;
7752
7753 perf_output_put(&handle, lost_samples_event);
7754 perf_event__output_id_sample(event, &handle, &sample);
7755 perf_output_end(&handle);
7756}
7757
7758/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03007759 * context_switch tracking
7760 */
7761
7762struct perf_switch_event {
7763 struct task_struct *task;
7764 struct task_struct *next_prev;
7765
7766 struct {
7767 struct perf_event_header header;
7768 u32 next_prev_pid;
7769 u32 next_prev_tid;
7770 } event_id;
7771};
7772
7773static int perf_event_switch_match(struct perf_event *event)
7774{
7775 return event->attr.context_switch;
7776}
7777
7778static void perf_event_switch_output(struct perf_event *event, void *data)
7779{
7780 struct perf_switch_event *se = data;
7781 struct perf_output_handle handle;
7782 struct perf_sample_data sample;
7783 int ret;
7784
7785 if (!perf_event_switch_match(event))
7786 return;
7787
7788 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7789 if (event->ctx->task) {
7790 se->event_id.header.type = PERF_RECORD_SWITCH;
7791 se->event_id.header.size = sizeof(se->event_id.header);
7792 } else {
7793 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7794 se->event_id.header.size = sizeof(se->event_id);
7795 se->event_id.next_prev_pid =
7796 perf_event_pid(event, se->next_prev);
7797 se->event_id.next_prev_tid =
7798 perf_event_tid(event, se->next_prev);
7799 }
7800
7801 perf_event_header__init_id(&se->event_id.header, &sample, event);
7802
7803 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7804 if (ret)
7805 return;
7806
7807 if (event->ctx->task)
7808 perf_output_put(&handle, se->event_id.header);
7809 else
7810 perf_output_put(&handle, se->event_id);
7811
7812 perf_event__output_id_sample(event, &handle, &sample);
7813
7814 perf_output_end(&handle);
7815}
7816
7817static void perf_event_switch(struct task_struct *task,
7818 struct task_struct *next_prev, bool sched_in)
7819{
7820 struct perf_switch_event switch_event;
7821
7822 /* N.B. caller checks nr_switch_events != 0 */
7823
7824 switch_event = (struct perf_switch_event){
7825 .task = task,
7826 .next_prev = next_prev,
7827 .event_id = {
7828 .header = {
7829 /* .type */
7830 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7831 /* .size */
7832 },
7833 /* .next_prev_pid */
7834 /* .next_prev_tid */
7835 },
7836 };
7837
Alexey Budankov101592b2018-04-09 10:25:32 +03007838 if (!sched_in && task->state == TASK_RUNNING)
7839 switch_event.event_id.header.misc |=
7840 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
7841
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007842 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007843 &switch_event,
7844 NULL);
7845}
7846
7847/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007848 * IRQ throttle logging
7849 */
7850
7851static void perf_log_throttle(struct perf_event *event, int enable)
7852{
7853 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007854 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007855 int ret;
7856
7857 struct {
7858 struct perf_event_header header;
7859 u64 time;
7860 u64 id;
7861 u64 stream_id;
7862 } throttle_event = {
7863 .header = {
7864 .type = PERF_RECORD_THROTTLE,
7865 .misc = 0,
7866 .size = sizeof(throttle_event),
7867 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007868 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007869 .id = primary_event_id(event),
7870 .stream_id = event->id,
7871 };
7872
7873 if (enable)
7874 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7875
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007876 perf_event_header__init_id(&throttle_event.header, &sample, event);
7877
7878 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007879 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007880 if (ret)
7881 return;
7882
7883 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007884 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007885 perf_output_end(&handle);
7886}
7887
Song Liu76193a92019-01-17 08:15:13 -08007888/*
7889 * ksymbol register/unregister tracking
7890 */
7891
7892struct perf_ksymbol_event {
7893 const char *name;
7894 int name_len;
7895 struct {
7896 struct perf_event_header header;
7897 u64 addr;
7898 u32 len;
7899 u16 ksym_type;
7900 u16 flags;
7901 } event_id;
7902};
7903
7904static int perf_event_ksymbol_match(struct perf_event *event)
7905{
7906 return event->attr.ksymbol;
7907}
7908
7909static void perf_event_ksymbol_output(struct perf_event *event, void *data)
7910{
7911 struct perf_ksymbol_event *ksymbol_event = data;
7912 struct perf_output_handle handle;
7913 struct perf_sample_data sample;
7914 int ret;
7915
7916 if (!perf_event_ksymbol_match(event))
7917 return;
7918
7919 perf_event_header__init_id(&ksymbol_event->event_id.header,
7920 &sample, event);
7921 ret = perf_output_begin(&handle, event,
7922 ksymbol_event->event_id.header.size);
7923 if (ret)
7924 return;
7925
7926 perf_output_put(&handle, ksymbol_event->event_id);
7927 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
7928 perf_event__output_id_sample(event, &handle, &sample);
7929
7930 perf_output_end(&handle);
7931}
7932
7933void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
7934 const char *sym)
7935{
7936 struct perf_ksymbol_event ksymbol_event;
7937 char name[KSYM_NAME_LEN];
7938 u16 flags = 0;
7939 int name_len;
7940
7941 if (!atomic_read(&nr_ksymbol_events))
7942 return;
7943
7944 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
7945 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
7946 goto err;
7947
7948 strlcpy(name, sym, KSYM_NAME_LEN);
7949 name_len = strlen(name) + 1;
7950 while (!IS_ALIGNED(name_len, sizeof(u64)))
7951 name[name_len++] = '\0';
7952 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
7953
7954 if (unregister)
7955 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
7956
7957 ksymbol_event = (struct perf_ksymbol_event){
7958 .name = name,
7959 .name_len = name_len,
7960 .event_id = {
7961 .header = {
7962 .type = PERF_RECORD_KSYMBOL,
7963 .size = sizeof(ksymbol_event.event_id) +
7964 name_len,
7965 },
7966 .addr = addr,
7967 .len = len,
7968 .ksym_type = ksym_type,
7969 .flags = flags,
7970 },
7971 };
7972
7973 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
7974 return;
7975err:
7976 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
7977}
7978
Song Liu6ee52e22019-01-17 08:15:15 -08007979/*
7980 * bpf program load/unload tracking
7981 */
7982
7983struct perf_bpf_event {
7984 struct bpf_prog *prog;
7985 struct {
7986 struct perf_event_header header;
7987 u16 type;
7988 u16 flags;
7989 u32 id;
7990 u8 tag[BPF_TAG_SIZE];
7991 } event_id;
7992};
7993
7994static int perf_event_bpf_match(struct perf_event *event)
7995{
7996 return event->attr.bpf_event;
7997}
7998
7999static void perf_event_bpf_output(struct perf_event *event, void *data)
8000{
8001 struct perf_bpf_event *bpf_event = data;
8002 struct perf_output_handle handle;
8003 struct perf_sample_data sample;
8004 int ret;
8005
8006 if (!perf_event_bpf_match(event))
8007 return;
8008
8009 perf_event_header__init_id(&bpf_event->event_id.header,
8010 &sample, event);
8011 ret = perf_output_begin(&handle, event,
8012 bpf_event->event_id.header.size);
8013 if (ret)
8014 return;
8015
8016 perf_output_put(&handle, bpf_event->event_id);
8017 perf_event__output_id_sample(event, &handle, &sample);
8018
8019 perf_output_end(&handle);
8020}
8021
8022static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8023 enum perf_bpf_event_type type)
8024{
8025 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
8026 char sym[KSYM_NAME_LEN];
8027 int i;
8028
8029 if (prog->aux->func_cnt == 0) {
8030 bpf_get_prog_name(prog, sym);
8031 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8032 (u64)(unsigned long)prog->bpf_func,
8033 prog->jited_len, unregister, sym);
8034 } else {
8035 for (i = 0; i < prog->aux->func_cnt; i++) {
8036 struct bpf_prog *subprog = prog->aux->func[i];
8037
8038 bpf_get_prog_name(subprog, sym);
8039 perf_event_ksymbol(
8040 PERF_RECORD_KSYMBOL_TYPE_BPF,
8041 (u64)(unsigned long)subprog->bpf_func,
8042 subprog->jited_len, unregister, sym);
8043 }
8044 }
8045}
8046
8047void perf_event_bpf_event(struct bpf_prog *prog,
8048 enum perf_bpf_event_type type,
8049 u16 flags)
8050{
8051 struct perf_bpf_event bpf_event;
8052
8053 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8054 type >= PERF_BPF_EVENT_MAX)
8055 return;
8056
8057 switch (type) {
8058 case PERF_BPF_EVENT_PROG_LOAD:
8059 case PERF_BPF_EVENT_PROG_UNLOAD:
8060 if (atomic_read(&nr_ksymbol_events))
8061 perf_event_bpf_emit_ksymbols(prog, type);
8062 break;
8063 default:
8064 break;
8065 }
8066
8067 if (!atomic_read(&nr_bpf_events))
8068 return;
8069
8070 bpf_event = (struct perf_bpf_event){
8071 .prog = prog,
8072 .event_id = {
8073 .header = {
8074 .type = PERF_RECORD_BPF_EVENT,
8075 .size = sizeof(bpf_event.event_id),
8076 },
8077 .type = type,
8078 .flags = flags,
8079 .id = prog->aux->id,
8080 },
8081 };
8082
8083 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8084
8085 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8086 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8087}
8088
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008089void perf_event_itrace_started(struct perf_event *event)
8090{
8091 event->attach_state |= PERF_ATTACH_ITRACE;
8092}
8093
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008094static void perf_log_itrace_start(struct perf_event *event)
8095{
8096 struct perf_output_handle handle;
8097 struct perf_sample_data sample;
8098 struct perf_aux_event {
8099 struct perf_event_header header;
8100 u32 pid;
8101 u32 tid;
8102 } rec;
8103 int ret;
8104
8105 if (event->parent)
8106 event = event->parent;
8107
8108 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03008109 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008110 return;
8111
Alexander Shishkinec0d7722015-01-14 14:18:23 +02008112 rec.header.type = PERF_RECORD_ITRACE_START;
8113 rec.header.misc = 0;
8114 rec.header.size = sizeof(rec);
8115 rec.pid = perf_event_pid(event, current);
8116 rec.tid = perf_event_tid(event, current);
8117
8118 perf_event_header__init_id(&rec.header, &sample, event);
8119 ret = perf_output_begin(&handle, event, rec.header.size);
8120
8121 if (ret)
8122 return;
8123
8124 perf_output_put(&handle, rec);
8125 perf_event__output_id_sample(event, &handle, &sample);
8126
8127 perf_output_end(&handle);
8128}
8129
Jiri Olsa475113d2016-12-28 14:31:03 +01008130static int
8131__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008132{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008133 struct hw_perf_event *hwc = &event->hw;
8134 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01008135 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01008136
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008137 seq = __this_cpu_read(perf_throttled_seq);
8138 if (seq != hwc->interrupts_seq) {
8139 hwc->interrupts_seq = seq;
8140 hwc->interrupts = 1;
8141 } else {
8142 hwc->interrupts++;
8143 if (unlikely(throttle
8144 && hwc->interrupts >= max_samples_per_tick)) {
8145 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008146 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01008147 hwc->interrupts = MAX_INTERRUPTS;
8148 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008149 ret = 1;
8150 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01008151 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008152
8153 if (event->attr.freq) {
8154 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01008155 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008156
Peter Zijlstraabd50712010-01-26 18:50:16 +01008157 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008158
Peter Zijlstraabd50712010-01-26 18:50:16 +01008159 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01008160 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008161 }
8162
Jiri Olsa475113d2016-12-28 14:31:03 +01008163 return ret;
8164}
8165
8166int perf_event_account_interrupt(struct perf_event *event)
8167{
8168 return __perf_event_account_interrupt(event, 1);
8169}
8170
8171/*
8172 * Generic event overflow handling, sampling.
8173 */
8174
8175static int __perf_event_overflow(struct perf_event *event,
8176 int throttle, struct perf_sample_data *data,
8177 struct pt_regs *regs)
8178{
8179 int events = atomic_read(&event->event_limit);
8180 int ret = 0;
8181
8182 /*
8183 * Non-sampling counters might still use the PMI to fold short
8184 * hardware counters, ignore those.
8185 */
8186 if (unlikely(!is_sampling_event(event)))
8187 return 0;
8188
8189 ret = __perf_event_account_interrupt(event, throttle);
8190
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008191 /*
8192 * XXX event_limit might not quite work as expected on inherited
8193 * events
8194 */
8195
8196 event->pending_kill = POLL_IN;
8197 if (events && atomic_dec_and_test(&event->event_limit)) {
8198 ret = 1;
8199 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02008200
8201 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008202 }
8203
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008204 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01008205
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02008206 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008207 event->pending_wakeup = 1;
8208 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02008209 }
8210
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008211 return ret;
8212}
8213
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008214int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008215 struct perf_sample_data *data,
8216 struct pt_regs *regs)
8217{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008218 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008219}
8220
8221/*
8222 * Generic software event infrastructure
8223 */
8224
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008225struct swevent_htable {
8226 struct swevent_hlist *swevent_hlist;
8227 struct mutex hlist_mutex;
8228 int hlist_refcount;
8229
8230 /* Recursion avoidance in each contexts */
8231 int recursion[PERF_NR_CONTEXTS];
8232};
8233
8234static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
8235
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008236/*
8237 * We directly increment event->count and keep a second value in
8238 * event->hw.period_left to count intervals. This period event
8239 * is kept in the range [-sample_period, 0] so that we can use the
8240 * sign as trigger.
8241 */
8242
Jiri Olsaab573842013-05-01 17:25:44 +02008243u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008244{
8245 struct hw_perf_event *hwc = &event->hw;
8246 u64 period = hwc->last_period;
8247 u64 nr, offset;
8248 s64 old, val;
8249
8250 hwc->last_period = hwc->sample_period;
8251
8252again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02008253 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008254 if (val < 0)
8255 return 0;
8256
8257 nr = div64_u64(period + val, period);
8258 offset = nr * period;
8259 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02008260 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008261 goto again;
8262
8263 return nr;
8264}
8265
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008266static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008267 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008268 struct pt_regs *regs)
8269{
8270 struct hw_perf_event *hwc = &event->hw;
8271 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008272
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008273 if (!overflow)
8274 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008275
8276 if (hwc->interrupts == MAX_INTERRUPTS)
8277 return;
8278
8279 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008280 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008281 data, regs)) {
8282 /*
8283 * We inhibit the overflow from happening when
8284 * hwc->interrupts == MAX_INTERRUPTS.
8285 */
8286 break;
8287 }
8288 throttle = 1;
8289 }
8290}
8291
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008292static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008293 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008294 struct pt_regs *regs)
8295{
8296 struct hw_perf_event *hwc = &event->hw;
8297
Peter Zijlstrae7850592010-05-21 14:43:08 +02008298 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008300 if (!regs)
8301 return;
8302
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008303 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008304 return;
8305
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03008306 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
8307 data->period = nr;
8308 return perf_swevent_overflow(event, 1, data, regs);
8309 } else
8310 data->period = event->hw.last_period;
8311
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008312 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008313 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008314
Peter Zijlstrae7850592010-05-21 14:43:08 +02008315 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01008316 return;
8317
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008318 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008319}
8320
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008321static int perf_exclude_event(struct perf_event *event,
8322 struct pt_regs *regs)
8323{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008324 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01008325 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008326
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008327 if (regs) {
8328 if (event->attr.exclude_user && user_mode(regs))
8329 return 1;
8330
8331 if (event->attr.exclude_kernel && !user_mode(regs))
8332 return 1;
8333 }
8334
8335 return 0;
8336}
8337
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008338static int perf_swevent_match(struct perf_event *event,
8339 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08008340 u32 event_id,
8341 struct perf_sample_data *data,
8342 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008343{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008344 if (event->attr.type != type)
8345 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008347 if (event->attr.config != event_id)
8348 return 0;
8349
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008350 if (perf_exclude_event(event, regs))
8351 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008352
8353 return 1;
8354}
8355
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008356static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008357{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008358 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008359
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008360 return hash_64(val, SWEVENT_HLIST_BITS);
8361}
8362
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008363static inline struct hlist_head *
8364__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008365{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008366 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008367
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008368 return &hlist->heads[hash];
8369}
8370
8371/* For the read side: events when they trigger */
8372static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008373find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008374{
8375 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008376
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008377 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008378 if (!hlist)
8379 return NULL;
8380
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008381 return __find_swevent_head(hlist, type, event_id);
8382}
8383
8384/* For the event head insertion and removal in the hlist */
8385static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008386find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008387{
8388 struct swevent_hlist *hlist;
8389 u32 event_id = event->attr.config;
8390 u64 type = event->attr.type;
8391
8392 /*
8393 * Event scheduling is always serialized against hlist allocation
8394 * and release. Which makes the protected version suitable here.
8395 * The context lock guarantees that.
8396 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008397 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008398 lockdep_is_held(&event->ctx->lock));
8399 if (!hlist)
8400 return NULL;
8401
8402 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008403}
8404
8405static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008406 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008407 struct perf_sample_data *data,
8408 struct pt_regs *regs)
8409{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008410 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008411 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008412 struct hlist_head *head;
8413
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008414 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008415 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008416 if (!head)
8417 goto end;
8418
Sasha Levinb67bfe02013-02-27 17:06:00 -08008419 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08008420 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008421 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008422 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008423end:
8424 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008425}
8426
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008427DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
8428
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008429int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008430{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008431 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008432
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008433 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008434}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01008435EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008436
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008437void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008438{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008439 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02008440
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008441 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008442}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008443
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008444void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008445{
Ingo Molnara4234bf2009-11-23 10:57:59 +01008446 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008447
8448 if (WARN_ON_ONCE(!regs))
8449 return;
8450
8451 perf_sample_data_init(&data, addr, 0);
8452 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
8453}
8454
8455void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8456{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008457 int rctx;
8458
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008459 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008460 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008461 if (unlikely(rctx < 0))
8462 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008463
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008464 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008465
8466 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008467fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008468 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008469}
8470
8471static void perf_swevent_read(struct perf_event *event)
8472{
8473}
8474
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008475static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008476{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008477 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008478 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008479 struct hlist_head *head;
8480
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008481 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008482 hwc->last_period = hwc->sample_period;
8483 perf_swevent_set_period(event);
8484 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008485
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008486 hwc->state = !(flags & PERF_EF_START);
8487
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008488 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01008489 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008490 return -EINVAL;
8491
8492 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08008493 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008494
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008495 return 0;
8496}
8497
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008498static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008499{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008500 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008501}
8502
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008503static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008504{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008505 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008506}
8507
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008508static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008509{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008510 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008511}
8512
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008513/* Deref the hlist from the update side */
8514static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008515swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008516{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008517 return rcu_dereference_protected(swhash->swevent_hlist,
8518 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008519}
8520
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008521static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008522{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008523 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008524
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008525 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008526 return;
8527
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03008528 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08008529 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008530}
8531
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008532static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008533{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008534 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008535
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008536 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008537
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008538 if (!--swhash->hlist_refcount)
8539 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008540
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008541 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008542}
8543
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008544static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008545{
8546 int cpu;
8547
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008548 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008549 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008550}
8551
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008552static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008553{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008554 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008555 int err = 0;
8556
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008557 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008558 if (!swevent_hlist_deref(swhash) &&
8559 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008560 struct swevent_hlist *hlist;
8561
8562 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
8563 if (!hlist) {
8564 err = -ENOMEM;
8565 goto exit;
8566 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008567 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008568 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008569 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008570exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008571 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008572
8573 return err;
8574}
8575
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008576static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008577{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008578 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008579
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008580 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008581 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008582 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008583 if (err) {
8584 failed_cpu = cpu;
8585 goto fail;
8586 }
8587 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008588 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008589 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008590fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008591 for_each_possible_cpu(cpu) {
8592 if (cpu == failed_cpu)
8593 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008594 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008595 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008596 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008597 return err;
8598}
8599
Ingo Molnarc5905af2012-02-24 08:31:31 +01008600struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008601
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008602static void sw_perf_event_destroy(struct perf_event *event)
8603{
8604 u64 event_id = event->attr.config;
8605
8606 WARN_ON(event->parent);
8607
Ingo Molnarc5905af2012-02-24 08:31:31 +01008608 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008609 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008610}
8611
8612static int perf_swevent_init(struct perf_event *event)
8613{
Tommi Rantala8176cce2013-04-13 22:49:14 +03008614 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008615
8616 if (event->attr.type != PERF_TYPE_SOFTWARE)
8617 return -ENOENT;
8618
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008619 /*
8620 * no branch sampling for software events
8621 */
8622 if (has_branch_stack(event))
8623 return -EOPNOTSUPP;
8624
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008625 switch (event_id) {
8626 case PERF_COUNT_SW_CPU_CLOCK:
8627 case PERF_COUNT_SW_TASK_CLOCK:
8628 return -ENOENT;
8629
8630 default:
8631 break;
8632 }
8633
Dan Carpenterce677832010-10-24 21:50:42 +02008634 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008635 return -ENOENT;
8636
8637 if (!event->parent) {
8638 int err;
8639
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008640 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008641 if (err)
8642 return err;
8643
Ingo Molnarc5905af2012-02-24 08:31:31 +01008644 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008645 event->destroy = sw_perf_event_destroy;
8646 }
8647
8648 return 0;
8649}
8650
8651static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008652 .task_ctx_nr = perf_sw_context,
8653
Peter Zijlstra34f43922015-02-20 14:05:38 +01008654 .capabilities = PERF_PMU_CAP_NO_NMI,
8655
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008656 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008657 .add = perf_swevent_add,
8658 .del = perf_swevent_del,
8659 .start = perf_swevent_start,
8660 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008661 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008662};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008663
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008664#ifdef CONFIG_EVENT_TRACING
8665
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008666static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008667 struct perf_sample_data *data)
8668{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008669 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008670
Peter Zijlstrab71b4372015-11-02 10:50:51 +01008671 /* only top level events have filters set */
8672 if (event->parent)
8673 event = event->parent;
8674
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008675 if (likely(!event->filter) || filter_match_preds(event->filter, record))
8676 return 1;
8677 return 0;
8678}
8679
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008680static int perf_tp_event_match(struct perf_event *event,
8681 struct perf_sample_data *data,
8682 struct pt_regs *regs)
8683{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01008684 if (event->hw.state & PERF_HES_STOPPED)
8685 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02008686 /*
Song Liu9fd2e482019-05-07 09:15:45 -07008687 * If exclude_kernel, only trace user-space tracepoints (uprobes)
Peter Zijlstra580d6072010-05-20 20:54:31 +02008688 */
Song Liu9fd2e482019-05-07 09:15:45 -07008689 if (event->attr.exclude_kernel && !user_mode(regs))
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008690 return 0;
8691
8692 if (!perf_tp_filter_match(event, data))
8693 return 0;
8694
8695 return 1;
8696}
8697
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008698void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
8699 struct trace_event_call *call, u64 count,
8700 struct pt_regs *regs, struct hlist_head *head,
8701 struct task_struct *task)
8702{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008703 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008704 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008705 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008706 perf_swevent_put_recursion_context(rctx);
8707 return;
8708 }
8709 }
8710 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008711 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008712}
8713EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
8714
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008715void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008716 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008717 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008718{
8719 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008720 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008721
8722 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008723 .frag = {
8724 .size = entry_size,
8725 .data = record,
8726 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008727 };
8728
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008729 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008730 data.raw = &raw;
8731
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008732 perf_trace_buf_update(record, event_type);
8733
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008734 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008735 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008736 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008737 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008738
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008739 /*
8740 * If we got specified a target task, also iterate its context and
8741 * deliver this event there too.
8742 */
8743 if (task && task != current) {
8744 struct perf_event_context *ctx;
8745 struct trace_entry *entry = record;
8746
8747 rcu_read_lock();
8748 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
8749 if (!ctx)
8750 goto unlock;
8751
8752 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02008753 if (event->cpu != smp_processor_id())
8754 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008755 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8756 continue;
8757 if (event->attr.config != entry->type)
8758 continue;
8759 if (perf_tp_event_match(event, &data, regs))
8760 perf_swevent_event(event, count, &data, regs);
8761 }
8762unlock:
8763 rcu_read_unlock();
8764 }
8765
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008766 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008767}
8768EXPORT_SYMBOL_GPL(perf_tp_event);
8769
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008770static void tp_perf_event_destroy(struct perf_event *event)
8771{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008772 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008773}
8774
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008775static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008776{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008777 int err;
8778
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008779 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8780 return -ENOENT;
8781
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008782 /*
8783 * no branch sampling for tracepoint events
8784 */
8785 if (has_branch_stack(event))
8786 return -EOPNOTSUPP;
8787
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008788 err = perf_trace_init(event);
8789 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008790 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008791
8792 event->destroy = tp_perf_event_destroy;
8793
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008794 return 0;
8795}
8796
8797static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008798 .task_ctx_nr = perf_sw_context,
8799
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008800 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008801 .add = perf_trace_add,
8802 .del = perf_trace_del,
8803 .start = perf_swevent_start,
8804 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008805 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008806};
8807
Song Liu33ea4b22017-12-06 14:45:16 -08008808#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08008809/*
8810 * Flags in config, used by dynamic PMU kprobe and uprobe
8811 * The flags should match following PMU_FORMAT_ATTR().
8812 *
8813 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
8814 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07008815 *
8816 * The following values specify a reference counter (or semaphore in the
8817 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
8818 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
8819 *
8820 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
8821 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08008822 */
8823enum perf_probe_config {
8824 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07008825 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
8826 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08008827};
8828
8829PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07008830#endif
Song Liue12f03d2017-12-06 14:45:15 -08008831
Song Liua6ca88b2018-10-01 22:36:36 -07008832#ifdef CONFIG_KPROBE_EVENTS
8833static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08008834 &format_attr_retprobe.attr,
8835 NULL,
8836};
8837
Song Liua6ca88b2018-10-01 22:36:36 -07008838static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08008839 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07008840 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08008841};
8842
Song Liua6ca88b2018-10-01 22:36:36 -07008843static const struct attribute_group *kprobe_attr_groups[] = {
8844 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08008845 NULL,
8846};
8847
8848static int perf_kprobe_event_init(struct perf_event *event);
8849static struct pmu perf_kprobe = {
8850 .task_ctx_nr = perf_sw_context,
8851 .event_init = perf_kprobe_event_init,
8852 .add = perf_trace_add,
8853 .del = perf_trace_del,
8854 .start = perf_swevent_start,
8855 .stop = perf_swevent_stop,
8856 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07008857 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08008858};
8859
8860static int perf_kprobe_event_init(struct perf_event *event)
8861{
8862 int err;
8863 bool is_retprobe;
8864
8865 if (event->attr.type != perf_kprobe.type)
8866 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00008867
8868 if (!capable(CAP_SYS_ADMIN))
8869 return -EACCES;
8870
Song Liue12f03d2017-12-06 14:45:15 -08008871 /*
8872 * no branch sampling for probe events
8873 */
8874 if (has_branch_stack(event))
8875 return -EOPNOTSUPP;
8876
8877 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
8878 err = perf_kprobe_init(event, is_retprobe);
8879 if (err)
8880 return err;
8881
8882 event->destroy = perf_kprobe_destroy;
8883
8884 return 0;
8885}
8886#endif /* CONFIG_KPROBE_EVENTS */
8887
Song Liu33ea4b22017-12-06 14:45:16 -08008888#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07008889PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
8890
8891static struct attribute *uprobe_attrs[] = {
8892 &format_attr_retprobe.attr,
8893 &format_attr_ref_ctr_offset.attr,
8894 NULL,
8895};
8896
8897static struct attribute_group uprobe_format_group = {
8898 .name = "format",
8899 .attrs = uprobe_attrs,
8900};
8901
8902static const struct attribute_group *uprobe_attr_groups[] = {
8903 &uprobe_format_group,
8904 NULL,
8905};
8906
Song Liu33ea4b22017-12-06 14:45:16 -08008907static int perf_uprobe_event_init(struct perf_event *event);
8908static struct pmu perf_uprobe = {
8909 .task_ctx_nr = perf_sw_context,
8910 .event_init = perf_uprobe_event_init,
8911 .add = perf_trace_add,
8912 .del = perf_trace_del,
8913 .start = perf_swevent_start,
8914 .stop = perf_swevent_stop,
8915 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07008916 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08008917};
8918
8919static int perf_uprobe_event_init(struct perf_event *event)
8920{
8921 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07008922 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08008923 bool is_retprobe;
8924
8925 if (event->attr.type != perf_uprobe.type)
8926 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00008927
8928 if (!capable(CAP_SYS_ADMIN))
8929 return -EACCES;
8930
Song Liu33ea4b22017-12-06 14:45:16 -08008931 /*
8932 * no branch sampling for probe events
8933 */
8934 if (has_branch_stack(event))
8935 return -EOPNOTSUPP;
8936
8937 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07008938 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
8939 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08008940 if (err)
8941 return err;
8942
8943 event->destroy = perf_uprobe_destroy;
8944
8945 return 0;
8946}
8947#endif /* CONFIG_UPROBE_EVENTS */
8948
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008949static inline void perf_tp_register(void)
8950{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008951 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08008952#ifdef CONFIG_KPROBE_EVENTS
8953 perf_pmu_register(&perf_kprobe, "kprobe", -1);
8954#endif
Song Liu33ea4b22017-12-06 14:45:16 -08008955#ifdef CONFIG_UPROBE_EVENTS
8956 perf_pmu_register(&perf_uprobe, "uprobe", -1);
8957#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008958}
Li Zefan6fb29152009-10-15 11:21:42 +08008959
Li Zefan6fb29152009-10-15 11:21:42 +08008960static void perf_event_free_filter(struct perf_event *event)
8961{
8962 ftrace_profile_free_filter(event);
8963}
8964
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008965#ifdef CONFIG_BPF_SYSCALL
8966static void bpf_overflow_handler(struct perf_event *event,
8967 struct perf_sample_data *data,
8968 struct pt_regs *regs)
8969{
8970 struct bpf_perf_event_data_kern ctx = {
8971 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07008972 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008973 };
8974 int ret = 0;
8975
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01008976 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008977 preempt_disable();
8978 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
8979 goto out;
8980 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01008981 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008982 rcu_read_unlock();
8983out:
8984 __this_cpu_dec(bpf_prog_active);
8985 preempt_enable();
8986 if (!ret)
8987 return;
8988
8989 event->orig_overflow_handler(event, data, regs);
8990}
8991
8992static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8993{
8994 struct bpf_prog *prog;
8995
8996 if (event->overflow_handler_context)
8997 /* hw breakpoint or kernel counter */
8998 return -EINVAL;
8999
9000 if (event->prog)
9001 return -EEXIST;
9002
9003 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
9004 if (IS_ERR(prog))
9005 return PTR_ERR(prog);
9006
9007 event->prog = prog;
9008 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9009 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9010 return 0;
9011}
9012
9013static void perf_event_free_bpf_handler(struct perf_event *event)
9014{
9015 struct bpf_prog *prog = event->prog;
9016
9017 if (!prog)
9018 return;
9019
9020 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9021 event->prog = NULL;
9022 bpf_prog_put(prog);
9023}
9024#else
9025static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9026{
9027 return -EOPNOTSUPP;
9028}
9029static void perf_event_free_bpf_handler(struct perf_event *event)
9030{
9031}
9032#endif
9033
Song Liue12f03d2017-12-06 14:45:15 -08009034/*
9035 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9036 * with perf_event_open()
9037 */
9038static inline bool perf_event_is_tracing(struct perf_event *event)
9039{
9040 if (event->pmu == &perf_tracepoint)
9041 return true;
9042#ifdef CONFIG_KPROBE_EVENTS
9043 if (event->pmu == &perf_kprobe)
9044 return true;
9045#endif
Song Liu33ea4b22017-12-06 14:45:16 -08009046#ifdef CONFIG_UPROBE_EVENTS
9047 if (event->pmu == &perf_uprobe)
9048 return true;
9049#endif
Song Liue12f03d2017-12-06 14:45:15 -08009050 return false;
9051}
9052
Alexei Starovoitov25415172015-03-25 12:49:20 -07009053static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9054{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009055 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009056 struct bpf_prog *prog;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009057 int ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009058
Song Liue12f03d2017-12-06 14:45:15 -08009059 if (!perf_event_is_tracing(event))
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07009060 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009061
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009062 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
9063 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009064 is_syscall_tp = is_syscall_trace_event(event->tp_event);
9065 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009066 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07009067 return -EINVAL;
9068
9069 prog = bpf_prog_get(prog_fd);
9070 if (IS_ERR(prog))
9071 return PTR_ERR(prog);
9072
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07009073 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009074 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
9075 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07009076 /* valid fd, but invalid bpf program type */
9077 bpf_prog_put(prog);
9078 return -EINVAL;
9079 }
9080
Josef Bacik9802d862017-12-11 11:36:48 -05009081 /* Kprobe override only works for kprobes, not uprobes. */
9082 if (prog->kprobe_override &&
9083 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
9084 bpf_prog_put(prog);
9085 return -EINVAL;
9086 }
9087
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07009088 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07009089 int off = trace_event_get_offsets(event->tp_event);
9090
9091 if (prog->aux->max_ctx_offset > off) {
9092 bpf_prog_put(prog);
9093 return -EACCES;
9094 }
9095 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07009096
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009097 ret = perf_event_attach_bpf_prog(event, prog);
9098 if (ret)
9099 bpf_prog_put(prog);
9100 return ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009101}
9102
9103static void perf_event_free_bpf_prog(struct perf_event *event)
9104{
Song Liue12f03d2017-12-06 14:45:15 -08009105 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -07009106 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009107 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -07009108 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07009109 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07009110}
9111
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009112#else
Li Zefan6fb29152009-10-15 11:21:42 +08009113
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009114static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009115{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009116}
Li Zefan6fb29152009-10-15 11:21:42 +08009117
Li Zefan6fb29152009-10-15 11:21:42 +08009118static void perf_event_free_filter(struct perf_event *event)
9119{
9120}
9121
Alexei Starovoitov25415172015-03-25 12:49:20 -07009122static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9123{
9124 return -ENOENT;
9125}
9126
9127static void perf_event_free_bpf_prog(struct perf_event *event)
9128{
9129}
Li Zefan07b139c2009-12-21 14:27:35 +08009130#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009131
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009132#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009133void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009134{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009135 struct perf_sample_data sample;
9136 struct pt_regs *regs = data;
9137
Robert Richterfd0d0002012-04-02 20:19:08 +02009138 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01009139
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009140 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02009141 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009142}
9143#endif
9144
Alexander Shishkin375637b2016-04-27 18:44:46 +03009145/*
9146 * Allocate a new address filter
9147 */
9148static struct perf_addr_filter *
9149perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
9150{
9151 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
9152 struct perf_addr_filter *filter;
9153
9154 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
9155 if (!filter)
9156 return NULL;
9157
9158 INIT_LIST_HEAD(&filter->entry);
9159 list_add_tail(&filter->entry, filters);
9160
9161 return filter;
9162}
9163
9164static void free_filters_list(struct list_head *filters)
9165{
9166 struct perf_addr_filter *filter, *iter;
9167
9168 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07009169 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009170 list_del(&filter->entry);
9171 kfree(filter);
9172 }
9173}
9174
9175/*
9176 * Free existing address filters and optionally install new ones
9177 */
9178static void perf_addr_filters_splice(struct perf_event *event,
9179 struct list_head *head)
9180{
9181 unsigned long flags;
9182 LIST_HEAD(list);
9183
9184 if (!has_addr_filter(event))
9185 return;
9186
9187 /* don't bother with children, they don't have their own filters */
9188 if (event->parent)
9189 return;
9190
9191 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
9192
9193 list_splice_init(&event->addr_filters.list, &list);
9194 if (head)
9195 list_splice(head, &event->addr_filters.list);
9196
9197 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
9198
9199 free_filters_list(&list);
9200}
9201
9202/*
9203 * Scan through mm's vmas and see if one of them matches the
9204 * @filter; if so, adjust filter's address range.
9205 * Called with mm::mmap_sem down for reading.
9206 */
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009207static void perf_addr_filter_apply(struct perf_addr_filter *filter,
9208 struct mm_struct *mm,
9209 struct perf_addr_filter_range *fr)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009210{
9211 struct vm_area_struct *vma;
9212
9213 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009214 if (!vma->vm_file)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009215 continue;
9216
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009217 if (perf_addr_filter_vma_adjust(filter, vma, fr))
9218 return;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009219 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009220}
9221
9222/*
9223 * Update event's address range filters based on the
9224 * task's existing mappings, if any.
9225 */
9226static void perf_event_addr_filters_apply(struct perf_event *event)
9227{
9228 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
9229 struct task_struct *task = READ_ONCE(event->ctx->task);
9230 struct perf_addr_filter *filter;
9231 struct mm_struct *mm = NULL;
9232 unsigned int count = 0;
9233 unsigned long flags;
9234
9235 /*
9236 * We may observe TASK_TOMBSTONE, which means that the event tear-down
9237 * will stop on the parent's child_mutex that our caller is also holding
9238 */
9239 if (task == TASK_TOMBSTONE)
9240 return;
9241
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009242 if (ifh->nr_file_filters) {
9243 mm = get_task_mm(event->ctx->task);
9244 if (!mm)
9245 goto restart;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009246
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009247 down_read(&mm->mmap_sem);
9248 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009249
9250 raw_spin_lock_irqsave(&ifh->lock, flags);
9251 list_for_each_entry(filter, &ifh->list, entry) {
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009252 if (filter->path.dentry) {
9253 /*
9254 * Adjust base offset if the filter is associated to a
9255 * binary that needs to be mapped:
9256 */
9257 event->addr_filter_ranges[count].start = 0;
9258 event->addr_filter_ranges[count].size = 0;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009259
Alexander Shishkinc60f83b2019-02-15 13:56:55 +02009260 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009261 } else {
9262 event->addr_filter_ranges[count].start = filter->offset;
9263 event->addr_filter_ranges[count].size = filter->size;
9264 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009265
9266 count++;
9267 }
9268
9269 event->addr_filters_gen++;
9270 raw_spin_unlock_irqrestore(&ifh->lock, flags);
9271
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009272 if (ifh->nr_file_filters) {
9273 up_read(&mm->mmap_sem);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009274
Alexander Shishkin52a44f82019-03-29 11:12:12 +02009275 mmput(mm);
9276 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009277
9278restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03009279 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009280}
9281
9282/*
9283 * Address range filtering: limiting the data to certain
9284 * instruction address ranges. Filters are ioctl()ed to us from
9285 * userspace as ascii strings.
9286 *
9287 * Filter string format:
9288 *
9289 * ACTION RANGE_SPEC
9290 * where ACTION is one of the
9291 * * "filter": limit the trace to this region
9292 * * "start": start tracing from this address
9293 * * "stop": stop tracing at this address/region;
9294 * RANGE_SPEC is
9295 * * for kernel addresses: <start address>[/<size>]
9296 * * for object files: <start address>[/<size>]@</path/to/object/file>
9297 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009298 * if <size> is not specified or is zero, the range is treated as a single
9299 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +03009300 */
9301enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02009302 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03009303 IF_ACT_FILTER,
9304 IF_ACT_START,
9305 IF_ACT_STOP,
9306 IF_SRC_FILE,
9307 IF_SRC_KERNEL,
9308 IF_SRC_FILEADDR,
9309 IF_SRC_KERNELADDR,
9310};
9311
9312enum {
9313 IF_STATE_ACTION = 0,
9314 IF_STATE_SOURCE,
9315 IF_STATE_END,
9316};
9317
9318static const match_table_t if_tokens = {
9319 { IF_ACT_FILTER, "filter" },
9320 { IF_ACT_START, "start" },
9321 { IF_ACT_STOP, "stop" },
9322 { IF_SRC_FILE, "%u/%u@%s" },
9323 { IF_SRC_KERNEL, "%u/%u" },
9324 { IF_SRC_FILEADDR, "%u@%s" },
9325 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02009326 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03009327};
9328
9329/*
9330 * Address filter string parser
9331 */
9332static int
9333perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9334 struct list_head *filters)
9335{
9336 struct perf_addr_filter *filter = NULL;
9337 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009338 substring_t args[MAX_OPT_ARGS];
9339 int state = IF_STATE_ACTION, token;
9340 unsigned int kernel = 0;
9341 int ret = -EINVAL;
9342
9343 orig = fstr = kstrdup(fstr, GFP_KERNEL);
9344 if (!fstr)
9345 return -ENOMEM;
9346
9347 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009348 static const enum perf_addr_filter_action_t actions[] = {
9349 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
9350 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
9351 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
9352 };
Alexander Shishkin375637b2016-04-27 18:44:46 +03009353 ret = -EINVAL;
9354
9355 if (!*start)
9356 continue;
9357
9358 /* filter definition begins */
9359 if (state == IF_STATE_ACTION) {
9360 filter = perf_addr_filter_new(event, filters);
9361 if (!filter)
9362 goto fail;
9363 }
9364
9365 token = match_token(start, if_tokens, args);
9366 switch (token) {
9367 case IF_ACT_FILTER:
9368 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +03009369 case IF_ACT_STOP:
9370 if (state != IF_STATE_ACTION)
9371 goto fail;
9372
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009373 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +03009374 state = IF_STATE_SOURCE;
9375 break;
9376
9377 case IF_SRC_KERNELADDR:
9378 case IF_SRC_KERNEL:
9379 kernel = 1;
Gustavo A. R. Silva10c34052019-02-12 14:54:30 -06009380 /* fall through */
Alexander Shishkin375637b2016-04-27 18:44:46 +03009381
9382 case IF_SRC_FILEADDR:
9383 case IF_SRC_FILE:
9384 if (state != IF_STATE_SOURCE)
9385 goto fail;
9386
Alexander Shishkin375637b2016-04-27 18:44:46 +03009387 *args[0].to = 0;
9388 ret = kstrtoul(args[0].from, 0, &filter->offset);
9389 if (ret)
9390 goto fail;
9391
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009392 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03009393 *args[1].to = 0;
9394 ret = kstrtoul(args[1].from, 0, &filter->size);
9395 if (ret)
9396 goto fail;
9397 }
9398
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009399 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009400 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06009401
9402 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009403 if (!filename) {
9404 ret = -ENOMEM;
9405 goto fail;
9406 }
9407 }
9408
9409 state = IF_STATE_END;
9410 break;
9411
9412 default:
9413 goto fail;
9414 }
9415
9416 /*
9417 * Filter definition is fully parsed, validate and install it.
9418 * Make sure that it doesn't contradict itself or the event's
9419 * attribute.
9420 */
9421 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02009422 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009423 if (kernel && event->attr.exclude_kernel)
9424 goto fail;
9425
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03009426 /*
9427 * ACTION "filter" must have a non-zero length region
9428 * specified.
9429 */
9430 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
9431 !filter->size)
9432 goto fail;
9433
Alexander Shishkin375637b2016-04-27 18:44:46 +03009434 if (!kernel) {
9435 if (!filename)
9436 goto fail;
9437
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009438 /*
9439 * For now, we only support file-based filters
9440 * in per-task events; doing so for CPU-wide
9441 * events requires additional context switching
9442 * trickery, since same object code will be
9443 * mapped at different virtual addresses in
9444 * different processes.
9445 */
9446 ret = -EOPNOTSUPP;
9447 if (!event->ctx->task)
9448 goto fail_free_name;
9449
Alexander Shishkin375637b2016-04-27 18:44:46 +03009450 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -07009451 ret = kern_path(filename, LOOKUP_FOLLOW,
9452 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009453 if (ret)
9454 goto fail_free_name;
9455
Alexander Shishkin375637b2016-04-27 18:44:46 +03009456 kfree(filename);
9457 filename = NULL;
9458
9459 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -07009460 if (!filter->path.dentry ||
9461 !S_ISREG(d_inode(filter->path.dentry)
9462 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009463 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009464
9465 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009466 }
9467
9468 /* ready to consume more filters */
9469 state = IF_STATE_ACTION;
9470 filter = NULL;
9471 }
9472 }
9473
9474 if (state != IF_STATE_ACTION)
9475 goto fail;
9476
9477 kfree(orig);
9478
9479 return 0;
9480
9481fail_free_name:
9482 kfree(filename);
9483fail:
9484 free_filters_list(filters);
9485 kfree(orig);
9486
9487 return ret;
9488}
9489
9490static int
9491perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
9492{
9493 LIST_HEAD(filters);
9494 int ret;
9495
9496 /*
9497 * Since this is called in perf_ioctl() path, we're already holding
9498 * ctx::mutex.
9499 */
9500 lockdep_assert_held(&event->ctx->mutex);
9501
9502 if (WARN_ON_ONCE(event->parent))
9503 return -EINVAL;
9504
Alexander Shishkin375637b2016-04-27 18:44:46 +03009505 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
9506 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009507 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009508
9509 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009510 if (ret)
9511 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009512
9513 /* remove existing filters, if any */
9514 perf_addr_filters_splice(event, &filters);
9515
9516 /* install new filters */
9517 perf_event_for_each_child(event, perf_event_addr_filters_apply);
9518
9519 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009520
9521fail_free_filters:
9522 free_filters_list(&filters);
9523
9524fail_clear_files:
9525 event->addr_filters.nr_file_filters = 0;
9526
9527 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009528}
9529
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009530static int perf_event_set_filter(struct perf_event *event, void __user *arg)
9531{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009532 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -08009533 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009534
9535 filter_str = strndup_user(arg, PAGE_SIZE);
9536 if (IS_ERR(filter_str))
9537 return PTR_ERR(filter_str);
9538
Song Liue12f03d2017-12-06 14:45:15 -08009539#ifdef CONFIG_EVENT_TRACING
9540 if (perf_event_is_tracing(event)) {
9541 struct perf_event_context *ctx = event->ctx;
9542
9543 /*
9544 * Beware, here be dragons!!
9545 *
9546 * the tracepoint muck will deadlock against ctx->mutex, but
9547 * the tracepoint stuff does not actually need it. So
9548 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
9549 * already have a reference on ctx.
9550 *
9551 * This can result in event getting moved to a different ctx,
9552 * but that does not affect the tracepoint state.
9553 */
9554 mutex_unlock(&ctx->mutex);
9555 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
9556 mutex_lock(&ctx->mutex);
9557 } else
9558#endif
9559 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009560 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009561
9562 kfree(filter_str);
9563 return ret;
9564}
9565
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009566/*
9567 * hrtimer based swevent callback
9568 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009569
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009570static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009571{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009572 enum hrtimer_restart ret = HRTIMER_RESTART;
9573 struct perf_sample_data data;
9574 struct pt_regs *regs;
9575 struct perf_event *event;
9576 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009577
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009578 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009579
9580 if (event->state != PERF_EVENT_STATE_ACTIVE)
9581 return HRTIMER_NORESTART;
9582
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009583 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009584
Robert Richterfd0d0002012-04-02 20:19:08 +02009585 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009586 regs = get_irq_regs();
9587
9588 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08009589 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02009590 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009591 ret = HRTIMER_NORESTART;
9592 }
9593
9594 period = max_t(u64, 10000, event->hw.sample_period);
9595 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
9596
9597 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009598}
9599
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009600static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009601{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009602 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009603 s64 period;
9604
9605 if (!is_sampling_event(event))
9606 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009607
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009608 period = local64_read(&hwc->period_left);
9609 if (period) {
9610 if (period < 0)
9611 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009612
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009613 local64_set(&hwc->period_left, 0);
9614 } else {
9615 period = max_t(u64, 10000, hwc->sample_period);
9616 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00009617 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02009618 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009619}
9620
9621static void perf_swevent_cancel_hrtimer(struct perf_event *event)
9622{
9623 struct hw_perf_event *hwc = &event->hw;
9624
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009625 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009626 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009627 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009628
9629 hrtimer_cancel(&hwc->hrtimer);
9630 }
9631}
9632
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009633static void perf_swevent_init_hrtimer(struct perf_event *event)
9634{
9635 struct hw_perf_event *hwc = &event->hw;
9636
9637 if (!is_sampling_event(event))
9638 return;
9639
Sebastian Andrzej Siewior30f90282019-07-26 20:30:53 +02009640 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009641 hwc->hrtimer.function = perf_swevent_hrtimer;
9642
9643 /*
9644 * Since hrtimers have a fixed rate, we can do a static freq->period
9645 * mapping and avoid the whole period adjust feedback stuff.
9646 */
9647 if (event->attr.freq) {
9648 long freq = event->attr.sample_freq;
9649
9650 event->attr.sample_period = NSEC_PER_SEC / freq;
9651 hwc->sample_period = event->attr.sample_period;
9652 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09009653 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009654 event->attr.freq = 0;
9655 }
9656}
9657
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009658/*
9659 * Software event: cpu wall time clock
9660 */
9661
9662static void cpu_clock_event_update(struct perf_event *event)
9663{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009664 s64 prev;
9665 u64 now;
9666
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009667 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009668 prev = local64_xchg(&event->hw.prev_count, now);
9669 local64_add(now - prev, &event->count);
9670}
9671
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009672static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009673{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009674 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009675 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009676}
9677
9678static void cpu_clock_event_stop(struct perf_event *event, int flags)
9679{
9680 perf_swevent_cancel_hrtimer(event);
9681 cpu_clock_event_update(event);
9682}
9683
9684static int cpu_clock_event_add(struct perf_event *event, int flags)
9685{
9686 if (flags & PERF_EF_START)
9687 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08009688 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009689
9690 return 0;
9691}
9692
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009693static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009694{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009695 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009696}
9697
9698static void cpu_clock_event_read(struct perf_event *event)
9699{
9700 cpu_clock_event_update(event);
9701}
9702
9703static int cpu_clock_event_init(struct perf_event *event)
9704{
9705 if (event->attr.type != PERF_TYPE_SOFTWARE)
9706 return -ENOENT;
9707
9708 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
9709 return -ENOENT;
9710
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009711 /*
9712 * no branch sampling for software events
9713 */
9714 if (has_branch_stack(event))
9715 return -EOPNOTSUPP;
9716
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009717 perf_swevent_init_hrtimer(event);
9718
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009719 return 0;
9720}
9721
9722static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009723 .task_ctx_nr = perf_sw_context,
9724
Peter Zijlstra34f43922015-02-20 14:05:38 +01009725 .capabilities = PERF_PMU_CAP_NO_NMI,
9726
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009727 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009728 .add = cpu_clock_event_add,
9729 .del = cpu_clock_event_del,
9730 .start = cpu_clock_event_start,
9731 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009732 .read = cpu_clock_event_read,
9733};
9734
9735/*
9736 * Software event: task time clock
9737 */
9738
9739static void task_clock_event_update(struct perf_event *event, u64 now)
9740{
9741 u64 prev;
9742 s64 delta;
9743
9744 prev = local64_xchg(&event->hw.prev_count, now);
9745 delta = now - prev;
9746 local64_add(delta, &event->count);
9747}
9748
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009749static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009750{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009751 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009752 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009753}
9754
9755static void task_clock_event_stop(struct perf_event *event, int flags)
9756{
9757 perf_swevent_cancel_hrtimer(event);
9758 task_clock_event_update(event, event->ctx->time);
9759}
9760
9761static int task_clock_event_add(struct perf_event *event, int flags)
9762{
9763 if (flags & PERF_EF_START)
9764 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08009765 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009766
9767 return 0;
9768}
9769
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009770static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009771{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009772 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009773}
9774
9775static void task_clock_event_read(struct perf_event *event)
9776{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01009777 u64 now = perf_clock();
9778 u64 delta = now - event->ctx->timestamp;
9779 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009780
9781 task_clock_event_update(event, time);
9782}
9783
9784static int task_clock_event_init(struct perf_event *event)
9785{
9786 if (event->attr.type != PERF_TYPE_SOFTWARE)
9787 return -ENOENT;
9788
9789 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
9790 return -ENOENT;
9791
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009792 /*
9793 * no branch sampling for software events
9794 */
9795 if (has_branch_stack(event))
9796 return -EOPNOTSUPP;
9797
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009798 perf_swevent_init_hrtimer(event);
9799
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009800 return 0;
9801}
9802
9803static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009804 .task_ctx_nr = perf_sw_context,
9805
Peter Zijlstra34f43922015-02-20 14:05:38 +01009806 .capabilities = PERF_PMU_CAP_NO_NMI,
9807
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009808 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009809 .add = task_clock_event_add,
9810 .del = task_clock_event_del,
9811 .start = task_clock_event_start,
9812 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009813 .read = task_clock_event_read,
9814};
9815
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009816static void perf_pmu_nop_void(struct pmu *pmu)
9817{
9818}
9819
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009820static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
9821{
9822}
9823
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009824static int perf_pmu_nop_int(struct pmu *pmu)
9825{
9826 return 0;
9827}
9828
Jiri Olsa81ec3f32019-02-04 13:35:32 +01009829static int perf_event_nop_int(struct perf_event *event, u64 value)
9830{
9831 return 0;
9832}
9833
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009834static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009835
9836static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009837{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009838 __this_cpu_write(nop_txn_flags, flags);
9839
9840 if (flags & ~PERF_PMU_TXN_ADD)
9841 return;
9842
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009843 perf_pmu_disable(pmu);
9844}
9845
9846static int perf_pmu_commit_txn(struct pmu *pmu)
9847{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009848 unsigned int flags = __this_cpu_read(nop_txn_flags);
9849
9850 __this_cpu_write(nop_txn_flags, 0);
9851
9852 if (flags & ~PERF_PMU_TXN_ADD)
9853 return 0;
9854
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009855 perf_pmu_enable(pmu);
9856 return 0;
9857}
9858
9859static void perf_pmu_cancel_txn(struct pmu *pmu)
9860{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009861 unsigned int flags = __this_cpu_read(nop_txn_flags);
9862
9863 __this_cpu_write(nop_txn_flags, 0);
9864
9865 if (flags & ~PERF_PMU_TXN_ADD)
9866 return;
9867
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009868 perf_pmu_enable(pmu);
9869}
9870
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009871static int perf_event_idx_default(struct perf_event *event)
9872{
Peter Zijlstrac719f562014-10-21 11:10:21 +02009873 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009874}
9875
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009876/*
9877 * Ensures all contexts with the same task_ctx_nr have the same
9878 * pmu_cpu_context too.
9879 */
Mark Rutland9e317042014-02-10 17:44:18 +00009880static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009881{
9882 struct pmu *pmu;
9883
9884 if (ctxn < 0)
9885 return NULL;
9886
9887 list_for_each_entry(pmu, &pmus, entry) {
9888 if (pmu->task_ctx_nr == ctxn)
9889 return pmu->pmu_cpu_context;
9890 }
9891
9892 return NULL;
9893}
9894
Peter Zijlstra51676952010-12-07 14:18:20 +01009895static void free_pmu_context(struct pmu *pmu)
9896{
Will Deacondf0062b2017-10-03 15:20:50 +01009897 /*
9898 * Static contexts such as perf_sw_context have a global lifetime
9899 * and may be shared between different PMUs. Avoid freeing them
9900 * when a single PMU is going away.
9901 */
9902 if (pmu->task_ctx_nr > perf_invalid_context)
9903 return;
9904
Peter Zijlstra51676952010-12-07 14:18:20 +01009905 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009906}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009907
9908/*
9909 * Let userspace know that this PMU supports address range filtering:
9910 */
9911static ssize_t nr_addr_filters_show(struct device *dev,
9912 struct device_attribute *attr,
9913 char *page)
9914{
9915 struct pmu *pmu = dev_get_drvdata(dev);
9916
9917 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
9918}
9919DEVICE_ATTR_RO(nr_addr_filters);
9920
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009921static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009922
Peter Zijlstraabe43402010-11-17 23:17:37 +01009923static ssize_t
9924type_show(struct device *dev, struct device_attribute *attr, char *page)
9925{
9926 struct pmu *pmu = dev_get_drvdata(dev);
9927
9928 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
9929}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009930static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009931
Stephane Eranian62b85632013-04-03 14:21:34 +02009932static ssize_t
9933perf_event_mux_interval_ms_show(struct device *dev,
9934 struct device_attribute *attr,
9935 char *page)
9936{
9937 struct pmu *pmu = dev_get_drvdata(dev);
9938
9939 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
9940}
9941
Peter Zijlstra272325c2015-04-15 11:41:58 +02009942static DEFINE_MUTEX(mux_interval_mutex);
9943
Stephane Eranian62b85632013-04-03 14:21:34 +02009944static ssize_t
9945perf_event_mux_interval_ms_store(struct device *dev,
9946 struct device_attribute *attr,
9947 const char *buf, size_t count)
9948{
9949 struct pmu *pmu = dev_get_drvdata(dev);
9950 int timer, cpu, ret;
9951
9952 ret = kstrtoint(buf, 0, &timer);
9953 if (ret)
9954 return ret;
9955
9956 if (timer < 1)
9957 return -EINVAL;
9958
9959 /* same value, noting to do */
9960 if (timer == pmu->hrtimer_interval_ms)
9961 return count;
9962
Peter Zijlstra272325c2015-04-15 11:41:58 +02009963 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009964 pmu->hrtimer_interval_ms = timer;
9965
9966 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009967 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009968 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02009969 struct perf_cpu_context *cpuctx;
9970 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
9971 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
9972
Peter Zijlstra272325c2015-04-15 11:41:58 +02009973 cpu_function_call(cpu,
9974 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02009975 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009976 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009977 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009978
9979 return count;
9980}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009981static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02009982
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009983static struct attribute *pmu_dev_attrs[] = {
9984 &dev_attr_type.attr,
9985 &dev_attr_perf_event_mux_interval_ms.attr,
9986 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009987};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009988ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009989
9990static int pmu_bus_running;
9991static struct bus_type pmu_bus = {
9992 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009993 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009994};
9995
9996static void pmu_dev_release(struct device *dev)
9997{
9998 kfree(dev);
9999}
10000
10001static int pmu_dev_alloc(struct pmu *pmu)
10002{
10003 int ret = -ENOMEM;
10004
10005 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10006 if (!pmu->dev)
10007 goto out;
10008
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010010009 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +010010010 device_initialize(pmu->dev);
10011 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10012 if (ret)
10013 goto free_dev;
10014
10015 dev_set_drvdata(pmu->dev, pmu);
10016 pmu->dev->bus = &pmu_bus;
10017 pmu->dev->release = pmu_dev_release;
10018 ret = device_add(pmu->dev);
10019 if (ret)
10020 goto free_dev;
10021
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010022 /* For PMUs with address filters, throw in an extra attribute: */
10023 if (pmu->nr_addr_filters)
10024 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10025
10026 if (ret)
10027 goto del_dev;
10028
Jiri Olsaf3a3a822019-05-12 17:55:11 +020010029 if (pmu->attr_update)
10030 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10031
10032 if (ret)
10033 goto del_dev;
10034
Peter Zijlstraabe43402010-11-17 23:17:37 +010010035out:
10036 return ret;
10037
Alexander Shishkin6e855cd2016-04-27 18:44:48 +030010038del_dev:
10039 device_del(pmu->dev);
10040
Peter Zijlstraabe43402010-11-17 23:17:37 +010010041free_dev:
10042 put_device(pmu->dev);
10043 goto out;
10044}
10045
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010046static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010047static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010048
Mischa Jonker03d8e802013-06-04 11:45:48 +020010049int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010050{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010051 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010052
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010053 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010054 ret = -ENOMEM;
10055 pmu->pmu_disable_count = alloc_percpu(int);
10056 if (!pmu->pmu_disable_count)
10057 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010058
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010059 pmu->type = -1;
10060 if (!name)
10061 goto skip_type;
10062 pmu->name = name;
10063
10064 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -080010065 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
10066 if (type < 0) {
10067 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010068 goto free_pdc;
10069 }
10070 }
10071 pmu->type = type;
10072
Peter Zijlstraabe43402010-11-17 23:17:37 +010010073 if (pmu_bus_running) {
10074 ret = pmu_dev_alloc(pmu);
10075 if (ret)
10076 goto free_idr;
10077 }
10078
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010079skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +010010080 if (pmu->task_ctx_nr == perf_hw_context) {
10081 static int hw_context_taken = 0;
10082
Mark Rutland5101ef22016-04-26 11:33:46 +010010083 /*
10084 * Other than systems with heterogeneous CPUs, it never makes
10085 * sense for two PMUs to share perf_hw_context. PMUs which are
10086 * uncore must use perf_invalid_context.
10087 */
10088 if (WARN_ON_ONCE(hw_context_taken &&
10089 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +010010090 pmu->task_ctx_nr = perf_invalid_context;
10091
10092 hw_context_taken = 1;
10093 }
10094
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010095 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
10096 if (pmu->pmu_cpu_context)
10097 goto got_cpu_context;
10098
Wei Yongjunc4814202013-04-12 11:05:54 +080010099 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010100 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
10101 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +010010102 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010103
10104 for_each_possible_cpu(cpu) {
10105 struct perf_cpu_context *cpuctx;
10106
10107 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +020010108 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +010010109 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +020010110 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010111 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010112 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +020010113
Peter Zijlstra272325c2015-04-15 11:41:58 +020010114 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010115 }
10116
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010117got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010118 if (!pmu->start_txn) {
10119 if (pmu->pmu_enable) {
10120 /*
10121 * If we have pmu_enable/pmu_disable calls, install
10122 * transaction stubs that use that to try and batch
10123 * hardware accesses.
10124 */
10125 pmu->start_txn = perf_pmu_start_txn;
10126 pmu->commit_txn = perf_pmu_commit_txn;
10127 pmu->cancel_txn = perf_pmu_cancel_txn;
10128 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -070010129 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +020010130 pmu->commit_txn = perf_pmu_nop_int;
10131 pmu->cancel_txn = perf_pmu_nop_void;
10132 }
10133 }
10134
10135 if (!pmu->pmu_enable) {
10136 pmu->pmu_enable = perf_pmu_nop_void;
10137 pmu->pmu_disable = perf_pmu_nop_void;
10138 }
10139
Jiri Olsa81ec3f32019-02-04 13:35:32 +010010140 if (!pmu->check_period)
10141 pmu->check_period = perf_event_nop_int;
10142
Peter Zijlstra35edc2a2011-11-20 20:36:02 +010010143 if (!pmu->event_idx)
10144 pmu->event_idx = perf_event_idx_default;
10145
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010146 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010147 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010148 ret = 0;
10149unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010150 mutex_unlock(&pmus_lock);
10151
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010152 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010153
Peter Zijlstraabe43402010-11-17 23:17:37 +010010154free_dev:
10155 device_del(pmu->dev);
10156 put_device(pmu->dev);
10157
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010158free_idr:
10159 if (pmu->type >= PERF_TYPE_MAX)
10160 idr_remove(&pmu_idr, pmu->type);
10161
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010162free_pdc:
10163 free_percpu(pmu->pmu_disable_count);
10164 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010165}
Yan, Zhengc464c762014-03-18 16:56:41 +080010166EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010167
10168void perf_pmu_unregister(struct pmu *pmu)
10169{
10170 mutex_lock(&pmus_lock);
10171 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010172
10173 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +020010174 * We dereference the pmu list under both SRCU and regular RCU, so
10175 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010176 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010177 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +020010178 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010179
Peter Zijlstra33696fc2010-06-14 08:49:00 +020010180 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010181 if (pmu->type >= PERF_TYPE_MAX)
10182 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010183 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +020010184 if (pmu->nr_addr_filters)
10185 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
10186 device_del(pmu->dev);
10187 put_device(pmu->dev);
10188 }
Peter Zijlstra51676952010-12-07 14:18:20 +010010189 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +020010190 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010191}
Yan, Zhengc464c762014-03-18 16:56:41 +080010192EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010193
Kan Liange321d022019-05-28 15:08:30 -070010194static inline bool has_extended_regs(struct perf_event *event)
10195{
10196 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
10197 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
10198}
10199
Mark Rutlandcc34b982015-01-07 14:56:51 +000010200static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
10201{
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010202 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +000010203 int ret;
10204
10205 if (!try_module_get(pmu->module))
10206 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010207
Peter Zijlstra0c7296c2018-01-09 21:23:02 +010010208 /*
10209 * A number of pmu->event_init() methods iterate the sibling_list to,
10210 * for example, validate if the group fits on the PMU. Therefore,
10211 * if this is a sibling event, acquire the ctx->mutex to protect
10212 * the sibling_list.
10213 */
10214 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +020010215 /*
10216 * This ctx->mutex can nest when we're called through
10217 * inheritance. See the perf_event_ctx_lock_nested() comment.
10218 */
10219 ctx = perf_event_ctx_lock_nested(event->group_leader,
10220 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010221 BUG_ON(!ctx);
10222 }
10223
Mark Rutlandcc34b982015-01-07 14:56:51 +000010224 event->pmu = pmu;
10225 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +010010226
10227 if (ctx)
10228 perf_event_ctx_unlock(event->group_leader, ctx);
10229
Andrew Murraycc6795a2019-01-10 13:53:25 +000010230 if (!ret) {
Kan Liange321d022019-05-28 15:08:30 -070010231 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
10232 has_extended_regs(event))
10233 ret = -EOPNOTSUPP;
10234
Andrew Murraycc6795a2019-01-10 13:53:25 +000010235 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
Kan Liange321d022019-05-28 15:08:30 -070010236 event_has_any_exclude_flag(event))
Andrew Murraycc6795a2019-01-10 13:53:25 +000010237 ret = -EINVAL;
Kan Liange321d022019-05-28 15:08:30 -070010238
10239 if (ret && event->destroy)
10240 event->destroy(event);
Andrew Murraycc6795a2019-01-10 13:53:25 +000010241 }
10242
Mark Rutlandcc34b982015-01-07 14:56:51 +000010243 if (ret)
10244 module_put(pmu->module);
10245
10246 return ret;
10247}
10248
Geliang Tang18ab2cd2015-09-27 23:25:50 +080010249static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010250{
Dan Carpenter85c617a2017-05-22 12:03:49 +030010251 struct pmu *pmu;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010252 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +080010253 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010254
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010255 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010256
Kan Liang40999312017-01-18 08:21:01 -050010257 /* Try parent's PMU first: */
10258 if (event->parent && event->parent->pmu) {
10259 pmu = event->parent->pmu;
10260 ret = perf_try_init_event(pmu, event);
10261 if (!ret)
10262 goto unlock;
10263 }
10264
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010265 rcu_read_lock();
10266 pmu = idr_find(&pmu_idr, event->attr.type);
10267 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +080010268 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010269 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +080010270 if (ret)
10271 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010272 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +080010273 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010274
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010275 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +000010276 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010277 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010278 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010279
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010280 if (ret != -ENOENT) {
10281 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010282 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010283 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010284 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +020010285 pmu = ERR_PTR(-ENOENT);
10286unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010287 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010288
10289 return pmu;
10290}
10291
Kan Liangf2fb6be2016-03-23 11:24:37 -070010292static void attach_sb_event(struct perf_event *event)
10293{
10294 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
10295
10296 raw_spin_lock(&pel->lock);
10297 list_add_rcu(&event->sb_list, &pel->list);
10298 raw_spin_unlock(&pel->lock);
10299}
10300
Peter Zijlstraaab5b712016-05-12 17:26:46 +020010301/*
10302 * We keep a list of all !task (and therefore per-cpu) events
10303 * that need to receive side-band records.
10304 *
10305 * This avoids having to scan all the various PMU per-cpu contexts
10306 * looking for them.
10307 */
Kan Liangf2fb6be2016-03-23 11:24:37 -070010308static void account_pmu_sb_event(struct perf_event *event)
10309{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -070010310 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -070010311 attach_sb_event(event);
10312}
10313
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010314static void account_event_cpu(struct perf_event *event, int cpu)
10315{
10316 if (event->parent)
10317 return;
10318
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010319 if (is_cgroup_event(event))
10320 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
10321}
10322
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010323/* Freq events need the tick to stay alive (see perf_event_task_tick). */
10324static void account_freq_event_nohz(void)
10325{
10326#ifdef CONFIG_NO_HZ_FULL
10327 /* Lock so we don't race with concurrent unaccount */
10328 spin_lock(&nr_freq_lock);
10329 if (atomic_inc_return(&nr_freq_events) == 1)
10330 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
10331 spin_unlock(&nr_freq_lock);
10332#endif
10333}
10334
10335static void account_freq_event(void)
10336{
10337 if (tick_nohz_full_enabled())
10338 account_freq_event_nohz();
10339 else
10340 atomic_inc(&nr_freq_events);
10341}
10342
10343
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010344static void account_event(struct perf_event *event)
10345{
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010346 bool inc = false;
10347
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010348 if (event->parent)
10349 return;
10350
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010351 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010352 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010353 if (event->attr.mmap || event->attr.mmap_data)
10354 atomic_inc(&nr_mmap_events);
10355 if (event->attr.comm)
10356 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +053010357 if (event->attr.namespaces)
10358 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010359 if (event->attr.task)
10360 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +020010361 if (event->attr.freq)
10362 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +030010363 if (event->attr.context_switch) {
10364 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010365 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +030010366 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010367 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010368 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010369 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010370 inc = true;
Song Liu76193a92019-01-17 08:15:13 -080010371 if (event->attr.ksymbol)
10372 atomic_inc(&nr_ksymbol_events);
Song Liu6ee52e22019-01-17 08:15:15 -080010373 if (event->attr.bpf_event)
10374 atomic_inc(&nr_bpf_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +010010375
Peter Zijlstra9107c892016-02-24 18:45:45 +010010376 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +030010377 /*
10378 * We need the mutex here because static_branch_enable()
10379 * must complete *before* the perf_sched_count increment
10380 * becomes visible.
10381 */
Peter Zijlstra9107c892016-02-24 18:45:45 +010010382 if (atomic_inc_not_zero(&perf_sched_count))
10383 goto enabled;
10384
10385 mutex_lock(&perf_sched_mutex);
10386 if (!atomic_read(&perf_sched_count)) {
10387 static_branch_enable(&perf_sched_events);
10388 /*
10389 * Guarantee that all CPUs observe they key change and
10390 * call the perf scheduling hooks before proceeding to
10391 * install events that need them.
10392 */
Paul E. McKenney0809d9542018-11-06 19:20:05 -080010393 synchronize_rcu();
Peter Zijlstra9107c892016-02-24 18:45:45 +010010394 }
10395 /*
10396 * Now that we have waited for the sync_sched(), allow further
10397 * increments to by-pass the mutex.
10398 */
10399 atomic_inc(&perf_sched_count);
10400 mutex_unlock(&perf_sched_mutex);
10401 }
10402enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010403
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +020010404 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -070010405
10406 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +020010407}
10408
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010409/*
Tobias Tefke788faab2018-07-09 12:57:15 +020010410 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010411 */
10412static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010413perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010414 struct task_struct *task,
10415 struct perf_event *group_leader,
10416 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010417 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +000010418 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010419{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +020010420 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010421 struct perf_event *event;
10422 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010423 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010424
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010425 if ((unsigned)cpu >= nr_cpu_ids) {
10426 if (!task || cpu != -1)
10427 return ERR_PTR(-EINVAL);
10428 }
10429
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010430 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010431 if (!event)
10432 return ERR_PTR(-ENOMEM);
10433
10434 /*
10435 * Single events are their own group leaders, with an
10436 * empty sibling list:
10437 */
10438 if (!group_leader)
10439 group_leader = event;
10440
10441 mutex_init(&event->child_mutex);
10442 INIT_LIST_HEAD(&event->child_list);
10443
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010444 INIT_LIST_HEAD(&event->event_entry);
10445 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +010010446 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +030010447 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010448 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +010010449 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010450 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +010010451 INIT_HLIST_NODE(&event->hlist_entry);
10452
Peter Zijlstra10c6db12011-11-26 02:47:31 +010010453
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010454 init_waitqueue_head(&event->waitq);
Peter Zijlstra1d54ad92019-04-04 15:03:00 +020010455 event->pending_disable = -1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080010456 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010457
10458 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010459 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010460
Al Viroa6fa9412012-08-20 14:59:25 +010010461 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010462 event->cpu = cpu;
10463 event->attr = *attr;
10464 event->group_leader = group_leader;
10465 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010466 event->oncpu = -1;
10467
10468 event->parent = parent_event;
10469
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080010470 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010471 event->id = atomic64_inc_return(&perf_event_id);
10472
10473 event->state = PERF_EVENT_STATE_INACTIVE;
10474
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010475 if (task) {
10476 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010477 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010010478 * XXX pmu::event_init needs to know what task to account to
10479 * and we cannot use the ctx information because we need the
10480 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010481 */
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -070010482 event->hw.target = get_task_struct(task);
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010483 }
10484
Peter Zijlstra34f43922015-02-20 14:05:38 +010010485 event->clock = &local_clock;
10486 if (parent_event)
10487 event->clock = parent_event->clock;
10488
Avi Kivity4dc0da82011-06-29 18:42:35 +030010489 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010010490 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010491 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020010492#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010493 if (overflow_handler == bpf_overflow_handler) {
10494 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
10495
10496 if (IS_ERR(prog)) {
10497 err = PTR_ERR(prog);
10498 goto err_ns;
10499 }
10500 event->prog = prog;
10501 event->orig_overflow_handler =
10502 parent_event->orig_overflow_handler;
10503 }
10504#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030010505 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010506
Wang Nan18794452016-03-28 06:41:30 +000010507 if (overflow_handler) {
10508 event->overflow_handler = overflow_handler;
10509 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000010510 } else if (is_write_backward(event)){
10511 event->overflow_handler = perf_event_output_backward;
10512 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000010513 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000010514 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000010515 event->overflow_handler_context = NULL;
10516 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020010517
Jiri Olsa0231bb52013-02-01 11:23:45 +010010518 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010519
10520 pmu = NULL;
10521
10522 hwc = &event->hw;
10523 hwc->sample_period = attr->sample_period;
10524 if (attr->freq && attr->sample_freq)
10525 hwc->sample_period = 1;
10526 hwc->last_period = hwc->sample_period;
10527
Peter Zijlstrae7850592010-05-21 14:43:08 +020010528 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010529
10530 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010531 * We currently do not support PERF_SAMPLE_READ on inherited events.
10532 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010533 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010534 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010535 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010536
Yan, Zhenga46a2302014-11-04 21:56:06 -050010537 if (!has_branch_stack(event))
10538 event->attr.branch_sample_type = 0;
10539
Matt Fleming79dff512015-01-23 18:45:42 +000010540 if (cgroup_fd != -1) {
10541 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
10542 if (err)
10543 goto err_ns;
10544 }
10545
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010546 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030010547 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010548 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010549 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010550 }
10551
Alexander Shishkinab437622019-08-06 11:46:00 +030010552 if (event->attr.aux_output &&
10553 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
10554 err = -EOPNOTSUPP;
10555 goto err_pmu;
10556 }
10557
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010558 err = exclusive_event_init(event);
10559 if (err)
10560 goto err_pmu;
10561
Alexander Shishkin375637b2016-04-27 18:44:46 +030010562 if (has_addr_filter(event)) {
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010563 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
10564 sizeof(struct perf_addr_filter_range),
10565 GFP_KERNEL);
10566 if (!event->addr_filter_ranges) {
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010567 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010568 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010569 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010570
Alexander Shishkin18736ee2019-02-15 13:56:54 +020010571 /*
10572 * Clone the parent's vma offsets: they are valid until exec()
10573 * even if the mm is not shared with the parent.
10574 */
10575 if (event->parent) {
10576 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
10577
10578 raw_spin_lock_irq(&ifh->lock);
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010579 memcpy(event->addr_filter_ranges,
10580 event->parent->addr_filter_ranges,
10581 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
Alexander Shishkin18736ee2019-02-15 13:56:54 +020010582 raw_spin_unlock_irq(&ifh->lock);
10583 }
10584
Alexander Shishkin375637b2016-04-27 18:44:46 +030010585 /* force hw sync on the address filters */
10586 event->addr_filters_gen = 1;
10587 }
10588
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010589 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020010590 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030010591 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010592 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010593 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010010594 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010595 }
10596
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010597 err = security_perf_event_alloc(event);
10598 if (err)
10599 goto err_callchain_buffer;
10600
Alexander Shishkin927a5572016-03-02 13:24:14 +020010601 /* symmetric to unaccount_event() in _free_event() */
10602 account_event(event);
10603
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010604 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010605
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010606err_callchain_buffer:
10607 if (!event->parent) {
10608 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
10609 put_callchain_buffers();
10610 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010611err_addr_filters:
Alexander Shishkinc60f83b2019-02-15 13:56:55 +020010612 kfree(event->addr_filter_ranges);
Alexander Shishkin375637b2016-04-27 18:44:46 +030010613
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010614err_per_task:
10615 exclusive_event_destroy(event);
10616
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010617err_pmu:
10618 if (event->destroy)
10619 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080010620 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010621err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +000010622 if (is_cgroup_event(event))
10623 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010624 if (event->ns)
10625 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090010626 if (event->hw.target)
10627 put_task_struct(event->hw.target);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010628 kfree(event);
10629
10630 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010631}
10632
10633static int perf_copy_attr(struct perf_event_attr __user *uattr,
10634 struct perf_event_attr *attr)
10635{
10636 u32 size;
10637 int ret;
10638
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010639 /* Zero the full structure, so that a short copy will be nice. */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010640 memset(attr, 0, sizeof(*attr));
10641
10642 ret = get_user(size, &uattr->size);
10643 if (ret)
10644 return ret;
10645
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010646 /* ABI compatibility quirk: */
10647 if (!size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010648 size = PERF_ATTR_SIZE_VER0;
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010649 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010650 goto err_size;
10651
Aleksa Saraic2ba8f42019-10-01 11:10:55 +100010652 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
10653 if (ret) {
10654 if (ret == -E2BIG)
10655 goto err_size;
10656 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010657 }
10658
Meng Xuf12f42a2017-08-23 17:07:50 -040010659 attr->size = size;
10660
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +053010661 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010662 return -EINVAL;
10663
10664 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
10665 return -EINVAL;
10666
10667 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
10668 return -EINVAL;
10669
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010670 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
10671 u64 mask = attr->branch_sample_type;
10672
10673 /* only using defined bits */
10674 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
10675 return -EINVAL;
10676
10677 /* at least one branch bit must be set */
10678 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
10679 return -EINVAL;
10680
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010681 /* propagate priv level, when not set for branch */
10682 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
10683
10684 /* exclude_kernel checked on syscall entry */
10685 if (!attr->exclude_kernel)
10686 mask |= PERF_SAMPLE_BRANCH_KERNEL;
10687
10688 if (!attr->exclude_user)
10689 mask |= PERF_SAMPLE_BRANCH_USER;
10690
10691 if (!attr->exclude_hv)
10692 mask |= PERF_SAMPLE_BRANCH_HV;
10693 /*
10694 * adjust user setting (for HW filter setup)
10695 */
10696 attr->branch_sample_type = mask;
10697 }
Stephane Eraniane7122092013-06-06 11:02:04 +020010698 /* privileged levels capture (kernel, hv): check permissions */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010699 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
10700 ret = perf_allow_kernel(attr);
10701 if (ret)
10702 return ret;
10703 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010704 }
Jiri Olsa40189942012-08-07 15:20:37 +020010705
Jiri Olsac5ebced2012-08-07 15:20:40 +020010706 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020010707 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020010708 if (ret)
10709 return ret;
10710 }
10711
10712 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
10713 if (!arch_perf_have_user_stack_dump())
10714 return -ENOSYS;
10715
10716 /*
10717 * We have __u32 type for the size, but so far
10718 * we can only use __u16 as maximum due to the
10719 * __u16 sample size limit.
10720 */
10721 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020010722 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020010723 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020010724 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020010725 }
Jiri Olsa40189942012-08-07 15:20:37 +020010726
Jiri Olsa5f970522018-03-12 14:45:46 +010010727 if (!attr->sample_max_stack)
10728 attr->sample_max_stack = sysctl_perf_event_max_stack;
10729
Stephane Eranian60e23642014-09-24 13:48:37 +020010730 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
10731 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010732out:
10733 return ret;
10734
10735err_size:
10736 put_user(sizeof(*attr), &uattr->size);
10737 ret = -E2BIG;
10738 goto out;
10739}
10740
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010741static int
10742perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010743{
Peter Zijlstrab69cf532014-03-14 10:50:33 +010010744 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010745 int ret = -EINVAL;
10746
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010747 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010748 goto set;
10749
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010750 /* don't allow circular references */
10751 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010752 goto out;
10753
Peter Zijlstra0f139302010-05-20 14:35:15 +020010754 /*
10755 * Don't allow cross-cpu buffers
10756 */
10757 if (output_event->cpu != event->cpu)
10758 goto out;
10759
10760 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020010761 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020010762 */
10763 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
10764 goto out;
10765
Peter Zijlstra34f43922015-02-20 14:05:38 +010010766 /*
10767 * Mixing clocks in the same buffer is trouble you don't need.
10768 */
10769 if (output_event->clock != event->clock)
10770 goto out;
10771
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020010772 /*
Wang Nan9ecda412016-04-05 14:11:18 +000010773 * Either writing ring buffer from beginning or from end.
10774 * Mixing is not allowed.
10775 */
10776 if (is_write_backward(output_event) != is_write_backward(event))
10777 goto out;
10778
10779 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020010780 * If both events generate aux data, they must be on the same PMU
10781 */
10782 if (has_aux(event) && has_aux(output_event) &&
10783 event->pmu != output_event->pmu)
10784 goto out;
10785
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010786set:
10787 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010788 /* Can't redirect output if we've got an active mmap() */
10789 if (atomic_read(&event->mmap_count))
10790 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010791
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010792 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020010793 /* get the rb we want to redirect to */
10794 rb = ring_buffer_get(output_event);
10795 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010796 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010797 }
10798
Peter Zijlstrab69cf532014-03-14 10:50:33 +010010799 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020010800
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010801 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010802unlock:
10803 mutex_unlock(&event->mmap_mutex);
10804
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010805out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010806 return ret;
10807}
10808
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010809static void mutex_lock_double(struct mutex *a, struct mutex *b)
10810{
10811 if (b < a)
10812 swap(a, b);
10813
10814 mutex_lock(a);
10815 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
10816}
10817
Peter Zijlstra34f43922015-02-20 14:05:38 +010010818static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
10819{
10820 bool nmi_safe = false;
10821
10822 switch (clk_id) {
10823 case CLOCK_MONOTONIC:
10824 event->clock = &ktime_get_mono_fast_ns;
10825 nmi_safe = true;
10826 break;
10827
10828 case CLOCK_MONOTONIC_RAW:
10829 event->clock = &ktime_get_raw_fast_ns;
10830 nmi_safe = true;
10831 break;
10832
10833 case CLOCK_REALTIME:
10834 event->clock = &ktime_get_real_ns;
10835 break;
10836
10837 case CLOCK_BOOTTIME:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010838 event->clock = &ktime_get_boottime_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010010839 break;
10840
10841 case CLOCK_TAI:
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010842 event->clock = &ktime_get_clocktai_ns;
Peter Zijlstra34f43922015-02-20 14:05:38 +010010843 break;
10844
10845 default:
10846 return -EINVAL;
10847 }
10848
10849 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
10850 return -EINVAL;
10851
10852 return 0;
10853}
10854
Peter Zijlstra321027c2017-01-11 21:09:50 +010010855/*
10856 * Variation on perf_event_ctx_lock_nested(), except we take two context
10857 * mutexes.
10858 */
10859static struct perf_event_context *
10860__perf_event_ctx_lock_double(struct perf_event *group_leader,
10861 struct perf_event_context *ctx)
10862{
10863 struct perf_event_context *gctx;
10864
10865again:
10866 rcu_read_lock();
10867 gctx = READ_ONCE(group_leader->ctx);
Elena Reshetova8c94abb2019-01-28 14:27:26 +020010868 if (!refcount_inc_not_zero(&gctx->refcount)) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010010869 rcu_read_unlock();
10870 goto again;
10871 }
10872 rcu_read_unlock();
10873
10874 mutex_lock_double(&gctx->mutex, &ctx->mutex);
10875
10876 if (group_leader->ctx != gctx) {
10877 mutex_unlock(&ctx->mutex);
10878 mutex_unlock(&gctx->mutex);
10879 put_ctx(gctx);
10880 goto again;
10881 }
10882
10883 return gctx;
10884}
10885
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010886/**
10887 * sys_perf_event_open - open a performance event, associate it to a task/cpu
10888 *
10889 * @attr_uptr: event_id type attributes for monitoring/sampling
10890 * @pid: target pid
10891 * @cpu: target cpu
10892 * @group_fd: group leader event fd
10893 */
10894SYSCALL_DEFINE5(perf_event_open,
10895 struct perf_event_attr __user *, attr_uptr,
10896 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
10897{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010898 struct perf_event *group_leader = NULL, *output_event = NULL;
10899 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010900 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010901 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010902 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040010903 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070010904 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010905 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040010906 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010907 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010908 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010010909 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000010910 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010911
10912 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020010913 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010914 return -EINVAL;
10915
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010916 /* Do we allow access to perf_event_open(2) ? */
10917 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
10918 if (err)
10919 return err;
10920
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010921 err = perf_copy_attr(attr_uptr, &attr);
10922 if (err)
10923 return err;
10924
10925 if (!attr.exclude_kernel) {
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010926 err = perf_allow_kernel(&attr);
10927 if (err)
10928 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010929 }
10930
Hari Bathinie4222672017-03-08 02:11:36 +053010931 if (attr.namespaces) {
10932 if (!capable(CAP_SYS_ADMIN))
10933 return -EACCES;
10934 }
10935
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010936 if (attr.freq) {
10937 if (attr.sample_freq > sysctl_perf_event_sample_rate)
10938 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020010939 } else {
10940 if (attr.sample_period & (1ULL << 63))
10941 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010942 }
10943
Kan Liangfc7ce9c2017-08-28 20:52:49 -040010944 /* Only privileged users can get physical addresses */
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -040010945 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
10946 err = perf_allow_kernel(&attr);
10947 if (err)
10948 return err;
10949 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -040010950
David Howellsb0c8fdc2019-08-19 17:18:00 -070010951 err = security_locked_down(LOCKDOWN_PERF);
10952 if (err && (attr.sample_type & PERF_SAMPLE_REGS_INTR))
10953 /* REGS_INTR can leak data, lockdown must prevent this */
10954 return err;
10955
10956 err = 0;
10957
Stephane Eraniane5d13672011-02-14 11:20:01 +020010958 /*
10959 * In cgroup mode, the pid argument is used to pass the fd
10960 * opened to the cgroup directory in cgroupfs. The cpu argument
10961 * designates the cpu on which to monitor threads from that
10962 * cgroup.
10963 */
10964 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
10965 return -EINVAL;
10966
Yann Droneauda21b0b32014-01-05 21:36:33 +010010967 if (flags & PERF_FLAG_FD_CLOEXEC)
10968 f_flags |= O_CLOEXEC;
10969
10970 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010971 if (event_fd < 0)
10972 return event_fd;
10973
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010974 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040010975 err = perf_fget_light(group_fd, &group);
10976 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010977 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040010978 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010979 if (flags & PERF_FLAG_FD_OUTPUT)
10980 output_event = group_leader;
10981 if (flags & PERF_FLAG_FD_NO_GROUP)
10982 group_leader = NULL;
10983 }
10984
Stephane Eraniane5d13672011-02-14 11:20:01 +020010985 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010986 task = find_lively_task_by_vpid(pid);
10987 if (IS_ERR(task)) {
10988 err = PTR_ERR(task);
10989 goto err_group_fd;
10990 }
10991 }
10992
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010993 if (task && group_leader &&
10994 group_leader->attr.inherit != attr.inherit) {
10995 err = -EINVAL;
10996 goto err_task;
10997 }
10998
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010999 if (task) {
11000 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
11001 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +000011002 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011003
11004 /*
11005 * Reuse ptrace permission checks for now.
11006 *
11007 * We must hold cred_guard_mutex across this and any potential
11008 * perf_install_in_context() call for this new event to
11009 * serialize against exec() altering our credentials (and the
11010 * perf_event_exit_task() that could imply).
11011 */
11012 err = -EACCES;
11013 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
11014 goto err_cred;
11015 }
11016
Matt Fleming79dff512015-01-23 18:45:42 +000011017 if (flags & PERF_FLAG_PID_CGROUP)
11018 cgroup_fd = pid;
11019
Avi Kivity4dc0da82011-06-29 18:42:35 +030011020 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011021 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011022 if (IS_ERR(event)) {
11023 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011024 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020011025 }
11026
Vince Weaver53b25332014-05-16 17:12:12 -040011027 if (is_sampling_event(event)) {
11028 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053011029 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040011030 goto err_alloc;
11031 }
11032 }
11033
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011034 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011035 * Special case software events and allow them to be part of
11036 * any hardware group.
11037 */
11038 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011039
Peter Zijlstra34f43922015-02-20 14:05:38 +010011040 if (attr.use_clockid) {
11041 err = perf_event_set_clock(event, attr.clockid);
11042 if (err)
11043 goto err_alloc;
11044 }
11045
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011046 if (pmu->task_ctx_nr == perf_sw_context)
11047 event->event_caps |= PERF_EV_CAP_SOFTWARE;
11048
Song Liua1150c22018-05-03 12:47:16 -070011049 if (group_leader) {
11050 if (is_software_event(event) &&
11051 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011052 /*
Song Liua1150c22018-05-03 12:47:16 -070011053 * If the event is a sw event, but the group_leader
11054 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011055 *
Song Liua1150c22018-05-03 12:47:16 -070011056 * Allow the addition of software events to hw
11057 * groups, this is safe because software events
11058 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011059 */
Song Liua1150c22018-05-03 12:47:16 -070011060 pmu = group_leader->ctx->pmu;
11061 } else if (!is_software_event(event) &&
11062 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070011063 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011064 /*
11065 * In case the group is a pure software group, and we
11066 * try to add a hardware event, move the whole group to
11067 * the hardware context.
11068 */
11069 move_group = 1;
11070 }
11071 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011072
11073 /*
11074 * Get the target context (task or percpu):
11075 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011076 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011077 if (IS_ERR(ctx)) {
11078 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011079 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011080 }
11081
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011082 /*
11083 * Look up the group leader (we will attach this event to it):
11084 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011085 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011086 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011087
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011088 /*
11089 * Do not allow a recursive hierarchy (this new sibling
11090 * becoming part of another group-sibling):
11091 */
11092 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011093 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010011094
11095 /* All events in a group should have the same clock */
11096 if (group_leader->clock != event->clock)
11097 goto err_context;
11098
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011099 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010011100 * Make sure we're both events for the same CPU;
11101 * grouping events for different CPUs is broken; since
11102 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011103 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010011104 if (group_leader->cpu != event->cpu)
11105 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010011106
Mark Rutland64aee2a2017-06-22 15:41:38 +010011107 /*
11108 * Make sure we're both on the same task, or both
11109 * per-CPU events.
11110 */
11111 if (group_leader->ctx->task != ctx->task)
11112 goto err_context;
11113
11114 /*
11115 * Do not allow to attach to a group in a different task
11116 * or CPU context. If we're moving SW events, we'll fix
11117 * this up later, so allow that.
11118 */
11119 if (!move_group && group_leader->ctx != ctx)
11120 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011121
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011122 /*
11123 * Only a group leader can be exclusive or pinned
11124 */
11125 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011126 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011127 }
11128
11129 if (output_event) {
11130 err = perf_event_set_output(event, output_event);
11131 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011132 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020011133 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011134
Yann Droneauda21b0b32014-01-05 21:36:33 +010011135 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
11136 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040011137 if (IS_ERR(event_file)) {
11138 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020011139 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011140 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040011141 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011142
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011143 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010011144 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
11145
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011146 if (gctx->task == TASK_TOMBSTONE) {
11147 err = -ESRCH;
11148 goto err_locked;
11149 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010011150
11151 /*
11152 * Check if we raced against another sys_perf_event_open() call
11153 * moving the software group underneath us.
11154 */
11155 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
11156 /*
11157 * If someone moved the group out from under us, check
11158 * if this new event wound up on the same ctx, if so
11159 * its the regular !move_group case, otherwise fail.
11160 */
11161 if (gctx != ctx) {
11162 err = -EINVAL;
11163 goto err_locked;
11164 } else {
11165 perf_event_ctx_unlock(group_leader, gctx);
11166 move_group = 0;
11167 }
11168 }
Alexander Shishkin8a58dda2019-07-01 14:07:55 +030011169
11170 /*
11171 * Failure to create exclusive events returns -EBUSY.
11172 */
11173 err = -EBUSY;
11174 if (!exclusive_event_installable(group_leader, ctx))
11175 goto err_locked;
11176
11177 for_each_sibling_event(sibling, group_leader) {
11178 if (!exclusive_event_installable(sibling, ctx))
11179 goto err_locked;
11180 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011181 } else {
11182 mutex_lock(&ctx->mutex);
11183 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011184
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011185 if (ctx->task == TASK_TOMBSTONE) {
11186 err = -ESRCH;
11187 goto err_locked;
11188 }
11189
Peter Zijlstraa7239682015-09-09 19:06:33 +020011190 if (!perf_event_validate_size(event)) {
11191 err = -E2BIG;
11192 goto err_locked;
11193 }
11194
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011195 if (!task) {
11196 /*
11197 * Check if the @cpu we're creating an event for is online.
11198 *
11199 * We use the perf_cpu_context::ctx::mutex to serialize against
11200 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11201 */
11202 struct perf_cpu_context *cpuctx =
11203 container_of(ctx, struct perf_cpu_context, ctx);
11204
11205 if (!cpuctx->online) {
11206 err = -ENODEV;
11207 goto err_locked;
11208 }
11209 }
11210
Alexander Shishkinab437622019-08-06 11:46:00 +030011211 if (event->attr.aux_output && !perf_get_aux_event(event, group_leader))
11212 goto err_locked;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011213
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011214 /*
11215 * Must be under the same ctx::mutex as perf_install_in_context(),
11216 * because we need to serialize with concurrent event creation.
11217 */
11218 if (!exclusive_event_installable(event, ctx)) {
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011219 err = -EBUSY;
11220 goto err_locked;
11221 }
11222
11223 WARN_ON_ONCE(ctx->parent_ctx);
11224
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011225 /*
11226 * This is the point on no return; we cannot fail hereafter. This is
11227 * where we start modifying current state.
11228 */
11229
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011230 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011231 /*
11232 * See perf_event_ctx_lock() for comments on the details
11233 * of swizzling perf_event::ctx.
11234 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011235 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010011236 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010011237
Peter Zijlstraedb39592018-03-15 17:36:56 +010011238 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011239 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011240 put_ctx(gctx);
11241 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011242
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011243 /*
11244 * Wait for everybody to stop referencing the events through
11245 * the old lists, before installing it on new lists.
11246 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011247 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011248
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011249 /*
11250 * Install the group siblings before the group leader.
11251 *
11252 * Because a group leader will try and install the entire group
11253 * (through the sibling list, which is still in-tact), we can
11254 * end up with siblings installed in the wrong context.
11255 *
11256 * By installing siblings first we NO-OP because they're not
11257 * reachable through the group lists.
11258 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010011259 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011260 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010011261 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011262 get_ctx(ctx);
11263 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011264
11265 /*
11266 * Removing from the context ends up with disabled
11267 * event. What we want here is event in the initial
11268 * startup state, ready to be add into new context.
11269 */
11270 perf_event__state_init(group_leader);
11271 perf_install_in_context(ctx, group_leader, group_leader->cpu);
11272 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020011273 }
11274
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020011275 /*
11276 * Precalculate sample_data sizes; do while holding ctx::mutex such
11277 * that we're serialized against further additions and before
11278 * perf_install_in_context() which is the point the event is active and
11279 * can use these values.
11280 */
11281 perf_event__header_size(event);
11282 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011283
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010011284 event->owner = current;
11285
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080011286 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011287 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011288
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011289 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011290 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011291 mutex_unlock(&ctx->mutex);
11292
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011293 if (task) {
11294 mutex_unlock(&task->signal->cred_guard_mutex);
11295 put_task_struct(task);
11296 }
11297
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011298 mutex_lock(&current->perf_event_mutex);
11299 list_add_tail(&event->owner_entry, &current->perf_event_list);
11300 mutex_unlock(&current->perf_event_mutex);
11301
Peter Zijlstra8a495422010-05-27 15:47:49 +020011302 /*
11303 * Drop the reference on the group_event after placing the
11304 * new event on the sibling_list. This ensures destruction
11305 * of the group leader will find the pointer to itself in
11306 * perf_group_detach().
11307 */
Al Viro2903ff02012-08-28 12:52:22 -040011308 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011309 fd_install(event_fd, event_file);
11310 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011311
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011312err_locked:
11313 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010011314 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020011315 mutex_unlock(&ctx->mutex);
11316/* err_file: */
11317 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011318err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011319 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040011320 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020011321err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010011322 /*
11323 * If event_file is set, the fput() above will have called ->release()
11324 * and that will take care of freeing the event.
11325 */
11326 if (!event_file)
11327 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011328err_cred:
11329 if (task)
11330 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020011331err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020011332 if (task)
11333 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020011334err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040011335 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040011336err_fd:
11337 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011338 return err;
11339}
11340
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011341/**
11342 * perf_event_create_kernel_counter
11343 *
11344 * @attr: attributes of the counter to create
11345 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070011346 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011347 */
11348struct perf_event *
11349perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070011350 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030011351 perf_overflow_handler_t overflow_handler,
11352 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011353{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011354 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011355 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011356 int err;
11357
11358 /*
11359 * Get the target context (task or percpu):
11360 */
11361
Avi Kivity4dc0da82011-06-29 18:42:35 +030011362 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000011363 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011364 if (IS_ERR(event)) {
11365 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011366 goto err;
11367 }
11368
Jiri Olsaf8697762014-08-01 14:33:01 +020011369 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011370 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020011371
Yan, Zheng4af57ef2014-11-04 21:56:01 -050011372 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011373 if (IS_ERR(ctx)) {
11374 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011375 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011376 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011377
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011378 WARN_ON_ONCE(ctx->parent_ctx);
11379 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011380 if (ctx->task == TASK_TOMBSTONE) {
11381 err = -ESRCH;
11382 goto err_unlock;
11383 }
11384
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011385 if (!task) {
11386 /*
11387 * Check if the @cpu we're creating an event for is online.
11388 *
11389 * We use the perf_cpu_context::ctx::mutex to serialize against
11390 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11391 */
11392 struct perf_cpu_context *cpuctx =
11393 container_of(ctx, struct perf_cpu_context, ctx);
11394 if (!cpuctx->online) {
11395 err = -ENODEV;
11396 goto err_unlock;
11397 }
11398 }
11399
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011400 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011401 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011402 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020011403 }
11404
Leonard Crestez4ce54af2019-07-24 15:53:24 +030011405 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011406 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011407 mutex_unlock(&ctx->mutex);
11408
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011409 return event;
11410
Peter Zijlstra84c4e622016-02-24 18:45:40 +010011411err_unlock:
11412 mutex_unlock(&ctx->mutex);
11413 perf_unpin_context(ctx);
11414 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020011415err_free:
11416 free_event(event);
11417err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010011418 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020011419}
11420EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
11421
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011422void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
11423{
11424 struct perf_event_context *src_ctx;
11425 struct perf_event_context *dst_ctx;
11426 struct perf_event *event, *tmp;
11427 LIST_HEAD(events);
11428
11429 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
11430 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
11431
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011432 /*
11433 * See perf_event_ctx_lock() for comments on the details
11434 * of swizzling perf_event::ctx.
11435 */
11436 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011437 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
11438 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011439 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011440 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011441 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020011442 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011443 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011444
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011445 /*
11446 * Wait for the events to quiesce before re-instating them.
11447 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011448 synchronize_rcu();
11449
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010011450 /*
11451 * Re-instate events in 2 passes.
11452 *
11453 * Skip over group leaders and only install siblings on this first
11454 * pass, siblings will not get enabled without a leader, however a
11455 * leader will enable its siblings, even if those are still on the old
11456 * context.
11457 */
11458 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11459 if (event->group_leader == event)
11460 continue;
11461
11462 list_del(&event->migrate_entry);
11463 if (event->state >= PERF_EVENT_STATE_OFF)
11464 event->state = PERF_EVENT_STATE_INACTIVE;
11465 account_event_cpu(event, dst_cpu);
11466 perf_install_in_context(dst_ctx, event, dst_cpu);
11467 get_ctx(dst_ctx);
11468 }
11469
11470 /*
11471 * Once all the siblings are setup properly, install the group leaders
11472 * to make it go.
11473 */
Peter Zijlstra98861672013-10-03 16:02:23 +020011474 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
11475 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011476 if (event->state >= PERF_EVENT_STATE_OFF)
11477 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020011478 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011479 perf_install_in_context(dst_ctx, event, dst_cpu);
11480 get_ctx(dst_ctx);
11481 }
11482 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010011483 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080011484}
11485EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
11486
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011487static void sync_child_event(struct perf_event *child_event,
11488 struct task_struct *child)
11489{
11490 struct perf_event *parent_event = child_event->parent;
11491 u64 child_val;
11492
11493 if (child_event->attr.inherit_stat)
11494 perf_event_read_event(child_event, child);
11495
Peter Zijlstrab5e58792010-05-21 14:43:12 +020011496 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011497
11498 /*
11499 * Add back the child's count to the parent's count:
11500 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020011501 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011502 atomic64_add(child_event->total_time_enabled,
11503 &parent_event->child_total_time_enabled);
11504 atomic64_add(child_event->total_time_running,
11505 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011506}
11507
11508static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011509perf_event_exit_event(struct perf_event *child_event,
11510 struct perf_event_context *child_ctx,
11511 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011512{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011513 struct perf_event *parent_event = child_event->parent;
11514
Peter Zijlstra1903d502014-07-15 17:27:27 +020011515 /*
11516 * Do not destroy the 'original' grouping; because of the context
11517 * switch optimization the original events could've ended up in a
11518 * random child task.
11519 *
11520 * If we were to destroy the original group, all group related
11521 * operations would cease to function properly after this random
11522 * child dies.
11523 *
11524 * Do destroy all inherited groups, we don't care about those
11525 * and being thorough is better.
11526 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011527 raw_spin_lock_irq(&child_ctx->lock);
11528 WARN_ON_ONCE(child_ctx->is_active);
11529
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011530 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010011531 perf_group_detach(child_event);
11532 list_del_event(child_event, child_ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +020011533 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011534 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011535
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011536 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011537 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011538 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011539 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040011540 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011541 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011542 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011543 /*
11544 * Child events can be cleaned up.
11545 */
11546
11547 sync_child_event(child_event, child);
11548
11549 /*
11550 * Remove this event from the parent's list
11551 */
11552 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
11553 mutex_lock(&parent_event->child_mutex);
11554 list_del_init(&child_event->child_list);
11555 mutex_unlock(&parent_event->child_mutex);
11556
11557 /*
11558 * Kick perf_poll() for is_event_hup().
11559 */
11560 perf_event_wakeup(parent_event);
11561 free_event(child_event);
11562 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011563}
11564
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011565static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011566{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011567 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011568 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011569
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011570 WARN_ON_ONCE(child != current);
11571
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011572 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011573 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011574 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011575
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011576 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011577 * In order to reduce the amount of tricky in ctx tear-down, we hold
11578 * ctx::mutex over the entire thing. This serializes against almost
11579 * everything that wants to access the ctx.
11580 *
11581 * The exception is sys_perf_event_open() /
11582 * perf_event_create_kernel_count() which does find_get_context()
11583 * without ctx::mutex (it cannot because of the move_group double mutex
11584 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011585 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011586 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011587
11588 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011589 * In a single ctx::lock section, de-schedule the events and detach the
11590 * context from the task such that we cannot ever get it scheduled back
11591 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011592 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011593 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020011594 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011595
11596 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011597 * Now that the context is inactive, destroy the task <-> ctx relation
11598 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011599 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011600 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
11601 put_ctx(child_ctx); /* cannot be last */
11602 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
11603 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011604
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011605 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011606 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011607
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011608 if (clone_ctx)
11609 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011610
11611 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011612 * Report the task dead after unscheduling the events so that we
11613 * won't get any samples after PERF_RECORD_EXIT. We can however still
11614 * get a few PERF_RECORD_READ events.
11615 */
11616 perf_event_task(child, child_ctx, 0);
11617
Peter Zijlstraebf905f2014-05-29 19:00:24 +020011618 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011619 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011620
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011621 mutex_unlock(&child_ctx->mutex);
11622
11623 put_ctx(child_ctx);
11624}
11625
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011626/*
11627 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011628 *
11629 * Can be called with cred_guard_mutex held when called from
11630 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011631 */
11632void perf_event_exit_task(struct task_struct *child)
11633{
Peter Zijlstra88821352010-11-09 19:01:43 +010011634 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011635 int ctxn;
11636
Peter Zijlstra88821352010-11-09 19:01:43 +010011637 mutex_lock(&child->perf_event_mutex);
11638 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
11639 owner_entry) {
11640 list_del_init(&event->owner_entry);
11641
11642 /*
11643 * Ensure the list deletion is visible before we clear
11644 * the owner, closes a race against perf_release() where
11645 * we need to serialize on the owner->perf_event_mutex.
11646 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010011647 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010011648 }
11649 mutex_unlock(&child->perf_event_mutex);
11650
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011651 for_each_task_context_nr(ctxn)
11652 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010011653
11654 /*
11655 * The perf_event_exit_task_context calls perf_event_task
11656 * with child's task_ctx, which generates EXIT events for
11657 * child contexts and sets child->perf_event_ctxp[] to NULL.
11658 * At this point we need to send EXIT events to cpu contexts.
11659 */
11660 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011661}
11662
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011663static void perf_free_event(struct perf_event *event,
11664 struct perf_event_context *ctx)
11665{
11666 struct perf_event *parent = event->parent;
11667
11668 if (WARN_ON_ONCE(!parent))
11669 return;
11670
11671 mutex_lock(&parent->child_mutex);
11672 list_del_init(&event->child_list);
11673 mutex_unlock(&parent->child_mutex);
11674
Al Viroa6fa9412012-08-20 14:59:25 +010011675 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011676
Peter Zijlstra652884f2015-01-23 11:20:10 +010011677 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020011678 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011679 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010011680 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011681 free_event(event);
11682}
11683
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011684/*
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020011685 * Free a context as created by inheritance by perf_event_init_task() below,
11686 * used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010011687 *
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020011688 * Even though the task has never lived, the context and events have been
11689 * exposed through the child_list, so we must take care tearing it all down.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011690 */
11691void perf_event_free_task(struct task_struct *task)
11692{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011693 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011694 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011695 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011696
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011697 for_each_task_context_nr(ctxn) {
11698 ctx = task->perf_event_ctxp[ctxn];
11699 if (!ctx)
11700 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011701
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011702 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010011703 raw_spin_lock_irq(&ctx->lock);
11704 /*
11705 * Destroy the task <-> ctx relation and mark the context dead.
11706 *
11707 * This is important because even though the task hasn't been
11708 * exposed yet the context has been (through child_list).
11709 */
11710 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
11711 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
11712 put_task_struct(task); /* cannot be last */
11713 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011714
Peter Zijlstra15121c72017-03-16 13:47:50 +010011715 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011716 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011717
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011718 mutex_unlock(&ctx->mutex);
Peter Zijlstra1cf8dfe2019-07-13 11:21:25 +020011719
11720 /*
11721 * perf_event_release_kernel() could've stolen some of our
11722 * child events and still have them on its free_list. In that
11723 * case we must wait for these events to have been freed (in
11724 * particular all their references to this task must've been
11725 * dropped).
11726 *
11727 * Without this copy_process() will unconditionally free this
11728 * task (irrespective of its reference count) and
11729 * _free_event()'s put_task_struct(event->hw.target) will be a
11730 * use-after-free.
11731 *
11732 * Wait for all events to drop their context reference.
11733 */
11734 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
11735 put_ctx(ctx); /* must be last */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011736 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011737}
11738
Peter Zijlstra4e231c72010-09-09 21:01:59 +020011739void perf_event_delayed_put(struct task_struct *task)
11740{
11741 int ctxn;
11742
11743 for_each_task_context_nr(ctxn)
11744 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
11745}
11746
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011747struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000011748{
Al Viro02e5ad92019-06-26 20:43:53 -040011749 struct file *file = fget(fd);
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011750 if (!file)
11751 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000011752
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011753 if (file->f_op != &perf_fops) {
11754 fput(file);
11755 return ERR_PTR(-EBADF);
11756 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000011757
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011758 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000011759}
11760
Yonghong Songf8d959a2018-05-24 11:21:08 -070011761const struct perf_event *perf_get_event(struct file *file)
11762{
11763 if (file->f_op != &perf_fops)
11764 return ERR_PTR(-EINVAL);
11765
11766 return file->private_data;
11767}
11768
Kaixu Xiaffe86902015-08-06 07:02:32 +000011769const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
11770{
11771 if (!event)
11772 return ERR_PTR(-EINVAL);
11773
11774 return &event->attr;
11775}
11776
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011777/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011778 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011779 *
11780 * Returns:
11781 * - valid pointer on success
11782 * - NULL for orphaned events
11783 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011784 */
11785static struct perf_event *
11786inherit_event(struct perf_event *parent_event,
11787 struct task_struct *parent,
11788 struct perf_event_context *parent_ctx,
11789 struct task_struct *child,
11790 struct perf_event *group_leader,
11791 struct perf_event_context *child_ctx)
11792{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020011793 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011794 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020011795 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011796
11797 /*
11798 * Instead of creating recursive hierarchies of events,
11799 * we link inherited events back to the original parent,
11800 * which has a filp for sure, which we use as the reference
11801 * count:
11802 */
11803 if (parent_event->parent)
11804 parent_event = parent_event->parent;
11805
11806 child_event = perf_event_alloc(&parent_event->attr,
11807 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011808 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011809 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000011810 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011811 if (IS_ERR(child_event))
11812 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010011813
Jiri Olsa313ccb92018-01-07 17:03:47 +010011814
11815 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
11816 !child_ctx->task_ctx_data) {
11817 struct pmu *pmu = child_event->pmu;
11818
11819 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
11820 GFP_KERNEL);
11821 if (!child_ctx->task_ctx_data) {
11822 free_event(child_event);
11823 return NULL;
11824 }
11825 }
11826
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020011827 /*
11828 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
11829 * must be under the same lock in order to serialize against
11830 * perf_event_release_kernel(), such that either we must observe
11831 * is_orphaned_event() or they will observe us on the child_list.
11832 */
11833 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020011834 if (is_orphaned_event(parent_event) ||
11835 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020011836 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010011837 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010011838 free_event(child_event);
11839 return NULL;
11840 }
11841
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011842 get_ctx(child_ctx);
11843
11844 /*
11845 * Make the child state follow the state of the parent event,
11846 * not its attr.disabled bit. We hold the parent's mutex,
11847 * so we won't race with perf_event_{en, dis}able_family.
11848 */
Jiri Olsa1929def2014-09-12 13:18:27 +020011849 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011850 child_event->state = PERF_EVENT_STATE_INACTIVE;
11851 else
11852 child_event->state = PERF_EVENT_STATE_OFF;
11853
11854 if (parent_event->attr.freq) {
11855 u64 sample_period = parent_event->hw.sample_period;
11856 struct hw_perf_event *hwc = &child_event->hw;
11857
11858 hwc->sample_period = sample_period;
11859 hwc->last_period = sample_period;
11860
11861 local64_set(&hwc->period_left, sample_period);
11862 }
11863
11864 child_event->ctx = child_ctx;
11865 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011866 child_event->overflow_handler_context
11867 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011868
11869 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020011870 * Precalculate sample_data sizes
11871 */
11872 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020011873 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020011874
11875 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011876 * Link it up in the child's context:
11877 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020011878 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011879 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020011880 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011881
11882 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011883 * Link this into the parent event's child list
11884 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011885 list_add_tail(&child_event->child_list, &parent_event->child_list);
11886 mutex_unlock(&parent_event->child_mutex);
11887
11888 return child_event;
11889}
11890
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011891/*
11892 * Inherits an event group.
11893 *
11894 * This will quietly suppress orphaned events; !inherit_event() is not an error.
11895 * This matches with perf_event_release_kernel() removing all child events.
11896 *
11897 * Returns:
11898 * - 0 on success
11899 * - <0 on error
11900 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011901static int inherit_group(struct perf_event *parent_event,
11902 struct task_struct *parent,
11903 struct perf_event_context *parent_ctx,
11904 struct task_struct *child,
11905 struct perf_event_context *child_ctx)
11906{
11907 struct perf_event *leader;
11908 struct perf_event *sub;
11909 struct perf_event *child_ctr;
11910
11911 leader = inherit_event(parent_event, parent, parent_ctx,
11912 child, NULL, child_ctx);
11913 if (IS_ERR(leader))
11914 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011915 /*
11916 * @leader can be NULL here because of is_orphaned_event(). In this
11917 * case inherit_event() will create individual events, similar to what
11918 * perf_group_detach() would do anyway.
11919 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010011920 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011921 child_ctr = inherit_event(sub, parent, parent_ctx,
11922 child, leader, child_ctx);
11923 if (IS_ERR(child_ctr))
11924 return PTR_ERR(child_ctr);
Alexander Shishkinf733c6b2019-10-04 15:57:29 +030011925
11926 if (sub->aux_event == parent_event &&
11927 !perf_get_aux_event(child_ctr, leader))
11928 return -EINVAL;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011929 }
11930 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011931}
11932
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011933/*
11934 * Creates the child task context and tries to inherit the event-group.
11935 *
11936 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
11937 * inherited_all set when we 'fail' to inherit an orphaned event; this is
11938 * consistent with perf_event_release_kernel() removing all child events.
11939 *
11940 * Returns:
11941 * - 0 on success
11942 * - <0 on error
11943 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011944static int
11945inherit_task_group(struct perf_event *event, struct task_struct *parent,
11946 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011947 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011948 int *inherited_all)
11949{
11950 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011951 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011952
11953 if (!event->attr.inherit) {
11954 *inherited_all = 0;
11955 return 0;
11956 }
11957
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011958 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011959 if (!child_ctx) {
11960 /*
11961 * This is executed from the parent task context, so
11962 * inherit events that have been marked for cloning.
11963 * First allocate and initialize a context for the
11964 * child.
11965 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020011966 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011967 if (!child_ctx)
11968 return -ENOMEM;
11969
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011970 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011971 }
11972
11973 ret = inherit_group(event, parent, parent_ctx,
11974 child, child_ctx);
11975
11976 if (ret)
11977 *inherited_all = 0;
11978
11979 return ret;
11980}
11981
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011982/*
11983 * Initialize the perf_event context in task_struct
11984 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020011985static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011986{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011987 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011988 struct perf_event_context *cloned_ctx;
11989 struct perf_event *event;
11990 struct task_struct *parent = current;
11991 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011992 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011993 int ret = 0;
11994
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011995 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011996 return 0;
11997
11998 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011999 * If the parent's context is a clone, pin it so it won't get
12000 * swapped under us.
12001 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012002 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020012003 if (!parent_ctx)
12004 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012005
12006 /*
12007 * No need to check if parent_ctx != NULL here; since we saw
12008 * it non-NULL earlier, the only reason for it to become NULL
12009 * is if we exit, and since we're currently in the middle of
12010 * a fork we can't be exiting at the same time.
12011 */
12012
12013 /*
12014 * Lock the parent list. No need to lock the child - not PID
12015 * hashed yet and not running, so nobody can access it.
12016 */
12017 mutex_lock(&parent_ctx->mutex);
12018
12019 /*
12020 * We dont have to disable NMIs - we are only looking at
12021 * the list, not manipulating it:
12022 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012023 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012024 ret = inherit_task_group(event, parent, parent_ctx,
12025 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012026 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012027 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012028 }
12029
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012030 /*
12031 * We can't hold ctx->lock when iterating the ->flexible_group list due
12032 * to allocations, but we need to prevent rotation because
12033 * rotate_ctx() will change the list from interrupt context.
12034 */
12035 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12036 parent_ctx->rotate_disable = 1;
12037 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
12038
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010012039 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012040 ret = inherit_task_group(event, parent, parent_ctx,
12041 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012042 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012043 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012044 }
12045
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012046 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12047 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010012048
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012049 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010012050
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010012051 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012052 /*
12053 * Mark the child context as a clone of the parent
12054 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012055 *
12056 * Note that if the parent is a clone, the holding of
12057 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012058 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012059 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012060 if (cloned_ctx) {
12061 child_ctx->parent_ctx = cloned_ctx;
12062 child_ctx->parent_gen = parent_ctx->parent_gen;
12063 } else {
12064 child_ctx->parent_ctx = parent_ctx;
12065 child_ctx->parent_gen = parent_ctx->generation;
12066 }
12067 get_ctx(child_ctx->parent_ctx);
12068 }
12069
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010012070 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010012071out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012072 mutex_unlock(&parent_ctx->mutex);
12073
12074 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010012075 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012076
12077 return ret;
12078}
12079
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012080/*
12081 * Initialize the perf_event context in task_struct
12082 */
12083int perf_event_init_task(struct task_struct *child)
12084{
12085 int ctxn, ret;
12086
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010012087 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
12088 mutex_init(&child->perf_event_mutex);
12089 INIT_LIST_HEAD(&child->perf_event_list);
12090
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012091 for_each_task_context_nr(ctxn) {
12092 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012093 if (ret) {
12094 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012095 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070012096 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020012097 }
12098
12099 return 0;
12100}
12101
Paul Mackerras220b1402010-03-10 20:45:52 +110012102static void __init perf_event_init_all_cpus(void)
12103{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012104 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110012105 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110012106
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012107 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
12108
Paul Mackerras220b1402010-03-10 20:45:52 +110012109 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012110 swhash = &per_cpu(swevent_htable, cpu);
12111 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000012112 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070012113
12114 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
12115 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012116
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080012117#ifdef CONFIG_CGROUP_PERF
12118 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
12119#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020012120 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110012121 }
12122}
12123
Valdis Kletnieksd18bf422019-03-12 04:06:37 -040012124static void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012125{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012126 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012127
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012128 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000012129 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012130 struct swevent_hlist *hlist;
12131
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012132 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
12133 WARN_ON(!hlist);
12134 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020012135 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020012136 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012137}
12138
Dave Young2965faa2015-09-09 15:38:55 -070012139#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012140static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012141{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012142 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012143 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
12144 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012145
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012146 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020012147 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012148 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010012149 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010012150 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012151}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012152
12153static void perf_event_exit_cpu_context(int cpu)
12154{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012155 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012156 struct perf_event_context *ctx;
12157 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012158
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012159 mutex_lock(&pmus_lock);
12160 list_for_each_entry(pmu, &pmus, entry) {
12161 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12162 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012163
12164 mutex_lock(&ctx->mutex);
12165 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012166 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012167 mutex_unlock(&ctx->mutex);
12168 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012169 cpumask_clear_cpu(cpu, perf_online_mask);
12170 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012171}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012172#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020012173
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012174static void perf_event_exit_cpu_context(int cpu) { }
12175
12176#endif
12177
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020012178int perf_event_init_cpu(unsigned int cpu)
12179{
12180 struct perf_cpu_context *cpuctx;
12181 struct perf_event_context *ctx;
12182 struct pmu *pmu;
12183
12184 perf_swevent_init_cpu(cpu);
12185
12186 mutex_lock(&pmus_lock);
12187 cpumask_set_cpu(cpu, perf_online_mask);
12188 list_for_each_entry(pmu, &pmus, entry) {
12189 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12190 ctx = &cpuctx->ctx;
12191
12192 mutex_lock(&ctx->mutex);
12193 cpuctx->online = 1;
12194 mutex_unlock(&ctx->mutex);
12195 }
12196 mutex_unlock(&pmus_lock);
12197
12198 return 0;
12199}
12200
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012201int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012202{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010012203 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012204 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012205}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012206
Peter Zijlstrac2774432010-12-08 15:29:02 +010012207static int
12208perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
12209{
12210 int cpu;
12211
12212 for_each_online_cpu(cpu)
12213 perf_event_exit_cpu(cpu);
12214
12215 return NOTIFY_OK;
12216}
12217
12218/*
12219 * Run the perf reboot notifier at the very last possible moment so that
12220 * the generic watchdog code runs as long as possible.
12221 */
12222static struct notifier_block perf_reboot_notifier = {
12223 .notifier_call = perf_reboot,
12224 .priority = INT_MIN,
12225};
12226
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012227void __init perf_event_init(void)
12228{
Jason Wessel3c502e72010-11-04 17:33:01 -050012229 int ret;
12230
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012231 idr_init(&pmu_idr);
12232
Paul Mackerras220b1402010-03-10 20:45:52 +110012233 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012234 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010012235 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
12236 perf_pmu_register(&perf_cpu_clock, NULL, -1);
12237 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020012238 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000012239 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010012240 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050012241
12242 ret = init_hw_breakpoint();
12243 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020012244
Jiri Olsab01c3a02012-03-23 15:41:20 +010012245 /*
12246 * Build time assertion that we keep the data_head at the intended
12247 * location. IOW, validation we got the __reserved[] size right.
12248 */
12249 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
12250 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012251}
Peter Zijlstraabe43402010-11-17 23:17:37 +010012252
Cody P Schaferfd979c02015-01-30 13:45:57 -080012253ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
12254 char *page)
12255{
12256 struct perf_pmu_events_attr *pmu_attr =
12257 container_of(attr, struct perf_pmu_events_attr, attr);
12258
12259 if (pmu_attr->event_str)
12260 return sprintf(page, "%s\n", pmu_attr->event_str);
12261
12262 return 0;
12263}
Thomas Gleixner675965b2016-02-22 22:19:27 +000012264EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080012265
Peter Zijlstraabe43402010-11-17 23:17:37 +010012266static int __init perf_event_sysfs_init(void)
12267{
12268 struct pmu *pmu;
12269 int ret;
12270
12271 mutex_lock(&pmus_lock);
12272
12273 ret = bus_register(&pmu_bus);
12274 if (ret)
12275 goto unlock;
12276
12277 list_for_each_entry(pmu, &pmus, entry) {
12278 if (!pmu->name || pmu->type < 0)
12279 continue;
12280
12281 ret = pmu_dev_alloc(pmu);
12282 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
12283 }
12284 pmu_bus_running = 1;
12285 ret = 0;
12286
12287unlock:
12288 mutex_unlock(&pmus_lock);
12289
12290 return ret;
12291}
12292device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012293
12294#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040012295static struct cgroup_subsys_state *
12296perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012297{
12298 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020012299
Li Zefan1b15d052011-03-03 14:26:06 +080012300 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012301 if (!jc)
12302 return ERR_PTR(-ENOMEM);
12303
Stephane Eraniane5d13672011-02-14 11:20:01 +020012304 jc->info = alloc_percpu(struct perf_cgroup_info);
12305 if (!jc->info) {
12306 kfree(jc);
12307 return ERR_PTR(-ENOMEM);
12308 }
12309
Stephane Eraniane5d13672011-02-14 11:20:01 +020012310 return &jc->css;
12311}
12312
Tejun Heoeb954192013-08-08 20:11:23 -040012313static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012314{
Tejun Heoeb954192013-08-08 20:11:23 -040012315 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
12316
Stephane Eraniane5d13672011-02-14 11:20:01 +020012317 free_percpu(jc->info);
12318 kfree(jc);
12319}
12320
12321static int __perf_cgroup_move(void *info)
12322{
12323 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012324 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012325 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010012326 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020012327 return 0;
12328}
12329
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012330static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020012331{
Tejun Heobb9d97b2011-12-12 18:12:21 -080012332 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012333 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080012334
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050012335 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080012336 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020012337}
12338
Tejun Heo073219e2014-02-08 10:36:58 -050012339struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080012340 .css_alloc = perf_cgroup_css_alloc,
12341 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080012342 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050012343 /*
12344 * Implicitly enable on dfl hierarchy so that perf events can
12345 * always be filtered by cgroup2 path as long as perf_event
12346 * controller is not mounted on a legacy hierarchy.
12347 */
12348 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040012349 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020012350};
12351#endif /* CONFIG_CGROUP_PERF */