blob: 84530ab358c37ad876744d5ebda5d277dfb6d065 [file] [log] [blame]
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001/*
Ingo Molnar57c0c152009-09-21 12:20:38 +02002 * Performance events core code:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003 *
4 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
Ingo Molnare7e7ee22011-05-04 08:42:29 +02005 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
Peter Zijlstra90eec102015-11-16 11:08:45 +01006 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra
Al Virod36b6912011-12-29 17:09:01 -05007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008 *
Ingo Molnar57c0c152009-09-21 12:20:38 +02009 * For licensing details see kernel-base/COPYING
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010 */
11
12#include <linux/fs.h>
13#include <linux/mm.h>
14#include <linux/cpu.h>
15#include <linux/smp.h>
Peter Zijlstra2e80a822010-11-17 23:17:36 +010016#include <linux/idr.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/file.h>
18#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020020#include <linux/hash.h>
Frederic Weisbecker12351ef2013-04-20 15:48:22 +020021#include <linux/tick.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020022#include <linux/sysfs.h>
23#include <linux/dcache.h>
24#include <linux/percpu.h>
25#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010026#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020027#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010028#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040029#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020030#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020031#include <linux/hardirq.h>
32#include <linux/rculist.h>
33#include <linux/uaccess.h>
34#include <linux/syscalls.h>
35#include <linux/anon_inodes.h>
36#include <linux/kernel_stat.h>
Matt Fleming39bed6c2015-01-23 18:45:40 +000037#include <linux/cgroup.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020038#include <linux/perf_event.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040039#include <linux/trace_events.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050040#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020041#include <linux/mm_types.h>
Yan, Zhengc464c762014-03-18 16:56:41 +080042#include <linux/module.h>
Peter Zijlstraf972eb62014-05-19 15:13:47 -040043#include <linux/mman.h>
Pawel Mollb3f20782014-06-13 16:03:32 +010044#include <linux/compat.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070045#include <linux/bpf.h>
46#include <linux/filter.h>
Alexander Shishkin375637b2016-04-27 18:44:46 +030047#include <linux/namei.h>
48#include <linux/parser.h>
Ingo Molnare6017572017-02-01 16:36:40 +010049#include <linux/sched/clock.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010050#include <linux/sched/mm.h>
Hari Bathinie4222672017-03-08 02:11:36 +053051#include <linux/proc_ns.h>
52#include <linux/mount.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020053
Frederic Weisbecker76369132011-05-19 19:55:04 +020054#include "internal.h"
55
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056#include <asm/irq_regs.h>
57
Peter Zijlstra272325c2015-04-15 11:41:58 +020058typedef int (*remote_function_f)(void *);
59
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010060struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020061 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020062 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020063 void *info;
64 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010065};
66
67static void remote_function(void *data)
68{
69 struct remote_function_call *tfc = data;
70 struct task_struct *p = tfc->p;
71
72 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010073 /* -EAGAIN */
74 if (task_cpu(p) != smp_processor_id())
75 return;
76
77 /*
78 * Now that we're on right CPU with IRQs disabled, we can test
79 * if we hit the right task without races.
80 */
81
82 tfc->ret = -ESRCH; /* No such (running) process */
83 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010084 return;
85 }
86
87 tfc->ret = tfc->func(tfc->info);
88}
89
90/**
91 * task_function_call - call a function on the cpu on which a task runs
92 * @p: the task to evaluate
93 * @func: the function to be called
94 * @info: the function call argument
95 *
96 * Calls the function @func when the task is currently running. This might
97 * be on the current CPU, which just calls the function directly
98 *
99 * returns: @func return value, or
100 * -ESRCH - when the process isn't running
101 * -EAGAIN - when the process moved away
102 */
103static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200104task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100105{
106 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200107 .p = p,
108 .func = func,
109 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100111 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100112 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100114 do {
115 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
116 if (!ret)
117 ret = data.ret;
118 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100119
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100120 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100121}
122
123/**
124 * cpu_function_call - call a function on the cpu
125 * @func: the function to be called
126 * @info: the function call argument
127 *
128 * Calls the function @func on the remote cpu.
129 *
130 * returns: @func return value or -ENXIO when the cpu is offline
131 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200132static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100133{
134 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200135 .p = NULL,
136 .func = func,
137 .info = info,
138 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100139 };
140
141 smp_call_function_single(cpu, remote_function, &data, 1);
142
143 return data.ret;
144}
145
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100146static inline struct perf_cpu_context *
147__get_cpu_context(struct perf_event_context *ctx)
148{
149 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
150}
151
152static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
153 struct perf_event_context *ctx)
154{
155 raw_spin_lock(&cpuctx->ctx.lock);
156 if (ctx)
157 raw_spin_lock(&ctx->lock);
158}
159
160static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
161 struct perf_event_context *ctx)
162{
163 if (ctx)
164 raw_spin_unlock(&ctx->lock);
165 raw_spin_unlock(&cpuctx->ctx.lock);
166}
167
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100168#define TASK_TOMBSTONE ((void *)-1L)
169
170static bool is_kernel_event(struct perf_event *event)
171{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100172 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100173}
174
Peter Zijlstra39a43642016-01-11 12:46:35 +0100175/*
176 * On task ctx scheduling...
177 *
178 * When !ctx->nr_events a task context will not be scheduled. This means
179 * we can disable the scheduler hooks (for performance) without leaving
180 * pending task ctx state.
181 *
182 * This however results in two special cases:
183 *
184 * - removing the last event from a task ctx; this is relatively straight
185 * forward and is done in __perf_remove_from_context.
186 *
187 * - adding the first event to a task ctx; this is tricky because we cannot
188 * rely on ctx->is_active and therefore cannot use event_function_call().
189 * See perf_install_in_context().
190 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100191 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
192 */
193
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100194typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
195 struct perf_event_context *, void *);
196
197struct event_function_struct {
198 struct perf_event *event;
199 event_f func;
200 void *data;
201};
202
203static int event_function(void *info)
204{
205 struct event_function_struct *efs = info;
206 struct perf_event *event = efs->event;
207 struct perf_event_context *ctx = event->ctx;
208 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
209 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100210 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100211
Frederic Weisbecker16444642017-11-06 16:01:24 +0100212 lockdep_assert_irqs_disabled();
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100213
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100214 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100215 /*
216 * Since we do the IPI call without holding ctx->lock things can have
217 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100218 */
219 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100220 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100221 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100222 goto unlock;
223 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100224
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100225 /*
226 * We only use event_function_call() on established contexts,
227 * and event_function() is only ever called when active (or
228 * rather, we'll have bailed in task_function_call() or the
229 * above ctx->task != current test), therefore we must have
230 * ctx->is_active here.
231 */
232 WARN_ON_ONCE(!ctx->is_active);
233 /*
234 * And since we have ctx->is_active, cpuctx->task_ctx must
235 * match.
236 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100237 WARN_ON_ONCE(task_ctx != ctx);
238 } else {
239 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100241
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100242 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100243unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100244 perf_ctx_unlock(cpuctx, task_ctx);
245
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100246 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100247}
248
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100249static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100250{
251 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100252 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100253 struct event_function_struct efs = {
254 .event = event,
255 .func = func,
256 .data = data,
257 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100258
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100259 if (!event->parent) {
260 /*
261 * If this is a !child event, we must hold ctx::mutex to
262 * stabilize the the event->ctx relation. See
263 * perf_event_ctx_lock().
264 */
265 lockdep_assert_held(&ctx->mutex);
266 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100267
268 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100269 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100270 return;
271 }
272
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100273 if (task == TASK_TOMBSTONE)
274 return;
275
Peter Zijlstraa0963092016-02-24 18:45:50 +0100276again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100277 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100278 return;
279
280 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100281 /*
282 * Reload the task pointer, it might have been changed by
283 * a concurrent perf_event_context_sched_out().
284 */
285 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100286 if (task == TASK_TOMBSTONE) {
287 raw_spin_unlock_irq(&ctx->lock);
288 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100289 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100290 if (ctx->is_active) {
291 raw_spin_unlock_irq(&ctx->lock);
292 goto again;
293 }
294 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100295 raw_spin_unlock_irq(&ctx->lock);
296}
297
Peter Zijlstracca20942016-08-16 13:33:26 +0200298/*
299 * Similar to event_function_call() + event_function(), but hard assumes IRQs
300 * are already disabled and we're on the right CPU.
301 */
302static void event_function_local(struct perf_event *event, event_f func, void *data)
303{
304 struct perf_event_context *ctx = event->ctx;
305 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
306 struct task_struct *task = READ_ONCE(ctx->task);
307 struct perf_event_context *task_ctx = NULL;
308
Frederic Weisbecker16444642017-11-06 16:01:24 +0100309 lockdep_assert_irqs_disabled();
Peter Zijlstracca20942016-08-16 13:33:26 +0200310
311 if (task) {
312 if (task == TASK_TOMBSTONE)
313 return;
314
315 task_ctx = ctx;
316 }
317
318 perf_ctx_lock(cpuctx, task_ctx);
319
320 task = ctx->task;
321 if (task == TASK_TOMBSTONE)
322 goto unlock;
323
324 if (task) {
325 /*
326 * We must be either inactive or active and the right task,
327 * otherwise we're screwed, since we cannot IPI to somewhere
328 * else.
329 */
330 if (ctx->is_active) {
331 if (WARN_ON_ONCE(task != current))
332 goto unlock;
333
334 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
335 goto unlock;
336 }
337 } else {
338 WARN_ON_ONCE(&cpuctx->ctx != ctx);
339 }
340
341 func(event, cpuctx, ctx, data);
342unlock:
343 perf_ctx_unlock(cpuctx, task_ctx);
344}
345
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
347 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100348 PERF_FLAG_PID_CGROUP |\
349 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200350
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100351/*
352 * branch priv levels that need permission checks
353 */
354#define PERF_SAMPLE_BRANCH_PERM_PLM \
355 (PERF_SAMPLE_BRANCH_KERNEL |\
356 PERF_SAMPLE_BRANCH_HV)
357
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200358enum event_type_t {
359 EVENT_FLEXIBLE = 0x1,
360 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100361 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200362 /* see ctx_resched() for details */
363 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200364 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
365};
366
Stephane Eraniane5d13672011-02-14 11:20:01 +0200367/*
368 * perf_sched_events : >0 events exist
369 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
370 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100371
372static void perf_sched_delayed(struct work_struct *work);
373DEFINE_STATIC_KEY_FALSE(perf_sched_events);
374static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
375static DEFINE_MUTEX(perf_sched_mutex);
376static atomic_t perf_sched_count;
377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500379static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700380static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200381
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200382static atomic_t nr_mmap_events __read_mostly;
383static atomic_t nr_comm_events __read_mostly;
Hari Bathinie4222672017-03-08 02:11:36 +0530384static atomic_t nr_namespaces_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200385static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200386static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300387static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200388
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200389static LIST_HEAD(pmus);
390static DEFINE_MUTEX(pmus_lock);
391static struct srcu_struct pmus_srcu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +0200392static cpumask_var_t perf_online_mask;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200393
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200394/*
395 * perf event paranoia level:
396 * -1 - not paranoid at all
397 * 0 - disallow raw tracepoint access for unpriv
398 * 1 - disallow cpu events for unpriv
399 * 2 - disallow kernel profiling for unpriv
400 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700401int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200402
Frederic Weisbecker20443382011-03-31 03:33:29 +0200403/* Minimum for 512 kiB + 1 user control page */
404int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200405
406/*
407 * max perf event sample rate
408 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700409#define DEFAULT_MAX_SAMPLE_RATE 100000
410#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
411#define DEFAULT_CPU_TIME_MAX_PERCENT 25
412
413int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
414
415static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
416static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
417
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200418static int perf_sample_allowed_ns __read_mostly =
419 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700420
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800421static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700422{
423 u64 tmp = perf_sample_period_ns;
424
425 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100426 tmp = div_u64(tmp, 100);
427 if (!tmp)
428 tmp = 1;
429
430 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700431}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100432
Peter Zijlstra8d5bce02018-03-09 14:56:27 +0100433static bool perf_rotate_context(struct perf_cpu_context *cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +0200434
Peter Zijlstra163ec432011-02-16 11:22:34 +0100435int perf_proc_update_handler(struct ctl_table *table, int write,
436 void __user *buffer, size_t *lenp,
437 loff_t *ppos)
438{
Knut Petersen723478c2013-09-25 14:29:37 +0200439 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100440
441 if (ret || !write)
442 return ret;
443
Kan Liangab7fdef2016-05-03 00:26:06 -0700444 /*
445 * If throttling is disabled don't allow the write:
446 */
447 if (sysctl_perf_cpu_time_max_percent == 100 ||
448 sysctl_perf_cpu_time_max_percent == 0)
449 return -EINVAL;
450
Peter Zijlstra163ec432011-02-16 11:22:34 +0100451 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700452 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
453 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100454
455 return 0;
456}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200457
Dave Hansen14c63f12013-06-21 08:51:36 -0700458int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
459
460int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
461 void __user *buffer, size_t *lenp,
462 loff_t *ppos)
463{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800464 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700465
466 if (ret || !write)
467 return ret;
468
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200469 if (sysctl_perf_cpu_time_max_percent == 100 ||
470 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100471 printk(KERN_WARNING
472 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
473 WRITE_ONCE(perf_sample_allowed_ns, 0);
474 } else {
475 update_perf_cpu_limits();
476 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700477
478 return 0;
479}
480
481/*
482 * perf samples are done in some very critical code paths (NMIs).
483 * If they take too much CPU time, the system can lock up and not
484 * get any real work done. This will drop the sample rate when
485 * we detect that events are taking too long.
486 */
487#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200488static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700489
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100490static u64 __report_avg;
491static u64 __report_allowed;
492
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100493static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700494{
David Ahern0d87d7e2016-08-01 13:49:29 -0700495 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100496 "perf: interrupt took too long (%lld > %lld), lowering "
497 "kernel.perf_event_max_sample_rate to %d\n",
498 __report_avg, __report_allowed,
499 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100500}
501
502static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
503
504void perf_sample_event_took(u64 sample_len_ns)
505{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100506 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
507 u64 running_len;
508 u64 avg_len;
509 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700510
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100511 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700512 return;
513
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100514 /* Decay the counter by 1 average sample. */
515 running_len = __this_cpu_read(running_sample_length);
516 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
517 running_len += sample_len_ns;
518 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700519
520 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100521 * Note: this will be biased artifically low until we have
522 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700523 * from having to maintain a count.
524 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100525 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
526 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700527 return;
528
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100529 __report_avg = avg_len;
530 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700531
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100532 /*
533 * Compute a throttle threshold 25% below the current duration.
534 */
535 avg_len += avg_len / 4;
536 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
537 if (avg_len < max)
538 max /= (u32)avg_len;
539 else
540 max = 1;
541
542 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
543 WRITE_ONCE(max_samples_per_tick, max);
544
545 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700546 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
547
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100548 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100549 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100550 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100551 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100552 sysctl_perf_event_sample_rate);
553 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700554}
555
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200556static atomic64_t perf_event_id;
557
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200558static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
559 enum event_type_t event_type);
560
561static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200562 enum event_type_t event_type,
563 struct task_struct *task);
564
565static void update_context_time(struct perf_event_context *ctx);
566static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200567
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200568void __weak perf_event_print_debug(void) { }
569
Matt Fleming84c79912010-10-03 21:41:13 +0100570extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200571{
Matt Fleming84c79912010-10-03 21:41:13 +0100572 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200573}
574
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200575static inline u64 perf_clock(void)
576{
577 return local_clock();
578}
579
Peter Zijlstra34f43922015-02-20 14:05:38 +0100580static inline u64 perf_event_clock(struct perf_event *event)
581{
582 return event->clock();
583}
584
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200585/*
586 * State based event timekeeping...
587 *
588 * The basic idea is to use event->state to determine which (if any) time
589 * fields to increment with the current delta. This means we only need to
590 * update timestamps when we change state or when they are explicitly requested
591 * (read).
592 *
593 * Event groups make things a little more complicated, but not terribly so. The
594 * rules for a group are that if the group leader is OFF the entire group is
595 * OFF, irrespecive of what the group member states are. This results in
596 * __perf_effective_state().
597 *
598 * A futher ramification is that when a group leader flips between OFF and
599 * !OFF, we need to update all group member times.
600 *
601 *
602 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
603 * need to make sure the relevant context time is updated before we try and
604 * update our timestamps.
605 */
606
607static __always_inline enum perf_event_state
608__perf_effective_state(struct perf_event *event)
609{
610 struct perf_event *leader = event->group_leader;
611
612 if (leader->state <= PERF_EVENT_STATE_OFF)
613 return leader->state;
614
615 return event->state;
616}
617
618static __always_inline void
619__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
620{
621 enum perf_event_state state = __perf_effective_state(event);
622 u64 delta = now - event->tstamp;
623
624 *enabled = event->total_time_enabled;
625 if (state >= PERF_EVENT_STATE_INACTIVE)
626 *enabled += delta;
627
628 *running = event->total_time_running;
629 if (state >= PERF_EVENT_STATE_ACTIVE)
630 *running += delta;
631}
632
633static void perf_event_update_time(struct perf_event *event)
634{
635 u64 now = perf_event_time(event);
636
637 __perf_update_times(event, now, &event->total_time_enabled,
638 &event->total_time_running);
639 event->tstamp = now;
640}
641
642static void perf_event_update_sibling_time(struct perf_event *leader)
643{
644 struct perf_event *sibling;
645
Peter Zijlstraedb39592018-03-15 17:36:56 +0100646 for_each_sibling_event(sibling, leader)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +0200647 perf_event_update_time(sibling);
648}
649
650static void
651perf_event_set_state(struct perf_event *event, enum perf_event_state state)
652{
653 if (event->state == state)
654 return;
655
656 perf_event_update_time(event);
657 /*
658 * If a group leader gets enabled/disabled all its siblings
659 * are affected too.
660 */
661 if ((event->state < 0) ^ (state < 0))
662 perf_event_update_sibling_time(event);
663
664 WRITE_ONCE(event->state, state);
665}
666
Stephane Eraniane5d13672011-02-14 11:20:01 +0200667#ifdef CONFIG_CGROUP_PERF
668
Stephane Eraniane5d13672011-02-14 11:20:01 +0200669static inline bool
670perf_cgroup_match(struct perf_event *event)
671{
672 struct perf_event_context *ctx = event->ctx;
673 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
674
Tejun Heoef824fa2013-04-08 19:00:38 -0700675 /* @event doesn't care about cgroup */
676 if (!event->cgrp)
677 return true;
678
679 /* wants specific cgroup scope but @cpuctx isn't associated with any */
680 if (!cpuctx->cgrp)
681 return false;
682
683 /*
684 * Cgroup scoping is recursive. An event enabled for a cgroup is
685 * also enabled for all its descendant cgroups. If @cpuctx's
686 * cgroup is a descendant of @event's (the test covers identity
687 * case), it's a match.
688 */
689 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
690 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200691}
692
Stephane Eraniane5d13672011-02-14 11:20:01 +0200693static inline void perf_detach_cgroup(struct perf_event *event)
694{
Zefan Li4e2ba652014-09-19 16:53:14 +0800695 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200696 event->cgrp = NULL;
697}
698
699static inline int is_cgroup_event(struct perf_event *event)
700{
701 return event->cgrp != NULL;
702}
703
704static inline u64 perf_cgroup_event_time(struct perf_event *event)
705{
706 struct perf_cgroup_info *t;
707
708 t = per_cpu_ptr(event->cgrp->info, event->cpu);
709 return t->time;
710}
711
712static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
713{
714 struct perf_cgroup_info *info;
715 u64 now;
716
717 now = perf_clock();
718
719 info = this_cpu_ptr(cgrp->info);
720
721 info->time += now - info->timestamp;
722 info->timestamp = now;
723}
724
725static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
726{
Song Liuc917e0f22018-03-12 09:59:43 -0700727 struct perf_cgroup *cgrp = cpuctx->cgrp;
728 struct cgroup_subsys_state *css;
729
730 if (cgrp) {
731 for (css = &cgrp->css; css; css = css->parent) {
732 cgrp = container_of(css, struct perf_cgroup, css);
733 __update_cgrp_time(cgrp);
734 }
735 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200736}
737
738static inline void update_cgrp_time_from_event(struct perf_event *event)
739{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200740 struct perf_cgroup *cgrp;
741
Stephane Eraniane5d13672011-02-14 11:20:01 +0200742 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200743 * ensure we access cgroup data only when needed and
744 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200745 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200746 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200747 return;
748
Stephane Eranian614e4c42015-11-12 11:00:04 +0100749 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200750 /*
751 * Do not update time when cgroup is not active
752 */
Colin Ian King28fa7412018-10-29 23:32:11 +0000753 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200754 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200755}
756
757static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200758perf_cgroup_set_timestamp(struct task_struct *task,
759 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200760{
761 struct perf_cgroup *cgrp;
762 struct perf_cgroup_info *info;
Song Liuc917e0f22018-03-12 09:59:43 -0700763 struct cgroup_subsys_state *css;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200764
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200765 /*
766 * ctx->lock held by caller
767 * ensure we do not access cgroup data
768 * unless we have the cgroup pinned (css_get)
769 */
770 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200771 return;
772
Stephane Eranian614e4c42015-11-12 11:00:04 +0100773 cgrp = perf_cgroup_from_task(task, ctx);
Song Liuc917e0f22018-03-12 09:59:43 -0700774
775 for (css = &cgrp->css; css; css = css->parent) {
776 cgrp = container_of(css, struct perf_cgroup, css);
777 info = this_cpu_ptr(cgrp->info);
778 info->timestamp = ctx->timestamp;
779 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200780}
781
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800782static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
783
Stephane Eraniane5d13672011-02-14 11:20:01 +0200784#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
785#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
786
787/*
788 * reschedule events based on the cgroup constraint of task.
789 *
790 * mode SWOUT : schedule out everything
791 * mode SWIN : schedule in based on cgroup for next
792 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800793static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200794{
795 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800796 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200797 unsigned long flags;
798
799 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800800 * Disable interrupts and preemption to avoid this CPU's
801 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200802 */
803 local_irq_save(flags);
804
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800805 list = this_cpu_ptr(&cgrp_cpuctx_list);
806 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
807 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200808
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800809 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
810 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200811
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800812 if (mode & PERF_CGROUP_SWOUT) {
813 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
814 /*
815 * must not be done before ctxswout due
816 * to event_filter_match() in event_sched_out()
817 */
818 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200819 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800820
821 if (mode & PERF_CGROUP_SWIN) {
822 WARN_ON_ONCE(cpuctx->cgrp);
823 /*
824 * set cgrp before ctxsw in to allow
825 * event_filter_match() to not have to pass
826 * task around
827 * we pass the cpuctx->ctx to perf_cgroup_from_task()
828 * because cgorup events are only per-cpu
829 */
830 cpuctx->cgrp = perf_cgroup_from_task(task,
831 &cpuctx->ctx);
832 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
833 }
834 perf_pmu_enable(cpuctx->ctx.pmu);
835 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200836 }
837
Stephane Eraniane5d13672011-02-14 11:20:01 +0200838 local_irq_restore(flags);
839}
840
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200841static inline void perf_cgroup_sched_out(struct task_struct *task,
842 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200843{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200844 struct perf_cgroup *cgrp1;
845 struct perf_cgroup *cgrp2 = NULL;
846
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100847 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200848 /*
849 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100850 * we do not need to pass the ctx here because we know
851 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200852 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100853 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100854 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200855
856 /*
857 * only schedule out current cgroup events if we know
858 * that we are switching to a different cgroup. Otherwise,
859 * do no touch the cgroup events.
860 */
861 if (cgrp1 != cgrp2)
862 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100863
864 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200865}
866
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200867static inline void perf_cgroup_sched_in(struct task_struct *prev,
868 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200869{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200870 struct perf_cgroup *cgrp1;
871 struct perf_cgroup *cgrp2 = NULL;
872
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100873 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200874 /*
875 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100876 * we do not need to pass the ctx here because we know
877 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200878 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100879 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100880 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200881
882 /*
883 * only need to schedule in cgroup events if we are changing
884 * cgroup during ctxsw. Cgroup events were not scheduled
885 * out of ctxsw out if that was not the case.
886 */
887 if (cgrp1 != cgrp2)
888 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100889
890 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200891}
892
893static inline int perf_cgroup_connect(int fd, struct perf_event *event,
894 struct perf_event_attr *attr,
895 struct perf_event *group_leader)
896{
897 struct perf_cgroup *cgrp;
898 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400899 struct fd f = fdget(fd);
900 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200901
Al Viro2903ff02012-08-28 12:52:22 -0400902 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200903 return -EBADF;
904
Al Virob5830432014-10-31 01:22:04 -0400905 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400906 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800907 if (IS_ERR(css)) {
908 ret = PTR_ERR(css);
909 goto out;
910 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200911
912 cgrp = container_of(css, struct perf_cgroup, css);
913 event->cgrp = cgrp;
914
915 /*
916 * all events in a group must monitor
917 * the same cgroup because a task belongs
918 * to only one perf cgroup at a time
919 */
920 if (group_leader && group_leader->cgrp != cgrp) {
921 perf_detach_cgroup(event);
922 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200923 }
Li Zefan3db272c2011-03-03 14:25:37 +0800924out:
Al Viro2903ff02012-08-28 12:52:22 -0400925 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200926 return ret;
927}
928
929static inline void
930perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
931{
932 struct perf_cgroup_info *t;
933 t = per_cpu_ptr(event->cgrp->info, event->cpu);
934 event->shadow_ctx_time = now - t->timestamp;
935}
936
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700937/*
938 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
939 * cleared when last cgroup event is removed.
940 */
941static inline void
942list_update_cgroup_event(struct perf_event *event,
943 struct perf_event_context *ctx, bool add)
944{
945 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800946 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700947
948 if (!is_cgroup_event(event))
949 return;
950
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700951 /*
952 * Because cgroup events are always per-cpu events,
953 * this will always be called from the right CPU.
954 */
955 cpuctx = __get_cpu_context(ctx);
leilei.lin33801b92018-03-06 17:36:37 +0800956
957 /*
958 * Since setting cpuctx->cgrp is conditional on the current @cgrp
959 * matching the event's cgroup, we must do this for every new event,
960 * because if the first would mismatch, the second would not try again
961 * and we would leave cpuctx->cgrp unset.
962 */
963 if (add && !cpuctx->cgrp) {
Tejun Heobe96b312017-10-28 09:49:37 -0700964 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
965
Tejun Heobe96b312017-10-28 09:49:37 -0700966 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
967 cpuctx->cgrp = cgrp;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800968 }
leilei.lin33801b92018-03-06 17:36:37 +0800969
970 if (add && ctx->nr_cgroups++)
971 return;
972 else if (!add && --ctx->nr_cgroups)
973 return;
974
975 /* no cgroup running */
976 if (!add)
977 cpuctx->cgrp = NULL;
978
979 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
980 if (add)
981 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
982 else
983 list_del(cpuctx_entry);
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700984}
985
Stephane Eraniane5d13672011-02-14 11:20:01 +0200986#else /* !CONFIG_CGROUP_PERF */
987
988static inline bool
989perf_cgroup_match(struct perf_event *event)
990{
991 return true;
992}
993
994static inline void perf_detach_cgroup(struct perf_event *event)
995{}
996
997static inline int is_cgroup_event(struct perf_event *event)
998{
999 return 0;
1000}
1001
Stephane Eraniane5d13672011-02-14 11:20:01 +02001002static inline void update_cgrp_time_from_event(struct perf_event *event)
1003{
1004}
1005
1006static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1007{
1008}
1009
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001010static inline void perf_cgroup_sched_out(struct task_struct *task,
1011 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001012{
1013}
1014
Stephane Eraniana8d757e2011-08-25 15:58:03 +02001015static inline void perf_cgroup_sched_in(struct task_struct *prev,
1016 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001017{
1018}
1019
1020static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1021 struct perf_event_attr *attr,
1022 struct perf_event *group_leader)
1023{
1024 return -EINVAL;
1025}
1026
1027static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001028perf_cgroup_set_timestamp(struct task_struct *task,
1029 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001030{
1031}
1032
1033void
1034perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1035{
1036}
1037
1038static inline void
1039perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1040{
1041}
1042
1043static inline u64 perf_cgroup_event_time(struct perf_event *event)
1044{
1045 return 0;
1046}
1047
1048static inline void
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001049list_update_cgroup_event(struct perf_event *event,
1050 struct perf_event_context *ctx, bool add)
1051{
1052}
1053
Stephane Eraniane5d13672011-02-14 11:20:01 +02001054#endif
1055
Stephane Eranian9e630202013-04-03 14:21:33 +02001056/*
1057 * set default to be dependent on timer tick just
1058 * like original code
1059 */
1060#define PERF_CPU_HRTIMER (1000 / HZ)
1061/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001062 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001063 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001064static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001065{
1066 struct perf_cpu_context *cpuctx;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01001067 bool rotations;
Stephane Eranian9e630202013-04-03 14:21:33 +02001068
Frederic Weisbecker16444642017-11-06 16:01:24 +01001069 lockdep_assert_irqs_disabled();
Stephane Eranian9e630202013-04-03 14:21:33 +02001070
1071 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001072 rotations = perf_rotate_context(cpuctx);
1073
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001074 raw_spin_lock(&cpuctx->hrtimer_lock);
1075 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001076 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001077 else
1078 cpuctx->hrtimer_active = 0;
1079 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001080
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001081 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001082}
1083
Peter Zijlstra272325c2015-04-15 11:41:58 +02001084static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001085{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001086 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001087 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001088 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001089
1090 /* no multiplexing needed for SW PMU */
1091 if (pmu->task_ctx_nr == perf_sw_context)
1092 return;
1093
Stephane Eranian62b85632013-04-03 14:21:34 +02001094 /*
1095 * check default is sane, if not set then force to
1096 * default interval (1/tick)
1097 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001098 interval = pmu->hrtimer_interval_ms;
1099 if (interval < 1)
1100 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001101
Peter Zijlstra272325c2015-04-15 11:41:58 +02001102 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001103
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001104 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1105 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001106 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001107}
1108
Peter Zijlstra272325c2015-04-15 11:41:58 +02001109static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001110{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001111 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001112 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001113 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001114
1115 /* not for SW PMU */
1116 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001117 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001118
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001119 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1120 if (!cpuctx->hrtimer_active) {
1121 cpuctx->hrtimer_active = 1;
1122 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1123 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1124 }
1125 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001126
Peter Zijlstra272325c2015-04-15 11:41:58 +02001127 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001128}
1129
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001130void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001131{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001132 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1133 if (!(*count)++)
1134 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001135}
1136
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001137void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001138{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001139 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1140 if (!--(*count))
1141 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001142}
1143
Mark Rutland2fde4f92015-01-07 15:01:54 +00001144static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001145
1146/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001147 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1148 * perf_event_task_tick() are fully serialized because they're strictly cpu
1149 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1150 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001151 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001152static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001153{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001154 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001155
Frederic Weisbecker16444642017-11-06 16:01:24 +01001156 lockdep_assert_irqs_disabled();
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001157
Mark Rutland2fde4f92015-01-07 15:01:54 +00001158 WARN_ON(!list_empty(&ctx->active_ctx_list));
1159
1160 list_add(&ctx->active_ctx_list, head);
1161}
1162
1163static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1164{
Frederic Weisbecker16444642017-11-06 16:01:24 +01001165 lockdep_assert_irqs_disabled();
Mark Rutland2fde4f92015-01-07 15:01:54 +00001166
1167 WARN_ON(list_empty(&ctx->active_ctx_list));
1168
1169 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001170}
1171
1172static void get_ctx(struct perf_event_context *ctx)
1173{
1174 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1175}
1176
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001177static void free_ctx(struct rcu_head *head)
1178{
1179 struct perf_event_context *ctx;
1180
1181 ctx = container_of(head, struct perf_event_context, rcu_head);
1182 kfree(ctx->task_ctx_data);
1183 kfree(ctx);
1184}
1185
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001186static void put_ctx(struct perf_event_context *ctx)
1187{
1188 if (atomic_dec_and_test(&ctx->refcount)) {
1189 if (ctx->parent_ctx)
1190 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001191 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001192 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001193 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001194 }
1195}
1196
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001197/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001198 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1199 * perf_pmu_migrate_context() we need some magic.
1200 *
1201 * Those places that change perf_event::ctx will hold both
1202 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1203 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001204 * Lock ordering is by mutex address. There are two other sites where
1205 * perf_event_context::mutex nests and those are:
1206 *
1207 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001208 * perf_event_exit_event()
1209 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001210 *
1211 * - perf_event_init_context() [ parent, 0 ]
1212 * inherit_task_group()
1213 * inherit_group()
1214 * inherit_event()
1215 * perf_event_alloc()
1216 * perf_init_event()
1217 * perf_try_init_event() [ child , 1 ]
1218 *
1219 * While it appears there is an obvious deadlock here -- the parent and child
1220 * nesting levels are inverted between the two. This is in fact safe because
1221 * life-time rules separate them. That is an exiting task cannot fork, and a
1222 * spawning task cannot (yet) exit.
1223 *
1224 * But remember that that these are parent<->child context relations, and
1225 * migration does not affect children, therefore these two orderings should not
1226 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001227 *
1228 * The change in perf_event::ctx does not affect children (as claimed above)
1229 * because the sys_perf_event_open() case will install a new event and break
1230 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1231 * concerned with cpuctx and that doesn't have children.
1232 *
1233 * The places that change perf_event::ctx will issue:
1234 *
1235 * perf_remove_from_context();
1236 * synchronize_rcu();
1237 * perf_install_in_context();
1238 *
1239 * to affect the change. The remove_from_context() + synchronize_rcu() should
1240 * quiesce the event, after which we can install it in the new location. This
1241 * means that only external vectors (perf_fops, prctl) can perturb the event
1242 * while in transit. Therefore all such accessors should also acquire
1243 * perf_event_context::mutex to serialize against this.
1244 *
1245 * However; because event->ctx can change while we're waiting to acquire
1246 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1247 * function.
1248 *
1249 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001250 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001251 * task_struct::perf_event_mutex
1252 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001253 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001254 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001255 * perf_event::mmap_mutex
1256 * mmap_sem
Peter Zijlstra82d94852018-01-09 13:10:30 +01001257 *
1258 * cpu_hotplug_lock
1259 * pmus_lock
1260 * cpuctx->mutex / perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001261 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001262static struct perf_event_context *
1263perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001264{
1265 struct perf_event_context *ctx;
1266
1267again:
1268 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -07001269 ctx = READ_ONCE(event->ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001270 if (!atomic_inc_not_zero(&ctx->refcount)) {
1271 rcu_read_unlock();
1272 goto again;
1273 }
1274 rcu_read_unlock();
1275
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001276 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001277 if (event->ctx != ctx) {
1278 mutex_unlock(&ctx->mutex);
1279 put_ctx(ctx);
1280 goto again;
1281 }
1282
1283 return ctx;
1284}
1285
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001286static inline struct perf_event_context *
1287perf_event_ctx_lock(struct perf_event *event)
1288{
1289 return perf_event_ctx_lock_nested(event, 0);
1290}
1291
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001292static void perf_event_ctx_unlock(struct perf_event *event,
1293 struct perf_event_context *ctx)
1294{
1295 mutex_unlock(&ctx->mutex);
1296 put_ctx(ctx);
1297}
1298
1299/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001300 * This must be done under the ctx->lock, such as to serialize against
1301 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1302 * calling scheduler related locks and ctx->lock nests inside those.
1303 */
1304static __must_check struct perf_event_context *
1305unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001306{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001307 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1308
1309 lockdep_assert_held(&ctx->lock);
1310
1311 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001312 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001313 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001314
1315 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001316}
1317
Oleg Nesterov1d953112017-08-22 17:59:28 +02001318static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1319 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001320{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001321 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001322 /*
1323 * only top level events have the pid namespace they were created in
1324 */
1325 if (event->parent)
1326 event = event->parent;
1327
Oleg Nesterov1d953112017-08-22 17:59:28 +02001328 nr = __task_pid_nr_ns(p, type, event->ns);
1329 /* avoid -1 if it is idle thread or runs in another ns */
1330 if (!nr && !pid_alive(p))
1331 nr = -1;
1332 return nr;
1333}
1334
1335static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1336{
Eric W. Biederman6883f812017-06-04 04:32:13 -05001337 return perf_event_pid_type(event, p, PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001338}
1339
1340static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1341{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001342 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001343}
1344
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001345/*
1346 * If we inherit events we want to return the parent event id
1347 * to userspace.
1348 */
1349static u64 primary_event_id(struct perf_event *event)
1350{
1351 u64 id = event->id;
1352
1353 if (event->parent)
1354 id = event->parent->id;
1355
1356 return id;
1357}
1358
1359/*
1360 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001361 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001362 * This has to cope with with the fact that until it is locked,
1363 * the context could get moved to another task.
1364 */
1365static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001366perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001367{
1368 struct perf_event_context *ctx;
1369
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001370retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001371 /*
1372 * One of the few rules of preemptible RCU is that one cannot do
1373 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001374 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001375 * rcu_read_unlock_special().
1376 *
1377 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001378 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001379 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001380 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001381 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001382 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001383 if (ctx) {
1384 /*
1385 * If this context is a clone of another, it might
1386 * get swapped for another underneath us by
1387 * perf_event_task_sched_out, though the
1388 * rcu_read_lock() protects us from any context
1389 * getting freed. Lock the context and check if it
1390 * got swapped before we could get the lock, and retry
1391 * if so. If we locked the right context, then it
1392 * can't get swapped on us any more.
1393 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001394 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001395 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001396 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001397 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001398 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001399 goto retry;
1400 }
1401
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001402 if (ctx->task == TASK_TOMBSTONE ||
1403 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001404 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001406 } else {
1407 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001408 }
1409 }
1410 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001411 if (!ctx)
1412 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001413 return ctx;
1414}
1415
1416/*
1417 * Get the context for a task and increment its pin_count so it
1418 * can't get swapped to another task. This also increments its
1419 * reference count so that the context can't get freed.
1420 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001421static struct perf_event_context *
1422perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423{
1424 struct perf_event_context *ctx;
1425 unsigned long flags;
1426
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001427 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001428 if (ctx) {
1429 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001430 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001431 }
1432 return ctx;
1433}
1434
1435static void perf_unpin_context(struct perf_event_context *ctx)
1436{
1437 unsigned long flags;
1438
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001439 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001440 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001441 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001442}
1443
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001444/*
1445 * Update the record of the current time in a context.
1446 */
1447static void update_context_time(struct perf_event_context *ctx)
1448{
1449 u64 now = perf_clock();
1450
1451 ctx->time += now - ctx->timestamp;
1452 ctx->timestamp = now;
1453}
1454
Stephane Eranian41587552011-01-03 18:20:01 +02001455static u64 perf_event_time(struct perf_event *event)
1456{
1457 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001458
1459 if (is_cgroup_event(event))
1460 return perf_cgroup_event_time(event);
1461
Stephane Eranian41587552011-01-03 18:20:01 +02001462 return ctx ? ctx->time : 0;
1463}
1464
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001465static enum event_type_t get_event_type(struct perf_event *event)
1466{
1467 struct perf_event_context *ctx = event->ctx;
1468 enum event_type_t event_type;
1469
1470 lockdep_assert_held(&ctx->lock);
1471
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001472 /*
1473 * It's 'group type', really, because if our group leader is
1474 * pinned, so are we.
1475 */
1476 if (event->group_leader != event)
1477 event = event->group_leader;
1478
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001479 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1480 if (!ctx->task)
1481 event_type |= EVENT_CPU;
1482
1483 return event_type;
1484}
1485
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001486/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001487 * Helper function to initialize event group nodes.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001488 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001489static void init_event_group(struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001490{
1491 RB_CLEAR_NODE(&event->group_node);
1492 event->group_index = 0;
1493}
1494
1495/*
1496 * Extract pinned or flexible groups from the context
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001497 * based on event attrs bits.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001498 */
1499static struct perf_event_groups *
1500get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001501{
1502 if (event->attr.pinned)
1503 return &ctx->pinned_groups;
1504 else
1505 return &ctx->flexible_groups;
1506}
1507
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001508/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001509 * Helper function to initializes perf_event_group trees.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001510 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001511static void perf_event_groups_init(struct perf_event_groups *groups)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001512{
1513 groups->tree = RB_ROOT;
1514 groups->index = 0;
1515}
1516
1517/*
1518 * Compare function for event groups;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001519 *
1520 * Implements complex key that first sorts by CPU and then by virtual index
1521 * which provides ordering when rotating groups for the same CPU.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001522 */
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001523static bool
1524perf_event_groups_less(struct perf_event *left, struct perf_event *right)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001525{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001526 if (left->cpu < right->cpu)
1527 return true;
1528 if (left->cpu > right->cpu)
1529 return false;
1530
1531 if (left->group_index < right->group_index)
1532 return true;
1533 if (left->group_index > right->group_index)
1534 return false;
1535
1536 return false;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001537}
1538
1539/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001540 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1541 * key (see perf_event_groups_less). This places it last inside the CPU
1542 * subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001543 */
1544static void
1545perf_event_groups_insert(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001546 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001547{
1548 struct perf_event *node_event;
1549 struct rb_node *parent;
1550 struct rb_node **node;
1551
1552 event->group_index = ++groups->index;
1553
1554 node = &groups->tree.rb_node;
1555 parent = *node;
1556
1557 while (*node) {
1558 parent = *node;
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001559 node_event = container_of(*node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001560
1561 if (perf_event_groups_less(event, node_event))
1562 node = &parent->rb_left;
1563 else
1564 node = &parent->rb_right;
1565 }
1566
1567 rb_link_node(&event->group_node, parent, node);
1568 rb_insert_color(&event->group_node, &groups->tree);
1569}
1570
1571/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001572 * Helper function to insert event into the pinned or flexible groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001573 */
1574static void
1575add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1576{
1577 struct perf_event_groups *groups;
1578
1579 groups = get_event_groups(event, ctx);
1580 perf_event_groups_insert(groups, event);
1581}
1582
1583/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001584 * Delete a group from a tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001585 */
1586static void
1587perf_event_groups_delete(struct perf_event_groups *groups,
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001588 struct perf_event *event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001589{
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001590 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1591 RB_EMPTY_ROOT(&groups->tree));
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001592
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001593 rb_erase(&event->group_node, &groups->tree);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001594 init_event_group(event);
1595}
1596
1597/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001598 * Helper function to delete event from its groups.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001599 */
1600static void
1601del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1602{
1603 struct perf_event_groups *groups;
1604
1605 groups = get_event_groups(event, ctx);
1606 perf_event_groups_delete(groups, event);
1607}
1608
1609/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001610 * Get the leftmost event in the @cpu subtree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001611 */
1612static struct perf_event *
1613perf_event_groups_first(struct perf_event_groups *groups, int cpu)
1614{
1615 struct perf_event *node_event = NULL, *match = NULL;
1616 struct rb_node *node = groups->tree.rb_node;
1617
1618 while (node) {
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001619 node_event = container_of(node, struct perf_event, group_node);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001620
1621 if (cpu < node_event->cpu) {
1622 node = node->rb_left;
1623 } else if (cpu > node_event->cpu) {
1624 node = node->rb_right;
1625 } else {
1626 match = node_event;
1627 node = node->rb_left;
1628 }
1629 }
1630
1631 return match;
1632}
1633
1634/*
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01001635 * Like rb_entry_next_safe() for the @cpu subtree.
1636 */
1637static struct perf_event *
1638perf_event_groups_next(struct perf_event *event)
1639{
1640 struct perf_event *next;
1641
1642 next = rb_entry_safe(rb_next(&event->group_node), typeof(*event), group_node);
1643 if (next && next->cpu == event->cpu)
1644 return next;
1645
1646 return NULL;
1647}
1648
1649/*
Peter Zijlstra161c85f2017-11-13 14:28:27 +01001650 * Iterate through the whole groups tree.
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001651 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +01001652#define perf_event_groups_for_each(event, groups) \
1653 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1654 typeof(*event), group_node); event; \
1655 event = rb_entry_safe(rb_next(&event->group_node), \
1656 typeof(*event), group_node))
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001657
1658/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001659 * Add an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001660 * Must be called with ctx->mutex and ctx->lock held.
1661 */
1662static void
1663list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1664{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001665 lockdep_assert_held(&ctx->lock);
1666
Peter Zijlstra8a495422010-05-27 15:47:49 +02001667 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1668 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001669
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001670 event->tstamp = perf_event_time(event);
1671
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001672 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001673 * If we're a stand alone event or group leader, we go to the context
1674 * list, group events are kept attached to the group so that
1675 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001676 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001677 if (event->group_leader == event) {
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001678 event->group_caps = event->event_caps;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001679 add_event_to_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 }
1681
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001682 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001683
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684 list_add_rcu(&event->event_entry, &ctx->event_list);
1685 ctx->nr_events++;
1686 if (event->attr.inherit_stat)
1687 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001688
1689 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001690}
1691
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001692/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001693 * Initialize event state based on the perf_event_attr::disabled.
1694 */
1695static inline void perf_event__state_init(struct perf_event *event)
1696{
1697 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1698 PERF_EVENT_STATE_INACTIVE;
1699}
1700
Peter Zijlstraa7239682015-09-09 19:06:33 +02001701static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001702{
1703 int entry = sizeof(u64); /* value */
1704 int size = 0;
1705 int nr = 1;
1706
1707 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1708 size += sizeof(u64);
1709
1710 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1711 size += sizeof(u64);
1712
1713 if (event->attr.read_format & PERF_FORMAT_ID)
1714 entry += sizeof(u64);
1715
1716 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001717 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001718 size += sizeof(u64);
1719 }
1720
1721 size += entry * nr;
1722 event->read_size = size;
1723}
1724
Peter Zijlstraa7239682015-09-09 19:06:33 +02001725static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001726{
1727 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001728 u16 size = 0;
1729
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001730 if (sample_type & PERF_SAMPLE_IP)
1731 size += sizeof(data->ip);
1732
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001733 if (sample_type & PERF_SAMPLE_ADDR)
1734 size += sizeof(data->addr);
1735
1736 if (sample_type & PERF_SAMPLE_PERIOD)
1737 size += sizeof(data->period);
1738
Andi Kleenc3feedf2013-01-24 16:10:28 +01001739 if (sample_type & PERF_SAMPLE_WEIGHT)
1740 size += sizeof(data->weight);
1741
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001742 if (sample_type & PERF_SAMPLE_READ)
1743 size += event->read_size;
1744
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001745 if (sample_type & PERF_SAMPLE_DATA_SRC)
1746 size += sizeof(data->data_src.val);
1747
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001748 if (sample_type & PERF_SAMPLE_TRANSACTION)
1749 size += sizeof(data->txn);
1750
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001751 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1752 size += sizeof(data->phys_addr);
1753
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001754 event->header_size = size;
1755}
1756
Peter Zijlstraa7239682015-09-09 19:06:33 +02001757/*
1758 * Called at perf_event creation and when events are attached/detached from a
1759 * group.
1760 */
1761static void perf_event__header_size(struct perf_event *event)
1762{
1763 __perf_event_read_size(event,
1764 event->group_leader->nr_siblings);
1765 __perf_event_header_size(event, event->attr.sample_type);
1766}
1767
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001768static void perf_event__id_header_size(struct perf_event *event)
1769{
1770 struct perf_sample_data *data;
1771 u64 sample_type = event->attr.sample_type;
1772 u16 size = 0;
1773
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001774 if (sample_type & PERF_SAMPLE_TID)
1775 size += sizeof(data->tid_entry);
1776
1777 if (sample_type & PERF_SAMPLE_TIME)
1778 size += sizeof(data->time);
1779
Adrian Hunterff3d5272013-08-27 11:23:07 +03001780 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1781 size += sizeof(data->id);
1782
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001783 if (sample_type & PERF_SAMPLE_ID)
1784 size += sizeof(data->id);
1785
1786 if (sample_type & PERF_SAMPLE_STREAM_ID)
1787 size += sizeof(data->stream_id);
1788
1789 if (sample_type & PERF_SAMPLE_CPU)
1790 size += sizeof(data->cpu_entry);
1791
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001792 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001793}
1794
Peter Zijlstraa7239682015-09-09 19:06:33 +02001795static bool perf_event_validate_size(struct perf_event *event)
1796{
1797 /*
1798 * The values computed here will be over-written when we actually
1799 * attach the event.
1800 */
1801 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1802 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1803 perf_event__id_header_size(event);
1804
1805 /*
1806 * Sum the lot; should not exceed the 64k limit we have on records.
1807 * Conservative limit to allow for callchains and other variable fields.
1808 */
1809 if (event->read_size + event->header_size +
1810 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1811 return false;
1812
1813 return true;
1814}
1815
Peter Zijlstra8a495422010-05-27 15:47:49 +02001816static void perf_group_attach(struct perf_event *event)
1817{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001818 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001819
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001820 lockdep_assert_held(&event->ctx->lock);
1821
Peter Zijlstra74c33372010-10-15 11:40:29 +02001822 /*
1823 * We can have double attach due to group movement in perf_event_open.
1824 */
1825 if (event->attach_state & PERF_ATTACH_GROUP)
1826 return;
1827
Peter Zijlstra8a495422010-05-27 15:47:49 +02001828 event->attach_state |= PERF_ATTACH_GROUP;
1829
1830 if (group_leader == event)
1831 return;
1832
Peter Zijlstra652884f2015-01-23 11:20:10 +01001833 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1834
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001835 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001836
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001837 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001838 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001839
1840 perf_event__header_size(group_leader);
1841
Peter Zijlstraedb39592018-03-15 17:36:56 +01001842 for_each_sibling_event(pos, group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001843 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001844}
1845
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001846/*
Tobias Tefke788faab2018-07-09 12:57:15 +02001847 * Remove an event from the lists for its context.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001848 * Must be called with ctx->mutex and ctx->lock held.
1849 */
1850static void
1851list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1852{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001853 WARN_ON_ONCE(event->ctx != ctx);
1854 lockdep_assert_held(&ctx->lock);
1855
Peter Zijlstra8a495422010-05-27 15:47:49 +02001856 /*
1857 * We can have double detach due to exit/hot-unplug + close.
1858 */
1859 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001860 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001861
1862 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1863
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001864 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866 ctx->nr_events--;
1867 if (event->attr.inherit_stat)
1868 ctx->nr_stat--;
1869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870 list_del_rcu(&event->event_entry);
1871
Peter Zijlstra8a495422010-05-27 15:47:49 +02001872 if (event->group_leader == event)
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001873 del_event_from_groups(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001874
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001875 /*
1876 * If event was in error state, then keep it
1877 * that way, otherwise bogus counts will be
1878 * returned on read(). The only way to get out
1879 * of error state is by explicit re-enabling
1880 * of the event
1881 */
1882 if (event->state > PERF_EVENT_STATE_OFF)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001883 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001884
1885 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001886}
1887
Peter Zijlstra8a495422010-05-27 15:47:49 +02001888static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001889{
1890 struct perf_event *sibling, *tmp;
Peter Zijlstra66681282017-11-13 14:28:38 +01001891 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001892
Peter Zijlstra66681282017-11-13 14:28:38 +01001893 lockdep_assert_held(&ctx->lock);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001894
Peter Zijlstra8a495422010-05-27 15:47:49 +02001895 /*
1896 * We can have double detach due to exit/hot-unplug + close.
1897 */
1898 if (!(event->attach_state & PERF_ATTACH_GROUP))
1899 return;
1900
1901 event->attach_state &= ~PERF_ATTACH_GROUP;
1902
1903 /*
1904 * If this is a sibling, remove it from its group.
1905 */
1906 if (event->group_leader != event) {
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001907 list_del_init(&event->sibling_list);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001908 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001909 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001910 }
1911
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001912 /*
1913 * If this was a group event with sibling events then
1914 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001915 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001916 */
Peter Zijlstra8343aae2017-11-13 14:28:33 +01001917 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001918
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001919 sibling->group_leader = sibling;
Mark Rutland24868362018-03-16 12:51:40 +00001920 list_del_init(&sibling->sibling_list);
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001921
1922 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001923 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001924
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001925 if (!RB_EMPTY_NODE(&event->group_node)) {
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001926 add_event_to_groups(sibling, event->ctx);
Peter Zijlstra66681282017-11-13 14:28:38 +01001927
1928 if (sibling->state == PERF_EVENT_STATE_ACTIVE) {
1929 struct list_head *list = sibling->attr.pinned ?
1930 &ctx->pinned_active : &ctx->flexible_active;
1931
1932 list_add_tail(&sibling->active_list, list);
1933 }
Alexey Budankov8e1a2032017-09-08 11:47:03 +03001934 }
1935
Peter Zijlstra652884f2015-01-23 11:20:10 +01001936 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001937 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001938
1939out:
1940 perf_event__header_size(event->group_leader);
1941
Peter Zijlstraedb39592018-03-15 17:36:56 +01001942 for_each_sibling_event(tmp, event->group_leader)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001943 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001944}
1945
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001946static bool is_orphaned_event(struct perf_event *event)
1947{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001948 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001949}
1950
Mark Rutland2c81a642016-06-14 16:10:41 +01001951static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001952{
1953 struct pmu *pmu = event->pmu;
1954 return pmu->filter_match ? pmu->filter_match(event) : 1;
1955}
1956
Mark Rutland2c81a642016-06-14 16:10:41 +01001957/*
1958 * Check whether we should attempt to schedule an event group based on
1959 * PMU-specific filtering. An event group can consist of HW and SW events,
1960 * potentially with a SW leader, so we must check all the filters, to
1961 * determine whether a group is schedulable:
1962 */
1963static inline int pmu_filter_match(struct perf_event *event)
1964{
Peter Zijlstraedb39592018-03-15 17:36:56 +01001965 struct perf_event *sibling;
Mark Rutland2c81a642016-06-14 16:10:41 +01001966
1967 if (!__pmu_filter_match(event))
1968 return 0;
1969
Peter Zijlstraedb39592018-03-15 17:36:56 +01001970 for_each_sibling_event(sibling, event) {
1971 if (!__pmu_filter_match(sibling))
Mark Rutland2c81a642016-06-14 16:10:41 +01001972 return 0;
1973 }
1974
1975 return 1;
1976}
1977
Stephane Eranianfa66f072010-08-26 16:40:01 +02001978static inline int
1979event_filter_match(struct perf_event *event)
1980{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001981 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1982 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001983}
1984
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001985static void
1986event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001987 struct perf_cpu_context *cpuctx,
1988 struct perf_event_context *ctx)
1989{
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02001990 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001991
1992 WARN_ON_ONCE(event->ctx != ctx);
1993 lockdep_assert_held(&ctx->lock);
1994
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001995 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001996 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997
Peter Zijlstra66681282017-11-13 14:28:38 +01001998 /*
1999 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2000 * we can schedule events _OUT_ individually through things like
2001 * __perf_remove_from_context().
2002 */
2003 list_del_init(&event->active_list);
2004
Alexander Shishkin44377272013-12-16 14:17:36 +02002005 perf_pmu_disable(event->pmu);
2006
Peter Zijlstra28a967c2016-02-24 18:45:46 +01002007 event->pmu->del(event, 0);
2008 event->oncpu = -1;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002009
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002010 if (event->pending_disable) {
2011 event->pending_disable = 0;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002012 state = PERF_EVENT_STATE_OFF;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002013 }
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002014 perf_event_set_state(event, state);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002015
2016 if (!is_software_event(event))
2017 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002018 if (!--ctx->nr_active)
2019 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002020 if (event->attr.freq && event->attr.sample_freq)
2021 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022 if (event->attr.exclusive || !cpuctx->active_oncpu)
2023 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02002024
2025 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002026}
2027
2028static void
2029group_sched_out(struct perf_event *group_event,
2030 struct perf_cpu_context *cpuctx,
2031 struct perf_event_context *ctx)
2032{
2033 struct perf_event *event;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002034
2035 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2036 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002037
Mark Rutland3f005e72016-07-26 18:12:21 +01002038 perf_pmu_disable(ctx->pmu);
2039
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002040 event_sched_out(group_event, cpuctx, ctx);
2041
2042 /*
2043 * Schedule out siblings (if any):
2044 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002045 for_each_sibling_event(event, group_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002046 event_sched_out(event, cpuctx, ctx);
2047
Mark Rutland3f005e72016-07-26 18:12:21 +01002048 perf_pmu_enable(ctx->pmu);
2049
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002050 if (group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002051 cpuctx->exclusive = 0;
2052}
2053
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002054#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01002055
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002056/*
2057 * Cross CPU call to remove a performance event
2058 *
2059 * We disable the event on the hardware level first. After that we
2060 * remove it from the context list.
2061 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002062static void
2063__perf_remove_from_context(struct perf_event *event,
2064 struct perf_cpu_context *cpuctx,
2065 struct perf_event_context *ctx,
2066 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002067{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002068 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002069
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002070 if (ctx->is_active & EVENT_TIME) {
2071 update_context_time(ctx);
2072 update_cgrp_time_from_cpuctx(cpuctx);
2073 }
2074
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002075 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002076 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02002077 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002078 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002079
Peter Zijlstra39a43642016-01-11 12:46:35 +01002080 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002081 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01002082 if (ctx->task) {
2083 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2084 cpuctx->task_ctx = NULL;
2085 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002086 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002087}
2088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002089/*
2090 * Remove the event from a task's (or a CPU's) list of events.
2091 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092 * If event->ctx is a cloned context, callers must make sure that
2093 * every task struct that event->ctx->task could possibly point to
2094 * remains valid. This is OK when called from perf_release since
2095 * that only calls us on the top-level context, which can't be a clone.
2096 * When called from perf_event_exit_task, it's OK because the
2097 * context has been detached from its task.
2098 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002099static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002101 struct perf_event_context *ctx = event->ctx;
2102
2103 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104
Peter Zijlstra45a0e072016-01-26 13:09:48 +01002105 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01002106
2107 /*
2108 * The above event_function_call() can NO-OP when it hits
2109 * TASK_TOMBSTONE. In that case we must already have been detached
2110 * from the context (by perf_event_exit_event()) but the grouping
2111 * might still be in-tact.
2112 */
2113 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
2114 if ((flags & DETACH_GROUP) &&
2115 (event->attach_state & PERF_ATTACH_GROUP)) {
2116 /*
2117 * Since in that case we cannot possibly be scheduled, simply
2118 * detach now.
2119 */
2120 raw_spin_lock_irq(&ctx->lock);
2121 perf_group_detach(event);
2122 raw_spin_unlock_irq(&ctx->lock);
2123 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002124}
2125
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002126/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002127 * Cross CPU call to disable a performance event
2128 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002129static void __perf_event_disable(struct perf_event *event,
2130 struct perf_cpu_context *cpuctx,
2131 struct perf_event_context *ctx,
2132 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002133{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002134 if (event->state < PERF_EVENT_STATE_INACTIVE)
2135 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002136
Peter Zijlstra3c5c8712017-09-05 13:44:51 +02002137 if (ctx->is_active & EVENT_TIME) {
2138 update_context_time(ctx);
2139 update_cgrp_time_from_event(event);
2140 }
2141
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002142 if (event == event->group_leader)
2143 group_sched_out(event, cpuctx, ctx);
2144 else
2145 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002146
2147 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002148}
2149
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002151 * Disable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002152 *
2153 * If event->ctx is a cloned context, callers must make sure that
2154 * every task struct that event->ctx->task could possibly point to
2155 * remains valid. This condition is satisifed when called through
2156 * perf_event_for_each_child or perf_event_for_each because they
2157 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01002158 * goes to exit will block in perf_event_exit_event().
2159 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002160 * When called from perf_pending_event it's OK because event->ctx
2161 * is the current context on this CPU and preemption is disabled,
2162 * hence we can't get into perf_event_task_sched_out for this context.
2163 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002164static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002165{
2166 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002167
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002168 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002169 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002170 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002171 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002172 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002173 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002174
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002175 event_function_call(event, __perf_event_disable, NULL);
2176}
2177
2178void perf_event_disable_local(struct perf_event *event)
2179{
2180 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002181}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002182
2183/*
2184 * Strictly speaking kernel users cannot create groups and therefore this
2185 * interface does not need the perf_event_ctx_lock() magic.
2186 */
2187void perf_event_disable(struct perf_event *event)
2188{
2189 struct perf_event_context *ctx;
2190
2191 ctx = perf_event_ctx_lock(event);
2192 _perf_event_disable(event);
2193 perf_event_ctx_unlock(event, ctx);
2194}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002195EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002196
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002197void perf_event_disable_inatomic(struct perf_event *event)
2198{
2199 event->pending_disable = 1;
2200 irq_work_queue(&event->pending);
2201}
2202
Stephane Eraniane5d13672011-02-14 11:20:01 +02002203static void perf_set_shadow_time(struct perf_event *event,
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002204 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002205{
2206 /*
2207 * use the correct time source for the time snapshot
2208 *
2209 * We could get by without this by leveraging the
2210 * fact that to get to this function, the caller
2211 * has most likely already called update_context_time()
2212 * and update_cgrp_time_xx() and thus both timestamp
2213 * are identical (or very close). Given that tstamp is,
2214 * already adjusted for cgroup, we could say that:
2215 * tstamp - ctx->timestamp
2216 * is equivalent to
2217 * tstamp - cgrp->timestamp.
2218 *
2219 * Then, in perf_output_read(), the calculation would
2220 * work with no changes because:
2221 * - event is guaranteed scheduled in
2222 * - no scheduled out in between
2223 * - thus the timestamp would be the same
2224 *
2225 * But this is a bit hairy.
2226 *
2227 * So instead, we have an explicit cgroup call to remain
2228 * within the time time source all along. We believe it
2229 * is cleaner and simpler to understand.
2230 */
2231 if (is_cgroup_event(event))
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002232 perf_cgroup_set_shadow_time(event, event->tstamp);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002233 else
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002234 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002235}
2236
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002237#define MAX_INTERRUPTS (~0ULL)
2238
2239static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002240static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002241
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002242static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002243event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002244 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002245 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002246{
Alexander Shishkin44377272013-12-16 14:17:36 +02002247 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002248
Peter Zijlstra63342412014-05-05 11:49:16 +02002249 lockdep_assert_held(&ctx->lock);
2250
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002251 if (event->state <= PERF_EVENT_STATE_OFF)
2252 return 0;
2253
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002254 WRITE_ONCE(event->oncpu, smp_processor_id());
2255 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02002256 * Order event::oncpu write to happen before the ACTIVE state is
2257 * visible. This allows perf_event_{stop,read}() to observe the correct
2258 * ->oncpu if it sees ACTIVE.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002259 */
2260 smp_wmb();
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002261 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002262
2263 /*
2264 * Unthrottle events, since we scheduled we might have missed several
2265 * ticks already, also for a heavily scheduling task there is little
2266 * guarantee it'll get a tick in a timely manner.
2267 */
2268 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2269 perf_log_throttle(event, 1);
2270 event->hw.interrupts = 0;
2271 }
2272
Alexander Shishkin44377272013-12-16 14:17:36 +02002273 perf_pmu_disable(event->pmu);
2274
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002275 perf_set_shadow_time(event, ctx);
Shaohua Li72f669c2015-02-05 15:55:31 -08002276
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002277 perf_log_itrace_start(event);
2278
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002279 if (event->pmu->add(event, PERF_EF_START)) {
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002280 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002281 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002282 ret = -EAGAIN;
2283 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002284 }
2285
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002286 if (!is_software_event(event))
2287 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002288 if (!ctx->nr_active++)
2289 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002290 if (event->attr.freq && event->attr.sample_freq)
2291 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002292
2293 if (event->attr.exclusive)
2294 cpuctx->exclusive = 1;
2295
Alexander Shishkin44377272013-12-16 14:17:36 +02002296out:
2297 perf_pmu_enable(event->pmu);
2298
2299 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002300}
2301
2302static int
2303group_sched_in(struct perf_event *group_event,
2304 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002305 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002306{
Lin Ming6bde9b62010-04-23 13:56:00 +08002307 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002308 struct pmu *pmu = ctx->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002309
2310 if (group_event->state == PERF_EVENT_STATE_OFF)
2311 return 0;
2312
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002313 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002314
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002315 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002316 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002317 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002318 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002319 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002320
2321 /*
2322 * Schedule in siblings as one group (if any):
2323 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002324 for_each_sibling_event(event, group_event) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002325 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002326 partial_group = event;
2327 goto group_error;
2328 }
2329 }
2330
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002331 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002332 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002333
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002334group_error:
2335 /*
2336 * Groups can be scheduled in as one unit only, so undo any
2337 * partial group before returning:
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002338 * The events up to the failed event are scheduled out normally.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002339 */
Peter Zijlstraedb39592018-03-15 17:36:56 +01002340 for_each_sibling_event(event, group_event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002341 if (event == partial_group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002342 break;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002343
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002344 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002345 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002346 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002347
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002348 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002349
Peter Zijlstra272325c2015-04-15 11:41:58 +02002350 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002351
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002352 return -EAGAIN;
2353}
2354
2355/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002356 * Work out whether we can put this event group on the CPU now.
2357 */
2358static int group_can_go_on(struct perf_event *event,
2359 struct perf_cpu_context *cpuctx,
2360 int can_add_hw)
2361{
2362 /*
2363 * Groups consisting entirely of software events can always go on.
2364 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002365 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002366 return 1;
2367 /*
2368 * If an exclusive group is already on, no other hardware
2369 * events can go on.
2370 */
2371 if (cpuctx->exclusive)
2372 return 0;
2373 /*
2374 * If this group is exclusive and there are already
2375 * events on the CPU, it can't go on.
2376 */
2377 if (event->attr.exclusive && cpuctx->active_oncpu)
2378 return 0;
2379 /*
2380 * Otherwise, try to add it if all previous groups were able
2381 * to go on.
2382 */
2383 return can_add_hw;
2384}
2385
2386static void add_event_to_ctx(struct perf_event *event,
2387 struct perf_event_context *ctx)
2388{
2389 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002390 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002391}
2392
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002393static void ctx_sched_out(struct perf_event_context *ctx,
2394 struct perf_cpu_context *cpuctx,
2395 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002396static void
2397ctx_sched_in(struct perf_event_context *ctx,
2398 struct perf_cpu_context *cpuctx,
2399 enum event_type_t event_type,
2400 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002401
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002402static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002403 struct perf_event_context *ctx,
2404 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002405{
2406 if (!cpuctx->task_ctx)
2407 return;
2408
2409 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2410 return;
2411
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002412 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002413}
2414
Peter Zijlstradce58552011-04-09 21:17:46 +02002415static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2416 struct perf_event_context *ctx,
2417 struct task_struct *task)
2418{
2419 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2420 if (ctx)
2421 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2422 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2423 if (ctx)
2424 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2425}
2426
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002427/*
2428 * We want to maintain the following priority of scheduling:
2429 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2430 * - task pinned (EVENT_PINNED)
2431 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2432 * - task flexible (EVENT_FLEXIBLE).
2433 *
2434 * In order to avoid unscheduling and scheduling back in everything every
2435 * time an event is added, only do it for the groups of equal priority and
2436 * below.
2437 *
2438 * This can be called after a batch operation on task events, in which case
2439 * event_type is a bit mask of the types of events involved. For CPU events,
2440 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2441 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002442static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002443 struct perf_event_context *task_ctx,
2444 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002445{
Song Liubd903af2018-03-05 21:55:04 -08002446 enum event_type_t ctx_event_type;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002447 bool cpu_event = !!(event_type & EVENT_CPU);
2448
2449 /*
2450 * If pinned groups are involved, flexible groups also need to be
2451 * scheduled out.
2452 */
2453 if (event_type & EVENT_PINNED)
2454 event_type |= EVENT_FLEXIBLE;
2455
Song Liubd903af2018-03-05 21:55:04 -08002456 ctx_event_type = event_type & EVENT_ALL;
2457
Peter Zijlstra3e349502016-01-08 10:01:18 +01002458 perf_pmu_disable(cpuctx->ctx.pmu);
2459 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002460 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2461
2462 /*
2463 * Decide which cpu ctx groups to schedule out based on the types
2464 * of events that caused rescheduling:
2465 * - EVENT_CPU: schedule out corresponding groups;
2466 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2467 * - otherwise, do nothing more.
2468 */
2469 if (cpu_event)
2470 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2471 else if (ctx_event_type & EVENT_PINNED)
2472 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2473
Peter Zijlstra3e349502016-01-08 10:01:18 +01002474 perf_event_sched_in(cpuctx, task_ctx, current);
2475 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002476}
2477
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478/*
2479 * Cross CPU call to install and enable a performance event
2480 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002481 * Very similar to remote_function() + event_function() but cannot assume that
2482 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002484static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002485{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002486 struct perf_event *event = info;
2487 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002488 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002489 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002490 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002491 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002492
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002493 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002494 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002495 raw_spin_lock(&ctx->lock);
2496 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002497
Peter Zijlstra63cae122016-12-09 14:59:00 +01002498 reprogram = (ctx->task == current);
2499
2500 /*
2501 * If the task is running, it must be running on this CPU,
2502 * otherwise we cannot reprogram things.
2503 *
2504 * If its not running, we don't care, ctx->lock will
2505 * serialize against it becoming runnable.
2506 */
2507 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002508 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002509 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002510 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002511
Peter Zijlstra63cae122016-12-09 14:59:00 +01002512 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002513 } else if (task_ctx) {
2514 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002515 }
2516
leilei.lin33801b92018-03-06 17:36:37 +08002517#ifdef CONFIG_CGROUP_PERF
2518 if (is_cgroup_event(event)) {
2519 /*
2520 * If the current cgroup doesn't match the event's
2521 * cgroup, we should not try to schedule it.
2522 */
2523 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2524 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2525 event->cgrp->css.cgroup);
2526 }
2527#endif
2528
Peter Zijlstra63cae122016-12-09 14:59:00 +01002529 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002530 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2531 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002532 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002533 } else {
2534 add_event_to_ctx(event, ctx);
2535 }
2536
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002537unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002538 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002539
Peter Zijlstraa0963092016-02-24 18:45:50 +01002540 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002541}
2542
2543/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002544 * Attach a performance event to a context.
2545 *
2546 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002547 */
2548static void
2549perf_install_in_context(struct perf_event_context *ctx,
2550 struct perf_event *event,
2551 int cpu)
2552{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002553 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002554
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002555 lockdep_assert_held(&ctx->mutex);
2556
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002557 if (event->cpu != -1)
2558 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002559
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002560 /*
2561 * Ensures that if we can observe event->ctx, both the event and ctx
2562 * will be 'complete'. See perf_iterate_sb_cpu().
2563 */
2564 smp_store_release(&event->ctx, ctx);
2565
Peter Zijlstraa0963092016-02-24 18:45:50 +01002566 if (!task) {
2567 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002568 return;
2569 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002570
Peter Zijlstraa0963092016-02-24 18:45:50 +01002571 /*
2572 * Should not happen, we validate the ctx is still alive before calling.
2573 */
2574 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2575 return;
2576
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002577 /*
2578 * Installing events is tricky because we cannot rely on ctx->is_active
2579 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002580 *
2581 * Instead we use task_curr(), which tells us if the task is running.
2582 * However, since we use task_curr() outside of rq::lock, we can race
2583 * against the actual state. This means the result can be wrong.
2584 *
2585 * If we get a false positive, we retry, this is harmless.
2586 *
2587 * If we get a false negative, things are complicated. If we are after
2588 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2589 * value must be correct. If we're before, it doesn't matter since
2590 * perf_event_context_sched_in() will program the counter.
2591 *
2592 * However, this hinges on the remote context switch having observed
2593 * our task->perf_event_ctxp[] store, such that it will in fact take
2594 * ctx::lock in perf_event_context_sched_in().
2595 *
2596 * We do this by task_function_call(), if the IPI fails to hit the task
2597 * we know any future context switch of task must see the
2598 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002599 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002600
Peter Zijlstraa0963092016-02-24 18:45:50 +01002601 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002602 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2603 * task_cpu() load, such that if the IPI then does not find the task
2604 * running, a future context switch of that task must observe the
2605 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002606 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002607 smp_mb();
2608again:
2609 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002610 return;
2611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002612 raw_spin_lock_irq(&ctx->lock);
2613 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002614 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2615 /*
2616 * Cannot happen because we already checked above (which also
2617 * cannot happen), and we hold ctx->mutex, which serializes us
2618 * against perf_event_exit_task_context().
2619 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002620 raw_spin_unlock_irq(&ctx->lock);
2621 return;
2622 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002623 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002624 * If the task is not running, ctx->lock will avoid it becoming so,
2625 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002626 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002627 if (task_curr(task)) {
2628 raw_spin_unlock_irq(&ctx->lock);
2629 goto again;
2630 }
2631 add_event_to_ctx(event, ctx);
2632 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002633}
2634
2635/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002636 * Cross CPU call to enable a performance event
2637 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002638static void __perf_event_enable(struct perf_event *event,
2639 struct perf_cpu_context *cpuctx,
2640 struct perf_event_context *ctx,
2641 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002642{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002643 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002644 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002645
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002646 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2647 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002648 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002649
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002650 if (ctx->is_active)
2651 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2652
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02002653 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002654
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002655 if (!ctx->is_active)
2656 return;
2657
Stephane Eraniane5d13672011-02-14 11:20:01 +02002658 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002659 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002660 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002661 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002663 /*
2664 * If the event is in a group and isn't the group leader,
2665 * then don't put it on unless the group is on.
2666 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002667 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2668 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002669 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002670 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002671
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002672 task_ctx = cpuctx->task_ctx;
2673 if (ctx->task)
2674 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002675
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002676 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002677}
2678
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002679/*
Tobias Tefke788faab2018-07-09 12:57:15 +02002680 * Enable an event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002681 *
2682 * If event->ctx is a cloned context, callers must make sure that
2683 * every task struct that event->ctx->task could possibly point to
2684 * remains valid. This condition is satisfied when called through
2685 * perf_event_for_each_child or perf_event_for_each as described
2686 * for perf_event_disable.
2687 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002688static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002689{
2690 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002691
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002692 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002693 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2694 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002695 raw_spin_unlock_irq(&ctx->lock);
2696 return;
2697 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002698
2699 /*
2700 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002701 *
2702 * That way, if we see the event in error state below, we know that it
2703 * has gone back into error state, as distinct from the task having
2704 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002705 */
2706 if (event->state == PERF_EVENT_STATE_ERROR)
2707 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002708 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002709
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002710 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002711}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002712
2713/*
2714 * See perf_event_disable();
2715 */
2716void perf_event_enable(struct perf_event *event)
2717{
2718 struct perf_event_context *ctx;
2719
2720 ctx = perf_event_ctx_lock(event);
2721 _perf_event_enable(event);
2722 perf_event_ctx_unlock(event, ctx);
2723}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002724EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002725
Alexander Shishkin375637b2016-04-27 18:44:46 +03002726struct stop_event_data {
2727 struct perf_event *event;
2728 unsigned int restart;
2729};
2730
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002731static int __perf_event_stop(void *info)
2732{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002733 struct stop_event_data *sd = info;
2734 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002735
Alexander Shishkin375637b2016-04-27 18:44:46 +03002736 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002737 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2738 return 0;
2739
2740 /* matches smp_wmb() in event_sched_in() */
2741 smp_rmb();
2742
2743 /*
2744 * There is a window with interrupts enabled before we get here,
2745 * so we need to check again lest we try to stop another CPU's event.
2746 */
2747 if (READ_ONCE(event->oncpu) != smp_processor_id())
2748 return -EAGAIN;
2749
2750 event->pmu->stop(event, PERF_EF_UPDATE);
2751
Alexander Shishkin375637b2016-04-27 18:44:46 +03002752 /*
2753 * May race with the actual stop (through perf_pmu_output_stop()),
2754 * but it is only used for events with AUX ring buffer, and such
2755 * events will refuse to restart because of rb::aux_mmap_count==0,
2756 * see comments in perf_aux_output_begin().
2757 *
Tobias Tefke788faab2018-07-09 12:57:15 +02002758 * Since this is happening on an event-local CPU, no trace is lost
Alexander Shishkin375637b2016-04-27 18:44:46 +03002759 * while restarting.
2760 */
2761 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002762 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002763
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002764 return 0;
2765}
2766
Alexander Shishkin767ae082016-09-06 16:23:49 +03002767static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002768{
2769 struct stop_event_data sd = {
2770 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002771 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002772 };
2773 int ret = 0;
2774
2775 do {
2776 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2777 return 0;
2778
2779 /* matches smp_wmb() in event_sched_in() */
2780 smp_rmb();
2781
2782 /*
2783 * We only want to restart ACTIVE events, so if the event goes
2784 * inactive here (event->oncpu==-1), there's nothing more to do;
2785 * fall through with ret==-ENXIO.
2786 */
2787 ret = cpu_function_call(READ_ONCE(event->oncpu),
2788 __perf_event_stop, &sd);
2789 } while (ret == -EAGAIN);
2790
2791 return ret;
2792}
2793
2794/*
2795 * In order to contain the amount of racy and tricky in the address filter
2796 * configuration management, it is a two part process:
2797 *
2798 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2799 * we update the addresses of corresponding vmas in
2800 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2801 * (p2) when an event is scheduled in (pmu::add), it calls
2802 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2803 * if the generation has changed since the previous call.
2804 *
2805 * If (p1) happens while the event is active, we restart it to force (p2).
2806 *
2807 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2808 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2809 * ioctl;
2810 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2811 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2812 * for reading;
2813 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2814 * of exec.
2815 */
2816void perf_event_addr_filters_sync(struct perf_event *event)
2817{
2818 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2819
2820 if (!has_addr_filter(event))
2821 return;
2822
2823 raw_spin_lock(&ifh->lock);
2824 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2825 event->pmu->addr_filters_sync(event);
2826 event->hw.addr_filters_gen = event->addr_filters_gen;
2827 }
2828 raw_spin_unlock(&ifh->lock);
2829}
2830EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2831
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002832static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002833{
2834 /*
2835 * not supported on inherited events
2836 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002837 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838 return -EINVAL;
2839
2840 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002841 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842
2843 return 0;
2844}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002845
2846/*
2847 * See perf_event_disable()
2848 */
2849int perf_event_refresh(struct perf_event *event, int refresh)
2850{
2851 struct perf_event_context *ctx;
2852 int ret;
2853
2854 ctx = perf_event_ctx_lock(event);
2855 ret = _perf_event_refresh(event, refresh);
2856 perf_event_ctx_unlock(event, ctx);
2857
2858 return ret;
2859}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002860EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002861
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002862static int perf_event_modify_breakpoint(struct perf_event *bp,
2863 struct perf_event_attr *attr)
2864{
2865 int err;
2866
2867 _perf_event_disable(bp);
2868
2869 err = modify_user_hw_breakpoint_check(bp, attr, true);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002870
Jiri Olsabf062782018-08-27 11:12:28 +02002871 if (!bp->attr.disabled)
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002872 _perf_event_enable(bp);
Jiri Olsabf062782018-08-27 11:12:28 +02002873
2874 return err;
Milind Chabbi32ff77e2018-03-12 14:45:47 +01002875}
2876
2877static int perf_event_modify_attr(struct perf_event *event,
2878 struct perf_event_attr *attr)
2879{
2880 if (event->attr.type != attr->type)
2881 return -EINVAL;
2882
2883 switch (event->attr.type) {
2884 case PERF_TYPE_BREAKPOINT:
2885 return perf_event_modify_breakpoint(event, attr);
2886 default:
2887 /* Place holder for future additions. */
2888 return -EOPNOTSUPP;
2889 }
2890}
2891
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002892static void ctx_sched_out(struct perf_event_context *ctx,
2893 struct perf_cpu_context *cpuctx,
2894 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002895{
Peter Zijlstra66681282017-11-13 14:28:38 +01002896 struct perf_event *event, *tmp;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002897 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002898
2899 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002900
Peter Zijlstra39a43642016-01-11 12:46:35 +01002901 if (likely(!ctx->nr_events)) {
2902 /*
2903 * See __perf_remove_from_context().
2904 */
2905 WARN_ON_ONCE(ctx->is_active);
2906 if (ctx->task)
2907 WARN_ON_ONCE(cpuctx->task_ctx);
2908 return;
2909 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002910
Peter Zijlstradb24d332011-04-09 21:17:45 +02002911 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002912 if (!(ctx->is_active & EVENT_ALL))
2913 ctx->is_active = 0;
2914
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002915 if (ctx->task) {
2916 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2917 if (!ctx->is_active)
2918 cpuctx->task_ctx = NULL;
2919 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002920
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002921 /*
2922 * Always update time if it was set; not only when it changes.
2923 * Otherwise we can 'forget' to update time for any but the last
2924 * context we sched out. For example:
2925 *
2926 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2927 * ctx_sched_out(.event_type = EVENT_PINNED)
2928 *
2929 * would only update time for the pinned events.
2930 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002931 if (is_active & EVENT_TIME) {
2932 /* update (and stop) ctx time */
2933 update_context_time(ctx);
2934 update_cgrp_time_from_cpuctx(cpuctx);
2935 }
2936
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002937 is_active ^= ctx->is_active; /* changed bits */
2938
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002939 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002940 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002941
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002942 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002943 if (is_active & EVENT_PINNED) {
Peter Zijlstra66681282017-11-13 14:28:38 +01002944 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002945 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002946 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002947
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002948 if (is_active & EVENT_FLEXIBLE) {
Peter Zijlstra66681282017-11-13 14:28:38 +01002949 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002950 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002951 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002952 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002953}
2954
2955/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002956 * Test whether two contexts are equivalent, i.e. whether they have both been
2957 * cloned from the same version of the same context.
2958 *
2959 * Equivalence is measured using a generation number in the context that is
2960 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2961 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002962 */
2963static int context_equiv(struct perf_event_context *ctx1,
2964 struct perf_event_context *ctx2)
2965{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002966 lockdep_assert_held(&ctx1->lock);
2967 lockdep_assert_held(&ctx2->lock);
2968
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002969 /* Pinning disables the swap optimization */
2970 if (ctx1->pin_count || ctx2->pin_count)
2971 return 0;
2972
2973 /* If ctx1 is the parent of ctx2 */
2974 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2975 return 1;
2976
2977 /* If ctx2 is the parent of ctx1 */
2978 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2979 return 1;
2980
2981 /*
2982 * If ctx1 and ctx2 have the same parent; we flatten the parent
2983 * hierarchy, see perf_event_init_context().
2984 */
2985 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2986 ctx1->parent_gen == ctx2->parent_gen)
2987 return 1;
2988
2989 /* Unmatched */
2990 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002991}
2992
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002993static void __perf_event_sync_stat(struct perf_event *event,
2994 struct perf_event *next_event)
2995{
2996 u64 value;
2997
2998 if (!event->attr.inherit_stat)
2999 return;
3000
3001 /*
3002 * Update the event value, we cannot use perf_event_read()
3003 * because we're in the middle of a context switch and have IRQs
3004 * disabled, which upsets smp_call_function_single(), however
3005 * we know the event must be on the current CPU, therefore we
3006 * don't need to use it.
3007 */
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003008 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01003009 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003010
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003011 perf_event_update_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003012
3013 /*
3014 * In order to keep per-task stats reliable we need to flip the event
3015 * values when we flip the contexts.
3016 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02003017 value = local64_read(&next_event->count);
3018 value = local64_xchg(&event->count, value);
3019 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020
3021 swap(event->total_time_enabled, next_event->total_time_enabled);
3022 swap(event->total_time_running, next_event->total_time_running);
3023
3024 /*
3025 * Since we swizzled the values, update the user visible data too.
3026 */
3027 perf_event_update_userpage(event);
3028 perf_event_update_userpage(next_event);
3029}
3030
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003031static void perf_event_sync_stat(struct perf_event_context *ctx,
3032 struct perf_event_context *next_ctx)
3033{
3034 struct perf_event *event, *next_event;
3035
3036 if (!ctx->nr_stat)
3037 return;
3038
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01003039 update_context_time(ctx);
3040
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003041 event = list_first_entry(&ctx->event_list,
3042 struct perf_event, event_entry);
3043
3044 next_event = list_first_entry(&next_ctx->event_list,
3045 struct perf_event, event_entry);
3046
3047 while (&event->event_entry != &ctx->event_list &&
3048 &next_event->event_entry != &next_ctx->event_list) {
3049
3050 __perf_event_sync_stat(event, next_event);
3051
3052 event = list_next_entry(event, event_entry);
3053 next_event = list_next_entry(next_event, event_entry);
3054 }
3055}
3056
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003057static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3058 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003060 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003062 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003063 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064 int do_switch = 1;
3065
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003066 if (likely(!ctx))
3067 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003068
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003069 cpuctx = __get_cpu_context(ctx);
3070 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071 return;
3072
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003073 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003074 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003075 if (!next_ctx)
3076 goto unlock;
3077
3078 parent = rcu_dereference(ctx->parent_ctx);
3079 next_parent = rcu_dereference(next_ctx->parent_ctx);
3080
3081 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02003082 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003083 goto unlock;
3084
3085 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003086 /*
3087 * Looks like the two contexts are clones, so we might be
3088 * able to optimize the context switch. We lock both
3089 * contexts and check that they are clones under the
3090 * lock (including re-checking that neither has been
3091 * uncloned in the meantime). It doesn't matter which
3092 * order we take the locks because no other cpu could
3093 * be trying to lock both of these tasks.
3094 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003095 raw_spin_lock(&ctx->lock);
3096 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003097 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003098 WRITE_ONCE(ctx->task, next);
3099 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05003100
3101 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
3102
Peter Zijlstra63b6da32016-01-14 16:05:37 +01003103 /*
3104 * RCU_INIT_POINTER here is safe because we've not
3105 * modified the ctx and the above modification of
3106 * ctx->task and ctx->task_ctx_data are immaterial
3107 * since those values are always verified under
3108 * ctx->lock which we're now holding.
3109 */
3110 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3111 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3112
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003113 do_switch = 0;
3114
3115 perf_event_sync_stat(ctx, next_ctx);
3116 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003117 raw_spin_unlock(&next_ctx->lock);
3118 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003119 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02003120unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003121 rcu_read_unlock();
3122
3123 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003124 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003125 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003126 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003127 }
3128}
3129
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003130static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3131
Yan, Zhengba532502014-11-04 21:55:58 -05003132void perf_sched_cb_dec(struct pmu *pmu)
3133{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003134 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3135
Yan, Zhengba532502014-11-04 21:55:58 -05003136 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003137
3138 if (!--cpuctx->sched_cb_usage)
3139 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003140}
3141
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003142
Yan, Zhengba532502014-11-04 21:55:58 -05003143void perf_sched_cb_inc(struct pmu *pmu)
3144{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003145 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3146
3147 if (!cpuctx->sched_cb_usage++)
3148 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3149
Yan, Zhengba532502014-11-04 21:55:58 -05003150 this_cpu_inc(perf_sched_cb_usages);
3151}
3152
3153/*
3154 * This function provides the context switch callback to the lower code
3155 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003156 *
3157 * This callback is relevant even to per-cpu events; for example multi event
3158 * PEBS requires this to provide PID/TID information. This requires we flush
3159 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003160 */
3161static void perf_pmu_sched_task(struct task_struct *prev,
3162 struct task_struct *next,
3163 bool sched_in)
3164{
3165 struct perf_cpu_context *cpuctx;
3166 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05003167
3168 if (prev == next)
3169 return;
3170
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003171 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08003172 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05003173
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003174 if (WARN_ON_ONCE(!pmu->sched_task))
3175 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05003176
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003177 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3178 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05003179
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003180 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003181
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003182 perf_pmu_enable(pmu);
3183 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003184 }
Yan, Zhengba532502014-11-04 21:55:58 -05003185}
3186
Adrian Hunter45ac1402015-07-21 12:44:02 +03003187static void perf_event_switch(struct task_struct *task,
3188 struct task_struct *next_prev, bool sched_in);
3189
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003190#define for_each_task_context_nr(ctxn) \
3191 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3192
3193/*
3194 * Called from scheduler to remove the events of the current task,
3195 * with interrupts disabled.
3196 *
3197 * We stop each event and update the event value in event->count.
3198 *
3199 * This does not protect us against NMI, but disable()
3200 * sets the disabled bit in the control field of event _before_
3201 * accessing the event control register. If a NMI hits, then it will
3202 * not restart the event.
3203 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003204void __perf_event_task_sched_out(struct task_struct *task,
3205 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003206{
3207 int ctxn;
3208
Yan, Zhengba532502014-11-04 21:55:58 -05003209 if (__this_cpu_read(perf_sched_cb_usages))
3210 perf_pmu_sched_task(task, next, false);
3211
Adrian Hunter45ac1402015-07-21 12:44:02 +03003212 if (atomic_read(&nr_switch_events))
3213 perf_event_switch(task, next, false);
3214
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003215 for_each_task_context_nr(ctxn)
3216 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003217
3218 /*
3219 * if cgroup events exist on this CPU, then we need
3220 * to check if we have to switch out PMU state.
3221 * cgroup event are system-wide mode only
3222 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003223 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003224 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003225}
3226
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003227/*
3228 * Called with IRQs disabled
3229 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003230static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3231 enum event_type_t event_type)
3232{
3233 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003234}
3235
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003236static int visit_groups_merge(struct perf_event_groups *groups, int cpu,
3237 int (*func)(struct perf_event *, void *), void *data)
3238{
3239 struct perf_event **evt, *evt1, *evt2;
3240 int ret;
3241
3242 evt1 = perf_event_groups_first(groups, -1);
3243 evt2 = perf_event_groups_first(groups, cpu);
3244
3245 while (evt1 || evt2) {
3246 if (evt1 && evt2) {
3247 if (evt1->group_index < evt2->group_index)
3248 evt = &evt1;
3249 else
3250 evt = &evt2;
3251 } else if (evt1) {
3252 evt = &evt1;
3253 } else {
3254 evt = &evt2;
3255 }
3256
3257 ret = func(*evt, data);
3258 if (ret)
3259 return ret;
3260
3261 *evt = perf_event_groups_next(*evt);
3262 }
3263
3264 return 0;
3265}
3266
3267struct sched_in_data {
3268 struct perf_event_context *ctx;
3269 struct perf_cpu_context *cpuctx;
3270 int can_add_hw;
3271};
3272
3273static int pinned_sched_in(struct perf_event *event, void *data)
3274{
3275 struct sched_in_data *sid = data;
3276
3277 if (event->state <= PERF_EVENT_STATE_OFF)
3278 return 0;
3279
3280 if (!event_filter_match(event))
3281 return 0;
3282
Peter Zijlstra66681282017-11-13 14:28:38 +01003283 if (group_can_go_on(event, sid->cpuctx, sid->can_add_hw)) {
3284 if (!group_sched_in(event, sid->cpuctx, sid->ctx))
3285 list_add_tail(&event->active_list, &sid->ctx->pinned_active);
3286 }
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003287
3288 /*
3289 * If this pinned group hasn't been scheduled,
3290 * put it in error state.
3291 */
3292 if (event->state == PERF_EVENT_STATE_INACTIVE)
3293 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
3294
3295 return 0;
3296}
3297
3298static int flexible_sched_in(struct perf_event *event, void *data)
3299{
3300 struct sched_in_data *sid = data;
3301
3302 if (event->state <= PERF_EVENT_STATE_OFF)
3303 return 0;
3304
3305 if (!event_filter_match(event))
3306 return 0;
3307
3308 if (group_can_go_on(event, sid->cpuctx, sid->can_add_hw)) {
Peter Zijlstra66681282017-11-13 14:28:38 +01003309 if (!group_sched_in(event, sid->cpuctx, sid->ctx))
3310 list_add_tail(&event->active_list, &sid->ctx->flexible_active);
3311 else
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003312 sid->can_add_hw = 0;
3313 }
3314
3315 return 0;
3316}
3317
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003318static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003319ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003320 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003321{
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003322 struct sched_in_data sid = {
3323 .ctx = ctx,
3324 .cpuctx = cpuctx,
3325 .can_add_hw = 1,
3326 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003328 visit_groups_merge(&ctx->pinned_groups,
3329 smp_processor_id(),
3330 pinned_sched_in, &sid);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003331}
3332
3333static void
3334ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003335 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003336{
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003337 struct sched_in_data sid = {
3338 .ctx = ctx,
3339 .cpuctx = cpuctx,
3340 .can_add_hw = 1,
3341 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003342
Peter Zijlstra1cac7b12017-11-13 14:28:30 +01003343 visit_groups_merge(&ctx->flexible_groups,
3344 smp_processor_id(),
3345 flexible_sched_in, &sid);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003346}
3347
3348static void
3349ctx_sched_in(struct perf_event_context *ctx,
3350 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003351 enum event_type_t event_type,
3352 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003353{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003354 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003355 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003356
Peter Zijlstrac994d612016-01-08 09:20:23 +01003357 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003358
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003359 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003360 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003361
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003362 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003363 if (ctx->task) {
3364 if (!is_active)
3365 cpuctx->task_ctx = ctx;
3366 else
3367 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3368 }
3369
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003370 is_active ^= ctx->is_active; /* changed bits */
3371
3372 if (is_active & EVENT_TIME) {
3373 /* start ctx time */
3374 now = perf_clock();
3375 ctx->timestamp = now;
3376 perf_cgroup_set_timestamp(task, ctx);
3377 }
3378
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003379 /*
3380 * First go through the list and put on any pinned groups
3381 * in order to give them the best chance of going on.
3382 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003383 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003384 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003385
3386 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003387 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003388 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003389}
3390
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003391static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003392 enum event_type_t event_type,
3393 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003394{
3395 struct perf_event_context *ctx = &cpuctx->ctx;
3396
Stephane Eraniane5d13672011-02-14 11:20:01 +02003397 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003398}
3399
Stephane Eraniane5d13672011-02-14 11:20:01 +02003400static void perf_event_context_sched_in(struct perf_event_context *ctx,
3401 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003402{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003403 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003404
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003405 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003406 if (cpuctx->task_ctx == ctx)
3407 return;
3408
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003409 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003410 /*
3411 * We must check ctx->nr_events while holding ctx->lock, such
3412 * that we serialize against perf_install_in_context().
3413 */
3414 if (!ctx->nr_events)
3415 goto unlock;
3416
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003417 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003418 /*
3419 * We want to keep the following priority order:
3420 * cpu pinned (that don't need to move), task pinned,
3421 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003422 *
3423 * However, if task's ctx is not carrying any pinned
3424 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003425 */
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003426 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003427 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003428 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003429 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003430
3431unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003432 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433}
3434
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003435/*
3436 * Called from scheduler to add the events of the current task
3437 * with interrupts disabled.
3438 *
3439 * We restore the event value and then enable it.
3440 *
3441 * This does not protect us against NMI, but enable()
3442 * sets the enabled bit in the control field of event _before_
3443 * accessing the event control register. If a NMI hits, then it will
3444 * keep the event running.
3445 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003446void __perf_event_task_sched_in(struct task_struct *prev,
3447 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003448{
3449 struct perf_event_context *ctx;
3450 int ctxn;
3451
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003452 /*
3453 * If cgroup events exist on this CPU, then we need to check if we have
3454 * to switch in PMU state; cgroup event are system-wide mode only.
3455 *
3456 * Since cgroup events are CPU events, we must schedule these in before
3457 * we schedule in the task events.
3458 */
3459 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3460 perf_cgroup_sched_in(prev, task);
3461
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003462 for_each_task_context_nr(ctxn) {
3463 ctx = task->perf_event_ctxp[ctxn];
3464 if (likely(!ctx))
3465 continue;
3466
Stephane Eraniane5d13672011-02-14 11:20:01 +02003467 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003468 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003469
Adrian Hunter45ac1402015-07-21 12:44:02 +03003470 if (atomic_read(&nr_switch_events))
3471 perf_event_switch(task, prev, true);
3472
Yan, Zhengba532502014-11-04 21:55:58 -05003473 if (__this_cpu_read(perf_sched_cb_usages))
3474 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003475}
3476
Peter Zijlstraabd50712010-01-26 18:50:16 +01003477static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3478{
3479 u64 frequency = event->attr.sample_freq;
3480 u64 sec = NSEC_PER_SEC;
3481 u64 divisor, dividend;
3482
3483 int count_fls, nsec_fls, frequency_fls, sec_fls;
3484
3485 count_fls = fls64(count);
3486 nsec_fls = fls64(nsec);
3487 frequency_fls = fls64(frequency);
3488 sec_fls = 30;
3489
3490 /*
3491 * We got @count in @nsec, with a target of sample_freq HZ
3492 * the target period becomes:
3493 *
3494 * @count * 10^9
3495 * period = -------------------
3496 * @nsec * sample_freq
3497 *
3498 */
3499
3500 /*
3501 * Reduce accuracy by one bit such that @a and @b converge
3502 * to a similar magnitude.
3503 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003504#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003505do { \
3506 if (a##_fls > b##_fls) { \
3507 a >>= 1; \
3508 a##_fls--; \
3509 } else { \
3510 b >>= 1; \
3511 b##_fls--; \
3512 } \
3513} while (0)
3514
3515 /*
3516 * Reduce accuracy until either term fits in a u64, then proceed with
3517 * the other, so that finally we can do a u64/u64 division.
3518 */
3519 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3520 REDUCE_FLS(nsec, frequency);
3521 REDUCE_FLS(sec, count);
3522 }
3523
3524 if (count_fls + sec_fls > 64) {
3525 divisor = nsec * frequency;
3526
3527 while (count_fls + sec_fls > 64) {
3528 REDUCE_FLS(count, sec);
3529 divisor >>= 1;
3530 }
3531
3532 dividend = count * sec;
3533 } else {
3534 dividend = count * sec;
3535
3536 while (nsec_fls + frequency_fls > 64) {
3537 REDUCE_FLS(nsec, frequency);
3538 dividend >>= 1;
3539 }
3540
3541 divisor = nsec * frequency;
3542 }
3543
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003544 if (!divisor)
3545 return dividend;
3546
Peter Zijlstraabd50712010-01-26 18:50:16 +01003547 return div64_u64(dividend, divisor);
3548}
3549
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003550static DEFINE_PER_CPU(int, perf_throttled_count);
3551static DEFINE_PER_CPU(u64, perf_throttled_seq);
3552
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003553static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003554{
3555 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003556 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003557 s64 delta;
3558
Peter Zijlstraabd50712010-01-26 18:50:16 +01003559 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003560
3561 delta = (s64)(period - hwc->sample_period);
3562 delta = (delta + 7) / 8; /* low pass filter */
3563
3564 sample_period = hwc->sample_period + delta;
3565
3566 if (!sample_period)
3567 sample_period = 1;
3568
3569 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003570
Peter Zijlstrae7850592010-05-21 14:43:08 +02003571 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003572 if (disable)
3573 event->pmu->stop(event, PERF_EF_UPDATE);
3574
Peter Zijlstrae7850592010-05-21 14:43:08 +02003575 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003576
3577 if (disable)
3578 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003579 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003580}
3581
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003582/*
3583 * combine freq adjustment with unthrottling to avoid two passes over the
3584 * events. At the same time, make sure, having freq events does not change
3585 * the rate of unthrottling as that would introduce bias.
3586 */
3587static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3588 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003589{
3590 struct perf_event *event;
3591 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003592 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003593 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003594
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003595 /*
3596 * only need to iterate over all events iff:
3597 * - context have events in frequency mode (needs freq adjust)
3598 * - there are events to unthrottle on this cpu
3599 */
3600 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003601 return;
3602
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003603 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003604 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003605
Paul Mackerras03541f82009-10-14 16:58:03 +11003606 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003607 if (event->state != PERF_EVENT_STATE_ACTIVE)
3608 continue;
3609
Stephane Eranian5632ab12011-01-03 18:20:01 +02003610 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003611 continue;
3612
Alexander Shishkin44377272013-12-16 14:17:36 +02003613 perf_pmu_disable(event->pmu);
3614
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003615 hwc = &event->hw;
3616
Jiri Olsaae23bff2013-08-24 16:45:54 +02003617 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003618 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003619 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003620 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003621 }
3622
3623 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003624 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003625
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003626 /*
3627 * stop the event and update event->count
3628 */
3629 event->pmu->stop(event, PERF_EF_UPDATE);
3630
Peter Zijlstrae7850592010-05-21 14:43:08 +02003631 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003632 delta = now - hwc->freq_count_stamp;
3633 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003634
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003635 /*
3636 * restart the event
3637 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003638 * we have stopped the event so tell that
3639 * to perf_adjust_period() to avoid stopping it
3640 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003641 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003642 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003643 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003644
3645 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003646 next:
3647 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003649
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003650 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003651 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003652}
3653
3654/*
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003655 * Move @event to the tail of the @ctx's elegible events.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003656 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003657static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003658{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003659 /*
3660 * Rotate the first entry last of non-pinned groups. Rotation might be
3661 * disabled by the inheritance code.
3662 */
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003663 if (ctx->rotate_disable)
3664 return;
Alexey Budankov8e1a2032017-09-08 11:47:03 +03003665
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003666 perf_event_groups_delete(&ctx->flexible_groups, event);
3667 perf_event_groups_insert(&ctx->flexible_groups, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003668}
3669
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003670static inline struct perf_event *
3671ctx_first_active(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003672{
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003673 return list_first_entry_or_null(&ctx->flexible_active,
3674 struct perf_event, active_list);
3675}
3676
3677static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
3678{
3679 struct perf_event *cpu_event = NULL, *task_event = NULL;
3680 bool cpu_rotate = false, task_rotate = false;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003681 struct perf_event_context *ctx = NULL;
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003682
3683 /*
3684 * Since we run this from IRQ context, nobody can install new
3685 * events, thus the event count values are stable.
3686 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003688 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003689 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003690 cpu_rotate = true;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003691 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003692
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003693 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003694 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003695 if (ctx->nr_events != ctx->nr_active)
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003696 task_rotate = true;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003697 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003698
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003699 if (!(cpu_rotate || task_rotate))
3700 return false;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003701
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003702 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003703 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003704
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003705 if (task_rotate)
3706 task_event = ctx_first_active(ctx);
3707 if (cpu_rotate)
3708 cpu_event = ctx_first_active(&cpuctx->ctx);
Peter Zijlstra8703a7c2017-11-13 14:28:44 +01003709
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003710 /*
3711 * As per the order given at ctx_resched() first 'pop' task flexible
3712 * and then, if needed CPU flexible.
3713 */
3714 if (task_event || (ctx && cpu_event))
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003715 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003716 if (cpu_event)
3717 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003718
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003719 if (task_event)
3720 rotate_ctx(ctx, task_event);
3721 if (cpu_event)
3722 rotate_ctx(&cpuctx->ctx, cpu_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003723
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003724 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003725
3726 perf_pmu_enable(cpuctx->ctx.pmu);
3727 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02003728
Peter Zijlstra8d5bce02018-03-09 14:56:27 +01003729 return true;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003730}
3731
3732void perf_event_task_tick(void)
3733{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003734 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3735 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003736 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003737
Frederic Weisbecker16444642017-11-06 16:01:24 +01003738 lockdep_assert_irqs_disabled();
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003739
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003740 __this_cpu_inc(perf_throttled_seq);
3741 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003742 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003743
Mark Rutland2fde4f92015-01-07 15:01:54 +00003744 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003745 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746}
3747
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003748static int event_enable_on_exec(struct perf_event *event,
3749 struct perf_event_context *ctx)
3750{
3751 if (!event->attr.enable_on_exec)
3752 return 0;
3753
3754 event->attr.enable_on_exec = 0;
3755 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3756 return 0;
3757
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003758 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003759
3760 return 1;
3761}
3762
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003763/*
3764 * Enable all of a task's events that have been marked enable-on-exec.
3765 * This expects task == current.
3766 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003767static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003768{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003769 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003770 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003771 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003772 struct perf_event *event;
3773 unsigned long flags;
3774 int enabled = 0;
3775
3776 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003777 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003778 if (!ctx || !ctx->nr_events)
3779 goto out;
3780
Peter Zijlstra3e349502016-01-08 10:01:18 +01003781 cpuctx = __get_cpu_context(ctx);
3782 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003783 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003784 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003785 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003786 event_type |= get_event_type(event);
3787 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003788
3789 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003790 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003791 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003792 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003793 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003794 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003795 } else {
3796 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003797 }
3798 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003799
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003800out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003802
3803 if (clone_ctx)
3804 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003805}
3806
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003807struct perf_read_data {
3808 struct perf_event *event;
3809 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003810 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003811};
3812
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003813static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003814{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003815 u16 local_pkg, event_pkg;
3816
3817 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003818 int local_cpu = smp_processor_id();
3819
3820 event_pkg = topology_physical_package_id(event_cpu);
3821 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003822
3823 if (event_pkg == local_pkg)
3824 return local_cpu;
3825 }
3826
3827 return event_cpu;
3828}
3829
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003830/*
3831 * Cross CPU call to read the hardware event
3832 */
3833static void __perf_event_read(void *info)
3834{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003835 struct perf_read_data *data = info;
3836 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003837 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003838 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003839 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003840
3841 /*
3842 * If this is a task context, we need to check whether it is
3843 * the current task context of this cpu. If not it has been
3844 * scheduled out before the smp call arrived. In that case
3845 * event->count would have been updated to a recent sample
3846 * when the event was scheduled out.
3847 */
3848 if (ctx->task && cpuctx->task_ctx != ctx)
3849 return;
3850
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003851 raw_spin_lock(&ctx->lock);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003852 if (ctx->is_active & EVENT_TIME) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003853 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003854 update_cgrp_time_from_event(event);
3855 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003856
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003857 perf_event_update_time(event);
3858 if (data->group)
3859 perf_event_update_sibling_time(event);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003860
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003861 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003862 goto unlock;
3863
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003864 if (!data->group) {
3865 pmu->read(event);
3866 data->ret = 0;
3867 goto unlock;
3868 }
3869
3870 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3871
3872 pmu->read(event);
3873
Peter Zijlstraedb39592018-03-15 17:36:56 +01003874 for_each_sibling_event(sub, event) {
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003875 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3876 /*
3877 * Use sibling's PMU rather than @event's since
3878 * sibling could be on different (eg: software) PMU.
3879 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003880 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003881 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003882 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003883
3884 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003885
3886unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003887 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003888}
3889
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003890static inline u64 perf_event_count(struct perf_event *event)
3891{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07003892 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003893}
3894
Kaixu Xiaffe86902015-08-06 07:02:32 +00003895/*
3896 * NMI-safe method to read a local event, that is an event that
3897 * is:
3898 * - either for the current task, or for this CPU
3899 * - does not have inherit set, for inherited task events
3900 * will not be local and we cannot read them atomically
3901 * - must not have a pmu::count method
3902 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07003903int perf_event_read_local(struct perf_event *event, u64 *value,
3904 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00003905{
3906 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003907 int ret = 0;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003908
3909 /*
3910 * Disabling interrupts avoids all counter scheduling (context
3911 * switches, timer based rotation and IPIs).
3912 */
3913 local_irq_save(flags);
3914
Kaixu Xiaffe86902015-08-06 07:02:32 +00003915 /*
3916 * It must not be an event with inherit set, we cannot read
3917 * all child counters from atomic context.
3918 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003919 if (event->attr.inherit) {
3920 ret = -EOPNOTSUPP;
3921 goto out;
3922 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003923
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003924 /* If this is a per-task event, it must be for current */
3925 if ((event->attach_state & PERF_ATTACH_TASK) &&
3926 event->hw.target != current) {
3927 ret = -EINVAL;
3928 goto out;
3929 }
3930
3931 /* If this is a per-CPU event, it must be for this CPU */
3932 if (!(event->attach_state & PERF_ATTACH_TASK) &&
3933 event->cpu != smp_processor_id()) {
3934 ret = -EINVAL;
3935 goto out;
3936 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003937
Reinette Chatrebefb1b32018-09-19 10:29:06 -07003938 /* If this is a pinned event it must be running on this CPU */
3939 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
3940 ret = -EBUSY;
3941 goto out;
3942 }
3943
Kaixu Xiaffe86902015-08-06 07:02:32 +00003944 /*
3945 * If the event is currently on this CPU, its either a per-task event,
3946 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3947 * oncpu == -1).
3948 */
3949 if (event->oncpu == smp_processor_id())
3950 event->pmu->read(event);
3951
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003952 *value = local64_read(&event->count);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02003953 if (enabled || running) {
3954 u64 now = event->shadow_ctx_time + perf_clock();
3955 u64 __enabled, __running;
3956
3957 __perf_update_times(event, now, &__enabled, &__running);
3958 if (enabled)
3959 *enabled = __enabled;
3960 if (running)
3961 *running = __running;
3962 }
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003963out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00003964 local_irq_restore(flags);
3965
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003966 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003967}
3968
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003969static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003970{
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003971 enum perf_event_state state = READ_ONCE(event->state);
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003972 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003973
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003974 /*
3975 * If event is enabled and currently active on a CPU, update the
3976 * value in the event structure:
3977 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003978again:
3979 if (state == PERF_EVENT_STATE_ACTIVE) {
3980 struct perf_read_data data;
3981
3982 /*
3983 * Orders the ->state and ->oncpu loads such that if we see
3984 * ACTIVE we must also see the right ->oncpu.
3985 *
3986 * Matches the smp_wmb() from event_sched_in().
3987 */
3988 smp_rmb();
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003989
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003990 event_cpu = READ_ONCE(event->oncpu);
3991 if ((unsigned)event_cpu >= nr_cpu_ids)
3992 return 0;
3993
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02003994 data = (struct perf_read_data){
3995 .event = event,
3996 .group = group,
3997 .ret = 0,
3998 };
3999
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004000 preempt_disable();
4001 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07004002
Peter Zijlstra58763142016-08-30 10:15:03 +02004003 /*
4004 * Purposely ignore the smp_call_function_single() return
4005 * value.
4006 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004007 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02004008 * scheduled out and that will have updated the event count.
4009 *
4010 * Therefore, either way, we'll have an up-to-date event count
4011 * after this.
4012 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01004013 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4014 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02004015 ret = data.ret;
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004016
4017 } else if (state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01004018 struct perf_event_context *ctx = event->ctx;
4019 unsigned long flags;
4020
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004021 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004022 state = event->state;
4023 if (state != PERF_EVENT_STATE_INACTIVE) {
4024 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4025 goto again;
4026 }
4027
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004028 /*
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004029 * May read while context is not active (e.g., thread is
4030 * blocked), in that case we cannot update context time
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004031 */
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004032 if (ctx->is_active & EVENT_TIME) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02004033 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02004034 update_cgrp_time_from_event(event);
4035 }
Peter Zijlstra0c1cbc12017-09-05 16:26:44 +02004036
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004037 perf_event_update_time(event);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07004038 if (group)
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02004039 perf_event_update_sibling_time(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004040 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004041 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004042
4043 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004044}
4045
4046/*
4047 * Initialize the perf_event context in a task_struct:
4048 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02004049static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004050{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004051 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004052 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00004053 INIT_LIST_HEAD(&ctx->active_ctx_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03004054 perf_event_groups_init(&ctx->pinned_groups);
4055 perf_event_groups_init(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004056 INIT_LIST_HEAD(&ctx->event_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01004057 INIT_LIST_HEAD(&ctx->pinned_active);
4058 INIT_LIST_HEAD(&ctx->flexible_active);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004059 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004060}
4061
Peter Zijlstraeb184472010-09-07 15:55:13 +02004062static struct perf_event_context *
4063alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004064{
4065 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004066
4067 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4068 if (!ctx)
4069 return NULL;
4070
4071 __perf_event_init_context(ctx);
4072 if (task) {
4073 ctx->task = task;
4074 get_task_struct(task);
4075 }
4076 ctx->pmu = pmu;
4077
4078 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004079}
4080
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004081static struct task_struct *
4082find_lively_task_by_vpid(pid_t vpid)
4083{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004084 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004085
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004086 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004087 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004088 task = current;
4089 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004090 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004091 if (task)
4092 get_task_struct(task);
4093 rcu_read_unlock();
4094
4095 if (!task)
4096 return ERR_PTR(-ESRCH);
4097
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004098 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07004099}
4100
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004101/*
4102 * Returns a matching context with refcount and pincount.
4103 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004104static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004105find_get_context(struct pmu *pmu, struct task_struct *task,
4106 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004107{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004108 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004109 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004110 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004111 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004112 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004113 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004114
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01004115 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004116 /* Must be root to operate on a CPU event: */
4117 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
4118 return ERR_PTR(-EACCES);
4119
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004120 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004121 ctx = &cpuctx->ctx;
4122 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004123 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004124
4125 return ctx;
4126 }
4127
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004128 err = -EINVAL;
4129 ctxn = pmu->task_ctx_nr;
4130 if (ctxn < 0)
4131 goto errout;
4132
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004133 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
4134 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
4135 if (!task_ctx_data) {
4136 err = -ENOMEM;
4137 goto errout;
4138 }
4139 }
4140
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004141retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004142 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004143 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004144 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004145 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004146
4147 if (task_ctx_data && !ctx->task_ctx_data) {
4148 ctx->task_ctx_data = task_ctx_data;
4149 task_ctx_data = NULL;
4150 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004151 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02004152
4153 if (clone_ctx)
4154 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004155 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02004156 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004157 err = -ENOMEM;
4158 if (!ctx)
4159 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02004160
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004161 if (task_ctx_data) {
4162 ctx->task_ctx_data = task_ctx_data;
4163 task_ctx_data = NULL;
4164 }
4165
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004166 err = 0;
4167 mutex_lock(&task->perf_event_mutex);
4168 /*
4169 * If it has already passed perf_event_exit_task().
4170 * we must see PF_EXITING, it takes this mutex too.
4171 */
4172 if (task->flags & PF_EXITING)
4173 err = -ESRCH;
4174 else if (task->perf_event_ctxp[ctxn])
4175 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004176 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004177 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004178 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004179 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01004180 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004181 mutex_unlock(&task->perf_event_mutex);
4182
4183 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02004184 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01004185
4186 if (err == -EAGAIN)
4187 goto retry;
4188 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004189 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004190 }
4191
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004192 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004193 return ctx;
4194
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004195errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05004196 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004197 return ERR_PTR(err);
4198}
4199
Li Zefan6fb29152009-10-15 11:21:42 +08004200static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004201static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08004202
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004203static void free_event_rcu(struct rcu_head *head)
4204{
4205 struct perf_event *event;
4206
4207 event = container_of(head, struct perf_event, rcu_head);
4208 if (event->ns)
4209 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08004210 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004211 kfree(event);
4212}
4213
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004214static void ring_buffer_attach(struct perf_event *event,
4215 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004216
Kan Liangf2fb6be2016-03-23 11:24:37 -07004217static void detach_sb_event(struct perf_event *event)
4218{
4219 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4220
4221 raw_spin_lock(&pel->lock);
4222 list_del_rcu(&event->sb_list);
4223 raw_spin_unlock(&pel->lock);
4224}
4225
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004226static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07004227{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004228 struct perf_event_attr *attr = &event->attr;
4229
Kan Liangf2fb6be2016-03-23 11:24:37 -07004230 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004231 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004232
4233 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004234 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07004235
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07004236 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4237 attr->comm || attr->comm_exec ||
4238 attr->task ||
4239 attr->context_switch)
4240 return true;
4241 return false;
4242}
4243
4244static void unaccount_pmu_sb_event(struct perf_event *event)
4245{
4246 if (is_sb_event(event))
4247 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004248}
4249
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004250static void unaccount_event_cpu(struct perf_event *event, int cpu)
4251{
4252 if (event->parent)
4253 return;
4254
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004255 if (is_cgroup_event(event))
4256 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4257}
4258
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004259#ifdef CONFIG_NO_HZ_FULL
4260static DEFINE_SPINLOCK(nr_freq_lock);
4261#endif
4262
4263static void unaccount_freq_event_nohz(void)
4264{
4265#ifdef CONFIG_NO_HZ_FULL
4266 spin_lock(&nr_freq_lock);
4267 if (atomic_dec_and_test(&nr_freq_events))
4268 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4269 spin_unlock(&nr_freq_lock);
4270#endif
4271}
4272
4273static void unaccount_freq_event(void)
4274{
4275 if (tick_nohz_full_enabled())
4276 unaccount_freq_event_nohz();
4277 else
4278 atomic_dec(&nr_freq_events);
4279}
4280
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004281static void unaccount_event(struct perf_event *event)
4282{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004283 bool dec = false;
4284
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004285 if (event->parent)
4286 return;
4287
4288 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004289 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004290 if (event->attr.mmap || event->attr.mmap_data)
4291 atomic_dec(&nr_mmap_events);
4292 if (event->attr.comm)
4293 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304294 if (event->attr.namespaces)
4295 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004296 if (event->attr.task)
4297 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004298 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004299 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004300 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004301 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004302 atomic_dec(&nr_switch_events);
4303 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004304 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004305 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004306 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004307 dec = true;
4308
Peter Zijlstra9107c892016-02-24 18:45:45 +01004309 if (dec) {
4310 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4311 schedule_delayed_work(&perf_sched_work, HZ);
4312 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004313
4314 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004315
4316 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004317}
4318
Peter Zijlstra9107c892016-02-24 18:45:45 +01004319static void perf_sched_delayed(struct work_struct *work)
4320{
4321 mutex_lock(&perf_sched_mutex);
4322 if (atomic_dec_and_test(&perf_sched_count))
4323 static_branch_disable(&perf_sched_events);
4324 mutex_unlock(&perf_sched_mutex);
4325}
4326
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004327/*
4328 * The following implement mutual exclusion of events on "exclusive" pmus
4329 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4330 * at a time, so we disallow creating events that might conflict, namely:
4331 *
4332 * 1) cpu-wide events in the presence of per-task events,
4333 * 2) per-task events in the presence of cpu-wide events,
4334 * 3) two matching events on the same context.
4335 *
4336 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004337 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004338 */
4339static int exclusive_event_init(struct perf_event *event)
4340{
4341 struct pmu *pmu = event->pmu;
4342
4343 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4344 return 0;
4345
4346 /*
4347 * Prevent co-existence of per-task and cpu-wide events on the
4348 * same exclusive pmu.
4349 *
4350 * Negative pmu::exclusive_cnt means there are cpu-wide
4351 * events on this "exclusive" pmu, positive means there are
4352 * per-task events.
4353 *
4354 * Since this is called in perf_event_alloc() path, event::ctx
4355 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4356 * to mean "per-task event", because unlike other attach states it
4357 * never gets cleared.
4358 */
4359 if (event->attach_state & PERF_ATTACH_TASK) {
4360 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4361 return -EBUSY;
4362 } else {
4363 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4364 return -EBUSY;
4365 }
4366
4367 return 0;
4368}
4369
4370static void exclusive_event_destroy(struct perf_event *event)
4371{
4372 struct pmu *pmu = event->pmu;
4373
4374 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4375 return;
4376
4377 /* see comment in exclusive_event_init() */
4378 if (event->attach_state & PERF_ATTACH_TASK)
4379 atomic_dec(&pmu->exclusive_cnt);
4380 else
4381 atomic_inc(&pmu->exclusive_cnt);
4382}
4383
4384static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4385{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004386 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004387 (e1->cpu == e2->cpu ||
4388 e1->cpu == -1 ||
4389 e2->cpu == -1))
4390 return true;
4391 return false;
4392}
4393
4394/* Called under the same ctx::mutex as perf_install_in_context() */
4395static bool exclusive_event_installable(struct perf_event *event,
4396 struct perf_event_context *ctx)
4397{
4398 struct perf_event *iter_event;
4399 struct pmu *pmu = event->pmu;
4400
4401 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4402 return true;
4403
4404 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4405 if (exclusive_event_match(iter_event, event))
4406 return false;
4407 }
4408
4409 return true;
4410}
4411
Alexander Shishkin375637b2016-04-27 18:44:46 +03004412static void perf_addr_filters_splice(struct perf_event *event,
4413 struct list_head *head);
4414
Peter Zijlstra683ede42014-05-05 12:11:24 +02004415static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004417 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004418
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004419 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004420
Frederic Weisbecker76369132011-05-19 19:55:04 +02004421 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004422 /*
4423 * Can happen when we close an event with re-directed output.
4424 *
4425 * Since we have a 0 refcount, perf_mmap_close() will skip
4426 * over us; possibly making our ring_buffer_put() the last.
4427 */
4428 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004429 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004430 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004431 }
4432
Stephane Eraniane5d13672011-02-14 11:20:01 +02004433 if (is_cgroup_event(event))
4434 perf_detach_cgroup(event);
4435
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004436 if (!event->parent) {
4437 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4438 put_callchain_buffers();
4439 }
4440
4441 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004442 perf_addr_filters_splice(event, NULL);
4443 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004444
4445 if (event->destroy)
4446 event->destroy(event);
4447
4448 if (event->ctx)
4449 put_ctx(event->ctx);
4450
Prashant Bhole621b6d22018-04-09 19:03:46 +09004451 if (event->hw.target)
4452 put_task_struct(event->hw.target);
4453
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004454 exclusive_event_destroy(event);
4455 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004456
4457 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004458}
4459
Peter Zijlstra683ede42014-05-05 12:11:24 +02004460/*
4461 * Used to free events which have a known refcount of 1, such as in error paths
4462 * where the event isn't exposed yet and inherited events.
4463 */
4464static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004465{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004466 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4467 "unexpected event refcount: %ld; ptr=%p\n",
4468 atomic_long_read(&event->refcount), event)) {
4469 /* leak to avoid use-after-free */
4470 return;
4471 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004472
Peter Zijlstra683ede42014-05-05 12:11:24 +02004473 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004474}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004475
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004476/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004477 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004478 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004479static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004480{
Peter Zijlstra88821352010-11-09 19:01:43 +01004481 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004482
Peter Zijlstra88821352010-11-09 19:01:43 +01004483 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004484 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004485 * Matches the smp_store_release() in perf_event_exit_task(). If we
4486 * observe !owner it means the list deletion is complete and we can
4487 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004488 * owner->perf_event_mutex.
4489 */
Will Deacon506458e2017-10-24 11:22:48 +01004490 owner = READ_ONCE(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004491 if (owner) {
4492 /*
4493 * Since delayed_put_task_struct() also drops the last
4494 * task reference we can safely take a new reference
4495 * while holding the rcu_read_lock().
4496 */
4497 get_task_struct(owner);
4498 }
4499 rcu_read_unlock();
4500
4501 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004502 /*
4503 * If we're here through perf_event_exit_task() we're already
4504 * holding ctx->mutex which would be an inversion wrt. the
4505 * normal lock order.
4506 *
4507 * However we can safely take this lock because its the child
4508 * ctx->mutex.
4509 */
4510 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4511
Peter Zijlstra88821352010-11-09 19:01:43 +01004512 /*
4513 * We have to re-check the event->owner field, if it is cleared
4514 * we raced with perf_event_exit_task(), acquiring the mutex
4515 * ensured they're done, and we can proceed with freeing the
4516 * event.
4517 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004518 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004519 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004520 smp_store_release(&event->owner, NULL);
4521 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004522 mutex_unlock(&owner->perf_event_mutex);
4523 put_task_struct(owner);
4524 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004525}
4526
Jiri Olsaf8697762014-08-01 14:33:01 +02004527static void put_event(struct perf_event *event)
4528{
Jiri Olsaf8697762014-08-01 14:33:01 +02004529 if (!atomic_long_dec_and_test(&event->refcount))
4530 return;
4531
Peter Zijlstra683ede42014-05-05 12:11:24 +02004532 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004533}
4534
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004535/*
4536 * Kill an event dead; while event:refcount will preserve the event
4537 * object, it will not preserve its functionality. Once the last 'user'
4538 * gives up the object, we'll destroy the thing.
4539 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004540int perf_event_release_kernel(struct perf_event *event)
4541{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004542 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004543 struct perf_event *child, *tmp;
Peter Zijlstra82d94852018-01-09 13:10:30 +01004544 LIST_HEAD(free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004545
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004546 /*
4547 * If we got here through err_file: fput(event_file); we will not have
4548 * attached to a context yet.
4549 */
4550 if (!ctx) {
4551 WARN_ON_ONCE(event->attach_state &
4552 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4553 goto no_ctx;
4554 }
4555
Peter Zijlstra88821352010-11-09 19:01:43 +01004556 if (!is_kernel_event(event))
4557 perf_remove_from_owner(event);
4558
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004559 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004560 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004561 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004562
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004563 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004564 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004565 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004566 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004567 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004568 * Anybody acquiring event->child_mutex after the below loop _must_
4569 * also see this, most importantly inherit_event() which will avoid
4570 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004571 *
4572 * Thus this guarantees that we will in fact observe and kill _ALL_
4573 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004574 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004575 event->state = PERF_EVENT_STATE_DEAD;
4576 raw_spin_unlock_irq(&ctx->lock);
4577
4578 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004579
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004580again:
4581 mutex_lock(&event->child_mutex);
4582 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004583
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004584 /*
4585 * Cannot change, child events are not migrated, see the
4586 * comment with perf_event_ctx_lock_nested().
4587 */
Will Deacon506458e2017-10-24 11:22:48 +01004588 ctx = READ_ONCE(child->ctx);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004589 /*
4590 * Since child_mutex nests inside ctx::mutex, we must jump
4591 * through hoops. We start by grabbing a reference on the ctx.
4592 *
4593 * Since the event cannot get freed while we hold the
4594 * child_mutex, the context must also exist and have a !0
4595 * reference count.
4596 */
4597 get_ctx(ctx);
4598
4599 /*
4600 * Now that we have a ctx ref, we can drop child_mutex, and
4601 * acquire ctx::mutex without fear of it going away. Then we
4602 * can re-acquire child_mutex.
4603 */
4604 mutex_unlock(&event->child_mutex);
4605 mutex_lock(&ctx->mutex);
4606 mutex_lock(&event->child_mutex);
4607
4608 /*
4609 * Now that we hold ctx::mutex and child_mutex, revalidate our
4610 * state, if child is still the first entry, it didn't get freed
4611 * and we can continue doing so.
4612 */
4613 tmp = list_first_entry_or_null(&event->child_list,
4614 struct perf_event, child_list);
4615 if (tmp == child) {
4616 perf_remove_from_context(child, DETACH_GROUP);
Peter Zijlstra82d94852018-01-09 13:10:30 +01004617 list_move(&child->child_list, &free_list);
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004618 /*
4619 * This matches the refcount bump in inherit_event();
4620 * this can't be the last reference.
4621 */
4622 put_event(event);
4623 }
4624
4625 mutex_unlock(&event->child_mutex);
4626 mutex_unlock(&ctx->mutex);
4627 put_ctx(ctx);
4628 goto again;
4629 }
4630 mutex_unlock(&event->child_mutex);
4631
Peter Zijlstra82d94852018-01-09 13:10:30 +01004632 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
4633 list_del(&child->child_list);
4634 free_event(child);
4635 }
4636
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004637no_ctx:
4638 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004639 return 0;
4640}
4641EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4642
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004643/*
4644 * Called when the last reference to the file is gone.
4645 */
Al Viroa6fa9412012-08-20 14:59:25 +01004646static int perf_release(struct inode *inode, struct file *file)
4647{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004648 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004649 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004650}
4651
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004652static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004653{
4654 struct perf_event *child;
4655 u64 total = 0;
4656
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004657 *enabled = 0;
4658 *running = 0;
4659
Peter Zijlstra6f105812009-11-20 22:19:56 +01004660 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004661
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004662 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004663 total += perf_event_count(event);
4664
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004665 *enabled += event->total_time_enabled +
4666 atomic64_read(&event->child_total_time_enabled);
4667 *running += event->total_time_running +
4668 atomic64_read(&event->child_total_time_running);
4669
4670 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004671 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004672 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004673 *enabled += child->total_time_enabled;
4674 *running += child->total_time_running;
4675 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004676 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004677
4678 return total;
4679}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004680
4681u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
4682{
4683 struct perf_event_context *ctx;
4684 u64 count;
4685
4686 ctx = perf_event_ctx_lock(event);
4687 count = __perf_event_read_value(event, enabled, running);
4688 perf_event_ctx_unlock(event, ctx);
4689
4690 return count;
4691}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004692EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004693
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004694static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004695 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004696{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004697 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004698 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004699 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004700 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004701 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004702
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004703 ret = perf_event_read(leader, true);
4704 if (ret)
4705 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004706
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02004707 raw_spin_lock_irqsave(&ctx->lock, flags);
4708
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004709 /*
4710 * Since we co-schedule groups, {enabled,running} times of siblings
4711 * will be identical to those of the leader, so we only publish one
4712 * set.
4713 */
4714 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4715 values[n++] += leader->total_time_enabled +
4716 atomic64_read(&leader->child_total_time_enabled);
4717 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004718
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004719 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4720 values[n++] += leader->total_time_running +
4721 atomic64_read(&leader->child_total_time_running);
4722 }
4723
4724 /*
4725 * Write {count,id} tuples for every sibling.
4726 */
4727 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004728 if (read_format & PERF_FORMAT_ID)
4729 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004730
Peter Zijlstraedb39592018-03-15 17:36:56 +01004731 for_each_sibling_event(sub, leader) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004732 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004733 if (read_format & PERF_FORMAT_ID)
4734 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004735 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004736
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004737 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004738 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004739}
4740
4741static int perf_read_group(struct perf_event *event,
4742 u64 read_format, char __user *buf)
4743{
4744 struct perf_event *leader = event->group_leader, *child;
4745 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004746 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004747 u64 *values;
4748
4749 lockdep_assert_held(&ctx->mutex);
4750
4751 values = kzalloc(event->read_size, GFP_KERNEL);
4752 if (!values)
4753 return -ENOMEM;
4754
4755 values[0] = 1 + leader->nr_siblings;
4756
4757 /*
4758 * By locking the child_mutex of the leader we effectively
4759 * lock the child list of all siblings.. XXX explain how.
4760 */
4761 mutex_lock(&leader->child_mutex);
4762
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004763 ret = __perf_read_group_add(leader, read_format, values);
4764 if (ret)
4765 goto unlock;
4766
4767 list_for_each_entry(child, &leader->child_list, child_list) {
4768 ret = __perf_read_group_add(child, read_format, values);
4769 if (ret)
4770 goto unlock;
4771 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004772
4773 mutex_unlock(&leader->child_mutex);
4774
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004775 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004776 if (copy_to_user(buf, values, event->read_size))
4777 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004778 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004779
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004780unlock:
4781 mutex_unlock(&leader->child_mutex);
4782out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004783 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004784 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785}
4786
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004787static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004788 u64 read_format, char __user *buf)
4789{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004790 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004791 u64 values[4];
4792 int n = 0;
4793
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004794 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004795 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4796 values[n++] = enabled;
4797 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4798 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004799 if (read_format & PERF_FORMAT_ID)
4800 values[n++] = primary_event_id(event);
4801
4802 if (copy_to_user(buf, values, n * sizeof(u64)))
4803 return -EFAULT;
4804
4805 return n * sizeof(u64);
4806}
4807
Jiri Olsadc633982014-09-12 13:18:26 +02004808static bool is_event_hup(struct perf_event *event)
4809{
4810 bool no_children;
4811
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004812 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004813 return false;
4814
4815 mutex_lock(&event->child_mutex);
4816 no_children = list_empty(&event->child_list);
4817 mutex_unlock(&event->child_mutex);
4818 return no_children;
4819}
4820
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004821/*
4822 * Read the performance event - simple non blocking version for now
4823 */
4824static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004825__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004826{
4827 u64 read_format = event->attr.read_format;
4828 int ret;
4829
4830 /*
Tobias Tefke788faab2018-07-09 12:57:15 +02004831 * Return end-of-file for a read on an event that is in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004832 * error state (i.e. because it was pinned but it couldn't be
4833 * scheduled on to the CPU at some point).
4834 */
4835 if (event->state == PERF_EVENT_STATE_ERROR)
4836 return 0;
4837
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004838 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004839 return -ENOSPC;
4840
4841 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004842 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004843 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004844 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004845 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004846
4847 return ret;
4848}
4849
4850static ssize_t
4851perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4852{
4853 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004854 struct perf_event_context *ctx;
4855 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004856
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004857 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004858 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004859 perf_event_ctx_unlock(event, ctx);
4860
4861 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004862}
4863
Al Viro9dd95742017-07-03 00:42:43 -04004864static __poll_t perf_poll(struct file *file, poll_table *wait)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004865{
4866 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004867 struct ring_buffer *rb;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004868 __poll_t events = EPOLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004869
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004870 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004871
Jiri Olsadc633982014-09-12 13:18:26 +02004872 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004873 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004874
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004875 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004876 * Pin the event->rb by taking event->mmap_mutex; otherwise
4877 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004878 */
4879 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004880 rb = event->rb;
4881 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004882 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004883 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004884 return events;
4885}
4886
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004887static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004888{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004889 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004890 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004891 perf_event_update_userpage(event);
4892}
4893
4894/*
4895 * Holding the top-level event's child_mutex means that any
4896 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004897 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004898 * task existence requirements of perf_event_enable/disable.
4899 */
4900static void perf_event_for_each_child(struct perf_event *event,
4901 void (*func)(struct perf_event *))
4902{
4903 struct perf_event *child;
4904
4905 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004906
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004907 mutex_lock(&event->child_mutex);
4908 func(event);
4909 list_for_each_entry(child, &event->child_list, child_list)
4910 func(child);
4911 mutex_unlock(&event->child_mutex);
4912}
4913
4914static void perf_event_for_each(struct perf_event *event,
4915 void (*func)(struct perf_event *))
4916{
4917 struct perf_event_context *ctx = event->ctx;
4918 struct perf_event *sibling;
4919
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004920 lockdep_assert_held(&ctx->mutex);
4921
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004922 event = event->group_leader;
4923
4924 perf_event_for_each_child(event, func);
Peter Zijlstraedb39592018-03-15 17:36:56 +01004925 for_each_sibling_event(sibling, event)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004926 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004927}
4928
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004929static void __perf_event_period(struct perf_event *event,
4930 struct perf_cpu_context *cpuctx,
4931 struct perf_event_context *ctx,
4932 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004933{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004934 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004935 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004936
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004937 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004938 event->attr.sample_freq = value;
4939 } else {
4940 event->attr.sample_period = value;
4941 event->hw.sample_period = value;
4942 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004943
4944 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4945 if (active) {
4946 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004947 /*
4948 * We could be throttled; unthrottle now to avoid the tick
4949 * trying to unthrottle while we already re-started the event.
4950 */
4951 if (event->hw.interrupts == MAX_INTERRUPTS) {
4952 event->hw.interrupts = 0;
4953 perf_log_throttle(event, 1);
4954 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004955 event->pmu->stop(event, PERF_EF_UPDATE);
4956 }
4957
4958 local64_set(&event->hw.period_left, 0);
4959
4960 if (active) {
4961 event->pmu->start(event, PERF_EF_RELOAD);
4962 perf_pmu_enable(ctx->pmu);
4963 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004964}
4965
4966static int perf_event_period(struct perf_event *event, u64 __user *arg)
4967{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004968 u64 value;
4969
4970 if (!is_sampling_event(event))
4971 return -EINVAL;
4972
4973 if (copy_from_user(&value, arg, sizeof(value)))
4974 return -EFAULT;
4975
4976 if (!value)
4977 return -EINVAL;
4978
4979 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4980 return -EINVAL;
4981
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004982 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004983
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004984 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004985}
4986
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004987static const struct file_operations perf_fops;
4988
Al Viro2903ff02012-08-28 12:52:22 -04004989static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004990{
Al Viro2903ff02012-08-28 12:52:22 -04004991 struct fd f = fdget(fd);
4992 if (!f.file)
4993 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004994
Al Viro2903ff02012-08-28 12:52:22 -04004995 if (f.file->f_op != &perf_fops) {
4996 fdput(f);
4997 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004998 }
Al Viro2903ff02012-08-28 12:52:22 -04004999 *p = f;
5000 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005001}
5002
5003static int perf_event_set_output(struct perf_event *event,
5004 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08005005static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07005006static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005007static int perf_copy_attr(struct perf_event_attr __user *uattr,
5008 struct perf_event_attr *attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005009
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005010static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005011{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005012 void (*func)(struct perf_event *);
5013 u32 flags = arg;
5014
5015 switch (cmd) {
5016 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005017 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005018 break;
5019 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005020 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005021 break;
5022 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005023 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005024 break;
5025
5026 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005027 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005028
5029 case PERF_EVENT_IOC_PERIOD:
5030 return perf_event_period(event, (u64 __user *)arg);
5031
Jiri Olsacf4957f2012-10-24 13:37:58 +02005032 case PERF_EVENT_IOC_ID:
5033 {
5034 u64 id = primary_event_id(event);
5035
5036 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5037 return -EFAULT;
5038 return 0;
5039 }
5040
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005041 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005042 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005043 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005044 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04005045 struct perf_event *output_event;
5046 struct fd output;
5047 ret = perf_fget_light(arg, &output);
5048 if (ret)
5049 return ret;
5050 output_event = output.file->private_data;
5051 ret = perf_event_set_output(event, output_event);
5052 fdput(output);
5053 } else {
5054 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005055 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005056 return ret;
5057 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005058
Li Zefan6fb29152009-10-15 11:21:42 +08005059 case PERF_EVENT_IOC_SET_FILTER:
5060 return perf_event_set_filter(event, (void __user *)arg);
5061
Alexei Starovoitov25415172015-03-25 12:49:20 -07005062 case PERF_EVENT_IOC_SET_BPF:
5063 return perf_event_set_bpf_prog(event, arg);
5064
Wang Nan86e79722016-03-28 06:41:29 +00005065 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
5066 struct ring_buffer *rb;
5067
5068 rcu_read_lock();
5069 rb = rcu_dereference(event->rb);
5070 if (!rb || !rb->nr_pages) {
5071 rcu_read_unlock();
5072 return -EINVAL;
5073 }
5074 rb_toggle_paused(rb, !!arg);
5075 rcu_read_unlock();
5076 return 0;
5077 }
Yonghong Songf371b302017-12-11 11:39:02 -08005078
5079 case PERF_EVENT_IOC_QUERY_BPF:
Yonghong Songf4e22982017-12-13 10:35:37 -08005080 return perf_event_query_prog_array(event, (void __user *)arg);
Milind Chabbi32ff77e2018-03-12 14:45:47 +01005081
5082 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5083 struct perf_event_attr new_attr;
5084 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5085 &new_attr);
5086
5087 if (err)
5088 return err;
5089
5090 return perf_event_modify_attr(event, &new_attr);
5091 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005092 default:
5093 return -ENOTTY;
5094 }
5095
5096 if (flags & PERF_IOC_FLAG_GROUP)
5097 perf_event_for_each(event, func);
5098 else
5099 perf_event_for_each_child(event, func);
5100
5101 return 0;
5102}
5103
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005104static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5105{
5106 struct perf_event *event = file->private_data;
5107 struct perf_event_context *ctx;
5108 long ret;
5109
5110 ctx = perf_event_ctx_lock(event);
5111 ret = _perf_ioctl(event, cmd, arg);
5112 perf_event_ctx_unlock(event, ctx);
5113
5114 return ret;
5115}
5116
Pawel Mollb3f20782014-06-13 16:03:32 +01005117#ifdef CONFIG_COMPAT
5118static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5119 unsigned long arg)
5120{
5121 switch (_IOC_NR(cmd)) {
5122 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5123 case _IOC_NR(PERF_EVENT_IOC_ID):
Eugene Syromiatnikov82489c52018-05-21 14:34:20 +02005124 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5125 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
Pawel Mollb3f20782014-06-13 16:03:32 +01005126 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5127 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5128 cmd &= ~IOCSIZE_MASK;
5129 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5130 }
5131 break;
5132 }
5133 return perf_ioctl(file, cmd, arg);
5134}
5135#else
5136# define perf_compat_ioctl NULL
5137#endif
5138
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005139int perf_event_task_enable(void)
5140{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005141 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005142 struct perf_event *event;
5143
5144 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005145 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5146 ctx = perf_event_ctx_lock(event);
5147 perf_event_for_each_child(event, _perf_event_enable);
5148 perf_event_ctx_unlock(event, ctx);
5149 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005150 mutex_unlock(&current->perf_event_mutex);
5151
5152 return 0;
5153}
5154
5155int perf_event_task_disable(void)
5156{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005157 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158 struct perf_event *event;
5159
5160 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01005161 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5162 ctx = perf_event_ctx_lock(event);
5163 perf_event_for_each_child(event, _perf_event_disable);
5164 perf_event_ctx_unlock(event, ctx);
5165 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005166 mutex_unlock(&current->perf_event_mutex);
5167
5168 return 0;
5169}
5170
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005171static int perf_event_index(struct perf_event *event)
5172{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005173 if (event->hw.state & PERF_HES_STOPPED)
5174 return 0;
5175
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005176 if (event->state != PERF_EVENT_STATE_ACTIVE)
5177 return 0;
5178
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005179 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180}
5181
Eric B Munsonc4794292011-06-23 16:34:38 -04005182static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005183 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04005184 u64 *enabled,
5185 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04005186{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005187 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04005188
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005189 *now = perf_clock();
5190 ctx_time = event->shadow_ctx_time + *now;
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +02005191 __perf_update_times(event, ctx_time, enabled, running);
Eric B Munsonc4794292011-06-23 16:34:38 -04005192}
5193
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005194static void perf_event_init_userpage(struct perf_event *event)
5195{
5196 struct perf_event_mmap_page *userpg;
5197 struct ring_buffer *rb;
5198
5199 rcu_read_lock();
5200 rb = rcu_dereference(event->rb);
5201 if (!rb)
5202 goto unlock;
5203
5204 userpg = rb->user_page;
5205
5206 /* Allow new userspace to detect that bit 0 is deprecated */
5207 userpg->cap_bit0_is_deprecated = 1;
5208 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02005209 userpg->data_offset = PAGE_SIZE;
5210 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02005211
5212unlock:
5213 rcu_read_unlock();
5214}
5215
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005216void __weak arch_perf_update_userpage(
5217 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005218{
5219}
5220
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005221/*
5222 * Callers need to ensure there can be no nesting of this function, otherwise
5223 * the seqlock logic goes bad. We can not serialize this because the arch
5224 * code calls this from NMI context.
5225 */
5226void perf_event_update_userpage(struct perf_event *event)
5227{
5228 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005229 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005230 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231
5232 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02005233 rb = rcu_dereference(event->rb);
5234 if (!rb)
5235 goto unlock;
5236
Eric B Munson0d641202011-06-24 12:26:26 -04005237 /*
5238 * compute total_time_enabled, total_time_running
5239 * based on snapshot values taken when the event
5240 * was last scheduled in.
5241 *
5242 * we cannot simply called update_context_time()
5243 * because of locking issue as we can be called in
5244 * NMI context
5245 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005246 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005247
Frederic Weisbecker76369132011-05-19 19:55:04 +02005248 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005249 /*
Michael O'Farrell9d2dcc8f2018-07-30 13:14:34 -07005250 * Disable preemption to guarantee consistent time stamps are stored to
5251 * the user page.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005252 */
5253 preempt_disable();
5254 ++userpg->lock;
5255 barrier();
5256 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005257 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01005258 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02005259 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005260
Eric B Munson0d641202011-06-24 12:26:26 -04005261 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005262 atomic64_read(&event->child_total_time_enabled);
5263
Eric B Munson0d641202011-06-24 12:26:26 -04005264 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005265 atomic64_read(&event->child_total_time_running);
5266
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07005267 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005268
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005269 barrier();
5270 ++userpg->lock;
5271 preempt_enable();
5272unlock:
5273 rcu_read_unlock();
5274}
Suzuki K Poulose82975c42018-01-02 11:25:26 +00005275EXPORT_SYMBOL_GPL(perf_event_update_userpage);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005276
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305277static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005278{
Dave Jiang11bac802017-02-24 14:56:41 -08005279 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005280 struct ring_buffer *rb;
Souptick Joarder9e3ed2d2018-05-21 23:55:20 +05305281 vm_fault_t ret = VM_FAULT_SIGBUS;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005282
5283 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5284 if (vmf->pgoff == 0)
5285 ret = 0;
5286 return ret;
5287 }
5288
5289 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005290 rb = rcu_dereference(event->rb);
5291 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005292 goto unlock;
5293
5294 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5295 goto unlock;
5296
Frederic Weisbecker76369132011-05-19 19:55:04 +02005297 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005298 if (!vmf->page)
5299 goto unlock;
5300
5301 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005302 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005303 vmf->page->index = vmf->pgoff;
5304
5305 ret = 0;
5306unlock:
5307 rcu_read_unlock();
5308
5309 return ret;
5310}
5311
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005312static void ring_buffer_attach(struct perf_event *event,
5313 struct ring_buffer *rb)
5314{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005315 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005316 unsigned long flags;
5317
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005318 if (event->rb) {
5319 /*
5320 * Should be impossible, we set this when removing
5321 * event->rb_entry and wait/clear when adding event->rb_entry.
5322 */
5323 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005324
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005325 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005326 spin_lock_irqsave(&old_rb->event_lock, flags);
5327 list_del_rcu(&event->rb_entry);
5328 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005329
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005330 event->rcu_batches = get_state_synchronize_rcu();
5331 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005332 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005333
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005334 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005335 if (event->rcu_pending) {
5336 cond_synchronize_rcu(event->rcu_batches);
5337 event->rcu_pending = 0;
5338 }
5339
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005340 spin_lock_irqsave(&rb->event_lock, flags);
5341 list_add_rcu(&event->rb_entry, &rb->event_list);
5342 spin_unlock_irqrestore(&rb->event_lock, flags);
5343 }
5344
Alexander Shishkin767ae082016-09-06 16:23:49 +03005345 /*
5346 * Avoid racing with perf_mmap_close(AUX): stop the event
5347 * before swizzling the event::rb pointer; if it's getting
5348 * unmapped, its aux_mmap_count will be 0 and it won't
5349 * restart. See the comment in __perf_pmu_output_stop().
5350 *
5351 * Data will inevitably be lost when set_output is done in
5352 * mid-air, but then again, whoever does it like this is
5353 * not in for the data anyway.
5354 */
5355 if (has_aux(event))
5356 perf_event_stop(event, 0);
5357
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005358 rcu_assign_pointer(event->rb, rb);
5359
5360 if (old_rb) {
5361 ring_buffer_put(old_rb);
5362 /*
5363 * Since we detached before setting the new rb, so that we
5364 * could attach the new rb, we could have missed a wakeup.
5365 * Provide it now.
5366 */
5367 wake_up_all(&event->waitq);
5368 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005369}
5370
5371static void ring_buffer_wakeup(struct perf_event *event)
5372{
5373 struct ring_buffer *rb;
5374
5375 rcu_read_lock();
5376 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005377 if (rb) {
5378 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5379 wake_up_all(&event->waitq);
5380 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005381 rcu_read_unlock();
5382}
5383
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005384struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005385{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005386 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005387
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005388 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005389 rb = rcu_dereference(event->rb);
5390 if (rb) {
5391 if (!atomic_inc_not_zero(&rb->refcount))
5392 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005393 }
5394 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005395
Frederic Weisbecker76369132011-05-19 19:55:04 +02005396 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005397}
5398
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005399void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005400{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005401 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005402 return;
5403
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005404 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005405
Frederic Weisbecker76369132011-05-19 19:55:04 +02005406 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005407}
5408
5409static void perf_mmap_open(struct vm_area_struct *vma)
5410{
5411 struct perf_event *event = vma->vm_file->private_data;
5412
5413 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005414 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005415
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005416 if (vma->vm_pgoff)
5417 atomic_inc(&event->rb->aux_mmap_count);
5418
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005419 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005420 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005421}
5422
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005423static void perf_pmu_output_stop(struct perf_event *event);
5424
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005425/*
5426 * A buffer can be mmap()ed multiple times; either directly through the same
5427 * event, or through other events by use of perf_event_set_output().
5428 *
5429 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5430 * the buffer here, where we still have a VM context. This means we need
5431 * to detach all events redirecting to us.
5432 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005433static void perf_mmap_close(struct vm_area_struct *vma)
5434{
5435 struct perf_event *event = vma->vm_file->private_data;
5436
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005437 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005438 struct user_struct *mmap_user = rb->mmap_user;
5439 int mmap_locked = rb->mmap_locked;
5440 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005441
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005442 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005443 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005444
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005445 /*
5446 * rb->aux_mmap_count will always drop before rb->mmap_count and
5447 * event->mmap_count, so it is ok to use event->mmap_mutex to
5448 * serialize with perf_mmap here.
5449 */
5450 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5451 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005452 /*
5453 * Stop all AUX events that are writing to this buffer,
5454 * so that we can free its AUX pages and corresponding PMU
5455 * data. Note that after rb::aux_mmap_count dropped to zero,
5456 * they won't start any more (see perf_aux_output_begin()).
5457 */
5458 perf_pmu_output_stop(event);
5459
5460 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005461 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5462 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5463
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005464 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005465 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005466 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5467
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005468 mutex_unlock(&event->mmap_mutex);
5469 }
5470
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005471 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005472
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005473 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005474 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005475
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005476 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005477 mutex_unlock(&event->mmap_mutex);
5478
5479 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005480 if (atomic_read(&rb->mmap_count))
5481 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005482
5483 /*
5484 * No other mmap()s, detach from all other events that might redirect
5485 * into the now unreachable buffer. Somewhat complicated by the
5486 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5487 */
5488again:
5489 rcu_read_lock();
5490 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5491 if (!atomic_long_inc_not_zero(&event->refcount)) {
5492 /*
5493 * This event is en-route to free_event() which will
5494 * detach it and remove it from the list.
5495 */
5496 continue;
5497 }
5498 rcu_read_unlock();
5499
5500 mutex_lock(&event->mmap_mutex);
5501 /*
5502 * Check we didn't race with perf_event_set_output() which can
5503 * swizzle the rb from under us while we were waiting to
5504 * acquire mmap_mutex.
5505 *
5506 * If we find a different rb; ignore this event, a next
5507 * iteration will no longer find it on the list. We have to
5508 * still restart the iteration to make sure we're not now
5509 * iterating the wrong list.
5510 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005511 if (event->rb == rb)
5512 ring_buffer_attach(event, NULL);
5513
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005514 mutex_unlock(&event->mmap_mutex);
5515 put_event(event);
5516
5517 /*
5518 * Restart the iteration; either we're on the wrong list or
5519 * destroyed its integrity by doing a deletion.
5520 */
5521 goto again;
5522 }
5523 rcu_read_unlock();
5524
5525 /*
5526 * It could be there's still a few 0-ref events on the list; they'll
5527 * get cleaned up by free_event() -- they'll also still have their
5528 * ref on the rb and will free it whenever they are done with it.
5529 *
5530 * Aside from that, this buffer is 'fully' detached and unmapped,
5531 * undo the VM accounting.
5532 */
5533
5534 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5535 vma->vm_mm->pinned_vm -= mmap_locked;
5536 free_uid(mmap_user);
5537
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005538out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005539 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005540}
5541
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005542static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005543 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005544 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005545 .fault = perf_mmap_fault,
5546 .page_mkwrite = perf_mmap_fault,
5547};
5548
5549static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5550{
5551 struct perf_event *event = file->private_data;
5552 unsigned long user_locked, user_lock_limit;
5553 struct user_struct *user = current_user();
5554 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005555 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005556 unsigned long vma_size;
5557 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005558 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005559 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005560
Peter Zijlstrac7920612010-05-18 10:33:24 +02005561 /*
5562 * Don't allow mmap() of inherited per-task counters. This would
5563 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005564 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005565 */
5566 if (event->cpu == -1 && event->attr.inherit)
5567 return -EINVAL;
5568
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005569 if (!(vma->vm_flags & VM_SHARED))
5570 return -EINVAL;
5571
5572 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005573
5574 if (vma->vm_pgoff == 0) {
5575 nr_pages = (vma_size / PAGE_SIZE) - 1;
5576 } else {
5577 /*
5578 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5579 * mapped, all subsequent mappings should have the same size
5580 * and offset. Must be above the normal perf buffer.
5581 */
5582 u64 aux_offset, aux_size;
5583
5584 if (!event->rb)
5585 return -EINVAL;
5586
5587 nr_pages = vma_size / PAGE_SIZE;
5588
5589 mutex_lock(&event->mmap_mutex);
5590 ret = -EINVAL;
5591
5592 rb = event->rb;
5593 if (!rb)
5594 goto aux_unlock;
5595
Mark Rutland6aa7de02017-10-23 14:07:29 -07005596 aux_offset = READ_ONCE(rb->user_page->aux_offset);
5597 aux_size = READ_ONCE(rb->user_page->aux_size);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005598
5599 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5600 goto aux_unlock;
5601
5602 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5603 goto aux_unlock;
5604
5605 /* already mapped with a different offset */
5606 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5607 goto aux_unlock;
5608
5609 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5610 goto aux_unlock;
5611
5612 /* already mapped with a different size */
5613 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5614 goto aux_unlock;
5615
5616 if (!is_power_of_2(nr_pages))
5617 goto aux_unlock;
5618
5619 if (!atomic_inc_not_zero(&rb->mmap_count))
5620 goto aux_unlock;
5621
5622 if (rb_has_aux(rb)) {
5623 atomic_inc(&rb->aux_mmap_count);
5624 ret = 0;
5625 goto unlock;
5626 }
5627
5628 atomic_set(&rb->aux_mmap_count, 1);
5629 user_extra = nr_pages;
5630
5631 goto accounting;
5632 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005633
5634 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005635 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005636 * can do bitmasks instead of modulo.
5637 */
Kan Liang2ed11312015-03-02 02:14:26 -05005638 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005639 return -EINVAL;
5640
5641 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5642 return -EINVAL;
5643
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005644 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005645again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005646 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005647 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005648 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005649 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005650 goto unlock;
5651 }
5652
5653 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5654 /*
5655 * Raced against perf_mmap_close() through
5656 * perf_event_set_output(). Try again, hope for better
5657 * luck.
5658 */
5659 mutex_unlock(&event->mmap_mutex);
5660 goto again;
5661 }
5662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005663 goto unlock;
5664 }
5665
5666 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005667
5668accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005669 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5670
5671 /*
5672 * Increase the limit linearly with more CPUs:
5673 */
5674 user_lock_limit *= num_online_cpus();
5675
5676 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5677
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005678 if (user_locked > user_lock_limit)
5679 extra = user_locked - user_lock_limit;
5680
Jiri Slaby78d7d402010-03-05 13:42:54 -08005681 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005682 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005683 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005684
5685 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5686 !capable(CAP_IPC_LOCK)) {
5687 ret = -EPERM;
5688 goto unlock;
5689 }
5690
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005691 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005692
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005693 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005694 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005695
Frederic Weisbecker76369132011-05-19 19:55:04 +02005696 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005697 rb = rb_alloc(nr_pages,
5698 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5699 event->cpu, flags);
5700
5701 if (!rb) {
5702 ret = -ENOMEM;
5703 goto unlock;
5704 }
5705
5706 atomic_set(&rb->mmap_count, 1);
5707 rb->mmap_user = get_current_user();
5708 rb->mmap_locked = extra;
5709
5710 ring_buffer_attach(event, rb);
5711
5712 perf_event_init_userpage(event);
5713 perf_event_update_userpage(event);
5714 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005715 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5716 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005717 if (!ret)
5718 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005719 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005720
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005721unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005722 if (!ret) {
5723 atomic_long_add(user_extra, &user->locked_vm);
5724 vma->vm_mm->pinned_vm += extra;
5725
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005726 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005727 } else if (rb) {
5728 atomic_dec(&rb->mmap_count);
5729 }
5730aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005731 mutex_unlock(&event->mmap_mutex);
5732
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005733 /*
5734 * Since pinned accounting is per vm we cannot allow fork() to copy our
5735 * vma.
5736 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005737 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005738 vma->vm_ops = &perf_mmap_vmops;
5739
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005740 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005741 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005742
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005743 return ret;
5744}
5745
5746static int perf_fasync(int fd, struct file *filp, int on)
5747{
Al Viro496ad9a2013-01-23 17:07:38 -05005748 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005749 struct perf_event *event = filp->private_data;
5750 int retval;
5751
Al Viro59551022016-01-22 15:40:57 -05005752 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005753 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005754 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005755
5756 if (retval < 0)
5757 return retval;
5758
5759 return 0;
5760}
5761
5762static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005763 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005764 .release = perf_release,
5765 .read = perf_read,
5766 .poll = perf_poll,
5767 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005768 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005769 .mmap = perf_mmap,
5770 .fasync = perf_fasync,
5771};
5772
5773/*
5774 * Perf event wakeup
5775 *
5776 * If there's data, ensure we set the poll() state and publish everything
5777 * to user-space before waking everybody up.
5778 */
5779
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005780static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5781{
5782 /* only the parent has fasync state */
5783 if (event->parent)
5784 event = event->parent;
5785 return &event->fasync;
5786}
5787
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005788void perf_event_wakeup(struct perf_event *event)
5789{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005790 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791
5792 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005793 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794 event->pending_kill = 0;
5795 }
5796}
5797
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005798static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005799{
5800 struct perf_event *event = container_of(entry,
5801 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005802 int rctx;
5803
5804 rctx = perf_swevent_get_recursion_context();
5805 /*
5806 * If we 'fail' here, that's OK, it means recursion is already disabled
5807 * and we won't recurse 'further'.
5808 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005809
5810 if (event->pending_disable) {
5811 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005812 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005813 }
5814
5815 if (event->pending_wakeup) {
5816 event->pending_wakeup = 0;
5817 perf_event_wakeup(event);
5818 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005819
5820 if (rctx >= 0)
5821 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005822}
5823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005824/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005825 * We assume there is only KVM supporting the callbacks.
5826 * Later on, we might change it to a list if there is
5827 * another virtualization implementation supporting the callbacks.
5828 */
5829struct perf_guest_info_callbacks *perf_guest_cbs;
5830
5831int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5832{
5833 perf_guest_cbs = cbs;
5834 return 0;
5835}
5836EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5837
5838int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5839{
5840 perf_guest_cbs = NULL;
5841 return 0;
5842}
5843EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5844
Jiri Olsa40189942012-08-07 15:20:37 +02005845static void
5846perf_output_sample_regs(struct perf_output_handle *handle,
5847 struct pt_regs *regs, u64 mask)
5848{
5849 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305850 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005851
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305852 bitmap_from_u64(_mask, mask);
5853 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005854 u64 val;
5855
5856 val = perf_reg_value(regs, bit);
5857 perf_output_put(handle, val);
5858 }
5859}
5860
Stephane Eranian60e23642014-09-24 13:48:37 +02005861static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005862 struct pt_regs *regs,
5863 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005864{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005865 if (user_mode(regs)) {
5866 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005867 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005868 } else if (current->mm) {
5869 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005870 } else {
5871 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5872 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005873 }
5874}
5875
Stephane Eranian60e23642014-09-24 13:48:37 +02005876static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5877 struct pt_regs *regs)
5878{
5879 regs_intr->regs = regs;
5880 regs_intr->abi = perf_reg_abi(current);
5881}
5882
5883
Jiri Olsac5ebced2012-08-07 15:20:40 +02005884/*
5885 * Get remaining task size from user stack pointer.
5886 *
5887 * It'd be better to take stack vma map and limit this more
5888 * precisly, but there's no way to get it safely under interrupt,
5889 * so using TASK_SIZE as limit.
5890 */
5891static u64 perf_ustack_task_size(struct pt_regs *regs)
5892{
5893 unsigned long addr = perf_user_stack_pointer(regs);
5894
5895 if (!addr || addr >= TASK_SIZE)
5896 return 0;
5897
5898 return TASK_SIZE - addr;
5899}
5900
5901static u16
5902perf_sample_ustack_size(u16 stack_size, u16 header_size,
5903 struct pt_regs *regs)
5904{
5905 u64 task_size;
5906
5907 /* No regs, no stack pointer, no dump. */
5908 if (!regs)
5909 return 0;
5910
5911 /*
5912 * Check if we fit in with the requested stack size into the:
5913 * - TASK_SIZE
5914 * If we don't, we limit the size to the TASK_SIZE.
5915 *
5916 * - remaining sample size
5917 * If we don't, we customize the stack size to
5918 * fit in to the remaining sample size.
5919 */
5920
5921 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5922 stack_size = min(stack_size, (u16) task_size);
5923
5924 /* Current header size plus static size and dynamic size. */
5925 header_size += 2 * sizeof(u64);
5926
5927 /* Do we fit in with the current stack dump size? */
5928 if ((u16) (header_size + stack_size) < header_size) {
5929 /*
5930 * If we overflow the maximum size for the sample,
5931 * we customize the stack dump size to fit in.
5932 */
5933 stack_size = USHRT_MAX - header_size - sizeof(u64);
5934 stack_size = round_up(stack_size, sizeof(u64));
5935 }
5936
5937 return stack_size;
5938}
5939
5940static void
5941perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5942 struct pt_regs *regs)
5943{
5944 /* Case of a kernel thread, nothing to dump */
5945 if (!regs) {
5946 u64 size = 0;
5947 perf_output_put(handle, size);
5948 } else {
5949 unsigned long sp;
5950 unsigned int rem;
5951 u64 dyn_size;
Yabin Cui02e18442018-08-23 15:59:35 -07005952 mm_segment_t fs;
Jiri Olsac5ebced2012-08-07 15:20:40 +02005953
5954 /*
5955 * We dump:
5956 * static size
5957 * - the size requested by user or the best one we can fit
5958 * in to the sample max size
5959 * data
5960 * - user stack dump data
5961 * dynamic size
5962 * - the actual dumped size
5963 */
5964
5965 /* Static size. */
5966 perf_output_put(handle, dump_size);
5967
5968 /* Data. */
5969 sp = perf_user_stack_pointer(regs);
Yabin Cui02e18442018-08-23 15:59:35 -07005970 fs = get_fs();
5971 set_fs(USER_DS);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005972 rem = __output_copy_user(handle, (void *) sp, dump_size);
Yabin Cui02e18442018-08-23 15:59:35 -07005973 set_fs(fs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005974 dyn_size = dump_size - rem;
5975
5976 perf_output_skip(handle, rem);
5977
5978 /* Dynamic size. */
5979 perf_output_put(handle, dyn_size);
5980 }
5981}
5982
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005983static void __perf_event_header__init_id(struct perf_event_header *header,
5984 struct perf_sample_data *data,
5985 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005986{
5987 u64 sample_type = event->attr.sample_type;
5988
5989 data->type = sample_type;
5990 header->size += event->id_header_size;
5991
5992 if (sample_type & PERF_SAMPLE_TID) {
5993 /* namespace issues */
5994 data->tid_entry.pid = perf_event_pid(event, current);
5995 data->tid_entry.tid = perf_event_tid(event, current);
5996 }
5997
5998 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005999 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006000
Adrian Hunterff3d5272013-08-27 11:23:07 +03006001 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006002 data->id = primary_event_id(event);
6003
6004 if (sample_type & PERF_SAMPLE_STREAM_ID)
6005 data->stream_id = event->id;
6006
6007 if (sample_type & PERF_SAMPLE_CPU) {
6008 data->cpu_entry.cpu = raw_smp_processor_id();
6009 data->cpu_entry.reserved = 0;
6010 }
6011}
6012
Frederic Weisbecker76369132011-05-19 19:55:04 +02006013void perf_event_header__init_id(struct perf_event_header *header,
6014 struct perf_sample_data *data,
6015 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006016{
6017 if (event->attr.sample_id_all)
6018 __perf_event_header__init_id(header, data, event);
6019}
6020
6021static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6022 struct perf_sample_data *data)
6023{
6024 u64 sample_type = data->type;
6025
6026 if (sample_type & PERF_SAMPLE_TID)
6027 perf_output_put(handle, data->tid_entry);
6028
6029 if (sample_type & PERF_SAMPLE_TIME)
6030 perf_output_put(handle, data->time);
6031
6032 if (sample_type & PERF_SAMPLE_ID)
6033 perf_output_put(handle, data->id);
6034
6035 if (sample_type & PERF_SAMPLE_STREAM_ID)
6036 perf_output_put(handle, data->stream_id);
6037
6038 if (sample_type & PERF_SAMPLE_CPU)
6039 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03006040
6041 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6042 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006043}
6044
Frederic Weisbecker76369132011-05-19 19:55:04 +02006045void perf_event__output_id_sample(struct perf_event *event,
6046 struct perf_output_handle *handle,
6047 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006048{
6049 if (event->attr.sample_id_all)
6050 __perf_event__output_id_sample(handle, sample);
6051}
6052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006053static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006054 struct perf_event *event,
6055 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006056{
6057 u64 read_format = event->attr.read_format;
6058 u64 values[4];
6059 int n = 0;
6060
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006061 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006062 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006063 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006064 atomic64_read(&event->child_total_time_enabled);
6065 }
6066 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02006067 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006068 atomic64_read(&event->child_total_time_running);
6069 }
6070 if (read_format & PERF_FORMAT_ID)
6071 values[n++] = primary_event_id(event);
6072
Frederic Weisbecker76369132011-05-19 19:55:04 +02006073 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006074}
6075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006076static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02006077 struct perf_event *event,
6078 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006079{
6080 struct perf_event *leader = event->group_leader, *sub;
6081 u64 read_format = event->attr.read_format;
6082 u64 values[5];
6083 int n = 0;
6084
6085 values[n++] = 1 + leader->nr_siblings;
6086
6087 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02006088 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006089
6090 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02006091 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006092
Peter Zijlstra9e5b1272018-03-09 12:52:04 +01006093 if ((leader != event) &&
6094 (leader->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006095 leader->pmu->read(leader);
6096
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006097 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006098 if (read_format & PERF_FORMAT_ID)
6099 values[n++] = primary_event_id(leader);
6100
Frederic Weisbecker76369132011-05-19 19:55:04 +02006101 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006102
Peter Zijlstraedb39592018-03-15 17:36:56 +01006103 for_each_sibling_event(sub, leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006104 n = 0;
6105
Jiri Olsa6f5ab002012-10-15 20:13:45 +02006106 if ((sub != event) &&
6107 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006108 sub->pmu->read(sub);
6109
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006110 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006111 if (read_format & PERF_FORMAT_ID)
6112 values[n++] = primary_event_id(sub);
6113
Frederic Weisbecker76369132011-05-19 19:55:04 +02006114 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006115 }
6116}
6117
Stephane Eranianeed01522010-10-26 16:08:01 +02006118#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6119 PERF_FORMAT_TOTAL_TIME_RUNNING)
6120
Peter Zijlstraba5213a2017-05-30 11:45:12 +02006121/*
6122 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6123 *
6124 * The problem is that its both hard and excessively expensive to iterate the
6125 * child list, not to mention that its impossible to IPI the children running
6126 * on another CPU, from interrupt/NMI context.
6127 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006128static void perf_output_read(struct perf_output_handle *handle,
6129 struct perf_event *event)
6130{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006131 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02006132 u64 read_format = event->attr.read_format;
6133
6134 /*
6135 * compute total_time_enabled, total_time_running
6136 * based on snapshot values taken when the event
6137 * was last scheduled in.
6138 *
6139 * we cannot simply called update_context_time()
6140 * because of locking issue as we are called in
6141 * NMI context
6142 */
Eric B Munsonc4794292011-06-23 16:34:38 -04006143 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01006144 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02006145
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006146 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02006147 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006148 else
Stephane Eranianeed01522010-10-26 16:08:01 +02006149 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006150}
6151
6152void perf_output_sample(struct perf_output_handle *handle,
6153 struct perf_event_header *header,
6154 struct perf_sample_data *data,
6155 struct perf_event *event)
6156{
6157 u64 sample_type = data->type;
6158
6159 perf_output_put(handle, *header);
6160
Adrian Hunterff3d5272013-08-27 11:23:07 +03006161 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6162 perf_output_put(handle, data->id);
6163
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006164 if (sample_type & PERF_SAMPLE_IP)
6165 perf_output_put(handle, data->ip);
6166
6167 if (sample_type & PERF_SAMPLE_TID)
6168 perf_output_put(handle, data->tid_entry);
6169
6170 if (sample_type & PERF_SAMPLE_TIME)
6171 perf_output_put(handle, data->time);
6172
6173 if (sample_type & PERF_SAMPLE_ADDR)
6174 perf_output_put(handle, data->addr);
6175
6176 if (sample_type & PERF_SAMPLE_ID)
6177 perf_output_put(handle, data->id);
6178
6179 if (sample_type & PERF_SAMPLE_STREAM_ID)
6180 perf_output_put(handle, data->stream_id);
6181
6182 if (sample_type & PERF_SAMPLE_CPU)
6183 perf_output_put(handle, data->cpu_entry);
6184
6185 if (sample_type & PERF_SAMPLE_PERIOD)
6186 perf_output_put(handle, data->period);
6187
6188 if (sample_type & PERF_SAMPLE_READ)
6189 perf_output_read(handle, event);
6190
6191 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Jiri Olsa99e818c2018-01-07 17:03:50 +01006192 int size = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006193
Jiri Olsa99e818c2018-01-07 17:03:50 +01006194 size += data->callchain->nr;
6195 size *= sizeof(u64);
6196 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006197 }
6198
6199 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006200 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07006201
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006202 if (raw) {
6203 struct perf_raw_frag *frag = &raw->frag;
6204
6205 perf_output_put(handle, raw->size);
6206 do {
6207 if (frag->copy) {
6208 __output_custom(handle, frag->copy,
6209 frag->data, frag->size);
6210 } else {
6211 __output_copy(handle, frag->data,
6212 frag->size);
6213 }
6214 if (perf_raw_frag_last(frag))
6215 break;
6216 frag = frag->next;
6217 } while (1);
6218 if (frag->pad)
6219 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006220 } else {
6221 struct {
6222 u32 size;
6223 u32 data;
6224 } raw = {
6225 .size = sizeof(u32),
6226 .data = 0,
6227 };
6228 perf_output_put(handle, raw);
6229 }
6230 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006231
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006232 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6233 if (data->br_stack) {
6234 size_t size;
6235
6236 size = data->br_stack->nr
6237 * sizeof(struct perf_branch_entry);
6238
6239 perf_output_put(handle, data->br_stack->nr);
6240 perf_output_copy(handle, data->br_stack->entries, size);
6241 } else {
6242 /*
6243 * we always store at least the value of nr
6244 */
6245 u64 nr = 0;
6246 perf_output_put(handle, nr);
6247 }
6248 }
Jiri Olsa40189942012-08-07 15:20:37 +02006249
6250 if (sample_type & PERF_SAMPLE_REGS_USER) {
6251 u64 abi = data->regs_user.abi;
6252
6253 /*
6254 * If there are no regs to dump, notice it through
6255 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6256 */
6257 perf_output_put(handle, abi);
6258
6259 if (abi) {
6260 u64 mask = event->attr.sample_regs_user;
6261 perf_output_sample_regs(handle,
6262 data->regs_user.regs,
6263 mask);
6264 }
6265 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006266
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006267 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02006268 perf_output_sample_ustack(handle,
6269 data->stack_user_size,
6270 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006271 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01006272
6273 if (sample_type & PERF_SAMPLE_WEIGHT)
6274 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01006275
6276 if (sample_type & PERF_SAMPLE_DATA_SRC)
6277 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006278
Andi Kleenfdfbbd02013-09-20 07:40:39 -07006279 if (sample_type & PERF_SAMPLE_TRANSACTION)
6280 perf_output_put(handle, data->txn);
6281
Stephane Eranian60e23642014-09-24 13:48:37 +02006282 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6283 u64 abi = data->regs_intr.abi;
6284 /*
6285 * If there are no regs to dump, notice it through
6286 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6287 */
6288 perf_output_put(handle, abi);
6289
6290 if (abi) {
6291 u64 mask = event->attr.sample_regs_intr;
6292
6293 perf_output_sample_regs(handle,
6294 data->regs_intr.regs,
6295 mask);
6296 }
6297 }
6298
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006299 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6300 perf_output_put(handle, data->phys_addr);
6301
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006302 if (!event->attr.watermark) {
6303 int wakeup_events = event->attr.wakeup_events;
6304
6305 if (wakeup_events) {
6306 struct ring_buffer *rb = handle->rb;
6307 int events = local_inc_return(&rb->events);
6308
6309 if (events >= wakeup_events) {
6310 local_sub(wakeup_events, &rb->events);
6311 local_inc(&rb->wakeup);
6312 }
6313 }
6314 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006315}
6316
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006317static u64 perf_virt_to_phys(u64 virt)
6318{
6319 u64 phys_addr = 0;
6320 struct page *p = NULL;
6321
6322 if (!virt)
6323 return 0;
6324
6325 if (virt >= TASK_SIZE) {
6326 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6327 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6328 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6329 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6330 } else {
6331 /*
6332 * Walking the pages tables for user address.
6333 * Interrupts are disabled, so it prevents any tear down
6334 * of the page tables.
6335 * Try IRQ-safe __get_user_pages_fast first.
6336 * If failed, leave phys_addr as 0.
6337 */
6338 if ((current->mm != NULL) &&
6339 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6340 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6341
6342 if (p)
6343 put_page(p);
6344 }
6345
6346 return phys_addr;
6347}
6348
Jiri Olsa99e818c2018-01-07 17:03:50 +01006349static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6350
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006351struct perf_callchain_entry *
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006352perf_callchain(struct perf_event *event, struct pt_regs *regs)
6353{
6354 bool kernel = !event->attr.exclude_callchain_kernel;
6355 bool user = !event->attr.exclude_callchain_user;
6356 /* Disallow cross-task user callchains. */
6357 bool crosstask = event->ctx->task && event->ctx->task != current;
6358 const u32 max_stack = event->attr.sample_max_stack;
Jiri Olsa99e818c2018-01-07 17:03:50 +01006359 struct perf_callchain_entry *callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006360
6361 if (!kernel && !user)
Jiri Olsa99e818c2018-01-07 17:03:50 +01006362 return &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006363
Jiri Olsa99e818c2018-01-07 17:03:50 +01006364 callchain = get_perf_callchain(regs, 0, kernel, user,
6365 max_stack, crosstask, true);
6366 return callchain ?: &__empty_callchain;
Jiri Olsa8cf7e0e2018-01-07 17:03:49 +01006367}
6368
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006369void perf_prepare_sample(struct perf_event_header *header,
6370 struct perf_sample_data *data,
6371 struct perf_event *event,
6372 struct pt_regs *regs)
6373{
6374 u64 sample_type = event->attr.sample_type;
6375
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006377 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006378
6379 header->misc = 0;
6380 header->misc |= perf_misc_flags(regs);
6381
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006382 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006383
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006384 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006385 data->ip = perf_instruction_pointer(regs);
6386
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006387 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6388 int size = 1;
6389
Peter Zijlstra6cbc3042018-05-10 15:48:41 +02006390 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6391 data->callchain = perf_callchain(event, regs);
6392
Jiri Olsa99e818c2018-01-07 17:03:50 +01006393 size += data->callchain->nr;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006394
6395 header->size += size * sizeof(u64);
6396 }
6397
6398 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006399 struct perf_raw_record *raw = data->raw;
6400 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006401
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006402 if (raw) {
6403 struct perf_raw_frag *frag = &raw->frag;
6404 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006405
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006406 do {
6407 sum += frag->size;
6408 if (perf_raw_frag_last(frag))
6409 break;
6410 frag = frag->next;
6411 } while (1);
6412
6413 size = round_up(sum + sizeof(u32), sizeof(u64));
6414 raw->size = size - sizeof(u32);
6415 frag->pad = raw->size - sum;
6416 } else {
6417 size = sizeof(u64);
6418 }
6419
6420 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006421 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006422
6423 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6424 int size = sizeof(u64); /* nr */
6425 if (data->br_stack) {
6426 size += data->br_stack->nr
6427 * sizeof(struct perf_branch_entry);
6428 }
6429 header->size += size;
6430 }
Jiri Olsa40189942012-08-07 15:20:37 +02006431
Peter Zijlstra25657112014-09-24 13:48:42 +02006432 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006433 perf_sample_regs_user(&data->regs_user, regs,
6434 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006435
Jiri Olsa40189942012-08-07 15:20:37 +02006436 if (sample_type & PERF_SAMPLE_REGS_USER) {
6437 /* regs dump ABI info */
6438 int size = sizeof(u64);
6439
Jiri Olsa40189942012-08-07 15:20:37 +02006440 if (data->regs_user.regs) {
6441 u64 mask = event->attr.sample_regs_user;
6442 size += hweight64(mask) * sizeof(u64);
6443 }
6444
6445 header->size += size;
6446 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006447
6448 if (sample_type & PERF_SAMPLE_STACK_USER) {
6449 /*
6450 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
6451 * processed as the last one or have additional check added
6452 * in case new sample type is added, because we could eat
6453 * up the rest of the sample size.
6454 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006455 u16 stack_size = event->attr.sample_stack_user;
6456 u16 size = sizeof(u64);
6457
Jiri Olsac5ebced2012-08-07 15:20:40 +02006458 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006459 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006460
6461 /*
6462 * If there is something to dump, add space for the dump
6463 * itself and for the field that tells the dynamic size,
6464 * which is how many have been actually dumped.
6465 */
6466 if (stack_size)
6467 size += sizeof(u64) + stack_size;
6468
6469 data->stack_user_size = stack_size;
6470 header->size += size;
6471 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006472
6473 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6474 /* regs dump ABI info */
6475 int size = sizeof(u64);
6476
6477 perf_sample_regs_intr(&data->regs_intr, regs);
6478
6479 if (data->regs_intr.regs) {
6480 u64 mask = event->attr.sample_regs_intr;
6481
6482 size += hweight64(mask) * sizeof(u64);
6483 }
6484
6485 header->size += size;
6486 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006487
6488 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6489 data->phys_addr = perf_virt_to_phys(data->addr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006490}
6491
Mathieu Malaterre93315102018-06-26 22:23:00 +02006492static __always_inline void
Wang Nan9ecda412016-04-05 14:11:18 +00006493__perf_event_output(struct perf_event *event,
6494 struct perf_sample_data *data,
6495 struct pt_regs *regs,
6496 int (*output_begin)(struct perf_output_handle *,
6497 struct perf_event *,
6498 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499{
6500 struct perf_output_handle handle;
6501 struct perf_event_header header;
6502
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006503 /* protect the callchain buffers */
6504 rcu_read_lock();
6505
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006506 perf_prepare_sample(&header, data, event, regs);
6507
Wang Nan9ecda412016-04-05 14:11:18 +00006508 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006509 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006510
6511 perf_output_sample(&handle, &header, data, event);
6512
6513 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006514
6515exit:
6516 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006517}
6518
Wang Nan9ecda412016-04-05 14:11:18 +00006519void
6520perf_event_output_forward(struct perf_event *event,
6521 struct perf_sample_data *data,
6522 struct pt_regs *regs)
6523{
6524 __perf_event_output(event, data, regs, perf_output_begin_forward);
6525}
6526
6527void
6528perf_event_output_backward(struct perf_event *event,
6529 struct perf_sample_data *data,
6530 struct pt_regs *regs)
6531{
6532 __perf_event_output(event, data, regs, perf_output_begin_backward);
6533}
6534
6535void
6536perf_event_output(struct perf_event *event,
6537 struct perf_sample_data *data,
6538 struct pt_regs *regs)
6539{
6540 __perf_event_output(event, data, regs, perf_output_begin);
6541}
6542
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006543/*
6544 * read event_id
6545 */
6546
6547struct perf_read_event {
6548 struct perf_event_header header;
6549
6550 u32 pid;
6551 u32 tid;
6552};
6553
6554static void
6555perf_event_read_event(struct perf_event *event,
6556 struct task_struct *task)
6557{
6558 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006559 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006560 struct perf_read_event read_event = {
6561 .header = {
6562 .type = PERF_RECORD_READ,
6563 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006564 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006565 },
6566 .pid = perf_event_pid(event, task),
6567 .tid = perf_event_tid(event, task),
6568 };
6569 int ret;
6570
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006571 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006572 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006573 if (ret)
6574 return;
6575
6576 perf_output_put(&handle, read_event);
6577 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006578 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006579
6580 perf_output_end(&handle);
6581}
6582
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006583typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006584
6585static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006586perf_iterate_ctx(struct perf_event_context *ctx,
6587 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006588 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006589{
6590 struct perf_event *event;
6591
6592 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006593 if (!all) {
6594 if (event->state < PERF_EVENT_STATE_INACTIVE)
6595 continue;
6596 if (!event_filter_match(event))
6597 continue;
6598 }
6599
Jiri Olsa67516842013-07-09 18:56:31 +02006600 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006601 }
6602}
6603
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006604static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006605{
6606 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6607 struct perf_event *event;
6608
6609 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006610 /*
6611 * Skip events that are not fully formed yet; ensure that
6612 * if we observe event->ctx, both event and ctx will be
6613 * complete enough. See perf_install_in_context().
6614 */
6615 if (!smp_load_acquire(&event->ctx))
6616 continue;
6617
Kan Liangf2fb6be2016-03-23 11:24:37 -07006618 if (event->state < PERF_EVENT_STATE_INACTIVE)
6619 continue;
6620 if (!event_filter_match(event))
6621 continue;
6622 output(event, data);
6623 }
6624}
6625
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006626/*
6627 * Iterate all events that need to receive side-band events.
6628 *
6629 * For new callers; ensure that account_pmu_sb_event() includes
6630 * your event, otherwise it might not get delivered.
6631 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006632static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006633perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006634 struct perf_event_context *task_ctx)
6635{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006636 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006637 int ctxn;
6638
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006639 rcu_read_lock();
6640 preempt_disable();
6641
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006642 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006643 * If we have task_ctx != NULL we only notify the task context itself.
6644 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006645 * context.
6646 */
6647 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006648 perf_iterate_ctx(task_ctx, output, data, false);
6649 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006650 }
6651
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006652 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006653
6654 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006655 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6656 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006657 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006658 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006659done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006660 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006661 rcu_read_unlock();
6662}
6663
Alexander Shishkin375637b2016-04-27 18:44:46 +03006664/*
6665 * Clear all file-based filters at exec, they'll have to be
6666 * re-instated when/if these objects are mmapped again.
6667 */
6668static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6669{
6670 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6671 struct perf_addr_filter *filter;
6672 unsigned int restart = 0, count = 0;
6673 unsigned long flags;
6674
6675 if (!has_addr_filter(event))
6676 return;
6677
6678 raw_spin_lock_irqsave(&ifh->lock, flags);
6679 list_for_each_entry(filter, &ifh->list, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07006680 if (filter->path.dentry) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03006681 event->addr_filters_offs[count] = 0;
6682 restart++;
6683 }
6684
6685 count++;
6686 }
6687
6688 if (restart)
6689 event->addr_filters_gen++;
6690 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6691
6692 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006693 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006694}
6695
6696void perf_event_exec(void)
6697{
6698 struct perf_event_context *ctx;
6699 int ctxn;
6700
6701 rcu_read_lock();
6702 for_each_task_context_nr(ctxn) {
6703 ctx = current->perf_event_ctxp[ctxn];
6704 if (!ctx)
6705 continue;
6706
6707 perf_event_enable_on_exec(ctxn);
6708
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006709 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006710 true);
6711 }
6712 rcu_read_unlock();
6713}
6714
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006715struct remote_output {
6716 struct ring_buffer *rb;
6717 int err;
6718};
6719
6720static void __perf_event_output_stop(struct perf_event *event, void *data)
6721{
6722 struct perf_event *parent = event->parent;
6723 struct remote_output *ro = data;
6724 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006725 struct stop_event_data sd = {
6726 .event = event,
6727 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006728
6729 if (!has_aux(event))
6730 return;
6731
6732 if (!parent)
6733 parent = event;
6734
6735 /*
6736 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006737 * ring-buffer, but it will be the child that's actually using it.
6738 *
6739 * We are using event::rb to determine if the event should be stopped,
6740 * however this may race with ring_buffer_attach() (through set_output),
6741 * which will make us skip the event that actually needs to be stopped.
6742 * So ring_buffer_attach() has to stop an aux event before re-assigning
6743 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006744 */
6745 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006746 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006747}
6748
6749static int __perf_pmu_output_stop(void *info)
6750{
6751 struct perf_event *event = info;
6752 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006753 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006754 struct remote_output ro = {
6755 .rb = event->rb,
6756 };
6757
6758 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006759 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006760 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006761 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006762 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006763 rcu_read_unlock();
6764
6765 return ro.err;
6766}
6767
6768static void perf_pmu_output_stop(struct perf_event *event)
6769{
6770 struct perf_event *iter;
6771 int err, cpu;
6772
6773restart:
6774 rcu_read_lock();
6775 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6776 /*
6777 * For per-CPU events, we need to make sure that neither they
6778 * nor their children are running; for cpu==-1 events it's
6779 * sufficient to stop the event itself if it's active, since
6780 * it can't have children.
6781 */
6782 cpu = iter->cpu;
6783 if (cpu == -1)
6784 cpu = READ_ONCE(iter->oncpu);
6785
6786 if (cpu == -1)
6787 continue;
6788
6789 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6790 if (err == -EAGAIN) {
6791 rcu_read_unlock();
6792 goto restart;
6793 }
6794 }
6795 rcu_read_unlock();
6796}
6797
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006798/*
6799 * task tracking -- fork/exit
6800 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006801 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006802 */
6803
6804struct perf_task_event {
6805 struct task_struct *task;
6806 struct perf_event_context *task_ctx;
6807
6808 struct {
6809 struct perf_event_header header;
6810
6811 u32 pid;
6812 u32 ppid;
6813 u32 tid;
6814 u32 ptid;
6815 u64 time;
6816 } event_id;
6817};
6818
Jiri Olsa67516842013-07-09 18:56:31 +02006819static int perf_event_task_match(struct perf_event *event)
6820{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006821 return event->attr.comm || event->attr.mmap ||
6822 event->attr.mmap2 || event->attr.mmap_data ||
6823 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006824}
6825
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006826static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006827 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006829 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006830 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006831 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006832 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006833 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006834
Jiri Olsa67516842013-07-09 18:56:31 +02006835 if (!perf_event_task_match(event))
6836 return;
6837
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006838 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006839
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006840 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006841 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006842 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006843 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006844
6845 task_event->event_id.pid = perf_event_pid(event, task);
6846 task_event->event_id.ppid = perf_event_pid(event, current);
6847
6848 task_event->event_id.tid = perf_event_tid(event, task);
6849 task_event->event_id.ptid = perf_event_tid(event, current);
6850
Peter Zijlstra34f43922015-02-20 14:05:38 +01006851 task_event->event_id.time = perf_event_clock(event);
6852
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006853 perf_output_put(&handle, task_event->event_id);
6854
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006855 perf_event__output_id_sample(event, &handle, &sample);
6856
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006857 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006858out:
6859 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006860}
6861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006862static void perf_event_task(struct task_struct *task,
6863 struct perf_event_context *task_ctx,
6864 int new)
6865{
6866 struct perf_task_event task_event;
6867
6868 if (!atomic_read(&nr_comm_events) &&
6869 !atomic_read(&nr_mmap_events) &&
6870 !atomic_read(&nr_task_events))
6871 return;
6872
6873 task_event = (struct perf_task_event){
6874 .task = task,
6875 .task_ctx = task_ctx,
6876 .event_id = {
6877 .header = {
6878 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6879 .misc = 0,
6880 .size = sizeof(task_event.event_id),
6881 },
6882 /* .pid */
6883 /* .ppid */
6884 /* .tid */
6885 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006886 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006887 },
6888 };
6889
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006890 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006891 &task_event,
6892 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006893}
6894
6895void perf_event_fork(struct task_struct *task)
6896{
6897 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05306898 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006899}
6900
6901/*
6902 * comm tracking
6903 */
6904
6905struct perf_comm_event {
6906 struct task_struct *task;
6907 char *comm;
6908 int comm_size;
6909
6910 struct {
6911 struct perf_event_header header;
6912
6913 u32 pid;
6914 u32 tid;
6915 } event_id;
6916};
6917
Jiri Olsa67516842013-07-09 18:56:31 +02006918static int perf_event_comm_match(struct perf_event *event)
6919{
6920 return event->attr.comm;
6921}
6922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006923static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006924 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006925{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006926 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006927 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006928 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006929 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006930 int ret;
6931
Jiri Olsa67516842013-07-09 18:56:31 +02006932 if (!perf_event_comm_match(event))
6933 return;
6934
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006935 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6936 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006937 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006938
6939 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006940 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006941
6942 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6943 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6944
6945 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006946 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006947 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006948
6949 perf_event__output_id_sample(event, &handle, &sample);
6950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006951 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006952out:
6953 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006954}
6955
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006956static void perf_event_comm_event(struct perf_comm_event *comm_event)
6957{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006958 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006959 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006960
6961 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006962 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006963 size = ALIGN(strlen(comm)+1, sizeof(u64));
6964
6965 comm_event->comm = comm;
6966 comm_event->comm_size = size;
6967
6968 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006969
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006970 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006971 comm_event,
6972 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006973}
6974
Adrian Hunter82b89772014-05-28 11:45:04 +03006975void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006976{
6977 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006978
6979 if (!atomic_read(&nr_comm_events))
6980 return;
6981
6982 comm_event = (struct perf_comm_event){
6983 .task = task,
6984 /* .comm */
6985 /* .comm_size */
6986 .event_id = {
6987 .header = {
6988 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006989 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006990 /* .size */
6991 },
6992 /* .pid */
6993 /* .tid */
6994 },
6995 };
6996
6997 perf_event_comm_event(&comm_event);
6998}
6999
7000/*
Hari Bathinie4222672017-03-08 02:11:36 +05307001 * namespaces tracking
7002 */
7003
7004struct perf_namespaces_event {
7005 struct task_struct *task;
7006
7007 struct {
7008 struct perf_event_header header;
7009
7010 u32 pid;
7011 u32 tid;
7012 u64 nr_namespaces;
7013 struct perf_ns_link_info link_info[NR_NAMESPACES];
7014 } event_id;
7015};
7016
7017static int perf_event_namespaces_match(struct perf_event *event)
7018{
7019 return event->attr.namespaces;
7020}
7021
7022static void perf_event_namespaces_output(struct perf_event *event,
7023 void *data)
7024{
7025 struct perf_namespaces_event *namespaces_event = data;
7026 struct perf_output_handle handle;
7027 struct perf_sample_data sample;
Jiri Olsa34900ec2017-08-09 18:14:06 +02007028 u16 header_size = namespaces_event->event_id.header.size;
Hari Bathinie4222672017-03-08 02:11:36 +05307029 int ret;
7030
7031 if (!perf_event_namespaces_match(event))
7032 return;
7033
7034 perf_event_header__init_id(&namespaces_event->event_id.header,
7035 &sample, event);
7036 ret = perf_output_begin(&handle, event,
7037 namespaces_event->event_id.header.size);
7038 if (ret)
Jiri Olsa34900ec2017-08-09 18:14:06 +02007039 goto out;
Hari Bathinie4222672017-03-08 02:11:36 +05307040
7041 namespaces_event->event_id.pid = perf_event_pid(event,
7042 namespaces_event->task);
7043 namespaces_event->event_id.tid = perf_event_tid(event,
7044 namespaces_event->task);
7045
7046 perf_output_put(&handle, namespaces_event->event_id);
7047
7048 perf_event__output_id_sample(event, &handle, &sample);
7049
7050 perf_output_end(&handle);
Jiri Olsa34900ec2017-08-09 18:14:06 +02007051out:
7052 namespaces_event->event_id.header.size = header_size;
Hari Bathinie4222672017-03-08 02:11:36 +05307053}
7054
7055static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7056 struct task_struct *task,
7057 const struct proc_ns_operations *ns_ops)
7058{
7059 struct path ns_path;
7060 struct inode *ns_inode;
7061 void *error;
7062
7063 error = ns_get_path(&ns_path, task, ns_ops);
7064 if (!error) {
7065 ns_inode = ns_path.dentry->d_inode;
7066 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7067 ns_link_info->ino = ns_inode->i_ino;
Vasily Averin0e18dd12017-11-15 08:47:02 +03007068 path_put(&ns_path);
Hari Bathinie4222672017-03-08 02:11:36 +05307069 }
7070}
7071
7072void perf_event_namespaces(struct task_struct *task)
7073{
7074 struct perf_namespaces_event namespaces_event;
7075 struct perf_ns_link_info *ns_link_info;
7076
7077 if (!atomic_read(&nr_namespaces_events))
7078 return;
7079
7080 namespaces_event = (struct perf_namespaces_event){
7081 .task = task,
7082 .event_id = {
7083 .header = {
7084 .type = PERF_RECORD_NAMESPACES,
7085 .misc = 0,
7086 .size = sizeof(namespaces_event.event_id),
7087 },
7088 /* .pid */
7089 /* .tid */
7090 .nr_namespaces = NR_NAMESPACES,
7091 /* .link_info[NR_NAMESPACES] */
7092 },
7093 };
7094
7095 ns_link_info = namespaces_event.event_id.link_info;
7096
7097 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7098 task, &mntns_operations);
7099
7100#ifdef CONFIG_USER_NS
7101 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7102 task, &userns_operations);
7103#endif
7104#ifdef CONFIG_NET_NS
7105 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7106 task, &netns_operations);
7107#endif
7108#ifdef CONFIG_UTS_NS
7109 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7110 task, &utsns_operations);
7111#endif
7112#ifdef CONFIG_IPC_NS
7113 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7114 task, &ipcns_operations);
7115#endif
7116#ifdef CONFIG_PID_NS
7117 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7118 task, &pidns_operations);
7119#endif
7120#ifdef CONFIG_CGROUPS
7121 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7122 task, &cgroupns_operations);
7123#endif
7124
7125 perf_iterate_sb(perf_event_namespaces_output,
7126 &namespaces_event,
7127 NULL);
7128}
7129
7130/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007131 * mmap tracking
7132 */
7133
7134struct perf_mmap_event {
7135 struct vm_area_struct *vma;
7136
7137 const char *file_name;
7138 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007139 int maj, min;
7140 u64 ino;
7141 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007142 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007143
7144 struct {
7145 struct perf_event_header header;
7146
7147 u32 pid;
7148 u32 tid;
7149 u64 start;
7150 u64 len;
7151 u64 pgoff;
7152 } event_id;
7153};
7154
Jiri Olsa67516842013-07-09 18:56:31 +02007155static int perf_event_mmap_match(struct perf_event *event,
7156 void *data)
7157{
7158 struct perf_mmap_event *mmap_event = data;
7159 struct vm_area_struct *vma = mmap_event->vma;
7160 int executable = vma->vm_flags & VM_EXEC;
7161
7162 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02007163 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02007164}
7165
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007166static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007167 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168{
Jiri Olsa52d857a2013-05-06 18:27:18 +02007169 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007170 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007171 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007173 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007174
Jiri Olsa67516842013-07-09 18:56:31 +02007175 if (!perf_event_mmap_match(event, data))
7176 return;
7177
Stephane Eranian13d7a242013-08-21 12:10:24 +02007178 if (event->attr.mmap2) {
7179 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7180 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7181 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7182 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03007183 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007184 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7185 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007186 }
7187
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007188 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7189 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007190 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007191 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007192 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007193
7194 mmap_event->event_id.pid = perf_event_pid(event, current);
7195 mmap_event->event_id.tid = perf_event_tid(event, current);
7196
7197 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007198
7199 if (event->attr.mmap2) {
7200 perf_output_put(&handle, mmap_event->maj);
7201 perf_output_put(&handle, mmap_event->min);
7202 perf_output_put(&handle, mmap_event->ino);
7203 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007204 perf_output_put(&handle, mmap_event->prot);
7205 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02007206 }
7207
Frederic Weisbecker76369132011-05-19 19:55:04 +02007208 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007209 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007210
7211 perf_event__output_id_sample(event, &handle, &sample);
7212
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007213 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007214out:
7215 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007216}
7217
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007218static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
7219{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007220 struct vm_area_struct *vma = mmap_event->vma;
7221 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007222 int maj = 0, min = 0;
7223 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007224 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007225 unsigned int size;
7226 char tmp[16];
7227 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007228 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007229
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01007230 if (vma->vm_flags & VM_READ)
7231 prot |= PROT_READ;
7232 if (vma->vm_flags & VM_WRITE)
7233 prot |= PROT_WRITE;
7234 if (vma->vm_flags & VM_EXEC)
7235 prot |= PROT_EXEC;
7236
7237 if (vma->vm_flags & VM_MAYSHARE)
7238 flags = MAP_SHARED;
7239 else
7240 flags = MAP_PRIVATE;
7241
7242 if (vma->vm_flags & VM_DENYWRITE)
7243 flags |= MAP_DENYWRITE;
7244 if (vma->vm_flags & VM_MAYEXEC)
7245 flags |= MAP_EXECUTABLE;
7246 if (vma->vm_flags & VM_LOCKED)
7247 flags |= MAP_LOCKED;
7248 if (vma->vm_flags & VM_HUGETLB)
7249 flags |= MAP_HUGETLB;
7250
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007251 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02007252 struct inode *inode;
7253 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007254
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007255 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007256 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007257 name = "//enomem";
7258 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007259 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007260 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02007261 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007262 * need to add enough zero bytes after the string to handle
7263 * the 64bit alignment we do later.
7264 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02007265 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007266 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007267 name = "//toolong";
7268 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007269 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02007270 inode = file_inode(vma->vm_file);
7271 dev = inode->i_sb->s_dev;
7272 ino = inode->i_ino;
7273 gen = inode->i_generation;
7274 maj = MAJOR(dev);
7275 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007276
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007277 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007278 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02007279 if (vma->vm_ops && vma->vm_ops->name) {
7280 name = (char *) vma->vm_ops->name(vma);
7281 if (name)
7282 goto cpy_name;
7283 }
7284
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007285 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007286 if (name)
7287 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007288
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007289 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007290 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007291 name = "[heap]";
7292 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007293 }
7294 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007295 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007296 name = "[stack]";
7297 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007298 }
7299
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007300 name = "//anon";
7301 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302 }
7303
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007304cpy_name:
7305 strlcpy(tmp, name, sizeof(tmp));
7306 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007307got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007308 /*
7309 * Since our buffer works in 8 byte units we need to align our string
7310 * size to a multiple of 8. However, we must guarantee the tail end is
7311 * zero'd out to avoid leaking random bits to userspace.
7312 */
7313 size = strlen(name)+1;
7314 while (!IS_ALIGNED(size, sizeof(u64)))
7315 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007316
7317 mmap_event->file_name = name;
7318 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007319 mmap_event->maj = maj;
7320 mmap_event->min = min;
7321 mmap_event->ino = ino;
7322 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007323 mmap_event->prot = prot;
7324 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007325
Stephane Eranian2fe85422013-01-24 16:10:39 +01007326 if (!(vma->vm_flags & VM_EXEC))
7327 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
7328
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007329 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
7330
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007331 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007332 mmap_event,
7333 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007334
7335 kfree(buf);
7336}
7337
Alexander Shishkin375637b2016-04-27 18:44:46 +03007338/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03007339 * Check whether inode and address range match filter criteria.
7340 */
7341static bool perf_addr_filter_match(struct perf_addr_filter *filter,
7342 struct file *file, unsigned long offset,
7343 unsigned long size)
7344{
Mathieu Poirier7f635ff2018-07-16 17:13:51 -06007345 /* d_inode(NULL) won't be equal to any mapped user-space file */
7346 if (!filter->path.dentry)
7347 return false;
7348
Song Liu9511bce2018-04-17 23:29:07 -07007349 if (d_inode(filter->path.dentry) != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007350 return false;
7351
7352 if (filter->offset > offset + size)
7353 return false;
7354
7355 if (filter->offset + filter->size < offset)
7356 return false;
7357
7358 return true;
7359}
7360
7361static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
7362{
7363 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7364 struct vm_area_struct *vma = data;
7365 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
7366 struct file *file = vma->vm_file;
7367 struct perf_addr_filter *filter;
7368 unsigned int restart = 0, count = 0;
7369
7370 if (!has_addr_filter(event))
7371 return;
7372
7373 if (!file)
7374 return;
7375
7376 raw_spin_lock_irqsave(&ifh->lock, flags);
7377 list_for_each_entry(filter, &ifh->list, entry) {
7378 if (perf_addr_filter_match(filter, file, off,
7379 vma->vm_end - vma->vm_start)) {
7380 event->addr_filters_offs[count] = vma->vm_start;
7381 restart++;
7382 }
7383
7384 count++;
7385 }
7386
7387 if (restart)
7388 event->addr_filters_gen++;
7389 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7390
7391 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007392 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007393}
7394
7395/*
7396 * Adjust all task's events' filters to the new vma
7397 */
7398static void perf_addr_filters_adjust(struct vm_area_struct *vma)
7399{
7400 struct perf_event_context *ctx;
7401 int ctxn;
7402
Mathieu Poirier12b40a22016-07-18 10:43:06 -06007403 /*
7404 * Data tracing isn't supported yet and as such there is no need
7405 * to keep track of anything that isn't related to executable code:
7406 */
7407 if (!(vma->vm_flags & VM_EXEC))
7408 return;
7409
Alexander Shishkin375637b2016-04-27 18:44:46 +03007410 rcu_read_lock();
7411 for_each_task_context_nr(ctxn) {
7412 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7413 if (!ctx)
7414 continue;
7415
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007416 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007417 }
7418 rcu_read_unlock();
7419}
7420
Eric B Munson3af9e852010-05-18 15:30:49 +01007421void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007422{
7423 struct perf_mmap_event mmap_event;
7424
7425 if (!atomic_read(&nr_mmap_events))
7426 return;
7427
7428 mmap_event = (struct perf_mmap_event){
7429 .vma = vma,
7430 /* .file_name */
7431 /* .file_size */
7432 .event_id = {
7433 .header = {
7434 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08007435 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007436 /* .size */
7437 },
7438 /* .pid */
7439 /* .tid */
7440 .start = vma->vm_start,
7441 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01007442 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007443 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02007444 /* .maj (attr_mmap2 only) */
7445 /* .min (attr_mmap2 only) */
7446 /* .ino (attr_mmap2 only) */
7447 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007448 /* .prot (attr_mmap2 only) */
7449 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007450 };
7451
Alexander Shishkin375637b2016-04-27 18:44:46 +03007452 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007453 perf_event_mmap_event(&mmap_event);
7454}
7455
Alexander Shishkin68db7e92015-01-14 14:18:15 +02007456void perf_event_aux_event(struct perf_event *event, unsigned long head,
7457 unsigned long size, u64 flags)
7458{
7459 struct perf_output_handle handle;
7460 struct perf_sample_data sample;
7461 struct perf_aux_event {
7462 struct perf_event_header header;
7463 u64 offset;
7464 u64 size;
7465 u64 flags;
7466 } rec = {
7467 .header = {
7468 .type = PERF_RECORD_AUX,
7469 .misc = 0,
7470 .size = sizeof(rec),
7471 },
7472 .offset = head,
7473 .size = size,
7474 .flags = flags,
7475 };
7476 int ret;
7477
7478 perf_event_header__init_id(&rec.header, &sample, event);
7479 ret = perf_output_begin(&handle, event, rec.header.size);
7480
7481 if (ret)
7482 return;
7483
7484 perf_output_put(&handle, rec);
7485 perf_event__output_id_sample(event, &handle, &sample);
7486
7487 perf_output_end(&handle);
7488}
7489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007490/*
Kan Liangf38b0db2015-05-10 15:13:14 -04007491 * Lost/dropped samples logging
7492 */
7493void perf_log_lost_samples(struct perf_event *event, u64 lost)
7494{
7495 struct perf_output_handle handle;
7496 struct perf_sample_data sample;
7497 int ret;
7498
7499 struct {
7500 struct perf_event_header header;
7501 u64 lost;
7502 } lost_samples_event = {
7503 .header = {
7504 .type = PERF_RECORD_LOST_SAMPLES,
7505 .misc = 0,
7506 .size = sizeof(lost_samples_event),
7507 },
7508 .lost = lost,
7509 };
7510
7511 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
7512
7513 ret = perf_output_begin(&handle, event,
7514 lost_samples_event.header.size);
7515 if (ret)
7516 return;
7517
7518 perf_output_put(&handle, lost_samples_event);
7519 perf_event__output_id_sample(event, &handle, &sample);
7520 perf_output_end(&handle);
7521}
7522
7523/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03007524 * context_switch tracking
7525 */
7526
7527struct perf_switch_event {
7528 struct task_struct *task;
7529 struct task_struct *next_prev;
7530
7531 struct {
7532 struct perf_event_header header;
7533 u32 next_prev_pid;
7534 u32 next_prev_tid;
7535 } event_id;
7536};
7537
7538static int perf_event_switch_match(struct perf_event *event)
7539{
7540 return event->attr.context_switch;
7541}
7542
7543static void perf_event_switch_output(struct perf_event *event, void *data)
7544{
7545 struct perf_switch_event *se = data;
7546 struct perf_output_handle handle;
7547 struct perf_sample_data sample;
7548 int ret;
7549
7550 if (!perf_event_switch_match(event))
7551 return;
7552
7553 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7554 if (event->ctx->task) {
7555 se->event_id.header.type = PERF_RECORD_SWITCH;
7556 se->event_id.header.size = sizeof(se->event_id.header);
7557 } else {
7558 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7559 se->event_id.header.size = sizeof(se->event_id);
7560 se->event_id.next_prev_pid =
7561 perf_event_pid(event, se->next_prev);
7562 se->event_id.next_prev_tid =
7563 perf_event_tid(event, se->next_prev);
7564 }
7565
7566 perf_event_header__init_id(&se->event_id.header, &sample, event);
7567
7568 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7569 if (ret)
7570 return;
7571
7572 if (event->ctx->task)
7573 perf_output_put(&handle, se->event_id.header);
7574 else
7575 perf_output_put(&handle, se->event_id);
7576
7577 perf_event__output_id_sample(event, &handle, &sample);
7578
7579 perf_output_end(&handle);
7580}
7581
7582static void perf_event_switch(struct task_struct *task,
7583 struct task_struct *next_prev, bool sched_in)
7584{
7585 struct perf_switch_event switch_event;
7586
7587 /* N.B. caller checks nr_switch_events != 0 */
7588
7589 switch_event = (struct perf_switch_event){
7590 .task = task,
7591 .next_prev = next_prev,
7592 .event_id = {
7593 .header = {
7594 /* .type */
7595 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7596 /* .size */
7597 },
7598 /* .next_prev_pid */
7599 /* .next_prev_tid */
7600 },
7601 };
7602
Alexey Budankov101592b2018-04-09 10:25:32 +03007603 if (!sched_in && task->state == TASK_RUNNING)
7604 switch_event.event_id.header.misc |=
7605 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
7606
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007607 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007608 &switch_event,
7609 NULL);
7610}
7611
7612/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007613 * IRQ throttle logging
7614 */
7615
7616static void perf_log_throttle(struct perf_event *event, int enable)
7617{
7618 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007619 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007620 int ret;
7621
7622 struct {
7623 struct perf_event_header header;
7624 u64 time;
7625 u64 id;
7626 u64 stream_id;
7627 } throttle_event = {
7628 .header = {
7629 .type = PERF_RECORD_THROTTLE,
7630 .misc = 0,
7631 .size = sizeof(throttle_event),
7632 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007633 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007634 .id = primary_event_id(event),
7635 .stream_id = event->id,
7636 };
7637
7638 if (enable)
7639 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7640
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007641 perf_event_header__init_id(&throttle_event.header, &sample, event);
7642
7643 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007644 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007645 if (ret)
7646 return;
7647
7648 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007649 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007650 perf_output_end(&handle);
7651}
7652
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007653void perf_event_itrace_started(struct perf_event *event)
7654{
7655 event->attach_state |= PERF_ATTACH_ITRACE;
7656}
7657
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007658static void perf_log_itrace_start(struct perf_event *event)
7659{
7660 struct perf_output_handle handle;
7661 struct perf_sample_data sample;
7662 struct perf_aux_event {
7663 struct perf_event_header header;
7664 u32 pid;
7665 u32 tid;
7666 } rec;
7667 int ret;
7668
7669 if (event->parent)
7670 event = event->parent;
7671
7672 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007673 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007674 return;
7675
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007676 rec.header.type = PERF_RECORD_ITRACE_START;
7677 rec.header.misc = 0;
7678 rec.header.size = sizeof(rec);
7679 rec.pid = perf_event_pid(event, current);
7680 rec.tid = perf_event_tid(event, current);
7681
7682 perf_event_header__init_id(&rec.header, &sample, event);
7683 ret = perf_output_begin(&handle, event, rec.header.size);
7684
7685 if (ret)
7686 return;
7687
7688 perf_output_put(&handle, rec);
7689 perf_event__output_id_sample(event, &handle, &sample);
7690
7691 perf_output_end(&handle);
7692}
7693
Jiri Olsa475113d2016-12-28 14:31:03 +01007694static int
7695__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007696{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007697 struct hw_perf_event *hwc = &event->hw;
7698 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01007699 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01007700
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007701 seq = __this_cpu_read(perf_throttled_seq);
7702 if (seq != hwc->interrupts_seq) {
7703 hwc->interrupts_seq = seq;
7704 hwc->interrupts = 1;
7705 } else {
7706 hwc->interrupts++;
7707 if (unlikely(throttle
7708 && hwc->interrupts >= max_samples_per_tick)) {
7709 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007710 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007711 hwc->interrupts = MAX_INTERRUPTS;
7712 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007713 ret = 1;
7714 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007715 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007716
7717 if (event->attr.freq) {
7718 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007719 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007720
Peter Zijlstraabd50712010-01-26 18:50:16 +01007721 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007722
Peter Zijlstraabd50712010-01-26 18:50:16 +01007723 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007724 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007725 }
7726
Jiri Olsa475113d2016-12-28 14:31:03 +01007727 return ret;
7728}
7729
7730int perf_event_account_interrupt(struct perf_event *event)
7731{
7732 return __perf_event_account_interrupt(event, 1);
7733}
7734
7735/*
7736 * Generic event overflow handling, sampling.
7737 */
7738
7739static int __perf_event_overflow(struct perf_event *event,
7740 int throttle, struct perf_sample_data *data,
7741 struct pt_regs *regs)
7742{
7743 int events = atomic_read(&event->event_limit);
7744 int ret = 0;
7745
7746 /*
7747 * Non-sampling counters might still use the PMI to fold short
7748 * hardware counters, ignore those.
7749 */
7750 if (unlikely(!is_sampling_event(event)))
7751 return 0;
7752
7753 ret = __perf_event_account_interrupt(event, throttle);
7754
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007755 /*
7756 * XXX event_limit might not quite work as expected on inherited
7757 * events
7758 */
7759
7760 event->pending_kill = POLL_IN;
7761 if (events && atomic_dec_and_test(&event->event_limit)) {
7762 ret = 1;
7763 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007764
7765 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007766 }
7767
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007768 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007769
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007770 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007771 event->pending_wakeup = 1;
7772 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007773 }
7774
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007775 return ret;
7776}
7777
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007778int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007779 struct perf_sample_data *data,
7780 struct pt_regs *regs)
7781{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007782 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007783}
7784
7785/*
7786 * Generic software event infrastructure
7787 */
7788
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007789struct swevent_htable {
7790 struct swevent_hlist *swevent_hlist;
7791 struct mutex hlist_mutex;
7792 int hlist_refcount;
7793
7794 /* Recursion avoidance in each contexts */
7795 int recursion[PERF_NR_CONTEXTS];
7796};
7797
7798static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7799
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007800/*
7801 * We directly increment event->count and keep a second value in
7802 * event->hw.period_left to count intervals. This period event
7803 * is kept in the range [-sample_period, 0] so that we can use the
7804 * sign as trigger.
7805 */
7806
Jiri Olsaab573842013-05-01 17:25:44 +02007807u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007808{
7809 struct hw_perf_event *hwc = &event->hw;
7810 u64 period = hwc->last_period;
7811 u64 nr, offset;
7812 s64 old, val;
7813
7814 hwc->last_period = hwc->sample_period;
7815
7816again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007817 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007818 if (val < 0)
7819 return 0;
7820
7821 nr = div64_u64(period + val, period);
7822 offset = nr * period;
7823 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007824 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007825 goto again;
7826
7827 return nr;
7828}
7829
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007830static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007831 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007832 struct pt_regs *regs)
7833{
7834 struct hw_perf_event *hwc = &event->hw;
7835 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007836
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007837 if (!overflow)
7838 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007839
7840 if (hwc->interrupts == MAX_INTERRUPTS)
7841 return;
7842
7843 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007844 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007845 data, regs)) {
7846 /*
7847 * We inhibit the overflow from happening when
7848 * hwc->interrupts == MAX_INTERRUPTS.
7849 */
7850 break;
7851 }
7852 throttle = 1;
7853 }
7854}
7855
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007856static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007857 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007858 struct pt_regs *regs)
7859{
7860 struct hw_perf_event *hwc = &event->hw;
7861
Peter Zijlstrae7850592010-05-21 14:43:08 +02007862 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007864 if (!regs)
7865 return;
7866
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007867 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007868 return;
7869
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007870 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7871 data->period = nr;
7872 return perf_swevent_overflow(event, 1, data, regs);
7873 } else
7874 data->period = event->hw.last_period;
7875
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007876 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007877 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007878
Peter Zijlstrae7850592010-05-21 14:43:08 +02007879 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007880 return;
7881
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007882 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007883}
7884
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007885static int perf_exclude_event(struct perf_event *event,
7886 struct pt_regs *regs)
7887{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007888 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007889 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007890
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007891 if (regs) {
7892 if (event->attr.exclude_user && user_mode(regs))
7893 return 1;
7894
7895 if (event->attr.exclude_kernel && !user_mode(regs))
7896 return 1;
7897 }
7898
7899 return 0;
7900}
7901
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007902static int perf_swevent_match(struct perf_event *event,
7903 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007904 u32 event_id,
7905 struct perf_sample_data *data,
7906 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007907{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007908 if (event->attr.type != type)
7909 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007910
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007911 if (event->attr.config != event_id)
7912 return 0;
7913
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007914 if (perf_exclude_event(event, regs))
7915 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007916
7917 return 1;
7918}
7919
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007920static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007921{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007922 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007923
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007924 return hash_64(val, SWEVENT_HLIST_BITS);
7925}
7926
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007927static inline struct hlist_head *
7928__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007929{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007930 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007931
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007932 return &hlist->heads[hash];
7933}
7934
7935/* For the read side: events when they trigger */
7936static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007937find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007938{
7939 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007940
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007941 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007942 if (!hlist)
7943 return NULL;
7944
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007945 return __find_swevent_head(hlist, type, event_id);
7946}
7947
7948/* For the event head insertion and removal in the hlist */
7949static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007950find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007951{
7952 struct swevent_hlist *hlist;
7953 u32 event_id = event->attr.config;
7954 u64 type = event->attr.type;
7955
7956 /*
7957 * Event scheduling is always serialized against hlist allocation
7958 * and release. Which makes the protected version suitable here.
7959 * The context lock guarantees that.
7960 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007961 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007962 lockdep_is_held(&event->ctx->lock));
7963 if (!hlist)
7964 return NULL;
7965
7966 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007967}
7968
7969static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007970 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007971 struct perf_sample_data *data,
7972 struct pt_regs *regs)
7973{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007974 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007975 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007976 struct hlist_head *head;
7977
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007978 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007979 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007980 if (!head)
7981 goto end;
7982
Sasha Levinb67bfe02013-02-27 17:06:00 -08007983 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007984 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007985 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007986 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007987end:
7988 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007989}
7990
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007991DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7992
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007993int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007994{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007995 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007996
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007997 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007998}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007999EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008000
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008001void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008002{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008003 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02008004
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008005 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01008006}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008007
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008008void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008009{
Ingo Molnara4234bf2009-11-23 10:57:59 +01008010 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008011
8012 if (WARN_ON_ONCE(!regs))
8013 return;
8014
8015 perf_sample_data_init(&data, addr, 0);
8016 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
8017}
8018
8019void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8020{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008021 int rctx;
8022
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008023 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008024 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008025 if (unlikely(rctx < 0))
8026 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008027
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008028 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01008029
8030 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01008031fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008032 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008033}
8034
8035static void perf_swevent_read(struct perf_event *event)
8036{
8037}
8038
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008039static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008040{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05008041 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008042 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008043 struct hlist_head *head;
8044
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008045 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008046 hwc->last_period = hwc->sample_period;
8047 perf_swevent_set_period(event);
8048 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008049
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008050 hwc->state = !(flags & PERF_EF_START);
8051
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008052 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01008053 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008054 return -EINVAL;
8055
8056 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08008057 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008058
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008059 return 0;
8060}
8061
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008062static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008063{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008064 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008065}
8066
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008067static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008068{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008069 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008070}
8071
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008072static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008073{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008074 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02008075}
8076
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008077/* Deref the hlist from the update side */
8078static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008079swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008080{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008081 return rcu_dereference_protected(swhash->swevent_hlist,
8082 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008083}
8084
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008085static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008086{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008087 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008088
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02008089 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008090 return;
8091
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03008092 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08008093 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008094}
8095
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008096static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008097{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008098 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008099
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008100 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008101
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008102 if (!--swhash->hlist_refcount)
8103 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008104
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008105 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008106}
8107
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008108static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008109{
8110 int cpu;
8111
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008112 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008113 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008114}
8115
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008116static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008117{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008118 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008119 int err = 0;
8120
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008121 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008122 if (!swevent_hlist_deref(swhash) &&
8123 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008124 struct swevent_hlist *hlist;
8125
8126 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
8127 if (!hlist) {
8128 err = -ENOMEM;
8129 goto exit;
8130 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008131 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008132 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008133 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008134exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008135 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008136
8137 return err;
8138}
8139
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008140static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008141{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008142 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008143
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008144 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008145 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008146 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008147 if (err) {
8148 failed_cpu = cpu;
8149 goto fail;
8150 }
8151 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008152 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008153 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02008154fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008155 for_each_possible_cpu(cpu) {
8156 if (cpu == failed_cpu)
8157 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008158 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008159 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02008160 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008161 return err;
8162}
8163
Ingo Molnarc5905af2012-02-24 08:31:31 +01008164struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008165
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008166static void sw_perf_event_destroy(struct perf_event *event)
8167{
8168 u64 event_id = event->attr.config;
8169
8170 WARN_ON(event->parent);
8171
Ingo Molnarc5905af2012-02-24 08:31:31 +01008172 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008173 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008174}
8175
8176static int perf_swevent_init(struct perf_event *event)
8177{
Tommi Rantala8176cce2013-04-13 22:49:14 +03008178 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008179
8180 if (event->attr.type != PERF_TYPE_SOFTWARE)
8181 return -ENOENT;
8182
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008183 /*
8184 * no branch sampling for software events
8185 */
8186 if (has_branch_stack(event))
8187 return -EOPNOTSUPP;
8188
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008189 switch (event_id) {
8190 case PERF_COUNT_SW_CPU_CLOCK:
8191 case PERF_COUNT_SW_TASK_CLOCK:
8192 return -ENOENT;
8193
8194 default:
8195 break;
8196 }
8197
Dan Carpenterce677832010-10-24 21:50:42 +02008198 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008199 return -ENOENT;
8200
8201 if (!event->parent) {
8202 int err;
8203
Thomas Gleixner3b364d72016-02-09 20:11:40 +00008204 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008205 if (err)
8206 return err;
8207
Ingo Molnarc5905af2012-02-24 08:31:31 +01008208 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008209 event->destroy = sw_perf_event_destroy;
8210 }
8211
8212 return 0;
8213}
8214
8215static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008216 .task_ctx_nr = perf_sw_context,
8217
Peter Zijlstra34f43922015-02-20 14:05:38 +01008218 .capabilities = PERF_PMU_CAP_NO_NMI,
8219
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008220 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008221 .add = perf_swevent_add,
8222 .del = perf_swevent_del,
8223 .start = perf_swevent_start,
8224 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008225 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008226};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008227
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008228#ifdef CONFIG_EVENT_TRACING
8229
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008230static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008231 struct perf_sample_data *data)
8232{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008233 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008234
Peter Zijlstrab71b4372015-11-02 10:50:51 +01008235 /* only top level events have filters set */
8236 if (event->parent)
8237 event = event->parent;
8238
Frederic Weisbecker95476b62010-04-14 23:42:18 +02008239 if (likely(!event->filter) || filter_match_preds(event->filter, record))
8240 return 1;
8241 return 0;
8242}
8243
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008244static int perf_tp_event_match(struct perf_event *event,
8245 struct perf_sample_data *data,
8246 struct pt_regs *regs)
8247{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01008248 if (event->hw.state & PERF_HES_STOPPED)
8249 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02008250 /*
8251 * All tracepoints are from kernel-space.
8252 */
8253 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008254 return 0;
8255
8256 if (!perf_tp_filter_match(event, data))
8257 return 0;
8258
8259 return 1;
8260}
8261
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008262void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
8263 struct trace_event_call *call, u64 count,
8264 struct pt_regs *regs, struct hlist_head *head,
8265 struct task_struct *task)
8266{
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008267 if (bpf_prog_array_valid(call)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008268 *(struct pt_regs **)raw_data = regs;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008269 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008270 perf_swevent_put_recursion_context(rctx);
8271 return;
8272 }
8273 }
8274 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008275 rctx, task);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07008276}
8277EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
8278
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008279void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008280 struct pt_regs *regs, struct hlist_head *head, int rctx,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008281 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008282{
8283 struct perf_sample_data data;
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008284 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008285
8286 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02008287 .frag = {
8288 .size = entry_size,
8289 .data = record,
8290 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008291 };
8292
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008293 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008294 data.raw = &raw;
8295
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07008296 perf_trace_buf_update(record, event_type);
8297
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +02008298 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008299 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008300 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008301 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008302
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008303 /*
8304 * If we got specified a target task, also iterate its context and
8305 * deliver this event there too.
8306 */
8307 if (task && task != current) {
8308 struct perf_event_context *ctx;
8309 struct trace_entry *entry = record;
8310
8311 rcu_read_lock();
8312 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
8313 if (!ctx)
8314 goto unlock;
8315
8316 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Jiri Olsacd6fb6772018-09-23 18:13:43 +02008317 if (event->cpu != smp_processor_id())
8318 continue;
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008319 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8320 continue;
8321 if (event->attr.config != entry->type)
8322 continue;
8323 if (perf_tp_event_match(event, &data, regs))
8324 perf_swevent_event(event, count, &data, regs);
8325 }
8326unlock:
8327 rcu_read_unlock();
8328 }
8329
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008330 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008331}
8332EXPORT_SYMBOL_GPL(perf_tp_event);
8333
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008334static void tp_perf_event_destroy(struct perf_event *event)
8335{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008336 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008337}
8338
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008339static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008340{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008341 int err;
8342
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008343 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8344 return -ENOENT;
8345
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008346 /*
8347 * no branch sampling for tracepoint events
8348 */
8349 if (has_branch_stack(event))
8350 return -EOPNOTSUPP;
8351
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008352 err = perf_trace_init(event);
8353 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008354 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008355
8356 event->destroy = tp_perf_event_destroy;
8357
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008358 return 0;
8359}
8360
8361static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008362 .task_ctx_nr = perf_sw_context,
8363
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008364 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008365 .add = perf_trace_add,
8366 .del = perf_trace_del,
8367 .start = perf_swevent_start,
8368 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008369 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008370};
8371
Song Liu33ea4b22017-12-06 14:45:16 -08008372#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
Song Liue12f03d2017-12-06 14:45:15 -08008373/*
8374 * Flags in config, used by dynamic PMU kprobe and uprobe
8375 * The flags should match following PMU_FORMAT_ATTR().
8376 *
8377 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
8378 * if not set, create kprobe/uprobe
Song Liua6ca88b2018-10-01 22:36:36 -07008379 *
8380 * The following values specify a reference counter (or semaphore in the
8381 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
8382 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
8383 *
8384 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
8385 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
Song Liue12f03d2017-12-06 14:45:15 -08008386 */
8387enum perf_probe_config {
8388 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
Song Liua6ca88b2018-10-01 22:36:36 -07008389 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
8390 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
Song Liue12f03d2017-12-06 14:45:15 -08008391};
8392
8393PMU_FORMAT_ATTR(retprobe, "config:0");
Song Liua6ca88b2018-10-01 22:36:36 -07008394#endif
Song Liue12f03d2017-12-06 14:45:15 -08008395
Song Liua6ca88b2018-10-01 22:36:36 -07008396#ifdef CONFIG_KPROBE_EVENTS
8397static struct attribute *kprobe_attrs[] = {
Song Liue12f03d2017-12-06 14:45:15 -08008398 &format_attr_retprobe.attr,
8399 NULL,
8400};
8401
Song Liua6ca88b2018-10-01 22:36:36 -07008402static struct attribute_group kprobe_format_group = {
Song Liue12f03d2017-12-06 14:45:15 -08008403 .name = "format",
Song Liua6ca88b2018-10-01 22:36:36 -07008404 .attrs = kprobe_attrs,
Song Liue12f03d2017-12-06 14:45:15 -08008405};
8406
Song Liua6ca88b2018-10-01 22:36:36 -07008407static const struct attribute_group *kprobe_attr_groups[] = {
8408 &kprobe_format_group,
Song Liue12f03d2017-12-06 14:45:15 -08008409 NULL,
8410};
8411
8412static int perf_kprobe_event_init(struct perf_event *event);
8413static struct pmu perf_kprobe = {
8414 .task_ctx_nr = perf_sw_context,
8415 .event_init = perf_kprobe_event_init,
8416 .add = perf_trace_add,
8417 .del = perf_trace_del,
8418 .start = perf_swevent_start,
8419 .stop = perf_swevent_stop,
8420 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07008421 .attr_groups = kprobe_attr_groups,
Song Liue12f03d2017-12-06 14:45:15 -08008422};
8423
8424static int perf_kprobe_event_init(struct perf_event *event)
8425{
8426 int err;
8427 bool is_retprobe;
8428
8429 if (event->attr.type != perf_kprobe.type)
8430 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00008431
8432 if (!capable(CAP_SYS_ADMIN))
8433 return -EACCES;
8434
Song Liue12f03d2017-12-06 14:45:15 -08008435 /*
8436 * no branch sampling for probe events
8437 */
8438 if (has_branch_stack(event))
8439 return -EOPNOTSUPP;
8440
8441 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
8442 err = perf_kprobe_init(event, is_retprobe);
8443 if (err)
8444 return err;
8445
8446 event->destroy = perf_kprobe_destroy;
8447
8448 return 0;
8449}
8450#endif /* CONFIG_KPROBE_EVENTS */
8451
Song Liu33ea4b22017-12-06 14:45:16 -08008452#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -07008453PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
8454
8455static struct attribute *uprobe_attrs[] = {
8456 &format_attr_retprobe.attr,
8457 &format_attr_ref_ctr_offset.attr,
8458 NULL,
8459};
8460
8461static struct attribute_group uprobe_format_group = {
8462 .name = "format",
8463 .attrs = uprobe_attrs,
8464};
8465
8466static const struct attribute_group *uprobe_attr_groups[] = {
8467 &uprobe_format_group,
8468 NULL,
8469};
8470
Song Liu33ea4b22017-12-06 14:45:16 -08008471static int perf_uprobe_event_init(struct perf_event *event);
8472static struct pmu perf_uprobe = {
8473 .task_ctx_nr = perf_sw_context,
8474 .event_init = perf_uprobe_event_init,
8475 .add = perf_trace_add,
8476 .del = perf_trace_del,
8477 .start = perf_swevent_start,
8478 .stop = perf_swevent_stop,
8479 .read = perf_swevent_read,
Song Liua6ca88b2018-10-01 22:36:36 -07008480 .attr_groups = uprobe_attr_groups,
Song Liu33ea4b22017-12-06 14:45:16 -08008481};
8482
8483static int perf_uprobe_event_init(struct perf_event *event)
8484{
8485 int err;
Song Liua6ca88b2018-10-01 22:36:36 -07008486 unsigned long ref_ctr_offset;
Song Liu33ea4b22017-12-06 14:45:16 -08008487 bool is_retprobe;
8488
8489 if (event->attr.type != perf_uprobe.type)
8490 return -ENOENT;
Song Liu32e6e962018-04-11 18:02:37 +00008491
8492 if (!capable(CAP_SYS_ADMIN))
8493 return -EACCES;
8494
Song Liu33ea4b22017-12-06 14:45:16 -08008495 /*
8496 * no branch sampling for probe events
8497 */
8498 if (has_branch_stack(event))
8499 return -EOPNOTSUPP;
8500
8501 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
Song Liua6ca88b2018-10-01 22:36:36 -07008502 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
8503 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -08008504 if (err)
8505 return err;
8506
8507 event->destroy = perf_uprobe_destroy;
8508
8509 return 0;
8510}
8511#endif /* CONFIG_UPROBE_EVENTS */
8512
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008513static inline void perf_tp_register(void)
8514{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008515 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Song Liue12f03d2017-12-06 14:45:15 -08008516#ifdef CONFIG_KPROBE_EVENTS
8517 perf_pmu_register(&perf_kprobe, "kprobe", -1);
8518#endif
Song Liu33ea4b22017-12-06 14:45:16 -08008519#ifdef CONFIG_UPROBE_EVENTS
8520 perf_pmu_register(&perf_uprobe, "uprobe", -1);
8521#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008522}
Li Zefan6fb29152009-10-15 11:21:42 +08008523
Li Zefan6fb29152009-10-15 11:21:42 +08008524static void perf_event_free_filter(struct perf_event *event)
8525{
8526 ftrace_profile_free_filter(event);
8527}
8528
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008529#ifdef CONFIG_BPF_SYSCALL
8530static void bpf_overflow_handler(struct perf_event *event,
8531 struct perf_sample_data *data,
8532 struct pt_regs *regs)
8533{
8534 struct bpf_perf_event_data_kern ctx = {
8535 .data = data,
Yonghong Song7d9285e2017-10-05 09:19:19 -07008536 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008537 };
8538 int ret = 0;
8539
Hendrik Bruecknerc895f6f2017-12-04 10:56:44 +01008540 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008541 preempt_disable();
8542 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
8543 goto out;
8544 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01008545 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008546 rcu_read_unlock();
8547out:
8548 __this_cpu_dec(bpf_prog_active);
8549 preempt_enable();
8550 if (!ret)
8551 return;
8552
8553 event->orig_overflow_handler(event, data, regs);
8554}
8555
8556static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8557{
8558 struct bpf_prog *prog;
8559
8560 if (event->overflow_handler_context)
8561 /* hw breakpoint or kernel counter */
8562 return -EINVAL;
8563
8564 if (event->prog)
8565 return -EEXIST;
8566
8567 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
8568 if (IS_ERR(prog))
8569 return PTR_ERR(prog);
8570
8571 event->prog = prog;
8572 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
8573 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
8574 return 0;
8575}
8576
8577static void perf_event_free_bpf_handler(struct perf_event *event)
8578{
8579 struct bpf_prog *prog = event->prog;
8580
8581 if (!prog)
8582 return;
8583
8584 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
8585 event->prog = NULL;
8586 bpf_prog_put(prog);
8587}
8588#else
8589static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8590{
8591 return -EOPNOTSUPP;
8592}
8593static void perf_event_free_bpf_handler(struct perf_event *event)
8594{
8595}
8596#endif
8597
Song Liue12f03d2017-12-06 14:45:15 -08008598/*
8599 * returns true if the event is a tracepoint, or a kprobe/upprobe created
8600 * with perf_event_open()
8601 */
8602static inline bool perf_event_is_tracing(struct perf_event *event)
8603{
8604 if (event->pmu == &perf_tracepoint)
8605 return true;
8606#ifdef CONFIG_KPROBE_EVENTS
8607 if (event->pmu == &perf_kprobe)
8608 return true;
8609#endif
Song Liu33ea4b22017-12-06 14:45:16 -08008610#ifdef CONFIG_UPROBE_EVENTS
8611 if (event->pmu == &perf_uprobe)
8612 return true;
8613#endif
Song Liue12f03d2017-12-06 14:45:15 -08008614 return false;
8615}
8616
Alexei Starovoitov25415172015-03-25 12:49:20 -07008617static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8618{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008619 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008620 struct bpf_prog *prog;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008621 int ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008622
Song Liue12f03d2017-12-06 14:45:15 -08008623 if (!perf_event_is_tracing(event))
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07008624 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008625
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008626 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
8627 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008628 is_syscall_tp = is_syscall_trace_event(event->tp_event);
8629 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008630 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07008631 return -EINVAL;
8632
8633 prog = bpf_prog_get(prog_fd);
8634 if (IS_ERR(prog))
8635 return PTR_ERR(prog);
8636
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008637 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008638 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
8639 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07008640 /* valid fd, but invalid bpf program type */
8641 bpf_prog_put(prog);
8642 return -EINVAL;
8643 }
8644
Josef Bacik9802d862017-12-11 11:36:48 -05008645 /* Kprobe override only works for kprobes, not uprobes. */
8646 if (prog->kprobe_override &&
8647 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
8648 bpf_prog_put(prog);
8649 return -EINVAL;
8650 }
8651
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008652 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07008653 int off = trace_event_get_offsets(event->tp_event);
8654
8655 if (prog->aux->max_ctx_offset > off) {
8656 bpf_prog_put(prog);
8657 return -EACCES;
8658 }
8659 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07008660
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008661 ret = perf_event_attach_bpf_prog(event, prog);
8662 if (ret)
8663 bpf_prog_put(prog);
8664 return ret;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008665}
8666
8667static void perf_event_free_bpf_prog(struct perf_event *event)
8668{
Song Liue12f03d2017-12-06 14:45:15 -08008669 if (!perf_event_is_tracing(event)) {
Yonghong Song0b4c6842017-10-23 23:53:07 -07008670 perf_event_free_bpf_handler(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008671 return;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008672 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07008673 perf_event_detach_bpf_prog(event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008674}
8675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008676#else
Li Zefan6fb29152009-10-15 11:21:42 +08008677
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008678static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008679{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008680}
Li Zefan6fb29152009-10-15 11:21:42 +08008681
Li Zefan6fb29152009-10-15 11:21:42 +08008682static void perf_event_free_filter(struct perf_event *event)
8683{
8684}
8685
Alexei Starovoitov25415172015-03-25 12:49:20 -07008686static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8687{
8688 return -ENOENT;
8689}
8690
8691static void perf_event_free_bpf_prog(struct perf_event *event)
8692{
8693}
Li Zefan07b139c2009-12-21 14:27:35 +08008694#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008695
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008696#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008697void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008698{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008699 struct perf_sample_data sample;
8700 struct pt_regs *regs = data;
8701
Robert Richterfd0d0002012-04-02 20:19:08 +02008702 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008703
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008704 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008705 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008706}
8707#endif
8708
Alexander Shishkin375637b2016-04-27 18:44:46 +03008709/*
8710 * Allocate a new address filter
8711 */
8712static struct perf_addr_filter *
8713perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
8714{
8715 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
8716 struct perf_addr_filter *filter;
8717
8718 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
8719 if (!filter)
8720 return NULL;
8721
8722 INIT_LIST_HEAD(&filter->entry);
8723 list_add_tail(&filter->entry, filters);
8724
8725 return filter;
8726}
8727
8728static void free_filters_list(struct list_head *filters)
8729{
8730 struct perf_addr_filter *filter, *iter;
8731
8732 list_for_each_entry_safe(filter, iter, filters, entry) {
Song Liu9511bce2018-04-17 23:29:07 -07008733 path_put(&filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008734 list_del(&filter->entry);
8735 kfree(filter);
8736 }
8737}
8738
8739/*
8740 * Free existing address filters and optionally install new ones
8741 */
8742static void perf_addr_filters_splice(struct perf_event *event,
8743 struct list_head *head)
8744{
8745 unsigned long flags;
8746 LIST_HEAD(list);
8747
8748 if (!has_addr_filter(event))
8749 return;
8750
8751 /* don't bother with children, they don't have their own filters */
8752 if (event->parent)
8753 return;
8754
8755 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
8756
8757 list_splice_init(&event->addr_filters.list, &list);
8758 if (head)
8759 list_splice(head, &event->addr_filters.list);
8760
8761 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
8762
8763 free_filters_list(&list);
8764}
8765
8766/*
8767 * Scan through mm's vmas and see if one of them matches the
8768 * @filter; if so, adjust filter's address range.
8769 * Called with mm::mmap_sem down for reading.
8770 */
8771static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
8772 struct mm_struct *mm)
8773{
8774 struct vm_area_struct *vma;
8775
8776 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8777 struct file *file = vma->vm_file;
8778 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8779 unsigned long vma_size = vma->vm_end - vma->vm_start;
8780
8781 if (!file)
8782 continue;
8783
8784 if (!perf_addr_filter_match(filter, file, off, vma_size))
8785 continue;
8786
8787 return vma->vm_start;
8788 }
8789
8790 return 0;
8791}
8792
8793/*
8794 * Update event's address range filters based on the
8795 * task's existing mappings, if any.
8796 */
8797static void perf_event_addr_filters_apply(struct perf_event *event)
8798{
8799 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8800 struct task_struct *task = READ_ONCE(event->ctx->task);
8801 struct perf_addr_filter *filter;
8802 struct mm_struct *mm = NULL;
8803 unsigned int count = 0;
8804 unsigned long flags;
8805
8806 /*
8807 * We may observe TASK_TOMBSTONE, which means that the event tear-down
8808 * will stop on the parent's child_mutex that our caller is also holding
8809 */
8810 if (task == TASK_TOMBSTONE)
8811 return;
8812
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008813 if (!ifh->nr_file_filters)
8814 return;
8815
Alexander Shishkin375637b2016-04-27 18:44:46 +03008816 mm = get_task_mm(event->ctx->task);
8817 if (!mm)
8818 goto restart;
8819
8820 down_read(&mm->mmap_sem);
8821
8822 raw_spin_lock_irqsave(&ifh->lock, flags);
8823 list_for_each_entry(filter, &ifh->list, entry) {
8824 event->addr_filters_offs[count] = 0;
8825
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008826 /*
8827 * Adjust base offset if the filter is associated to a binary
8828 * that needs to be mapped:
8829 */
Song Liu9511bce2018-04-17 23:29:07 -07008830 if (filter->path.dentry)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008831 event->addr_filters_offs[count] =
8832 perf_addr_filter_apply(filter, mm);
8833
8834 count++;
8835 }
8836
8837 event->addr_filters_gen++;
8838 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8839
8840 up_read(&mm->mmap_sem);
8841
8842 mmput(mm);
8843
8844restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008845 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008846}
8847
8848/*
8849 * Address range filtering: limiting the data to certain
8850 * instruction address ranges. Filters are ioctl()ed to us from
8851 * userspace as ascii strings.
8852 *
8853 * Filter string format:
8854 *
8855 * ACTION RANGE_SPEC
8856 * where ACTION is one of the
8857 * * "filter": limit the trace to this region
8858 * * "start": start tracing from this address
8859 * * "stop": stop tracing at this address/region;
8860 * RANGE_SPEC is
8861 * * for kernel addresses: <start address>[/<size>]
8862 * * for object files: <start address>[/<size>]@</path/to/object/file>
8863 *
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008864 * if <size> is not specified or is zero, the range is treated as a single
8865 * address; not valid for ACTION=="filter".
Alexander Shishkin375637b2016-04-27 18:44:46 +03008866 */
8867enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008868 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008869 IF_ACT_FILTER,
8870 IF_ACT_START,
8871 IF_ACT_STOP,
8872 IF_SRC_FILE,
8873 IF_SRC_KERNEL,
8874 IF_SRC_FILEADDR,
8875 IF_SRC_KERNELADDR,
8876};
8877
8878enum {
8879 IF_STATE_ACTION = 0,
8880 IF_STATE_SOURCE,
8881 IF_STATE_END,
8882};
8883
8884static const match_table_t if_tokens = {
8885 { IF_ACT_FILTER, "filter" },
8886 { IF_ACT_START, "start" },
8887 { IF_ACT_STOP, "stop" },
8888 { IF_SRC_FILE, "%u/%u@%s" },
8889 { IF_SRC_KERNEL, "%u/%u" },
8890 { IF_SRC_FILEADDR, "%u@%s" },
8891 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008892 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008893};
8894
8895/*
8896 * Address filter string parser
8897 */
8898static int
8899perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8900 struct list_head *filters)
8901{
8902 struct perf_addr_filter *filter = NULL;
8903 char *start, *orig, *filename = NULL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008904 substring_t args[MAX_OPT_ARGS];
8905 int state = IF_STATE_ACTION, token;
8906 unsigned int kernel = 0;
8907 int ret = -EINVAL;
8908
8909 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8910 if (!fstr)
8911 return -ENOMEM;
8912
8913 while ((start = strsep(&fstr, " ,\n")) != NULL) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008914 static const enum perf_addr_filter_action_t actions[] = {
8915 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
8916 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
8917 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
8918 };
Alexander Shishkin375637b2016-04-27 18:44:46 +03008919 ret = -EINVAL;
8920
8921 if (!*start)
8922 continue;
8923
8924 /* filter definition begins */
8925 if (state == IF_STATE_ACTION) {
8926 filter = perf_addr_filter_new(event, filters);
8927 if (!filter)
8928 goto fail;
8929 }
8930
8931 token = match_token(start, if_tokens, args);
8932 switch (token) {
8933 case IF_ACT_FILTER:
8934 case IF_ACT_START:
Alexander Shishkin375637b2016-04-27 18:44:46 +03008935 case IF_ACT_STOP:
8936 if (state != IF_STATE_ACTION)
8937 goto fail;
8938
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008939 filter->action = actions[token];
Alexander Shishkin375637b2016-04-27 18:44:46 +03008940 state = IF_STATE_SOURCE;
8941 break;
8942
8943 case IF_SRC_KERNELADDR:
8944 case IF_SRC_KERNEL:
8945 kernel = 1;
8946
8947 case IF_SRC_FILEADDR:
8948 case IF_SRC_FILE:
8949 if (state != IF_STATE_SOURCE)
8950 goto fail;
8951
Alexander Shishkin375637b2016-04-27 18:44:46 +03008952 *args[0].to = 0;
8953 ret = kstrtoul(args[0].from, 0, &filter->offset);
8954 if (ret)
8955 goto fail;
8956
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008957 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
Alexander Shishkin375637b2016-04-27 18:44:46 +03008958 *args[1].to = 0;
8959 ret = kstrtoul(args[1].from, 0, &filter->size);
8960 if (ret)
8961 goto fail;
8962 }
8963
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008964 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008965 int fpos = token == IF_SRC_FILE ? 2 : 1;
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008966
8967 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008968 if (!filename) {
8969 ret = -ENOMEM;
8970 goto fail;
8971 }
8972 }
8973
8974 state = IF_STATE_END;
8975 break;
8976
8977 default:
8978 goto fail;
8979 }
8980
8981 /*
8982 * Filter definition is fully parsed, validate and install it.
8983 * Make sure that it doesn't contradict itself or the event's
8984 * attribute.
8985 */
8986 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02008987 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008988 if (kernel && event->attr.exclude_kernel)
8989 goto fail;
8990
Alexander Shishkin6ed70cf2018-03-29 15:06:48 +03008991 /*
8992 * ACTION "filter" must have a non-zero length region
8993 * specified.
8994 */
8995 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
8996 !filter->size)
8997 goto fail;
8998
Alexander Shishkin375637b2016-04-27 18:44:46 +03008999 if (!kernel) {
9000 if (!filename)
9001 goto fail;
9002
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009003 /*
9004 * For now, we only support file-based filters
9005 * in per-task events; doing so for CPU-wide
9006 * events requires additional context switching
9007 * trickery, since same object code will be
9008 * mapped at different virtual addresses in
9009 * different processes.
9010 */
9011 ret = -EOPNOTSUPP;
9012 if (!event->ctx->task)
9013 goto fail_free_name;
9014
Alexander Shishkin375637b2016-04-27 18:44:46 +03009015 /* look up the path and grab its inode */
Song Liu9511bce2018-04-17 23:29:07 -07009016 ret = kern_path(filename, LOOKUP_FOLLOW,
9017 &filter->path);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009018 if (ret)
9019 goto fail_free_name;
9020
Alexander Shishkin375637b2016-04-27 18:44:46 +03009021 kfree(filename);
9022 filename = NULL;
9023
9024 ret = -EINVAL;
Song Liu9511bce2018-04-17 23:29:07 -07009025 if (!filter->path.dentry ||
9026 !S_ISREG(d_inode(filter->path.dentry)
9027 ->i_mode))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009028 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009029
9030 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009031 }
9032
9033 /* ready to consume more filters */
9034 state = IF_STATE_ACTION;
9035 filter = NULL;
9036 }
9037 }
9038
9039 if (state != IF_STATE_ACTION)
9040 goto fail;
9041
9042 kfree(orig);
9043
9044 return 0;
9045
9046fail_free_name:
9047 kfree(filename);
9048fail:
9049 free_filters_list(filters);
9050 kfree(orig);
9051
9052 return ret;
9053}
9054
9055static int
9056perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
9057{
9058 LIST_HEAD(filters);
9059 int ret;
9060
9061 /*
9062 * Since this is called in perf_ioctl() path, we're already holding
9063 * ctx::mutex.
9064 */
9065 lockdep_assert_held(&event->ctx->mutex);
9066
9067 if (WARN_ON_ONCE(event->parent))
9068 return -EINVAL;
9069
Alexander Shishkin375637b2016-04-27 18:44:46 +03009070 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
9071 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009072 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009073
9074 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009075 if (ret)
9076 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009077
9078 /* remove existing filters, if any */
9079 perf_addr_filters_splice(event, &filters);
9080
9081 /* install new filters */
9082 perf_event_for_each_child(event, perf_event_addr_filters_apply);
9083
9084 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02009085
9086fail_free_filters:
9087 free_filters_list(&filters);
9088
9089fail_clear_files:
9090 event->addr_filters.nr_file_filters = 0;
9091
9092 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009093}
9094
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009095static int perf_event_set_filter(struct perf_event *event, void __user *arg)
9096{
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009097 int ret = -EINVAL;
Song Liue12f03d2017-12-06 14:45:15 -08009098 char *filter_str;
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009099
9100 filter_str = strndup_user(arg, PAGE_SIZE);
9101 if (IS_ERR(filter_str))
9102 return PTR_ERR(filter_str);
9103
Song Liue12f03d2017-12-06 14:45:15 -08009104#ifdef CONFIG_EVENT_TRACING
9105 if (perf_event_is_tracing(event)) {
9106 struct perf_event_context *ctx = event->ctx;
9107
9108 /*
9109 * Beware, here be dragons!!
9110 *
9111 * the tracepoint muck will deadlock against ctx->mutex, but
9112 * the tracepoint stuff does not actually need it. So
9113 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
9114 * already have a reference on ctx.
9115 *
9116 * This can result in event getting moved to a different ctx,
9117 * but that does not affect the tracepoint state.
9118 */
9119 mutex_unlock(&ctx->mutex);
9120 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
9121 mutex_lock(&ctx->mutex);
9122 } else
9123#endif
9124 if (has_addr_filter(event))
Alexander Shishkin375637b2016-04-27 18:44:46 +03009125 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03009126
9127 kfree(filter_str);
9128 return ret;
9129}
9130
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009131/*
9132 * hrtimer based swevent callback
9133 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009134
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009135static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009136{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009137 enum hrtimer_restart ret = HRTIMER_RESTART;
9138 struct perf_sample_data data;
9139 struct pt_regs *regs;
9140 struct perf_event *event;
9141 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009142
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009143 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009144
9145 if (event->state != PERF_EVENT_STATE_ACTIVE)
9146 return HRTIMER_NORESTART;
9147
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009148 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009149
Robert Richterfd0d0002012-04-02 20:19:08 +02009150 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009151 regs = get_irq_regs();
9152
9153 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08009154 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02009155 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009156 ret = HRTIMER_NORESTART;
9157 }
9158
9159 period = max_t(u64, 10000, event->hw.sample_period);
9160 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
9161
9162 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009163}
9164
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009165static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009166{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009167 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009168 s64 period;
9169
9170 if (!is_sampling_event(event))
9171 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009172
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009173 period = local64_read(&hwc->period_left);
9174 if (period) {
9175 if (period < 0)
9176 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009177
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01009178 local64_set(&hwc->period_left, 0);
9179 } else {
9180 period = max_t(u64, 10000, hwc->sample_period);
9181 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00009182 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
9183 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009184}
9185
9186static void perf_swevent_cancel_hrtimer(struct perf_event *event)
9187{
9188 struct hw_perf_event *hwc = &event->hw;
9189
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01009190 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009191 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02009192 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009193
9194 hrtimer_cancel(&hwc->hrtimer);
9195 }
9196}
9197
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009198static void perf_swevent_init_hrtimer(struct perf_event *event)
9199{
9200 struct hw_perf_event *hwc = &event->hw;
9201
9202 if (!is_sampling_event(event))
9203 return;
9204
9205 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
9206 hwc->hrtimer.function = perf_swevent_hrtimer;
9207
9208 /*
9209 * Since hrtimers have a fixed rate, we can do a static freq->period
9210 * mapping and avoid the whole period adjust feedback stuff.
9211 */
9212 if (event->attr.freq) {
9213 long freq = event->attr.sample_freq;
9214
9215 event->attr.sample_period = NSEC_PER_SEC / freq;
9216 hwc->sample_period = event->attr.sample_period;
9217 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09009218 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009219 event->attr.freq = 0;
9220 }
9221}
9222
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009223/*
9224 * Software event: cpu wall time clock
9225 */
9226
9227static void cpu_clock_event_update(struct perf_event *event)
9228{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009229 s64 prev;
9230 u64 now;
9231
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009232 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009233 prev = local64_xchg(&event->hw.prev_count, now);
9234 local64_add(now - prev, &event->count);
9235}
9236
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009237static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009238{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009239 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009240 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009241}
9242
9243static void cpu_clock_event_stop(struct perf_event *event, int flags)
9244{
9245 perf_swevent_cancel_hrtimer(event);
9246 cpu_clock_event_update(event);
9247}
9248
9249static int cpu_clock_event_add(struct perf_event *event, int flags)
9250{
9251 if (flags & PERF_EF_START)
9252 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08009253 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009254
9255 return 0;
9256}
9257
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009258static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009259{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009260 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009261}
9262
9263static void cpu_clock_event_read(struct perf_event *event)
9264{
9265 cpu_clock_event_update(event);
9266}
9267
9268static int cpu_clock_event_init(struct perf_event *event)
9269{
9270 if (event->attr.type != PERF_TYPE_SOFTWARE)
9271 return -ENOENT;
9272
9273 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
9274 return -ENOENT;
9275
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009276 /*
9277 * no branch sampling for software events
9278 */
9279 if (has_branch_stack(event))
9280 return -EOPNOTSUPP;
9281
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009282 perf_swevent_init_hrtimer(event);
9283
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009284 return 0;
9285}
9286
9287static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009288 .task_ctx_nr = perf_sw_context,
9289
Peter Zijlstra34f43922015-02-20 14:05:38 +01009290 .capabilities = PERF_PMU_CAP_NO_NMI,
9291
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009292 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009293 .add = cpu_clock_event_add,
9294 .del = cpu_clock_event_del,
9295 .start = cpu_clock_event_start,
9296 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009297 .read = cpu_clock_event_read,
9298};
9299
9300/*
9301 * Software event: task time clock
9302 */
9303
9304static void task_clock_event_update(struct perf_event *event, u64 now)
9305{
9306 u64 prev;
9307 s64 delta;
9308
9309 prev = local64_xchg(&event->hw.prev_count, now);
9310 delta = now - prev;
9311 local64_add(delta, &event->count);
9312}
9313
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009314static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009315{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009316 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009317 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009318}
9319
9320static void task_clock_event_stop(struct perf_event *event, int flags)
9321{
9322 perf_swevent_cancel_hrtimer(event);
9323 task_clock_event_update(event, event->ctx->time);
9324}
9325
9326static int task_clock_event_add(struct perf_event *event, int flags)
9327{
9328 if (flags & PERF_EF_START)
9329 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08009330 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009331
9332 return 0;
9333}
9334
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009335static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009336{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009337 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009338}
9339
9340static void task_clock_event_read(struct perf_event *event)
9341{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01009342 u64 now = perf_clock();
9343 u64 delta = now - event->ctx->timestamp;
9344 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009345
9346 task_clock_event_update(event, time);
9347}
9348
9349static int task_clock_event_init(struct perf_event *event)
9350{
9351 if (event->attr.type != PERF_TYPE_SOFTWARE)
9352 return -ENOENT;
9353
9354 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
9355 return -ENOENT;
9356
Stephane Eranian2481c5f2012-02-09 23:20:59 +01009357 /*
9358 * no branch sampling for software events
9359 */
9360 if (has_branch_stack(event))
9361 return -EOPNOTSUPP;
9362
Peter Zijlstraba3dd362011-02-15 12:41:46 +01009363 perf_swevent_init_hrtimer(event);
9364
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009365 return 0;
9366}
9367
9368static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009369 .task_ctx_nr = perf_sw_context,
9370
Peter Zijlstra34f43922015-02-20 14:05:38 +01009371 .capabilities = PERF_PMU_CAP_NO_NMI,
9372
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009373 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02009374 .add = task_clock_event_add,
9375 .del = task_clock_event_del,
9376 .start = task_clock_event_start,
9377 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009378 .read = task_clock_event_read,
9379};
9380
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009381static void perf_pmu_nop_void(struct pmu *pmu)
9382{
9383}
9384
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009385static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
9386{
9387}
9388
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009389static int perf_pmu_nop_int(struct pmu *pmu)
9390{
9391 return 0;
9392}
9393
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009394static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009395
9396static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009397{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009398 __this_cpu_write(nop_txn_flags, flags);
9399
9400 if (flags & ~PERF_PMU_TXN_ADD)
9401 return;
9402
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009403 perf_pmu_disable(pmu);
9404}
9405
9406static int perf_pmu_commit_txn(struct pmu *pmu)
9407{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009408 unsigned int flags = __this_cpu_read(nop_txn_flags);
9409
9410 __this_cpu_write(nop_txn_flags, 0);
9411
9412 if (flags & ~PERF_PMU_TXN_ADD)
9413 return 0;
9414
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009415 perf_pmu_enable(pmu);
9416 return 0;
9417}
9418
9419static void perf_pmu_cancel_txn(struct pmu *pmu)
9420{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009421 unsigned int flags = __this_cpu_read(nop_txn_flags);
9422
9423 __this_cpu_write(nop_txn_flags, 0);
9424
9425 if (flags & ~PERF_PMU_TXN_ADD)
9426 return;
9427
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009428 perf_pmu_enable(pmu);
9429}
9430
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009431static int perf_event_idx_default(struct perf_event *event)
9432{
Peter Zijlstrac719f562014-10-21 11:10:21 +02009433 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009434}
9435
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009436/*
9437 * Ensures all contexts with the same task_ctx_nr have the same
9438 * pmu_cpu_context too.
9439 */
Mark Rutland9e317042014-02-10 17:44:18 +00009440static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009441{
9442 struct pmu *pmu;
9443
9444 if (ctxn < 0)
9445 return NULL;
9446
9447 list_for_each_entry(pmu, &pmus, entry) {
9448 if (pmu->task_ctx_nr == ctxn)
9449 return pmu->pmu_cpu_context;
9450 }
9451
9452 return NULL;
9453}
9454
Peter Zijlstra51676952010-12-07 14:18:20 +01009455static void free_pmu_context(struct pmu *pmu)
9456{
Will Deacondf0062b2017-10-03 15:20:50 +01009457 /*
9458 * Static contexts such as perf_sw_context have a global lifetime
9459 * and may be shared between different PMUs. Avoid freeing them
9460 * when a single PMU is going away.
9461 */
9462 if (pmu->task_ctx_nr > perf_invalid_context)
9463 return;
9464
Peter Zijlstra51676952010-12-07 14:18:20 +01009465 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009466}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009467
9468/*
9469 * Let userspace know that this PMU supports address range filtering:
9470 */
9471static ssize_t nr_addr_filters_show(struct device *dev,
9472 struct device_attribute *attr,
9473 char *page)
9474{
9475 struct pmu *pmu = dev_get_drvdata(dev);
9476
9477 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
9478}
9479DEVICE_ATTR_RO(nr_addr_filters);
9480
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009481static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009482
Peter Zijlstraabe43402010-11-17 23:17:37 +01009483static ssize_t
9484type_show(struct device *dev, struct device_attribute *attr, char *page)
9485{
9486 struct pmu *pmu = dev_get_drvdata(dev);
9487
9488 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
9489}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009490static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009491
Stephane Eranian62b85632013-04-03 14:21:34 +02009492static ssize_t
9493perf_event_mux_interval_ms_show(struct device *dev,
9494 struct device_attribute *attr,
9495 char *page)
9496{
9497 struct pmu *pmu = dev_get_drvdata(dev);
9498
9499 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
9500}
9501
Peter Zijlstra272325c2015-04-15 11:41:58 +02009502static DEFINE_MUTEX(mux_interval_mutex);
9503
Stephane Eranian62b85632013-04-03 14:21:34 +02009504static ssize_t
9505perf_event_mux_interval_ms_store(struct device *dev,
9506 struct device_attribute *attr,
9507 const char *buf, size_t count)
9508{
9509 struct pmu *pmu = dev_get_drvdata(dev);
9510 int timer, cpu, ret;
9511
9512 ret = kstrtoint(buf, 0, &timer);
9513 if (ret)
9514 return ret;
9515
9516 if (timer < 1)
9517 return -EINVAL;
9518
9519 /* same value, noting to do */
9520 if (timer == pmu->hrtimer_interval_ms)
9521 return count;
9522
Peter Zijlstra272325c2015-04-15 11:41:58 +02009523 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009524 pmu->hrtimer_interval_ms = timer;
9525
9526 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009527 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009528 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02009529 struct perf_cpu_context *cpuctx;
9530 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
9531 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
9532
Peter Zijlstra272325c2015-04-15 11:41:58 +02009533 cpu_function_call(cpu,
9534 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02009535 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009536 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009537 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009538
9539 return count;
9540}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009541static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02009542
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009543static struct attribute *pmu_dev_attrs[] = {
9544 &dev_attr_type.attr,
9545 &dev_attr_perf_event_mux_interval_ms.attr,
9546 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009547};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009548ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009549
9550static int pmu_bus_running;
9551static struct bus_type pmu_bus = {
9552 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009553 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009554};
9555
9556static void pmu_dev_release(struct device *dev)
9557{
9558 kfree(dev);
9559}
9560
9561static int pmu_dev_alloc(struct pmu *pmu)
9562{
9563 int ret = -ENOMEM;
9564
9565 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
9566 if (!pmu->dev)
9567 goto out;
9568
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01009569 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01009570 device_initialize(pmu->dev);
9571 ret = dev_set_name(pmu->dev, "%s", pmu->name);
9572 if (ret)
9573 goto free_dev;
9574
9575 dev_set_drvdata(pmu->dev, pmu);
9576 pmu->dev->bus = &pmu_bus;
9577 pmu->dev->release = pmu_dev_release;
9578 ret = device_add(pmu->dev);
9579 if (ret)
9580 goto free_dev;
9581
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009582 /* For PMUs with address filters, throw in an extra attribute: */
9583 if (pmu->nr_addr_filters)
9584 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
9585
9586 if (ret)
9587 goto del_dev;
9588
Peter Zijlstraabe43402010-11-17 23:17:37 +01009589out:
9590 return ret;
9591
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009592del_dev:
9593 device_del(pmu->dev);
9594
Peter Zijlstraabe43402010-11-17 23:17:37 +01009595free_dev:
9596 put_device(pmu->dev);
9597 goto out;
9598}
9599
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009600static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009601static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009602
Mischa Jonker03d8e802013-06-04 11:45:48 +02009603int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009604{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009605 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009606
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009607 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009608 ret = -ENOMEM;
9609 pmu->pmu_disable_count = alloc_percpu(int);
9610 if (!pmu->pmu_disable_count)
9611 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009612
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009613 pmu->type = -1;
9614 if (!name)
9615 goto skip_type;
9616 pmu->name = name;
9617
9618 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08009619 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
9620 if (type < 0) {
9621 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009622 goto free_pdc;
9623 }
9624 }
9625 pmu->type = type;
9626
Peter Zijlstraabe43402010-11-17 23:17:37 +01009627 if (pmu_bus_running) {
9628 ret = pmu_dev_alloc(pmu);
9629 if (ret)
9630 goto free_idr;
9631 }
9632
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009633skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01009634 if (pmu->task_ctx_nr == perf_hw_context) {
9635 static int hw_context_taken = 0;
9636
Mark Rutland5101ef22016-04-26 11:33:46 +01009637 /*
9638 * Other than systems with heterogeneous CPUs, it never makes
9639 * sense for two PMUs to share perf_hw_context. PMUs which are
9640 * uncore must use perf_invalid_context.
9641 */
9642 if (WARN_ON_ONCE(hw_context_taken &&
9643 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01009644 pmu->task_ctx_nr = perf_invalid_context;
9645
9646 hw_context_taken = 1;
9647 }
9648
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009649 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
9650 if (pmu->pmu_cpu_context)
9651 goto got_cpu_context;
9652
Wei Yongjunc4814202013-04-12 11:05:54 +08009653 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009654 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
9655 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01009656 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009657
9658 for_each_possible_cpu(cpu) {
9659 struct perf_cpu_context *cpuctx;
9660
9661 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02009662 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009663 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009664 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009665 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009666 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +02009667
Peter Zijlstra272325c2015-04-15 11:41:58 +02009668 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009669 }
9670
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009671got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009672 if (!pmu->start_txn) {
9673 if (pmu->pmu_enable) {
9674 /*
9675 * If we have pmu_enable/pmu_disable calls, install
9676 * transaction stubs that use that to try and batch
9677 * hardware accesses.
9678 */
9679 pmu->start_txn = perf_pmu_start_txn;
9680 pmu->commit_txn = perf_pmu_commit_txn;
9681 pmu->cancel_txn = perf_pmu_cancel_txn;
9682 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009683 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009684 pmu->commit_txn = perf_pmu_nop_int;
9685 pmu->cancel_txn = perf_pmu_nop_void;
9686 }
9687 }
9688
9689 if (!pmu->pmu_enable) {
9690 pmu->pmu_enable = perf_pmu_nop_void;
9691 pmu->pmu_disable = perf_pmu_nop_void;
9692 }
9693
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009694 if (!pmu->event_idx)
9695 pmu->event_idx = perf_event_idx_default;
9696
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009697 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009698 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009699 ret = 0;
9700unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009701 mutex_unlock(&pmus_lock);
9702
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009703 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009704
Peter Zijlstraabe43402010-11-17 23:17:37 +01009705free_dev:
9706 device_del(pmu->dev);
9707 put_device(pmu->dev);
9708
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009709free_idr:
9710 if (pmu->type >= PERF_TYPE_MAX)
9711 idr_remove(&pmu_idr, pmu->type);
9712
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009713free_pdc:
9714 free_percpu(pmu->pmu_disable_count);
9715 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009716}
Yan, Zhengc464c762014-03-18 16:56:41 +08009717EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009718
9719void perf_pmu_unregister(struct pmu *pmu)
9720{
9721 mutex_lock(&pmus_lock);
9722 list_del_rcu(&pmu->entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009723
9724 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02009725 * We dereference the pmu list under both SRCU and regular RCU, so
9726 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009727 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009728 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02009729 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009730
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009731 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009732 if (pmu->type >= PERF_TYPE_MAX)
9733 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraa9f97722018-09-25 17:58:35 +02009734 if (pmu_bus_running) {
Jiri Olsa09338402016-10-20 13:10:11 +02009735 if (pmu->nr_addr_filters)
9736 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
9737 device_del(pmu->dev);
9738 put_device(pmu->dev);
9739 }
Peter Zijlstra51676952010-12-07 14:18:20 +01009740 free_pmu_context(pmu);
Peter Zijlstraa9f97722018-09-25 17:58:35 +02009741 mutex_unlock(&pmus_lock);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009742}
Yan, Zhengc464c762014-03-18 16:56:41 +08009743EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009744
Mark Rutlandcc34b982015-01-07 14:56:51 +00009745static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
9746{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009747 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00009748 int ret;
9749
9750 if (!try_module_get(pmu->module))
9751 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009752
Peter Zijlstra0c7296c2018-01-09 21:23:02 +01009753 /*
9754 * A number of pmu->event_init() methods iterate the sibling_list to,
9755 * for example, validate if the group fits on the PMU. Therefore,
9756 * if this is a sibling event, acquire the ctx->mutex to protect
9757 * the sibling_list.
9758 */
9759 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02009760 /*
9761 * This ctx->mutex can nest when we're called through
9762 * inheritance. See the perf_event_ctx_lock_nested() comment.
9763 */
9764 ctx = perf_event_ctx_lock_nested(event->group_leader,
9765 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009766 BUG_ON(!ctx);
9767 }
9768
Mark Rutlandcc34b982015-01-07 14:56:51 +00009769 event->pmu = pmu;
9770 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009771
9772 if (ctx)
9773 perf_event_ctx_unlock(event->group_leader, ctx);
9774
Mark Rutlandcc34b982015-01-07 14:56:51 +00009775 if (ret)
9776 module_put(pmu->module);
9777
9778 return ret;
9779}
9780
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009781static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009782{
Dan Carpenter85c617a2017-05-22 12:03:49 +03009783 struct pmu *pmu;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009784 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08009785 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009786
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009787 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009788
Kan Liang40999312017-01-18 08:21:01 -05009789 /* Try parent's PMU first: */
9790 if (event->parent && event->parent->pmu) {
9791 pmu = event->parent->pmu;
9792 ret = perf_try_init_event(pmu, event);
9793 if (!ret)
9794 goto unlock;
9795 }
9796
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009797 rcu_read_lock();
9798 pmu = idr_find(&pmu_idr, event->attr.type);
9799 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08009800 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009801 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08009802 if (ret)
9803 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009804 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08009805 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009806
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009807 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009808 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009809 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009810 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009811
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009812 if (ret != -ENOENT) {
9813 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009814 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009815 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009816 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009817 pmu = ERR_PTR(-ENOENT);
9818unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009819 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009820
9821 return pmu;
9822}
9823
Kan Liangf2fb6be2016-03-23 11:24:37 -07009824static void attach_sb_event(struct perf_event *event)
9825{
9826 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
9827
9828 raw_spin_lock(&pel->lock);
9829 list_add_rcu(&event->sb_list, &pel->list);
9830 raw_spin_unlock(&pel->lock);
9831}
9832
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009833/*
9834 * We keep a list of all !task (and therefore per-cpu) events
9835 * that need to receive side-band records.
9836 *
9837 * This avoids having to scan all the various PMU per-cpu contexts
9838 * looking for them.
9839 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009840static void account_pmu_sb_event(struct perf_event *event)
9841{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009842 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009843 attach_sb_event(event);
9844}
9845
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009846static void account_event_cpu(struct perf_event *event, int cpu)
9847{
9848 if (event->parent)
9849 return;
9850
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009851 if (is_cgroup_event(event))
9852 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9853}
9854
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009855/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9856static void account_freq_event_nohz(void)
9857{
9858#ifdef CONFIG_NO_HZ_FULL
9859 /* Lock so we don't race with concurrent unaccount */
9860 spin_lock(&nr_freq_lock);
9861 if (atomic_inc_return(&nr_freq_events) == 1)
9862 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9863 spin_unlock(&nr_freq_lock);
9864#endif
9865}
9866
9867static void account_freq_event(void)
9868{
9869 if (tick_nohz_full_enabled())
9870 account_freq_event_nohz();
9871 else
9872 atomic_inc(&nr_freq_events);
9873}
9874
9875
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009876static void account_event(struct perf_event *event)
9877{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009878 bool inc = false;
9879
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009880 if (event->parent)
9881 return;
9882
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009883 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009884 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009885 if (event->attr.mmap || event->attr.mmap_data)
9886 atomic_inc(&nr_mmap_events);
9887 if (event->attr.comm)
9888 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05309889 if (event->attr.namespaces)
9890 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009891 if (event->attr.task)
9892 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009893 if (event->attr.freq)
9894 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009895 if (event->attr.context_switch) {
9896 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009897 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009898 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009899 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009900 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009901 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009902 inc = true;
9903
Peter Zijlstra9107c892016-02-24 18:45:45 +01009904 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +03009905 /*
9906 * We need the mutex here because static_branch_enable()
9907 * must complete *before* the perf_sched_count increment
9908 * becomes visible.
9909 */
Peter Zijlstra9107c892016-02-24 18:45:45 +01009910 if (atomic_inc_not_zero(&perf_sched_count))
9911 goto enabled;
9912
9913 mutex_lock(&perf_sched_mutex);
9914 if (!atomic_read(&perf_sched_count)) {
9915 static_branch_enable(&perf_sched_events);
9916 /*
9917 * Guarantee that all CPUs observe they key change and
9918 * call the perf scheduling hooks before proceeding to
9919 * install events that need them.
9920 */
9921 synchronize_sched();
9922 }
9923 /*
9924 * Now that we have waited for the sync_sched(), allow further
9925 * increments to by-pass the mutex.
9926 */
9927 atomic_inc(&perf_sched_count);
9928 mutex_unlock(&perf_sched_mutex);
9929 }
9930enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009931
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009932 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009933
9934 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009935}
9936
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009937/*
Tobias Tefke788faab2018-07-09 12:57:15 +02009938 * Allocate and initialize an event structure
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009939 */
9940static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009941perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009942 struct task_struct *task,
9943 struct perf_event *group_leader,
9944 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009945 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009946 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009947{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009948 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009949 struct perf_event *event;
9950 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009951 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009952
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009953 if ((unsigned)cpu >= nr_cpu_ids) {
9954 if (!task || cpu != -1)
9955 return ERR_PTR(-EINVAL);
9956 }
9957
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009958 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009959 if (!event)
9960 return ERR_PTR(-ENOMEM);
9961
9962 /*
9963 * Single events are their own group leaders, with an
9964 * empty sibling list:
9965 */
9966 if (!group_leader)
9967 group_leader = event;
9968
9969 mutex_init(&event->child_mutex);
9970 INIT_LIST_HEAD(&event->child_list);
9971
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009972 INIT_LIST_HEAD(&event->event_entry);
9973 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra66681282017-11-13 14:28:38 +01009974 INIT_LIST_HEAD(&event->active_list);
Alexey Budankov8e1a2032017-09-08 11:47:03 +03009975 init_event_group(event);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009976 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009977 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009978 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009979 INIT_HLIST_NODE(&event->hlist_entry);
9980
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009981
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009982 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009983 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009984
9985 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009986 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009987
Al Viroa6fa9412012-08-20 14:59:25 +01009988 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009989 event->cpu = cpu;
9990 event->attr = *attr;
9991 event->group_leader = group_leader;
9992 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009993 event->oncpu = -1;
9994
9995 event->parent = parent_event;
9996
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009997 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009998 event->id = atomic64_inc_return(&perf_event_id);
9999
10000 event->state = PERF_EVENT_STATE_INACTIVE;
10001
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010002 if (task) {
10003 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010004 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +010010005 * XXX pmu::event_init needs to know what task to account to
10006 * and we cannot use the ctx information because we need the
10007 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010008 */
Prashant Bhole621b6d22018-04-09 19:03:46 +090010009 get_task_struct(task);
Peter Zijlstra50f16a82015-03-05 22:10:19 +010010010 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010011 }
10012
Peter Zijlstra34f43922015-02-20 14:05:38 +010010013 event->clock = &local_clock;
10014 if (parent_event)
10015 event->clock = parent_event->clock;
10016
Avi Kivity4dc0da82011-06-29 18:42:35 +030010017 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010010018 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010019 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +020010020#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -070010021 if (overflow_handler == bpf_overflow_handler) {
10022 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
10023
10024 if (IS_ERR(prog)) {
10025 err = PTR_ERR(prog);
10026 goto err_ns;
10027 }
10028 event->prog = prog;
10029 event->orig_overflow_handler =
10030 parent_event->orig_overflow_handler;
10031 }
10032#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +030010033 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +010010034
Wang Nan18794452016-03-28 06:41:30 +000010035 if (overflow_handler) {
10036 event->overflow_handler = overflow_handler;
10037 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +000010038 } else if (is_write_backward(event)){
10039 event->overflow_handler = perf_event_output_backward;
10040 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +000010041 } else {
Wang Nan9ecda412016-04-05 14:11:18 +000010042 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +000010043 event->overflow_handler_context = NULL;
10044 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +020010045
Jiri Olsa0231bb52013-02-01 11:23:45 +010010046 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010047
10048 pmu = NULL;
10049
10050 hwc = &event->hw;
10051 hwc->sample_period = attr->sample_period;
10052 if (attr->freq && attr->sample_freq)
10053 hwc->sample_period = 1;
10054 hwc->last_period = hwc->sample_period;
10055
Peter Zijlstrae7850592010-05-21 14:43:08 +020010056 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010057
10058 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010059 * We currently do not support PERF_SAMPLE_READ on inherited events.
10060 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010061 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +020010062 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010063 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010064
Yan, Zhenga46a2302014-11-04 21:56:06 -050010065 if (!has_branch_stack(event))
10066 event->attr.branch_sample_type = 0;
10067
Matt Fleming79dff512015-01-23 18:45:42 +000010068 if (cgroup_fd != -1) {
10069 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
10070 if (err)
10071 goto err_ns;
10072 }
10073
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010074 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +030010075 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010076 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010077 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010078 }
10079
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010080 err = exclusive_event_init(event);
10081 if (err)
10082 goto err_pmu;
10083
Alexander Shishkin375637b2016-04-27 18:44:46 +030010084 if (has_addr_filter(event)) {
10085 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
10086 sizeof(unsigned long),
10087 GFP_KERNEL);
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010088 if (!event->addr_filters_offs) {
10089 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +030010090 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +030010091 }
Alexander Shishkin375637b2016-04-27 18:44:46 +030010092
10093 /* force hw sync on the address filters */
10094 event->addr_filters_gen = 1;
10095 }
10096
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010097 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +020010098 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -030010099 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010100 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +030010101 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +010010102 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010103 }
10104
Alexander Shishkin927a5572016-03-02 13:24:14 +020010105 /* symmetric to unaccount_event() in _free_event() */
10106 account_event(event);
10107
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010108 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010109
Alexander Shishkin375637b2016-04-27 18:44:46 +030010110err_addr_filters:
10111 kfree(event->addr_filters_offs);
10112
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010113err_per_task:
10114 exclusive_event_destroy(event);
10115
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010116err_pmu:
10117 if (event->destroy)
10118 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +080010119 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010120err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +000010121 if (is_cgroup_event(event))
10122 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010123 if (event->ns)
10124 put_pid_ns(event->ns);
Prashant Bhole621b6d22018-04-09 19:03:46 +090010125 if (event->hw.target)
10126 put_task_struct(event->hw.target);
Frederic Weisbecker90983b12013-07-23 02:31:00 +020010127 kfree(event);
10128
10129 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010130}
10131
10132static int perf_copy_attr(struct perf_event_attr __user *uattr,
10133 struct perf_event_attr *attr)
10134{
10135 u32 size;
10136 int ret;
10137
10138 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
10139 return -EFAULT;
10140
10141 /*
10142 * zero the full structure, so that a short copy will be nice.
10143 */
10144 memset(attr, 0, sizeof(*attr));
10145
10146 ret = get_user(size, &uattr->size);
10147 if (ret)
10148 return ret;
10149
10150 if (size > PAGE_SIZE) /* silly large */
10151 goto err_size;
10152
10153 if (!size) /* abi compat */
10154 size = PERF_ATTR_SIZE_VER0;
10155
10156 if (size < PERF_ATTR_SIZE_VER0)
10157 goto err_size;
10158
10159 /*
10160 * If we're handed a bigger struct than we know of,
10161 * ensure all the unknown bits are 0 - i.e. new
10162 * user-space does not rely on any kernel feature
10163 * extensions we dont know about yet.
10164 */
10165 if (size > sizeof(*attr)) {
10166 unsigned char __user *addr;
10167 unsigned char __user *end;
10168 unsigned char val;
10169
10170 addr = (void __user *)uattr + sizeof(*attr);
10171 end = (void __user *)uattr + size;
10172
10173 for (; addr < end; addr++) {
10174 ret = get_user(val, addr);
10175 if (ret)
10176 return ret;
10177 if (val)
10178 goto err_size;
10179 }
10180 size = sizeof(*attr);
10181 }
10182
10183 ret = copy_from_user(attr, uattr, size);
10184 if (ret)
10185 return -EFAULT;
10186
Meng Xuf12f42a2017-08-23 17:07:50 -040010187 attr->size = size;
10188
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +053010189 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010190 return -EINVAL;
10191
10192 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
10193 return -EINVAL;
10194
10195 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
10196 return -EINVAL;
10197
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010198 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
10199 u64 mask = attr->branch_sample_type;
10200
10201 /* only using defined bits */
10202 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
10203 return -EINVAL;
10204
10205 /* at least one branch bit must be set */
10206 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
10207 return -EINVAL;
10208
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010209 /* propagate priv level, when not set for branch */
10210 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
10211
10212 /* exclude_kernel checked on syscall entry */
10213 if (!attr->exclude_kernel)
10214 mask |= PERF_SAMPLE_BRANCH_KERNEL;
10215
10216 if (!attr->exclude_user)
10217 mask |= PERF_SAMPLE_BRANCH_USER;
10218
10219 if (!attr->exclude_hv)
10220 mask |= PERF_SAMPLE_BRANCH_HV;
10221 /*
10222 * adjust user setting (for HW filter setup)
10223 */
10224 attr->branch_sample_type = mask;
10225 }
Stephane Eraniane7122092013-06-06 11:02:04 +020010226 /* privileged levels capture (kernel, hv): check permissions */
10227 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +020010228 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
10229 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +010010230 }
Jiri Olsa40189942012-08-07 15:20:37 +020010231
Jiri Olsac5ebced2012-08-07 15:20:40 +020010232 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +020010233 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +020010234 if (ret)
10235 return ret;
10236 }
10237
10238 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
10239 if (!arch_perf_have_user_stack_dump())
10240 return -ENOSYS;
10241
10242 /*
10243 * We have __u32 type for the size, but so far
10244 * we can only use __u16 as maximum due to the
10245 * __u16 sample size limit.
10246 */
10247 if (attr->sample_stack_user >= USHRT_MAX)
Jiri Olsa78b562f2018-04-15 11:23:50 +020010248 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020010249 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
Jiri Olsa78b562f2018-04-15 11:23:50 +020010250 return -EINVAL;
Jiri Olsac5ebced2012-08-07 15:20:40 +020010251 }
Jiri Olsa40189942012-08-07 15:20:37 +020010252
Jiri Olsa5f970522018-03-12 14:45:46 +010010253 if (!attr->sample_max_stack)
10254 attr->sample_max_stack = sysctl_perf_event_max_stack;
10255
Stephane Eranian60e23642014-09-24 13:48:37 +020010256 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
10257 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010258out:
10259 return ret;
10260
10261err_size:
10262 put_user(sizeof(*attr), &uattr->size);
10263 ret = -E2BIG;
10264 goto out;
10265}
10266
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010267static int
10268perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010269{
Peter Zijlstrab69cf532014-03-14 10:50:33 +010010270 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010271 int ret = -EINVAL;
10272
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010273 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010274 goto set;
10275
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010276 /* don't allow circular references */
10277 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010278 goto out;
10279
Peter Zijlstra0f139302010-05-20 14:35:15 +020010280 /*
10281 * Don't allow cross-cpu buffers
10282 */
10283 if (output_event->cpu != event->cpu)
10284 goto out;
10285
10286 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +020010287 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +020010288 */
10289 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
10290 goto out;
10291
Peter Zijlstra34f43922015-02-20 14:05:38 +010010292 /*
10293 * Mixing clocks in the same buffer is trouble you don't need.
10294 */
10295 if (output_event->clock != event->clock)
10296 goto out;
10297
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020010298 /*
Wang Nan9ecda412016-04-05 14:11:18 +000010299 * Either writing ring buffer from beginning or from end.
10300 * Mixing is not allowed.
10301 */
10302 if (is_write_backward(output_event) != is_write_backward(event))
10303 goto out;
10304
10305 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +020010306 * If both events generate aux data, they must be on the same PMU
10307 */
10308 if (has_aux(event) && has_aux(output_event) &&
10309 event->pmu != output_event->pmu)
10310 goto out;
10311
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010312set:
10313 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010314 /* Can't redirect output if we've got an active mmap() */
10315 if (atomic_read(&event->mmap_count))
10316 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010317
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010318 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +020010319 /* get the rb we want to redirect to */
10320 rb = ring_buffer_get(output_event);
10321 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010322 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010323 }
10324
Peter Zijlstrab69cf532014-03-14 10:50:33 +010010325 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +020010326
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010327 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010328unlock:
10329 mutex_unlock(&event->mmap_mutex);
10330
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010331out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010332 return ret;
10333}
10334
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010335static void mutex_lock_double(struct mutex *a, struct mutex *b)
10336{
10337 if (b < a)
10338 swap(a, b);
10339
10340 mutex_lock(a);
10341 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
10342}
10343
Peter Zijlstra34f43922015-02-20 14:05:38 +010010344static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
10345{
10346 bool nmi_safe = false;
10347
10348 switch (clk_id) {
10349 case CLOCK_MONOTONIC:
10350 event->clock = &ktime_get_mono_fast_ns;
10351 nmi_safe = true;
10352 break;
10353
10354 case CLOCK_MONOTONIC_RAW:
10355 event->clock = &ktime_get_raw_fast_ns;
10356 nmi_safe = true;
10357 break;
10358
10359 case CLOCK_REALTIME:
10360 event->clock = &ktime_get_real_ns;
10361 break;
10362
10363 case CLOCK_BOOTTIME:
10364 event->clock = &ktime_get_boot_ns;
10365 break;
10366
10367 case CLOCK_TAI:
10368 event->clock = &ktime_get_tai_ns;
10369 break;
10370
10371 default:
10372 return -EINVAL;
10373 }
10374
10375 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
10376 return -EINVAL;
10377
10378 return 0;
10379}
10380
Peter Zijlstra321027c2017-01-11 21:09:50 +010010381/*
10382 * Variation on perf_event_ctx_lock_nested(), except we take two context
10383 * mutexes.
10384 */
10385static struct perf_event_context *
10386__perf_event_ctx_lock_double(struct perf_event *group_leader,
10387 struct perf_event_context *ctx)
10388{
10389 struct perf_event_context *gctx;
10390
10391again:
10392 rcu_read_lock();
10393 gctx = READ_ONCE(group_leader->ctx);
10394 if (!atomic_inc_not_zero(&gctx->refcount)) {
10395 rcu_read_unlock();
10396 goto again;
10397 }
10398 rcu_read_unlock();
10399
10400 mutex_lock_double(&gctx->mutex, &ctx->mutex);
10401
10402 if (group_leader->ctx != gctx) {
10403 mutex_unlock(&ctx->mutex);
10404 mutex_unlock(&gctx->mutex);
10405 put_ctx(gctx);
10406 goto again;
10407 }
10408
10409 return gctx;
10410}
10411
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010412/**
10413 * sys_perf_event_open - open a performance event, associate it to a task/cpu
10414 *
10415 * @attr_uptr: event_id type attributes for monitoring/sampling
10416 * @pid: target pid
10417 * @cpu: target cpu
10418 * @group_fd: group leader event fd
10419 */
10420SYSCALL_DEFINE5(perf_event_open,
10421 struct perf_event_attr __user *, attr_uptr,
10422 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
10423{
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010424 struct perf_event *group_leader = NULL, *output_event = NULL;
10425 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010426 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010427 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010428 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -040010429 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -070010430 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010431 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -040010432 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010433 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010434 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +010010435 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +000010436 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010437
10438 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +020010439 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010440 return -EINVAL;
10441
10442 err = perf_copy_attr(attr_uptr, &attr);
10443 if (err)
10444 return err;
10445
10446 if (!attr.exclude_kernel) {
10447 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
10448 return -EACCES;
10449 }
10450
Hari Bathinie4222672017-03-08 02:11:36 +053010451 if (attr.namespaces) {
10452 if (!capable(CAP_SYS_ADMIN))
10453 return -EACCES;
10454 }
10455
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010456 if (attr.freq) {
10457 if (attr.sample_freq > sysctl_perf_event_sample_rate)
10458 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +020010459 } else {
10460 if (attr.sample_period & (1ULL << 63))
10461 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010462 }
10463
Kan Liangfc7ce9c2017-08-28 20:52:49 -040010464 /* Only privileged users can get physical addresses */
10465 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR) &&
10466 perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
10467 return -EACCES;
10468
Stephane Eraniane5d13672011-02-14 11:20:01 +020010469 /*
10470 * In cgroup mode, the pid argument is used to pass the fd
10471 * opened to the cgroup directory in cgroupfs. The cpu argument
10472 * designates the cpu on which to monitor threads from that
10473 * cgroup.
10474 */
10475 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
10476 return -EINVAL;
10477
Yann Droneauda21b0b32014-01-05 21:36:33 +010010478 if (flags & PERF_FLAG_FD_CLOEXEC)
10479 f_flags |= O_CLOEXEC;
10480
10481 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010482 if (event_fd < 0)
10483 return event_fd;
10484
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010485 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040010486 err = perf_fget_light(group_fd, &group);
10487 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010488 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040010489 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010490 if (flags & PERF_FLAG_FD_OUTPUT)
10491 output_event = group_leader;
10492 if (flags & PERF_FLAG_FD_NO_GROUP)
10493 group_leader = NULL;
10494 }
10495
Stephane Eraniane5d13672011-02-14 11:20:01 +020010496 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010497 task = find_lively_task_by_vpid(pid);
10498 if (IS_ERR(task)) {
10499 err = PTR_ERR(task);
10500 goto err_group_fd;
10501 }
10502 }
10503
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010504 if (task && group_leader &&
10505 group_leader->attr.inherit != attr.inherit) {
10506 err = -EINVAL;
10507 goto err_task;
10508 }
10509
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010510 if (task) {
10511 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
10512 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +000010513 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010514
10515 /*
10516 * Reuse ptrace permission checks for now.
10517 *
10518 * We must hold cred_guard_mutex across this and any potential
10519 * perf_install_in_context() call for this new event to
10520 * serialize against exec() altering our credentials (and the
10521 * perf_event_exit_task() that could imply).
10522 */
10523 err = -EACCES;
10524 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
10525 goto err_cred;
10526 }
10527
Matt Fleming79dff512015-01-23 18:45:42 +000010528 if (flags & PERF_FLAG_PID_CGROUP)
10529 cgroup_fd = pid;
10530
Avi Kivity4dc0da82011-06-29 18:42:35 +030010531 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010532 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010533 if (IS_ERR(event)) {
10534 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010535 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010536 }
10537
Vince Weaver53b25332014-05-16 17:12:12 -040010538 if (is_sampling_event(event)) {
10539 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053010540 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040010541 goto err_alloc;
10542 }
10543 }
10544
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010545 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010546 * Special case software events and allow them to be part of
10547 * any hardware group.
10548 */
10549 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010550
Peter Zijlstra34f43922015-02-20 14:05:38 +010010551 if (attr.use_clockid) {
10552 err = perf_event_set_clock(event, attr.clockid);
10553 if (err)
10554 goto err_alloc;
10555 }
10556
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010557 if (pmu->task_ctx_nr == perf_sw_context)
10558 event->event_caps |= PERF_EV_CAP_SOFTWARE;
10559
Song Liua1150c22018-05-03 12:47:16 -070010560 if (group_leader) {
10561 if (is_software_event(event) &&
10562 !in_software_context(group_leader)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010563 /*
Song Liua1150c22018-05-03 12:47:16 -070010564 * If the event is a sw event, but the group_leader
10565 * is on hw context.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010566 *
Song Liua1150c22018-05-03 12:47:16 -070010567 * Allow the addition of software events to hw
10568 * groups, this is safe because software events
10569 * never fail to schedule.
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010570 */
Song Liua1150c22018-05-03 12:47:16 -070010571 pmu = group_leader->ctx->pmu;
10572 } else if (!is_software_event(event) &&
10573 is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010574 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010575 /*
10576 * In case the group is a pure software group, and we
10577 * try to add a hardware event, move the whole group to
10578 * the hardware context.
10579 */
10580 move_group = 1;
10581 }
10582 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010583
10584 /*
10585 * Get the target context (task or percpu):
10586 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010587 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010588 if (IS_ERR(ctx)) {
10589 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010590 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010591 }
10592
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010593 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
10594 err = -EBUSY;
10595 goto err_context;
10596 }
10597
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010598 /*
10599 * Look up the group leader (we will attach this event to it):
10600 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010601 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010602 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010603
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010604 /*
10605 * Do not allow a recursive hierarchy (this new sibling
10606 * becoming part of another group-sibling):
10607 */
10608 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010609 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010010610
10611 /* All events in a group should have the same clock */
10612 if (group_leader->clock != event->clock)
10613 goto err_context;
10614
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010615 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010010616 * Make sure we're both events for the same CPU;
10617 * grouping events for different CPUs is broken; since
10618 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010619 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010010620 if (group_leader->cpu != event->cpu)
10621 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010010622
Mark Rutland64aee2a2017-06-22 15:41:38 +010010623 /*
10624 * Make sure we're both on the same task, or both
10625 * per-CPU events.
10626 */
10627 if (group_leader->ctx->task != ctx->task)
10628 goto err_context;
10629
10630 /*
10631 * Do not allow to attach to a group in a different task
10632 * or CPU context. If we're moving SW events, we'll fix
10633 * this up later, so allow that.
10634 */
10635 if (!move_group && group_leader->ctx != ctx)
10636 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010637
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010638 /*
10639 * Only a group leader can be exclusive or pinned
10640 */
10641 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010642 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010643 }
10644
10645 if (output_event) {
10646 err = perf_event_set_output(event, output_event);
10647 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010648 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010649 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010650
Yann Droneauda21b0b32014-01-05 21:36:33 +010010651 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
10652 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010653 if (IS_ERR(event_file)) {
10654 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020010655 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010656 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040010657 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010658
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010659 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010010660 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
10661
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010662 if (gctx->task == TASK_TOMBSTONE) {
10663 err = -ESRCH;
10664 goto err_locked;
10665 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010010666
10667 /*
10668 * Check if we raced against another sys_perf_event_open() call
10669 * moving the software group underneath us.
10670 */
10671 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
10672 /*
10673 * If someone moved the group out from under us, check
10674 * if this new event wound up on the same ctx, if so
10675 * its the regular !move_group case, otherwise fail.
10676 */
10677 if (gctx != ctx) {
10678 err = -EINVAL;
10679 goto err_locked;
10680 } else {
10681 perf_event_ctx_unlock(group_leader, gctx);
10682 move_group = 0;
10683 }
10684 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010685 } else {
10686 mutex_lock(&ctx->mutex);
10687 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010688
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010689 if (ctx->task == TASK_TOMBSTONE) {
10690 err = -ESRCH;
10691 goto err_locked;
10692 }
10693
Peter Zijlstraa7239682015-09-09 19:06:33 +020010694 if (!perf_event_validate_size(event)) {
10695 err = -E2BIG;
10696 goto err_locked;
10697 }
10698
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010699 if (!task) {
10700 /*
10701 * Check if the @cpu we're creating an event for is online.
10702 *
10703 * We use the perf_cpu_context::ctx::mutex to serialize against
10704 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10705 */
10706 struct perf_cpu_context *cpuctx =
10707 container_of(ctx, struct perf_cpu_context, ctx);
10708
10709 if (!cpuctx->online) {
10710 err = -ENODEV;
10711 goto err_locked;
10712 }
10713 }
10714
10715
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010716 /*
10717 * Must be under the same ctx::mutex as perf_install_in_context(),
10718 * because we need to serialize with concurrent event creation.
10719 */
10720 if (!exclusive_event_installable(event, ctx)) {
10721 /* exclusive and group stuff are assumed mutually exclusive */
10722 WARN_ON_ONCE(move_group);
10723
10724 err = -EBUSY;
10725 goto err_locked;
10726 }
10727
10728 WARN_ON_ONCE(ctx->parent_ctx);
10729
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010730 /*
10731 * This is the point on no return; we cannot fail hereafter. This is
10732 * where we start modifying current state.
10733 */
10734
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010735 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010736 /*
10737 * See perf_event_ctx_lock() for comments on the details
10738 * of swizzling perf_event::ctx.
10739 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010740 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010010741 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010010742
Peter Zijlstraedb39592018-03-15 17:36:56 +010010743 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010744 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010745 put_ctx(gctx);
10746 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010747
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010748 /*
10749 * Wait for everybody to stop referencing the events through
10750 * the old lists, before installing it on new lists.
10751 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010752 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010753
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010754 /*
10755 * Install the group siblings before the group leader.
10756 *
10757 * Because a group leader will try and install the entire group
10758 * (through the sibling list, which is still in-tact), we can
10759 * end up with siblings installed in the wrong context.
10760 *
10761 * By installing siblings first we NO-OP because they're not
10762 * reachable through the group lists.
10763 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010010764 for_each_sibling_event(sibling, group_leader) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010765 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010010766 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010767 get_ctx(ctx);
10768 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010769
10770 /*
10771 * Removing from the context ends up with disabled
10772 * event. What we want here is event in the initial
10773 * startup state, ready to be add into new context.
10774 */
10775 perf_event__state_init(group_leader);
10776 perf_install_in_context(ctx, group_leader, group_leader->cpu);
10777 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010778 }
10779
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020010780 /*
10781 * Precalculate sample_data sizes; do while holding ctx::mutex such
10782 * that we're serialized against further additions and before
10783 * perf_install_in_context() which is the point the event is active and
10784 * can use these values.
10785 */
10786 perf_event__header_size(event);
10787 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010788
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010010789 event->owner = current;
10790
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080010791 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010792 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010793
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010794 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010795 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010796 mutex_unlock(&ctx->mutex);
10797
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010798 if (task) {
10799 mutex_unlock(&task->signal->cred_guard_mutex);
10800 put_task_struct(task);
10801 }
10802
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010803 mutex_lock(&current->perf_event_mutex);
10804 list_add_tail(&event->owner_entry, &current->perf_event_list);
10805 mutex_unlock(&current->perf_event_mutex);
10806
Peter Zijlstra8a495422010-05-27 15:47:49 +020010807 /*
10808 * Drop the reference on the group_event after placing the
10809 * new event on the sibling_list. This ensures destruction
10810 * of the group leader will find the pointer to itself in
10811 * perf_group_detach().
10812 */
Al Viro2903ff02012-08-28 12:52:22 -040010813 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010814 fd_install(event_fd, event_file);
10815 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010816
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010817err_locked:
10818 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010819 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010820 mutex_unlock(&ctx->mutex);
10821/* err_file: */
10822 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010823err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010824 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040010825 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010826err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010010827 /*
10828 * If event_file is set, the fput() above will have called ->release()
10829 * and that will take care of freeing the event.
10830 */
10831 if (!event_file)
10832 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010833err_cred:
10834 if (task)
10835 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010836err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020010837 if (task)
10838 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010839err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040010840 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010841err_fd:
10842 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010843 return err;
10844}
10845
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010846/**
10847 * perf_event_create_kernel_counter
10848 *
10849 * @attr: attributes of the counter to create
10850 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070010851 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010852 */
10853struct perf_event *
10854perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070010855 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010856 perf_overflow_handler_t overflow_handler,
10857 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010858{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010859 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010860 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010861 int err;
10862
10863 /*
10864 * Get the target context (task or percpu):
10865 */
10866
Avi Kivity4dc0da82011-06-29 18:42:35 +030010867 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010868 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010869 if (IS_ERR(event)) {
10870 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010871 goto err;
10872 }
10873
Jiri Olsaf8697762014-08-01 14:33:01 +020010874 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010875 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020010876
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010877 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010878 if (IS_ERR(ctx)) {
10879 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010880 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010881 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010882
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010883 WARN_ON_ONCE(ctx->parent_ctx);
10884 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010885 if (ctx->task == TASK_TOMBSTONE) {
10886 err = -ESRCH;
10887 goto err_unlock;
10888 }
10889
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010890 if (!task) {
10891 /*
10892 * Check if the @cpu we're creating an event for is online.
10893 *
10894 * We use the perf_cpu_context::ctx::mutex to serialize against
10895 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10896 */
10897 struct perf_cpu_context *cpuctx =
10898 container_of(ctx, struct perf_cpu_context, ctx);
10899 if (!cpuctx->online) {
10900 err = -ENODEV;
10901 goto err_unlock;
10902 }
10903 }
10904
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010905 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010906 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010907 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010908 }
10909
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010910 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010911 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010912 mutex_unlock(&ctx->mutex);
10913
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010914 return event;
10915
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010916err_unlock:
10917 mutex_unlock(&ctx->mutex);
10918 perf_unpin_context(ctx);
10919 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010920err_free:
10921 free_event(event);
10922err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010923 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010924}
10925EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10926
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010927void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10928{
10929 struct perf_event_context *src_ctx;
10930 struct perf_event_context *dst_ctx;
10931 struct perf_event *event, *tmp;
10932 LIST_HEAD(events);
10933
10934 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10935 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10936
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010937 /*
10938 * See perf_event_ctx_lock() for comments on the details
10939 * of swizzling perf_event::ctx.
10940 */
10941 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010942 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10943 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010944 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010945 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010946 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010947 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010948 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010949
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010950 /*
10951 * Wait for the events to quiesce before re-instating them.
10952 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010953 synchronize_rcu();
10954
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010955 /*
10956 * Re-instate events in 2 passes.
10957 *
10958 * Skip over group leaders and only install siblings on this first
10959 * pass, siblings will not get enabled without a leader, however a
10960 * leader will enable its siblings, even if those are still on the old
10961 * context.
10962 */
10963 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10964 if (event->group_leader == event)
10965 continue;
10966
10967 list_del(&event->migrate_entry);
10968 if (event->state >= PERF_EVENT_STATE_OFF)
10969 event->state = PERF_EVENT_STATE_INACTIVE;
10970 account_event_cpu(event, dst_cpu);
10971 perf_install_in_context(dst_ctx, event, dst_cpu);
10972 get_ctx(dst_ctx);
10973 }
10974
10975 /*
10976 * Once all the siblings are setup properly, install the group leaders
10977 * to make it go.
10978 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010979 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10980 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010981 if (event->state >= PERF_EVENT_STATE_OFF)
10982 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010983 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010984 perf_install_in_context(dst_ctx, event, dst_cpu);
10985 get_ctx(dst_ctx);
10986 }
10987 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010988 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010989}
10990EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10991
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010992static void sync_child_event(struct perf_event *child_event,
10993 struct task_struct *child)
10994{
10995 struct perf_event *parent_event = child_event->parent;
10996 u64 child_val;
10997
10998 if (child_event->attr.inherit_stat)
10999 perf_event_read_event(child_event, child);
11000
Peter Zijlstrab5e58792010-05-21 14:43:12 +020011001 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011002
11003 /*
11004 * Add back the child's count to the parent's count:
11005 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020011006 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011007 atomic64_add(child_event->total_time_enabled,
11008 &parent_event->child_total_time_enabled);
11009 atomic64_add(child_event->total_time_running,
11010 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011011}
11012
11013static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011014perf_event_exit_event(struct perf_event *child_event,
11015 struct perf_event_context *child_ctx,
11016 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011017{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011018 struct perf_event *parent_event = child_event->parent;
11019
Peter Zijlstra1903d502014-07-15 17:27:27 +020011020 /*
11021 * Do not destroy the 'original' grouping; because of the context
11022 * switch optimization the original events could've ended up in a
11023 * random child task.
11024 *
11025 * If we were to destroy the original group, all group related
11026 * operations would cease to function properly after this random
11027 * child dies.
11028 *
11029 * Do destroy all inherited groups, we don't care about those
11030 * and being thorough is better.
11031 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011032 raw_spin_lock_irq(&child_ctx->lock);
11033 WARN_ON_ONCE(child_ctx->is_active);
11034
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011035 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010011036 perf_group_detach(child_event);
11037 list_del_event(child_event, child_ctx);
Peter Zijlstra0d3d73a2017-09-05 14:16:28 +020011038 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010011039 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011040
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011041 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011042 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011043 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011044 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040011045 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011046 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011047 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011048 /*
11049 * Child events can be cleaned up.
11050 */
11051
11052 sync_child_event(child_event, child);
11053
11054 /*
11055 * Remove this event from the parent's list
11056 */
11057 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
11058 mutex_lock(&parent_event->child_mutex);
11059 list_del_init(&child_event->child_list);
11060 mutex_unlock(&parent_event->child_mutex);
11061
11062 /*
11063 * Kick perf_poll() for is_event_hup().
11064 */
11065 perf_event_wakeup(parent_event);
11066 free_event(child_event);
11067 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011068}
11069
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011070static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011071{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011072 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011073 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011074
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011075 WARN_ON_ONCE(child != current);
11076
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011077 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011078 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011079 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011080
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011081 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011082 * In order to reduce the amount of tricky in ctx tear-down, we hold
11083 * ctx::mutex over the entire thing. This serializes against almost
11084 * everything that wants to access the ctx.
11085 *
11086 * The exception is sys_perf_event_open() /
11087 * perf_event_create_kernel_count() which does find_get_context()
11088 * without ctx::mutex (it cannot because of the move_group double mutex
11089 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011090 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011091 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011092
11093 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011094 * In a single ctx::lock section, de-schedule the events and detach the
11095 * context from the task such that we cannot ever get it scheduled back
11096 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011097 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011098 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020011099 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011100
11101 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011102 * Now that the context is inactive, destroy the task <-> ctx relation
11103 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011104 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010011105 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
11106 put_ctx(child_ctx); /* cannot be last */
11107 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
11108 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011109
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011110 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010011111 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011112
Peter Zijlstra211de6e2014-09-30 19:23:08 +020011113 if (clone_ctx)
11114 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020011115
11116 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011117 * Report the task dead after unscheduling the events so that we
11118 * won't get any samples after PERF_RECORD_EXIT. We can however still
11119 * get a few PERF_RECORD_READ events.
11120 */
11121 perf_event_task(child, child_ctx, 0);
11122
Peter Zijlstraebf905f2014-05-29 19:00:24 +020011123 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010011124 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011125
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011126 mutex_unlock(&child_ctx->mutex);
11127
11128 put_ctx(child_ctx);
11129}
11130
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011131/*
11132 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020011133 *
11134 * Can be called with cred_guard_mutex held when called from
11135 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011136 */
11137void perf_event_exit_task(struct task_struct *child)
11138{
Peter Zijlstra88821352010-11-09 19:01:43 +010011139 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011140 int ctxn;
11141
Peter Zijlstra88821352010-11-09 19:01:43 +010011142 mutex_lock(&child->perf_event_mutex);
11143 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
11144 owner_entry) {
11145 list_del_init(&event->owner_entry);
11146
11147 /*
11148 * Ensure the list deletion is visible before we clear
11149 * the owner, closes a race against perf_release() where
11150 * we need to serialize on the owner->perf_event_mutex.
11151 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010011152 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010011153 }
11154 mutex_unlock(&child->perf_event_mutex);
11155
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011156 for_each_task_context_nr(ctxn)
11157 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010011158
11159 /*
11160 * The perf_event_exit_task_context calls perf_event_task
11161 * with child's task_ctx, which generates EXIT events for
11162 * child contexts and sets child->perf_event_ctxp[] to NULL.
11163 * At this point we need to send EXIT events to cpu contexts.
11164 */
11165 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011166}
11167
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011168static void perf_free_event(struct perf_event *event,
11169 struct perf_event_context *ctx)
11170{
11171 struct perf_event *parent = event->parent;
11172
11173 if (WARN_ON_ONCE(!parent))
11174 return;
11175
11176 mutex_lock(&parent->child_mutex);
11177 list_del_init(&event->child_list);
11178 mutex_unlock(&parent->child_mutex);
11179
Al Viroa6fa9412012-08-20 14:59:25 +010011180 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011181
Peter Zijlstra652884f2015-01-23 11:20:10 +010011182 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020011183 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011184 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010011185 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011186 free_event(event);
11187}
11188
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011189/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010011190 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011191 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010011192 *
11193 * Not all locks are strictly required, but take them anyway to be nice and
11194 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011195 */
11196void perf_event_free_task(struct task_struct *task)
11197{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011198 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011199 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011200 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011201
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011202 for_each_task_context_nr(ctxn) {
11203 ctx = task->perf_event_ctxp[ctxn];
11204 if (!ctx)
11205 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011206
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011207 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010011208 raw_spin_lock_irq(&ctx->lock);
11209 /*
11210 * Destroy the task <-> ctx relation and mark the context dead.
11211 *
11212 * This is important because even though the task hasn't been
11213 * exposed yet the context has been (through child_list).
11214 */
11215 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
11216 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
11217 put_task_struct(task); /* cannot be last */
11218 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011219
Peter Zijlstra15121c72017-03-16 13:47:50 +010011220 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011221 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011222
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011223 mutex_unlock(&ctx->mutex);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011224 put_ctx(ctx);
11225 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011226}
11227
Peter Zijlstra4e231c72010-09-09 21:01:59 +020011228void perf_event_delayed_put(struct task_struct *task)
11229{
11230 int ctxn;
11231
11232 for_each_task_context_nr(ctxn)
11233 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
11234}
11235
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011236struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000011237{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011238 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000011239
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011240 file = fget_raw(fd);
11241 if (!file)
11242 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000011243
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011244 if (file->f_op != &perf_fops) {
11245 fput(file);
11246 return ERR_PTR(-EBADF);
11247 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000011248
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080011249 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000011250}
11251
Yonghong Songf8d959a2018-05-24 11:21:08 -070011252const struct perf_event *perf_get_event(struct file *file)
11253{
11254 if (file->f_op != &perf_fops)
11255 return ERR_PTR(-EINVAL);
11256
11257 return file->private_data;
11258}
11259
Kaixu Xiaffe86902015-08-06 07:02:32 +000011260const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
11261{
11262 if (!event)
11263 return ERR_PTR(-EINVAL);
11264
11265 return &event->attr;
11266}
11267
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011268/*
Tobias Tefke788faab2018-07-09 12:57:15 +020011269 * Inherit an event from parent task to child task.
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011270 *
11271 * Returns:
11272 * - valid pointer on success
11273 * - NULL for orphaned events
11274 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011275 */
11276static struct perf_event *
11277inherit_event(struct perf_event *parent_event,
11278 struct task_struct *parent,
11279 struct perf_event_context *parent_ctx,
11280 struct task_struct *child,
11281 struct perf_event *group_leader,
11282 struct perf_event_context *child_ctx)
11283{
Peter Zijlstra8ca2bd42017-09-05 14:12:35 +020011284 enum perf_event_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011285 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020011286 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011287
11288 /*
11289 * Instead of creating recursive hierarchies of events,
11290 * we link inherited events back to the original parent,
11291 * which has a filp for sure, which we use as the reference
11292 * count:
11293 */
11294 if (parent_event->parent)
11295 parent_event = parent_event->parent;
11296
11297 child_event = perf_event_alloc(&parent_event->attr,
11298 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020011299 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011300 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000011301 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011302 if (IS_ERR(child_event))
11303 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010011304
Jiri Olsa313ccb92018-01-07 17:03:47 +010011305
11306 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
11307 !child_ctx->task_ctx_data) {
11308 struct pmu *pmu = child_event->pmu;
11309
11310 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
11311 GFP_KERNEL);
11312 if (!child_ctx->task_ctx_data) {
11313 free_event(child_event);
11314 return NULL;
11315 }
11316 }
11317
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020011318 /*
11319 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
11320 * must be under the same lock in order to serialize against
11321 * perf_event_release_kernel(), such that either we must observe
11322 * is_orphaned_event() or they will observe us on the child_list.
11323 */
11324 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020011325 if (is_orphaned_event(parent_event) ||
11326 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020011327 mutex_unlock(&parent_event->child_mutex);
Jiri Olsa313ccb92018-01-07 17:03:47 +010011328 /* task_ctx_data is freed with child_ctx */
Al Viroa6fa9412012-08-20 14:59:25 +010011329 free_event(child_event);
11330 return NULL;
11331 }
11332
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011333 get_ctx(child_ctx);
11334
11335 /*
11336 * Make the child state follow the state of the parent event,
11337 * not its attr.disabled bit. We hold the parent's mutex,
11338 * so we won't race with perf_event_{en, dis}able_family.
11339 */
Jiri Olsa1929def2014-09-12 13:18:27 +020011340 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011341 child_event->state = PERF_EVENT_STATE_INACTIVE;
11342 else
11343 child_event->state = PERF_EVENT_STATE_OFF;
11344
11345 if (parent_event->attr.freq) {
11346 u64 sample_period = parent_event->hw.sample_period;
11347 struct hw_perf_event *hwc = &child_event->hw;
11348
11349 hwc->sample_period = sample_period;
11350 hwc->last_period = sample_period;
11351
11352 local64_set(&hwc->period_left, sample_period);
11353 }
11354
11355 child_event->ctx = child_ctx;
11356 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030011357 child_event->overflow_handler_context
11358 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011359
11360 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020011361 * Precalculate sample_data sizes
11362 */
11363 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020011364 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020011365
11366 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011367 * Link it up in the child's context:
11368 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020011369 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011370 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020011371 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011372
11373 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011374 * Link this into the parent event's child list
11375 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011376 list_add_tail(&child_event->child_list, &parent_event->child_list);
11377 mutex_unlock(&parent_event->child_mutex);
11378
11379 return child_event;
11380}
11381
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011382/*
11383 * Inherits an event group.
11384 *
11385 * This will quietly suppress orphaned events; !inherit_event() is not an error.
11386 * This matches with perf_event_release_kernel() removing all child events.
11387 *
11388 * Returns:
11389 * - 0 on success
11390 * - <0 on error
11391 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011392static int inherit_group(struct perf_event *parent_event,
11393 struct task_struct *parent,
11394 struct perf_event_context *parent_ctx,
11395 struct task_struct *child,
11396 struct perf_event_context *child_ctx)
11397{
11398 struct perf_event *leader;
11399 struct perf_event *sub;
11400 struct perf_event *child_ctr;
11401
11402 leader = inherit_event(parent_event, parent, parent_ctx,
11403 child, NULL, child_ctx);
11404 if (IS_ERR(leader))
11405 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011406 /*
11407 * @leader can be NULL here because of is_orphaned_event(). In this
11408 * case inherit_event() will create individual events, similar to what
11409 * perf_group_detach() would do anyway.
11410 */
Peter Zijlstraedb39592018-03-15 17:36:56 +010011411 for_each_sibling_event(sub, parent_event) {
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020011412 child_ctr = inherit_event(sub, parent, parent_ctx,
11413 child, leader, child_ctx);
11414 if (IS_ERR(child_ctr))
11415 return PTR_ERR(child_ctr);
11416 }
11417 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011418}
11419
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010011420/*
11421 * Creates the child task context and tries to inherit the event-group.
11422 *
11423 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
11424 * inherited_all set when we 'fail' to inherit an orphaned event; this is
11425 * consistent with perf_event_release_kernel() removing all child events.
11426 *
11427 * Returns:
11428 * - 0 on success
11429 * - <0 on error
11430 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011431static int
11432inherit_task_group(struct perf_event *event, struct task_struct *parent,
11433 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011434 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011435 int *inherited_all)
11436{
11437 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011438 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011439
11440 if (!event->attr.inherit) {
11441 *inherited_all = 0;
11442 return 0;
11443 }
11444
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011445 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011446 if (!child_ctx) {
11447 /*
11448 * This is executed from the parent task context, so
11449 * inherit events that have been marked for cloning.
11450 * First allocate and initialize a context for the
11451 * child.
11452 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020011453 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011454 if (!child_ctx)
11455 return -ENOMEM;
11456
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011457 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011458 }
11459
11460 ret = inherit_group(event, parent, parent_ctx,
11461 child, child_ctx);
11462
11463 if (ret)
11464 *inherited_all = 0;
11465
11466 return ret;
11467}
11468
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011469/*
11470 * Initialize the perf_event context in task_struct
11471 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020011472static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011473{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011474 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011475 struct perf_event_context *cloned_ctx;
11476 struct perf_event *event;
11477 struct task_struct *parent = current;
11478 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011479 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011480 int ret = 0;
11481
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011482 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011483 return 0;
11484
11485 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011486 * If the parent's context is a clone, pin it so it won't get
11487 * swapped under us.
11488 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011489 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020011490 if (!parent_ctx)
11491 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011492
11493 /*
11494 * No need to check if parent_ctx != NULL here; since we saw
11495 * it non-NULL earlier, the only reason for it to become NULL
11496 * is if we exit, and since we're currently in the middle of
11497 * a fork we can't be exiting at the same time.
11498 */
11499
11500 /*
11501 * Lock the parent list. No need to lock the child - not PID
11502 * hashed yet and not running, so nobody can access it.
11503 */
11504 mutex_lock(&parent_ctx->mutex);
11505
11506 /*
11507 * We dont have to disable NMIs - we are only looking at
11508 * the list, not manipulating it:
11509 */
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010011510 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011511 ret = inherit_task_group(event, parent, parent_ctx,
11512 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011513 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011514 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011515 }
11516
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011517 /*
11518 * We can't hold ctx->lock when iterating the ->flexible_group list due
11519 * to allocations, but we need to prevent rotation because
11520 * rotate_ctx() will change the list from interrupt context.
11521 */
11522 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
11523 parent_ctx->rotate_disable = 1;
11524 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
11525
Peter Zijlstra6e6804d2017-11-13 14:28:41 +010011526 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011527 ret = inherit_task_group(event, parent, parent_ctx,
11528 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011529 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011530 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011531 }
11532
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011533 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
11534 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011535
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011536 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011537
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010011538 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011539 /*
11540 * Mark the child context as a clone of the parent
11541 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011542 *
11543 * Note that if the parent is a clone, the holding of
11544 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011545 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011546 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011547 if (cloned_ctx) {
11548 child_ctx->parent_ctx = cloned_ctx;
11549 child_ctx->parent_gen = parent_ctx->parent_gen;
11550 } else {
11551 child_ctx->parent_ctx = parent_ctx;
11552 child_ctx->parent_gen = parent_ctx->generation;
11553 }
11554 get_ctx(child_ctx->parent_ctx);
11555 }
11556
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011557 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011558out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011559 mutex_unlock(&parent_ctx->mutex);
11560
11561 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011562 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011563
11564 return ret;
11565}
11566
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011567/*
11568 * Initialize the perf_event context in task_struct
11569 */
11570int perf_event_init_task(struct task_struct *child)
11571{
11572 int ctxn, ret;
11573
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010011574 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
11575 mutex_init(&child->perf_event_mutex);
11576 INIT_LIST_HEAD(&child->perf_event_list);
11577
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011578 for_each_task_context_nr(ctxn) {
11579 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011580 if (ret) {
11581 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011582 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011583 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011584 }
11585
11586 return 0;
11587}
11588
Paul Mackerras220b1402010-03-10 20:45:52 +110011589static void __init perf_event_init_all_cpus(void)
11590{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011591 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110011592 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110011593
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011594 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
11595
Paul Mackerras220b1402010-03-10 20:45:52 +110011596 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011597 swhash = &per_cpu(swevent_htable, cpu);
11598 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000011599 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070011600
11601 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
11602 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011603
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080011604#ifdef CONFIG_CGROUP_PERF
11605 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
11606#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011607 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110011608 }
11609}
11610
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011611void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011612{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011613 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011614
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011615 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000011616 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011617 struct swevent_hlist *hlist;
11618
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011619 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
11620 WARN_ON(!hlist);
11621 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011622 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011623 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011624}
11625
Dave Young2965faa2015-09-09 15:38:55 -070011626#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011627static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011628{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011629 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011630 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
11631 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011632
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011633 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020011634 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011635 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011636 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011637 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011638}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011639
11640static void perf_event_exit_cpu_context(int cpu)
11641{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011642 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011643 struct perf_event_context *ctx;
11644 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011645
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011646 mutex_lock(&pmus_lock);
11647 list_for_each_entry(pmu, &pmus, entry) {
11648 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11649 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011650
11651 mutex_lock(&ctx->mutex);
11652 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011653 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011654 mutex_unlock(&ctx->mutex);
11655 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011656 cpumask_clear_cpu(cpu, perf_online_mask);
11657 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011658}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011659#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011660
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011661static void perf_event_exit_cpu_context(int cpu) { }
11662
11663#endif
11664
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011665int perf_event_init_cpu(unsigned int cpu)
11666{
11667 struct perf_cpu_context *cpuctx;
11668 struct perf_event_context *ctx;
11669 struct pmu *pmu;
11670
11671 perf_swevent_init_cpu(cpu);
11672
11673 mutex_lock(&pmus_lock);
11674 cpumask_set_cpu(cpu, perf_online_mask);
11675 list_for_each_entry(pmu, &pmus, entry) {
11676 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11677 ctx = &cpuctx->ctx;
11678
11679 mutex_lock(&ctx->mutex);
11680 cpuctx->online = 1;
11681 mutex_unlock(&ctx->mutex);
11682 }
11683 mutex_unlock(&pmus_lock);
11684
11685 return 0;
11686}
11687
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011688int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011689{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010011690 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011691 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011692}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011693
Peter Zijlstrac2774432010-12-08 15:29:02 +010011694static int
11695perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
11696{
11697 int cpu;
11698
11699 for_each_online_cpu(cpu)
11700 perf_event_exit_cpu(cpu);
11701
11702 return NOTIFY_OK;
11703}
11704
11705/*
11706 * Run the perf reboot notifier at the very last possible moment so that
11707 * the generic watchdog code runs as long as possible.
11708 */
11709static struct notifier_block perf_reboot_notifier = {
11710 .notifier_call = perf_reboot,
11711 .priority = INT_MIN,
11712};
11713
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011714void __init perf_event_init(void)
11715{
Jason Wessel3c502e72010-11-04 17:33:01 -050011716 int ret;
11717
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011718 idr_init(&pmu_idr);
11719
Paul Mackerras220b1402010-03-10 20:45:52 +110011720 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011721 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011722 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
11723 perf_pmu_register(&perf_cpu_clock, NULL, -1);
11724 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011725 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011726 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010011727 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050011728
11729 ret = init_hw_breakpoint();
11730 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020011731
Jiri Olsab01c3a02012-03-23 15:41:20 +010011732 /*
11733 * Build time assertion that we keep the data_head at the intended
11734 * location. IOW, validation we got the __reserved[] size right.
11735 */
11736 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
11737 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011738}
Peter Zijlstraabe43402010-11-17 23:17:37 +010011739
Cody P Schaferfd979c02015-01-30 13:45:57 -080011740ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
11741 char *page)
11742{
11743 struct perf_pmu_events_attr *pmu_attr =
11744 container_of(attr, struct perf_pmu_events_attr, attr);
11745
11746 if (pmu_attr->event_str)
11747 return sprintf(page, "%s\n", pmu_attr->event_str);
11748
11749 return 0;
11750}
Thomas Gleixner675965b2016-02-22 22:19:27 +000011751EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080011752
Peter Zijlstraabe43402010-11-17 23:17:37 +010011753static int __init perf_event_sysfs_init(void)
11754{
11755 struct pmu *pmu;
11756 int ret;
11757
11758 mutex_lock(&pmus_lock);
11759
11760 ret = bus_register(&pmu_bus);
11761 if (ret)
11762 goto unlock;
11763
11764 list_for_each_entry(pmu, &pmus, entry) {
11765 if (!pmu->name || pmu->type < 0)
11766 continue;
11767
11768 ret = pmu_dev_alloc(pmu);
11769 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
11770 }
11771 pmu_bus_running = 1;
11772 ret = 0;
11773
11774unlock:
11775 mutex_unlock(&pmus_lock);
11776
11777 return ret;
11778}
11779device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011780
11781#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040011782static struct cgroup_subsys_state *
11783perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011784{
11785 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020011786
Li Zefan1b15d052011-03-03 14:26:06 +080011787 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011788 if (!jc)
11789 return ERR_PTR(-ENOMEM);
11790
Stephane Eraniane5d13672011-02-14 11:20:01 +020011791 jc->info = alloc_percpu(struct perf_cgroup_info);
11792 if (!jc->info) {
11793 kfree(jc);
11794 return ERR_PTR(-ENOMEM);
11795 }
11796
Stephane Eraniane5d13672011-02-14 11:20:01 +020011797 return &jc->css;
11798}
11799
Tejun Heoeb954192013-08-08 20:11:23 -040011800static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011801{
Tejun Heoeb954192013-08-08 20:11:23 -040011802 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
11803
Stephane Eraniane5d13672011-02-14 11:20:01 +020011804 free_percpu(jc->info);
11805 kfree(jc);
11806}
11807
11808static int __perf_cgroup_move(void *info)
11809{
11810 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011811 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011812 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011813 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011814 return 0;
11815}
11816
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011817static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011818{
Tejun Heobb9d97b2011-12-12 18:12:21 -080011819 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011820 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080011821
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011822 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080011823 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011824}
11825
Tejun Heo073219e2014-02-08 10:36:58 -050011826struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080011827 .css_alloc = perf_cgroup_css_alloc,
11828 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080011829 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050011830 /*
11831 * Implicitly enable on dfl hierarchy so that perf events can
11832 * always be filtered by cgroup2 path as long as perf_event
11833 * controller is not mounted on a legacy hierarchy.
11834 */
11835 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040011836 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020011837};
11838#endif /* CONFIG_CGROUP_PERF */