blob: 0f34f2a47eb6f6fa86030f60472dcc7f3cf0e04a [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
212 WARN_ON_ONCE(!irqs_disabled());
213
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
309 WARN_ON_ONCE(!irqs_disabled());
310
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
Stephane Eranian9e630202013-04-03 14:21:33 +0200433static int perf_rotate_context(struct perf_cpu_context *cpuctx);
434
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
Stephane Eraniane5d13672011-02-14 11:20:01 +0200585#ifdef CONFIG_CGROUP_PERF
586
Stephane Eraniane5d13672011-02-14 11:20:01 +0200587static inline bool
588perf_cgroup_match(struct perf_event *event)
589{
590 struct perf_event_context *ctx = event->ctx;
591 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
592
Tejun Heoef824fa2013-04-08 19:00:38 -0700593 /* @event doesn't care about cgroup */
594 if (!event->cgrp)
595 return true;
596
597 /* wants specific cgroup scope but @cpuctx isn't associated with any */
598 if (!cpuctx->cgrp)
599 return false;
600
601 /*
602 * Cgroup scoping is recursive. An event enabled for a cgroup is
603 * also enabled for all its descendant cgroups. If @cpuctx's
604 * cgroup is a descendant of @event's (the test covers identity
605 * case), it's a match.
606 */
607 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
608 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200609}
610
Stephane Eraniane5d13672011-02-14 11:20:01 +0200611static inline void perf_detach_cgroup(struct perf_event *event)
612{
Zefan Li4e2ba652014-09-19 16:53:14 +0800613 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200614 event->cgrp = NULL;
615}
616
617static inline int is_cgroup_event(struct perf_event *event)
618{
619 return event->cgrp != NULL;
620}
621
622static inline u64 perf_cgroup_event_time(struct perf_event *event)
623{
624 struct perf_cgroup_info *t;
625
626 t = per_cpu_ptr(event->cgrp->info, event->cpu);
627 return t->time;
628}
629
630static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
631{
632 struct perf_cgroup_info *info;
633 u64 now;
634
635 now = perf_clock();
636
637 info = this_cpu_ptr(cgrp->info);
638
639 info->time += now - info->timestamp;
640 info->timestamp = now;
641}
642
643static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
644{
645 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
646 if (cgrp_out)
647 __update_cgrp_time(cgrp_out);
648}
649
650static inline void update_cgrp_time_from_event(struct perf_event *event)
651{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200652 struct perf_cgroup *cgrp;
653
Stephane Eraniane5d13672011-02-14 11:20:01 +0200654 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200655 * ensure we access cgroup data only when needed and
656 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200657 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200658 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200659 return;
660
Stephane Eranian614e4c42015-11-12 11:00:04 +0100661 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200662 /*
663 * Do not update time when cgroup is not active
664 */
leilei.line6a520332017-09-29 13:54:44 +0800665 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200666 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200667}
668
669static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200670perf_cgroup_set_timestamp(struct task_struct *task,
671 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200672{
673 struct perf_cgroup *cgrp;
674 struct perf_cgroup_info *info;
675
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200676 /*
677 * ctx->lock held by caller
678 * ensure we do not access cgroup data
679 * unless we have the cgroup pinned (css_get)
680 */
681 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200682 return;
683
Stephane Eranian614e4c42015-11-12 11:00:04 +0100684 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200685 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200686 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200687}
688
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800689static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
690
Stephane Eraniane5d13672011-02-14 11:20:01 +0200691#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
692#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
693
694/*
695 * reschedule events based on the cgroup constraint of task.
696 *
697 * mode SWOUT : schedule out everything
698 * mode SWIN : schedule in based on cgroup for next
699 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800700static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200701{
702 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800703 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200704 unsigned long flags;
705
706 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800707 * Disable interrupts and preemption to avoid this CPU's
708 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200709 */
710 local_irq_save(flags);
711
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800712 list = this_cpu_ptr(&cgrp_cpuctx_list);
713 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
714 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200715
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800716 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
717 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200718
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800719 if (mode & PERF_CGROUP_SWOUT) {
720 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
721 /*
722 * must not be done before ctxswout due
723 * to event_filter_match() in event_sched_out()
724 */
725 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200726 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800727
728 if (mode & PERF_CGROUP_SWIN) {
729 WARN_ON_ONCE(cpuctx->cgrp);
730 /*
731 * set cgrp before ctxsw in to allow
732 * event_filter_match() to not have to pass
733 * task around
734 * we pass the cpuctx->ctx to perf_cgroup_from_task()
735 * because cgorup events are only per-cpu
736 */
737 cpuctx->cgrp = perf_cgroup_from_task(task,
738 &cpuctx->ctx);
739 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
740 }
741 perf_pmu_enable(cpuctx->ctx.pmu);
742 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200743 }
744
Stephane Eraniane5d13672011-02-14 11:20:01 +0200745 local_irq_restore(flags);
746}
747
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200748static inline void perf_cgroup_sched_out(struct task_struct *task,
749 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200750{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200751 struct perf_cgroup *cgrp1;
752 struct perf_cgroup *cgrp2 = NULL;
753
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100754 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200755 /*
756 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100757 * we do not need to pass the ctx here because we know
758 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200759 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100760 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100761 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200762
763 /*
764 * only schedule out current cgroup events if we know
765 * that we are switching to a different cgroup. Otherwise,
766 * do no touch the cgroup events.
767 */
768 if (cgrp1 != cgrp2)
769 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100770
771 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200772}
773
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200774static inline void perf_cgroup_sched_in(struct task_struct *prev,
775 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200776{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200777 struct perf_cgroup *cgrp1;
778 struct perf_cgroup *cgrp2 = NULL;
779
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100780 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200781 /*
782 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100783 * we do not need to pass the ctx here because we know
784 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200785 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100786 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100787 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200788
789 /*
790 * only need to schedule in cgroup events if we are changing
791 * cgroup during ctxsw. Cgroup events were not scheduled
792 * out of ctxsw out if that was not the case.
793 */
794 if (cgrp1 != cgrp2)
795 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100796
797 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200798}
799
800static inline int perf_cgroup_connect(int fd, struct perf_event *event,
801 struct perf_event_attr *attr,
802 struct perf_event *group_leader)
803{
804 struct perf_cgroup *cgrp;
805 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400806 struct fd f = fdget(fd);
807 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200808
Al Viro2903ff02012-08-28 12:52:22 -0400809 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200810 return -EBADF;
811
Al Virob5830432014-10-31 01:22:04 -0400812 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400813 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800814 if (IS_ERR(css)) {
815 ret = PTR_ERR(css);
816 goto out;
817 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200818
819 cgrp = container_of(css, struct perf_cgroup, css);
820 event->cgrp = cgrp;
821
822 /*
823 * all events in a group must monitor
824 * the same cgroup because a task belongs
825 * to only one perf cgroup at a time
826 */
827 if (group_leader && group_leader->cgrp != cgrp) {
828 perf_detach_cgroup(event);
829 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200830 }
Li Zefan3db272c2011-03-03 14:25:37 +0800831out:
Al Viro2903ff02012-08-28 12:52:22 -0400832 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200833 return ret;
834}
835
836static inline void
837perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
838{
839 struct perf_cgroup_info *t;
840 t = per_cpu_ptr(event->cgrp->info, event->cpu);
841 event->shadow_ctx_time = now - t->timestamp;
842}
843
844static inline void
845perf_cgroup_defer_enabled(struct perf_event *event)
846{
847 /*
848 * when the current task's perf cgroup does not match
849 * the event's, we need to remember to call the
850 * perf_mark_enable() function the first time a task with
851 * a matching perf cgroup is scheduled in.
852 */
853 if (is_cgroup_event(event) && !perf_cgroup_match(event))
854 event->cgrp_defer_enabled = 1;
855}
856
857static inline void
858perf_cgroup_mark_enabled(struct perf_event *event,
859 struct perf_event_context *ctx)
860{
861 struct perf_event *sub;
862 u64 tstamp = perf_event_time(event);
863
864 if (!event->cgrp_defer_enabled)
865 return;
866
867 event->cgrp_defer_enabled = 0;
868
869 event->tstamp_enabled = tstamp - event->total_time_enabled;
870 list_for_each_entry(sub, &event->sibling_list, group_entry) {
871 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
872 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
873 sub->cgrp_defer_enabled = 0;
874 }
875 }
876}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700877
878/*
879 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
880 * cleared when last cgroup event is removed.
881 */
882static inline void
883list_update_cgroup_event(struct perf_event *event,
884 struct perf_event_context *ctx, bool add)
885{
886 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800887 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700888
889 if (!is_cgroup_event(event))
890 return;
891
892 if (add && ctx->nr_cgroups++)
893 return;
894 else if (!add && --ctx->nr_cgroups)
895 return;
896 /*
897 * Because cgroup events are always per-cpu events,
898 * this will always be called from the right CPU.
899 */
900 cpuctx = __get_cpu_context(ctx);
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800901 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
902 /* cpuctx->cgrp is NULL unless a cgroup event is active in this CPU .*/
903 if (add) {
904 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
905 if (perf_cgroup_from_task(current, ctx) == event->cgrp)
906 cpuctx->cgrp = event->cgrp;
907 } else {
908 list_del(cpuctx_entry);
David Carrillo-Cisneros8fc31ce2016-12-04 00:46:17 -0800909 cpuctx->cgrp = NULL;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800910 }
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700911}
912
Stephane Eraniane5d13672011-02-14 11:20:01 +0200913#else /* !CONFIG_CGROUP_PERF */
914
915static inline bool
916perf_cgroup_match(struct perf_event *event)
917{
918 return true;
919}
920
921static inline void perf_detach_cgroup(struct perf_event *event)
922{}
923
924static inline int is_cgroup_event(struct perf_event *event)
925{
926 return 0;
927}
928
Stephane Eraniane5d13672011-02-14 11:20:01 +0200929static inline void update_cgrp_time_from_event(struct perf_event *event)
930{
931}
932
933static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
934{
935}
936
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200937static inline void perf_cgroup_sched_out(struct task_struct *task,
938 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200939{
940}
941
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200942static inline void perf_cgroup_sched_in(struct task_struct *prev,
943 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200944{
945}
946
947static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
948 struct perf_event_attr *attr,
949 struct perf_event *group_leader)
950{
951 return -EINVAL;
952}
953
954static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200955perf_cgroup_set_timestamp(struct task_struct *task,
956 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200957{
958}
959
960void
961perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
962{
963}
964
965static inline void
966perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
967{
968}
969
970static inline u64 perf_cgroup_event_time(struct perf_event *event)
971{
972 return 0;
973}
974
975static inline void
976perf_cgroup_defer_enabled(struct perf_event *event)
977{
978}
979
980static inline void
981perf_cgroup_mark_enabled(struct perf_event *event,
982 struct perf_event_context *ctx)
983{
984}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700985
986static inline void
987list_update_cgroup_event(struct perf_event *event,
988 struct perf_event_context *ctx, bool add)
989{
990}
991
Stephane Eraniane5d13672011-02-14 11:20:01 +0200992#endif
993
Stephane Eranian9e630202013-04-03 14:21:33 +0200994/*
995 * set default to be dependent on timer tick just
996 * like original code
997 */
998#define PERF_CPU_HRTIMER (1000 / HZ)
999/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001000 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001001 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001002static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001003{
1004 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001005 int rotations = 0;
1006
1007 WARN_ON(!irqs_disabled());
1008
1009 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001010 rotations = perf_rotate_context(cpuctx);
1011
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001012 raw_spin_lock(&cpuctx->hrtimer_lock);
1013 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001014 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001015 else
1016 cpuctx->hrtimer_active = 0;
1017 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001018
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001019 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001020}
1021
Peter Zijlstra272325c2015-04-15 11:41:58 +02001022static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001023{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001024 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001025 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001026 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001027
1028 /* no multiplexing needed for SW PMU */
1029 if (pmu->task_ctx_nr == perf_sw_context)
1030 return;
1031
Stephane Eranian62b85632013-04-03 14:21:34 +02001032 /*
1033 * check default is sane, if not set then force to
1034 * default interval (1/tick)
1035 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001036 interval = pmu->hrtimer_interval_ms;
1037 if (interval < 1)
1038 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001039
Peter Zijlstra272325c2015-04-15 11:41:58 +02001040 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001041
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001042 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1043 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001044 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001045}
1046
Peter Zijlstra272325c2015-04-15 11:41:58 +02001047static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001048{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001049 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001050 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001051 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001052
1053 /* not for SW PMU */
1054 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001055 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001056
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001057 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1058 if (!cpuctx->hrtimer_active) {
1059 cpuctx->hrtimer_active = 1;
1060 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1061 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1062 }
1063 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001064
Peter Zijlstra272325c2015-04-15 11:41:58 +02001065 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001066}
1067
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001068void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001069{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001070 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1071 if (!(*count)++)
1072 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001073}
1074
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001075void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001076{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001077 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1078 if (!--(*count))
1079 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001080}
1081
Mark Rutland2fde4f92015-01-07 15:01:54 +00001082static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001083
1084/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001085 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1086 * perf_event_task_tick() are fully serialized because they're strictly cpu
1087 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1088 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001089 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001090static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001091{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001092 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001093
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001094 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001095
Mark Rutland2fde4f92015-01-07 15:01:54 +00001096 WARN_ON(!list_empty(&ctx->active_ctx_list));
1097
1098 list_add(&ctx->active_ctx_list, head);
1099}
1100
1101static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1102{
1103 WARN_ON(!irqs_disabled());
1104
1105 WARN_ON(list_empty(&ctx->active_ctx_list));
1106
1107 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108}
1109
1110static void get_ctx(struct perf_event_context *ctx)
1111{
1112 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1113}
1114
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001115static void free_ctx(struct rcu_head *head)
1116{
1117 struct perf_event_context *ctx;
1118
1119 ctx = container_of(head, struct perf_event_context, rcu_head);
1120 kfree(ctx->task_ctx_data);
1121 kfree(ctx);
1122}
1123
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001124static void put_ctx(struct perf_event_context *ctx)
1125{
1126 if (atomic_dec_and_test(&ctx->refcount)) {
1127 if (ctx->parent_ctx)
1128 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001129 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001130 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001131 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001132 }
1133}
1134
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001135/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001136 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1137 * perf_pmu_migrate_context() we need some magic.
1138 *
1139 * Those places that change perf_event::ctx will hold both
1140 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1141 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001142 * Lock ordering is by mutex address. There are two other sites where
1143 * perf_event_context::mutex nests and those are:
1144 *
1145 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001146 * perf_event_exit_event()
1147 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001148 *
1149 * - perf_event_init_context() [ parent, 0 ]
1150 * inherit_task_group()
1151 * inherit_group()
1152 * inherit_event()
1153 * perf_event_alloc()
1154 * perf_init_event()
1155 * perf_try_init_event() [ child , 1 ]
1156 *
1157 * While it appears there is an obvious deadlock here -- the parent and child
1158 * nesting levels are inverted between the two. This is in fact safe because
1159 * life-time rules separate them. That is an exiting task cannot fork, and a
1160 * spawning task cannot (yet) exit.
1161 *
1162 * But remember that that these are parent<->child context relations, and
1163 * migration does not affect children, therefore these two orderings should not
1164 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001165 *
1166 * The change in perf_event::ctx does not affect children (as claimed above)
1167 * because the sys_perf_event_open() case will install a new event and break
1168 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1169 * concerned with cpuctx and that doesn't have children.
1170 *
1171 * The places that change perf_event::ctx will issue:
1172 *
1173 * perf_remove_from_context();
1174 * synchronize_rcu();
1175 * perf_install_in_context();
1176 *
1177 * to affect the change. The remove_from_context() + synchronize_rcu() should
1178 * quiesce the event, after which we can install it in the new location. This
1179 * means that only external vectors (perf_fops, prctl) can perturb the event
1180 * while in transit. Therefore all such accessors should also acquire
1181 * perf_event_context::mutex to serialize against this.
1182 *
1183 * However; because event->ctx can change while we're waiting to acquire
1184 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1185 * function.
1186 *
1187 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001188 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001189 * task_struct::perf_event_mutex
1190 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001191 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001192 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001193 * perf_event::mmap_mutex
1194 * mmap_sem
1195 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001196static struct perf_event_context *
1197perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001198{
1199 struct perf_event_context *ctx;
1200
1201again:
1202 rcu_read_lock();
1203 ctx = ACCESS_ONCE(event->ctx);
1204 if (!atomic_inc_not_zero(&ctx->refcount)) {
1205 rcu_read_unlock();
1206 goto again;
1207 }
1208 rcu_read_unlock();
1209
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001210 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001211 if (event->ctx != ctx) {
1212 mutex_unlock(&ctx->mutex);
1213 put_ctx(ctx);
1214 goto again;
1215 }
1216
1217 return ctx;
1218}
1219
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001220static inline struct perf_event_context *
1221perf_event_ctx_lock(struct perf_event *event)
1222{
1223 return perf_event_ctx_lock_nested(event, 0);
1224}
1225
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001226static void perf_event_ctx_unlock(struct perf_event *event,
1227 struct perf_event_context *ctx)
1228{
1229 mutex_unlock(&ctx->mutex);
1230 put_ctx(ctx);
1231}
1232
1233/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001234 * This must be done under the ctx->lock, such as to serialize against
1235 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1236 * calling scheduler related locks and ctx->lock nests inside those.
1237 */
1238static __must_check struct perf_event_context *
1239unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001240{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001241 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1242
1243 lockdep_assert_held(&ctx->lock);
1244
1245 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001246 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001247 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001248
1249 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001250}
1251
Oleg Nesterov1d953112017-08-22 17:59:28 +02001252static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1253 enum pid_type type)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001254{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001255 u32 nr;
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001256 /*
1257 * only top level events have the pid namespace they were created in
1258 */
1259 if (event->parent)
1260 event = event->parent;
1261
Oleg Nesterov1d953112017-08-22 17:59:28 +02001262 nr = __task_pid_nr_ns(p, type, event->ns);
1263 /* avoid -1 if it is idle thread or runs in another ns */
1264 if (!nr && !pid_alive(p))
1265 nr = -1;
1266 return nr;
1267}
1268
1269static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1270{
1271 return perf_event_pid_type(event, p, __PIDTYPE_TGID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001272}
1273
1274static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1275{
Oleg Nesterov1d953112017-08-22 17:59:28 +02001276 return perf_event_pid_type(event, p, PIDTYPE_PID);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001277}
1278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001279/*
1280 * If we inherit events we want to return the parent event id
1281 * to userspace.
1282 */
1283static u64 primary_event_id(struct perf_event *event)
1284{
1285 u64 id = event->id;
1286
1287 if (event->parent)
1288 id = event->parent->id;
1289
1290 return id;
1291}
1292
1293/*
1294 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001295 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296 * This has to cope with with the fact that until it is locked,
1297 * the context could get moved to another task.
1298 */
1299static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001300perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001301{
1302 struct perf_event_context *ctx;
1303
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001304retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001305 /*
1306 * One of the few rules of preemptible RCU is that one cannot do
1307 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001308 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001309 * rcu_read_unlock_special().
1310 *
1311 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001312 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001313 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001314 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001315 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001316 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001317 if (ctx) {
1318 /*
1319 * If this context is a clone of another, it might
1320 * get swapped for another underneath us by
1321 * perf_event_task_sched_out, though the
1322 * rcu_read_lock() protects us from any context
1323 * getting freed. Lock the context and check if it
1324 * got swapped before we could get the lock, and retry
1325 * if so. If we locked the right context, then it
1326 * can't get swapped on us any more.
1327 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001328 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001329 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001330 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001331 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001332 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001333 goto retry;
1334 }
1335
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001336 if (ctx->task == TASK_TOMBSTONE ||
1337 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001338 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001339 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001340 } else {
1341 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001342 }
1343 }
1344 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001345 if (!ctx)
1346 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001347 return ctx;
1348}
1349
1350/*
1351 * Get the context for a task and increment its pin_count so it
1352 * can't get swapped to another task. This also increments its
1353 * reference count so that the context can't get freed.
1354 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001355static struct perf_event_context *
1356perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001357{
1358 struct perf_event_context *ctx;
1359 unsigned long flags;
1360
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001361 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001362 if (ctx) {
1363 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001364 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001365 }
1366 return ctx;
1367}
1368
1369static void perf_unpin_context(struct perf_event_context *ctx)
1370{
1371 unsigned long flags;
1372
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001373 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001374 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001375 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001376}
1377
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001378/*
1379 * Update the record of the current time in a context.
1380 */
1381static void update_context_time(struct perf_event_context *ctx)
1382{
1383 u64 now = perf_clock();
1384
1385 ctx->time += now - ctx->timestamp;
1386 ctx->timestamp = now;
1387}
1388
Stephane Eranian41587552011-01-03 18:20:01 +02001389static u64 perf_event_time(struct perf_event *event)
1390{
1391 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001392
1393 if (is_cgroup_event(event))
1394 return perf_cgroup_event_time(event);
1395
Stephane Eranian41587552011-01-03 18:20:01 +02001396 return ctx ? ctx->time : 0;
1397}
1398
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001399/*
1400 * Update the total_time_enabled and total_time_running fields for a event.
1401 */
1402static void update_event_times(struct perf_event *event)
1403{
1404 struct perf_event_context *ctx = event->ctx;
1405 u64 run_end;
1406
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001407 lockdep_assert_held(&ctx->lock);
1408
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001409 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1410 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1411 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001412
Stephane Eraniane5d13672011-02-14 11:20:01 +02001413 /*
1414 * in cgroup mode, time_enabled represents
1415 * the time the event was enabled AND active
1416 * tasks were in the monitored cgroup. This is
1417 * independent of the activity of the context as
1418 * there may be a mix of cgroup and non-cgroup events.
1419 *
1420 * That is why we treat cgroup events differently
1421 * here.
1422 */
1423 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001424 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001425 else if (ctx->is_active)
1426 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001427 else
1428 run_end = event->tstamp_stopped;
1429
1430 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001431
1432 if (event->state == PERF_EVENT_STATE_INACTIVE)
1433 run_end = event->tstamp_stopped;
1434 else
Stephane Eranian41587552011-01-03 18:20:01 +02001435 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001436
1437 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001438
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001439}
1440
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001441/*
1442 * Update total_time_enabled and total_time_running for all events in a group.
1443 */
1444static void update_group_times(struct perf_event *leader)
1445{
1446 struct perf_event *event;
1447
1448 update_event_times(leader);
1449 list_for_each_entry(event, &leader->sibling_list, group_entry)
1450 update_event_times(event);
1451}
1452
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001453static enum event_type_t get_event_type(struct perf_event *event)
1454{
1455 struct perf_event_context *ctx = event->ctx;
1456 enum event_type_t event_type;
1457
1458 lockdep_assert_held(&ctx->lock);
1459
Alexander Shishkin3bda69c2017-07-18 14:08:34 +03001460 /*
1461 * It's 'group type', really, because if our group leader is
1462 * pinned, so are we.
1463 */
1464 if (event->group_leader != event)
1465 event = event->group_leader;
1466
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001467 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1468 if (!ctx->task)
1469 event_type |= EVENT_CPU;
1470
1471 return event_type;
1472}
1473
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001474static struct list_head *
1475ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1476{
1477 if (event->attr.pinned)
1478 return &ctx->pinned_groups;
1479 else
1480 return &ctx->flexible_groups;
1481}
1482
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001483/*
1484 * Add a event from the lists for its context.
1485 * Must be called with ctx->mutex and ctx->lock held.
1486 */
1487static void
1488list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1489{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001490 lockdep_assert_held(&ctx->lock);
1491
Peter Zijlstra8a495422010-05-27 15:47:49 +02001492 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1493 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494
1495 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001496 * If we're a stand alone event or group leader, we go to the context
1497 * list, group events are kept attached to the group so that
1498 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001499 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001500 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001501 struct list_head *list;
1502
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001503 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001504
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001505 list = ctx_group_list(event, ctx);
1506 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001507 }
1508
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001509 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001510
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511 list_add_rcu(&event->event_entry, &ctx->event_list);
1512 ctx->nr_events++;
1513 if (event->attr.inherit_stat)
1514 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001515
1516 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001517}
1518
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001519/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001520 * Initialize event state based on the perf_event_attr::disabled.
1521 */
1522static inline void perf_event__state_init(struct perf_event *event)
1523{
1524 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1525 PERF_EVENT_STATE_INACTIVE;
1526}
1527
Peter Zijlstraa7239682015-09-09 19:06:33 +02001528static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001529{
1530 int entry = sizeof(u64); /* value */
1531 int size = 0;
1532 int nr = 1;
1533
1534 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1535 size += sizeof(u64);
1536
1537 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1538 size += sizeof(u64);
1539
1540 if (event->attr.read_format & PERF_FORMAT_ID)
1541 entry += sizeof(u64);
1542
1543 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001544 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001545 size += sizeof(u64);
1546 }
1547
1548 size += entry * nr;
1549 event->read_size = size;
1550}
1551
Peter Zijlstraa7239682015-09-09 19:06:33 +02001552static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001553{
1554 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001555 u16 size = 0;
1556
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001557 if (sample_type & PERF_SAMPLE_IP)
1558 size += sizeof(data->ip);
1559
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001560 if (sample_type & PERF_SAMPLE_ADDR)
1561 size += sizeof(data->addr);
1562
1563 if (sample_type & PERF_SAMPLE_PERIOD)
1564 size += sizeof(data->period);
1565
Andi Kleenc3feedf2013-01-24 16:10:28 +01001566 if (sample_type & PERF_SAMPLE_WEIGHT)
1567 size += sizeof(data->weight);
1568
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001569 if (sample_type & PERF_SAMPLE_READ)
1570 size += event->read_size;
1571
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001572 if (sample_type & PERF_SAMPLE_DATA_SRC)
1573 size += sizeof(data->data_src.val);
1574
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001575 if (sample_type & PERF_SAMPLE_TRANSACTION)
1576 size += sizeof(data->txn);
1577
Kan Liangfc7ce9c2017-08-28 20:52:49 -04001578 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1579 size += sizeof(data->phys_addr);
1580
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001581 event->header_size = size;
1582}
1583
Peter Zijlstraa7239682015-09-09 19:06:33 +02001584/*
1585 * Called at perf_event creation and when events are attached/detached from a
1586 * group.
1587 */
1588static void perf_event__header_size(struct perf_event *event)
1589{
1590 __perf_event_read_size(event,
1591 event->group_leader->nr_siblings);
1592 __perf_event_header_size(event, event->attr.sample_type);
1593}
1594
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001595static void perf_event__id_header_size(struct perf_event *event)
1596{
1597 struct perf_sample_data *data;
1598 u64 sample_type = event->attr.sample_type;
1599 u16 size = 0;
1600
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001601 if (sample_type & PERF_SAMPLE_TID)
1602 size += sizeof(data->tid_entry);
1603
1604 if (sample_type & PERF_SAMPLE_TIME)
1605 size += sizeof(data->time);
1606
Adrian Hunterff3d5272013-08-27 11:23:07 +03001607 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1608 size += sizeof(data->id);
1609
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001610 if (sample_type & PERF_SAMPLE_ID)
1611 size += sizeof(data->id);
1612
1613 if (sample_type & PERF_SAMPLE_STREAM_ID)
1614 size += sizeof(data->stream_id);
1615
1616 if (sample_type & PERF_SAMPLE_CPU)
1617 size += sizeof(data->cpu_entry);
1618
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001619 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001620}
1621
Peter Zijlstraa7239682015-09-09 19:06:33 +02001622static bool perf_event_validate_size(struct perf_event *event)
1623{
1624 /*
1625 * The values computed here will be over-written when we actually
1626 * attach the event.
1627 */
1628 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1629 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1630 perf_event__id_header_size(event);
1631
1632 /*
1633 * Sum the lot; should not exceed the 64k limit we have on records.
1634 * Conservative limit to allow for callchains and other variable fields.
1635 */
1636 if (event->read_size + event->header_size +
1637 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1638 return false;
1639
1640 return true;
1641}
1642
Peter Zijlstra8a495422010-05-27 15:47:49 +02001643static void perf_group_attach(struct perf_event *event)
1644{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001645 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001646
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001647 lockdep_assert_held(&event->ctx->lock);
1648
Peter Zijlstra74c33372010-10-15 11:40:29 +02001649 /*
1650 * We can have double attach due to group movement in perf_event_open.
1651 */
1652 if (event->attach_state & PERF_ATTACH_GROUP)
1653 return;
1654
Peter Zijlstra8a495422010-05-27 15:47:49 +02001655 event->attach_state |= PERF_ATTACH_GROUP;
1656
1657 if (group_leader == event)
1658 return;
1659
Peter Zijlstra652884f2015-01-23 11:20:10 +01001660 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1661
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001662 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001663
1664 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1665 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001666
1667 perf_event__header_size(group_leader);
1668
1669 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1670 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001671}
1672
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001673/*
1674 * Remove a event from the lists for its context.
1675 * Must be called with ctx->mutex and ctx->lock held.
1676 */
1677static void
1678list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1679{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001680 WARN_ON_ONCE(event->ctx != ctx);
1681 lockdep_assert_held(&ctx->lock);
1682
Peter Zijlstra8a495422010-05-27 15:47:49 +02001683 /*
1684 * We can have double detach due to exit/hot-unplug + close.
1685 */
1686 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001687 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001688
1689 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1690
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001691 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001692
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001693 ctx->nr_events--;
1694 if (event->attr.inherit_stat)
1695 ctx->nr_stat--;
1696
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001697 list_del_rcu(&event->event_entry);
1698
Peter Zijlstra8a495422010-05-27 15:47:49 +02001699 if (event->group_leader == event)
1700 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001701
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001702 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001703
1704 /*
1705 * If event was in error state, then keep it
1706 * that way, otherwise bogus counts will be
1707 * returned on read(). The only way to get out
1708 * of error state is by explicit re-enabling
1709 * of the event
1710 */
1711 if (event->state > PERF_EVENT_STATE_OFF)
1712 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001713
1714 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001715}
1716
Peter Zijlstra8a495422010-05-27 15:47:49 +02001717static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001718{
1719 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001720 struct list_head *list = NULL;
1721
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001722 lockdep_assert_held(&event->ctx->lock);
1723
Peter Zijlstra8a495422010-05-27 15:47:49 +02001724 /*
1725 * We can have double detach due to exit/hot-unplug + close.
1726 */
1727 if (!(event->attach_state & PERF_ATTACH_GROUP))
1728 return;
1729
1730 event->attach_state &= ~PERF_ATTACH_GROUP;
1731
1732 /*
1733 * If this is a sibling, remove it from its group.
1734 */
1735 if (event->group_leader != event) {
1736 list_del_init(&event->group_entry);
1737 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001738 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001739 }
1740
1741 if (!list_empty(&event->group_entry))
1742 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001743
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744 /*
1745 * If this was a group event with sibling events then
1746 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001747 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001748 */
1749 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001750 if (list)
1751 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001752 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001753
1754 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001755 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001756
1757 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001758 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001759
1760out:
1761 perf_event__header_size(event->group_leader);
1762
1763 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1764 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001765}
1766
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001767static bool is_orphaned_event(struct perf_event *event)
1768{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001769 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001770}
1771
Mark Rutland2c81a642016-06-14 16:10:41 +01001772static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001773{
1774 struct pmu *pmu = event->pmu;
1775 return pmu->filter_match ? pmu->filter_match(event) : 1;
1776}
1777
Mark Rutland2c81a642016-06-14 16:10:41 +01001778/*
1779 * Check whether we should attempt to schedule an event group based on
1780 * PMU-specific filtering. An event group can consist of HW and SW events,
1781 * potentially with a SW leader, so we must check all the filters, to
1782 * determine whether a group is schedulable:
1783 */
1784static inline int pmu_filter_match(struct perf_event *event)
1785{
1786 struct perf_event *child;
1787
1788 if (!__pmu_filter_match(event))
1789 return 0;
1790
1791 list_for_each_entry(child, &event->sibling_list, group_entry) {
1792 if (!__pmu_filter_match(child))
1793 return 0;
1794 }
1795
1796 return 1;
1797}
1798
Stephane Eranianfa66f072010-08-26 16:40:01 +02001799static inline int
1800event_filter_match(struct perf_event *event)
1801{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001802 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1803 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001804}
1805
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001806static void
1807event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001808 struct perf_cpu_context *cpuctx,
1809 struct perf_event_context *ctx)
1810{
Stephane Eranian41587552011-01-03 18:20:01 +02001811 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001812 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001813
1814 WARN_ON_ONCE(event->ctx != ctx);
1815 lockdep_assert_held(&ctx->lock);
1816
Stephane Eranianfa66f072010-08-26 16:40:01 +02001817 /*
1818 * An event which could not be activated because of
1819 * filter mismatch still needs to have its timings
1820 * maintained, otherwise bogus information is return
1821 * via read() for time_enabled, time_running:
1822 */
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001823 if (event->state == PERF_EVENT_STATE_INACTIVE &&
1824 !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001825 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001826 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001827 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001828 }
1829
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001830 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001831 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001832
Alexander Shishkin44377272013-12-16 14:17:36 +02001833 perf_pmu_disable(event->pmu);
1834
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001835 event->tstamp_stopped = tstamp;
1836 event->pmu->del(event, 0);
1837 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001838 event->state = PERF_EVENT_STATE_INACTIVE;
1839 if (event->pending_disable) {
1840 event->pending_disable = 0;
1841 event->state = PERF_EVENT_STATE_OFF;
1842 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001843
1844 if (!is_software_event(event))
1845 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001846 if (!--ctx->nr_active)
1847 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001848 if (event->attr.freq && event->attr.sample_freq)
1849 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850 if (event->attr.exclusive || !cpuctx->active_oncpu)
1851 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001852
1853 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001854}
1855
1856static void
1857group_sched_out(struct perf_event *group_event,
1858 struct perf_cpu_context *cpuctx,
1859 struct perf_event_context *ctx)
1860{
1861 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001862 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001863
Mark Rutland3f005e72016-07-26 18:12:21 +01001864 perf_pmu_disable(ctx->pmu);
1865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866 event_sched_out(group_event, cpuctx, ctx);
1867
1868 /*
1869 * Schedule out siblings (if any):
1870 */
1871 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1872 event_sched_out(event, cpuctx, ctx);
1873
Mark Rutland3f005e72016-07-26 18:12:21 +01001874 perf_pmu_enable(ctx->pmu);
1875
Stephane Eranianfa66f072010-08-26 16:40:01 +02001876 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001877 cpuctx->exclusive = 0;
1878}
1879
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001880#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001881
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001882/*
1883 * Cross CPU call to remove a performance event
1884 *
1885 * We disable the event on the hardware level first. After that we
1886 * remove it from the context list.
1887 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001888static void
1889__perf_remove_from_context(struct perf_event *event,
1890 struct perf_cpu_context *cpuctx,
1891 struct perf_event_context *ctx,
1892 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001893{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001894 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001896 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001897 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001898 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001899 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001900
Peter Zijlstra39a43642016-01-11 12:46:35 +01001901 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001902 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001903 if (ctx->task) {
1904 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1905 cpuctx->task_ctx = NULL;
1906 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001907 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001908}
1909
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001910/*
1911 * Remove the event from a task's (or a CPU's) list of events.
1912 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001913 * If event->ctx is a cloned context, callers must make sure that
1914 * every task struct that event->ctx->task could possibly point to
1915 * remains valid. This is OK when called from perf_release since
1916 * that only calls us on the top-level context, which can't be a clone.
1917 * When called from perf_event_exit_task, it's OK because the
1918 * context has been detached from its task.
1919 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001920static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001921{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001922 struct perf_event_context *ctx = event->ctx;
1923
1924 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001925
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001926 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001927
1928 /*
1929 * The above event_function_call() can NO-OP when it hits
1930 * TASK_TOMBSTONE. In that case we must already have been detached
1931 * from the context (by perf_event_exit_event()) but the grouping
1932 * might still be in-tact.
1933 */
1934 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1935 if ((flags & DETACH_GROUP) &&
1936 (event->attach_state & PERF_ATTACH_GROUP)) {
1937 /*
1938 * Since in that case we cannot possibly be scheduled, simply
1939 * detach now.
1940 */
1941 raw_spin_lock_irq(&ctx->lock);
1942 perf_group_detach(event);
1943 raw_spin_unlock_irq(&ctx->lock);
1944 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001945}
1946
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001947/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001948 * Cross CPU call to disable a performance event
1949 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001950static void __perf_event_disable(struct perf_event *event,
1951 struct perf_cpu_context *cpuctx,
1952 struct perf_event_context *ctx,
1953 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001954{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001955 if (event->state < PERF_EVENT_STATE_INACTIVE)
1956 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001957
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001958 update_context_time(ctx);
1959 update_cgrp_time_from_event(event);
1960 update_group_times(event);
1961 if (event == event->group_leader)
1962 group_sched_out(event, cpuctx, ctx);
1963 else
1964 event_sched_out(event, cpuctx, ctx);
1965 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001966}
1967
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001968/*
1969 * Disable a event.
1970 *
1971 * If event->ctx is a cloned context, callers must make sure that
1972 * every task struct that event->ctx->task could possibly point to
1973 * remains valid. This condition is satisifed when called through
1974 * perf_event_for_each_child or perf_event_for_each because they
1975 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001976 * goes to exit will block in perf_event_exit_event().
1977 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001978 * When called from perf_pending_event it's OK because event->ctx
1979 * is the current context on this CPU and preemption is disabled,
1980 * hence we can't get into perf_event_task_sched_out for this context.
1981 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001982static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001983{
1984 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001986 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001987 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001988 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001989 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001991 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001992
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001993 event_function_call(event, __perf_event_disable, NULL);
1994}
1995
1996void perf_event_disable_local(struct perf_event *event)
1997{
1998 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002000
2001/*
2002 * Strictly speaking kernel users cannot create groups and therefore this
2003 * interface does not need the perf_event_ctx_lock() magic.
2004 */
2005void perf_event_disable(struct perf_event *event)
2006{
2007 struct perf_event_context *ctx;
2008
2009 ctx = perf_event_ctx_lock(event);
2010 _perf_event_disable(event);
2011 perf_event_ctx_unlock(event, ctx);
2012}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002013EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002014
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002015void perf_event_disable_inatomic(struct perf_event *event)
2016{
2017 event->pending_disable = 1;
2018 irq_work_queue(&event->pending);
2019}
2020
Stephane Eraniane5d13672011-02-14 11:20:01 +02002021static void perf_set_shadow_time(struct perf_event *event,
2022 struct perf_event_context *ctx,
2023 u64 tstamp)
2024{
2025 /*
2026 * use the correct time source for the time snapshot
2027 *
2028 * We could get by without this by leveraging the
2029 * fact that to get to this function, the caller
2030 * has most likely already called update_context_time()
2031 * and update_cgrp_time_xx() and thus both timestamp
2032 * are identical (or very close). Given that tstamp is,
2033 * already adjusted for cgroup, we could say that:
2034 * tstamp - ctx->timestamp
2035 * is equivalent to
2036 * tstamp - cgrp->timestamp.
2037 *
2038 * Then, in perf_output_read(), the calculation would
2039 * work with no changes because:
2040 * - event is guaranteed scheduled in
2041 * - no scheduled out in between
2042 * - thus the timestamp would be the same
2043 *
2044 * But this is a bit hairy.
2045 *
2046 * So instead, we have an explicit cgroup call to remain
2047 * within the time time source all along. We believe it
2048 * is cleaner and simpler to understand.
2049 */
2050 if (is_cgroup_event(event))
2051 perf_cgroup_set_shadow_time(event, tstamp);
2052 else
2053 event->shadow_ctx_time = tstamp - ctx->timestamp;
2054}
2055
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002056#define MAX_INTERRUPTS (~0ULL)
2057
2058static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002059static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002060
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002061static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002062event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002063 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002064 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002065{
Stephane Eranian41587552011-01-03 18:20:01 +02002066 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02002067 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002068
Peter Zijlstra63342412014-05-05 11:49:16 +02002069 lockdep_assert_held(&ctx->lock);
2070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002071 if (event->state <= PERF_EVENT_STATE_OFF)
2072 return 0;
2073
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002074 WRITE_ONCE(event->oncpu, smp_processor_id());
2075 /*
2076 * Order event::oncpu write to happen before the ACTIVE state
2077 * is visible.
2078 */
2079 smp_wmb();
2080 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002081
2082 /*
2083 * Unthrottle events, since we scheduled we might have missed several
2084 * ticks already, also for a heavily scheduling task there is little
2085 * guarantee it'll get a tick in a timely manner.
2086 */
2087 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2088 perf_log_throttle(event, 1);
2089 event->hw.interrupts = 0;
2090 }
2091
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092 /*
2093 * The new state must be visible before we turn it on in the hardware:
2094 */
2095 smp_wmb();
2096
Alexander Shishkin44377272013-12-16 14:17:36 +02002097 perf_pmu_disable(event->pmu);
2098
Shaohua Li72f669c2015-02-05 15:55:31 -08002099 perf_set_shadow_time(event, ctx, tstamp);
2100
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002101 perf_log_itrace_start(event);
2102
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002103 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104 event->state = PERF_EVENT_STATE_INACTIVE;
2105 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002106 ret = -EAGAIN;
2107 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002108 }
2109
Peter Zijlstra00a29162015-07-27 10:35:07 +02002110 event->tstamp_running += tstamp - event->tstamp_stopped;
2111
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112 if (!is_software_event(event))
2113 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002114 if (!ctx->nr_active++)
2115 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002116 if (event->attr.freq && event->attr.sample_freq)
2117 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118
2119 if (event->attr.exclusive)
2120 cpuctx->exclusive = 1;
2121
Alexander Shishkin44377272013-12-16 14:17:36 +02002122out:
2123 perf_pmu_enable(event->pmu);
2124
2125 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002126}
2127
2128static int
2129group_sched_in(struct perf_event *group_event,
2130 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002131 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132{
Lin Ming6bde9b62010-04-23 13:56:00 +08002133 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002134 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002135 u64 now = ctx->time;
2136 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002137
2138 if (group_event->state == PERF_EVENT_STATE_OFF)
2139 return 0;
2140
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002141 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002142
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002143 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002144 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002145 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002147 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148
2149 /*
2150 * Schedule in siblings as one group (if any):
2151 */
2152 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002153 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154 partial_group = event;
2155 goto group_error;
2156 }
2157 }
2158
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002159 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002160 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002162group_error:
2163 /*
2164 * Groups can be scheduled in as one unit only, so undo any
2165 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002166 * The events up to the failed event are scheduled out normally,
2167 * tstamp_stopped will be updated.
2168 *
2169 * The failed events and the remaining siblings need to have
2170 * their timings updated as if they had gone thru event_sched_in()
2171 * and event_sched_out(). This is required to get consistent timings
2172 * across the group. This also takes care of the case where the group
2173 * could never be scheduled by ensuring tstamp_stopped is set to mark
2174 * the time the event was actually stopped, such that time delta
2175 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002176 */
2177 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2178 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002179 simulate = true;
2180
2181 if (simulate) {
2182 event->tstamp_running += now - event->tstamp_stopped;
2183 event->tstamp_stopped = now;
2184 } else {
2185 event_sched_out(event, cpuctx, ctx);
2186 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002187 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002188 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002189
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002190 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002191
Peter Zijlstra272325c2015-04-15 11:41:58 +02002192 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002193
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002194 return -EAGAIN;
2195}
2196
2197/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198 * Work out whether we can put this event group on the CPU now.
2199 */
2200static int group_can_go_on(struct perf_event *event,
2201 struct perf_cpu_context *cpuctx,
2202 int can_add_hw)
2203{
2204 /*
2205 * Groups consisting entirely of software events can always go on.
2206 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002207 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002208 return 1;
2209 /*
2210 * If an exclusive group is already on, no other hardware
2211 * events can go on.
2212 */
2213 if (cpuctx->exclusive)
2214 return 0;
2215 /*
2216 * If this group is exclusive and there are already
2217 * events on the CPU, it can't go on.
2218 */
2219 if (event->attr.exclusive && cpuctx->active_oncpu)
2220 return 0;
2221 /*
2222 * Otherwise, try to add it if all previous groups were able
2223 * to go on.
2224 */
2225 return can_add_hw;
2226}
2227
Peter Zijlstra9b231d92017-08-03 15:42:09 +02002228/*
2229 * Complement to update_event_times(). This computes the tstamp_* values to
2230 * continue 'enabled' state from @now, and effectively discards the time
2231 * between the prior tstamp_stopped and now (as we were in the OFF state, or
2232 * just switched (context) time base).
2233 *
2234 * This further assumes '@event->state == INACTIVE' (we just came from OFF) and
2235 * cannot have been scheduled in yet. And going into INACTIVE state means
2236 * '@event->tstamp_stopped = @now'.
2237 *
2238 * Thus given the rules of update_event_times():
2239 *
2240 * total_time_enabled = tstamp_stopped - tstamp_enabled
2241 * total_time_running = tstamp_stopped - tstamp_running
2242 *
2243 * We can insert 'tstamp_stopped == now' and reverse them to compute new
2244 * tstamp_* values.
2245 */
2246static void __perf_event_enable_time(struct perf_event *event, u64 now)
2247{
2248 WARN_ON_ONCE(event->state != PERF_EVENT_STATE_INACTIVE);
2249
2250 event->tstamp_stopped = now;
2251 event->tstamp_enabled = now - event->total_time_enabled;
2252 event->tstamp_running = now - event->total_time_running;
2253}
2254
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255static void add_event_to_ctx(struct perf_event *event,
2256 struct perf_event_context *ctx)
2257{
Stephane Eranian41587552011-01-03 18:20:01 +02002258 u64 tstamp = perf_event_time(event);
2259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002260 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002261 perf_group_attach(event);
Peter Zijlstra9b231d92017-08-03 15:42:09 +02002262 /*
2263 * We can be called with event->state == STATE_OFF when we create with
2264 * .disabled = 1. In that case the IOC_ENABLE will call this function.
2265 */
2266 if (event->state == PERF_EVENT_STATE_INACTIVE)
2267 __perf_event_enable_time(event, tstamp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002268}
2269
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002270static void ctx_sched_out(struct perf_event_context *ctx,
2271 struct perf_cpu_context *cpuctx,
2272 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002273static void
2274ctx_sched_in(struct perf_event_context *ctx,
2275 struct perf_cpu_context *cpuctx,
2276 enum event_type_t event_type,
2277 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002278
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002279static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002280 struct perf_event_context *ctx,
2281 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002282{
2283 if (!cpuctx->task_ctx)
2284 return;
2285
2286 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2287 return;
2288
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002289 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002290}
2291
Peter Zijlstradce58552011-04-09 21:17:46 +02002292static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2293 struct perf_event_context *ctx,
2294 struct task_struct *task)
2295{
2296 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2297 if (ctx)
2298 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2299 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2300 if (ctx)
2301 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2302}
2303
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002304/*
2305 * We want to maintain the following priority of scheduling:
2306 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2307 * - task pinned (EVENT_PINNED)
2308 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2309 * - task flexible (EVENT_FLEXIBLE).
2310 *
2311 * In order to avoid unscheduling and scheduling back in everything every
2312 * time an event is added, only do it for the groups of equal priority and
2313 * below.
2314 *
2315 * This can be called after a batch operation on task events, in which case
2316 * event_type is a bit mask of the types of events involved. For CPU events,
2317 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2318 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002319static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002320 struct perf_event_context *task_ctx,
2321 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002322{
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002323 enum event_type_t ctx_event_type = event_type & EVENT_ALL;
2324 bool cpu_event = !!(event_type & EVENT_CPU);
2325
2326 /*
2327 * If pinned groups are involved, flexible groups also need to be
2328 * scheduled out.
2329 */
2330 if (event_type & EVENT_PINNED)
2331 event_type |= EVENT_FLEXIBLE;
2332
Peter Zijlstra3e349502016-01-08 10:01:18 +01002333 perf_pmu_disable(cpuctx->ctx.pmu);
2334 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002335 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2336
2337 /*
2338 * Decide which cpu ctx groups to schedule out based on the types
2339 * of events that caused rescheduling:
2340 * - EVENT_CPU: schedule out corresponding groups;
2341 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2342 * - otherwise, do nothing more.
2343 */
2344 if (cpu_event)
2345 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2346 else if (ctx_event_type & EVENT_PINNED)
2347 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2348
Peter Zijlstra3e349502016-01-08 10:01:18 +01002349 perf_event_sched_in(cpuctx, task_ctx, current);
2350 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002351}
2352
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002353/*
2354 * Cross CPU call to install and enable a performance event
2355 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002356 * Very similar to remote_function() + event_function() but cannot assume that
2357 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002358 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002359static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002361 struct perf_event *event = info;
2362 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002363 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002364 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002365 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002366 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002367
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002368 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002369 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002370 raw_spin_lock(&ctx->lock);
2371 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002372
Peter Zijlstra63cae122016-12-09 14:59:00 +01002373 reprogram = (ctx->task == current);
2374
2375 /*
2376 * If the task is running, it must be running on this CPU,
2377 * otherwise we cannot reprogram things.
2378 *
2379 * If its not running, we don't care, ctx->lock will
2380 * serialize against it becoming runnable.
2381 */
2382 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002383 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002384 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002385 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002386
Peter Zijlstra63cae122016-12-09 14:59:00 +01002387 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002388 } else if (task_ctx) {
2389 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002390 }
2391
Peter Zijlstra63cae122016-12-09 14:59:00 +01002392 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002393 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2394 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002395 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002396 } else {
2397 add_event_to_ctx(event, ctx);
2398 }
2399
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002400unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002401 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002402
Peter Zijlstraa0963092016-02-24 18:45:50 +01002403 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404}
2405
2406/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002407 * Attach a performance event to a context.
2408 *
2409 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410 */
2411static void
2412perf_install_in_context(struct perf_event_context *ctx,
2413 struct perf_event *event,
2414 int cpu)
2415{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002416 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002417
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002418 lockdep_assert_held(&ctx->mutex);
2419
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002420 if (event->cpu != -1)
2421 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002422
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002423 /*
2424 * Ensures that if we can observe event->ctx, both the event and ctx
2425 * will be 'complete'. See perf_iterate_sb_cpu().
2426 */
2427 smp_store_release(&event->ctx, ctx);
2428
Peter Zijlstraa0963092016-02-24 18:45:50 +01002429 if (!task) {
2430 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002431 return;
2432 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002433
Peter Zijlstraa0963092016-02-24 18:45:50 +01002434 /*
2435 * Should not happen, we validate the ctx is still alive before calling.
2436 */
2437 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2438 return;
2439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002440 /*
2441 * Installing events is tricky because we cannot rely on ctx->is_active
2442 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002443 *
2444 * Instead we use task_curr(), which tells us if the task is running.
2445 * However, since we use task_curr() outside of rq::lock, we can race
2446 * against the actual state. This means the result can be wrong.
2447 *
2448 * If we get a false positive, we retry, this is harmless.
2449 *
2450 * If we get a false negative, things are complicated. If we are after
2451 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2452 * value must be correct. If we're before, it doesn't matter since
2453 * perf_event_context_sched_in() will program the counter.
2454 *
2455 * However, this hinges on the remote context switch having observed
2456 * our task->perf_event_ctxp[] store, such that it will in fact take
2457 * ctx::lock in perf_event_context_sched_in().
2458 *
2459 * We do this by task_function_call(), if the IPI fails to hit the task
2460 * we know any future context switch of task must see the
2461 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002462 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002463
Peter Zijlstraa0963092016-02-24 18:45:50 +01002464 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002465 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2466 * task_cpu() load, such that if the IPI then does not find the task
2467 * running, a future context switch of that task must observe the
2468 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002469 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002470 smp_mb();
2471again:
2472 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002473 return;
2474
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002475 raw_spin_lock_irq(&ctx->lock);
2476 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002477 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2478 /*
2479 * Cannot happen because we already checked above (which also
2480 * cannot happen), and we hold ctx->mutex, which serializes us
2481 * against perf_event_exit_task_context().
2482 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002483 raw_spin_unlock_irq(&ctx->lock);
2484 return;
2485 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002486 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002487 * If the task is not running, ctx->lock will avoid it becoming so,
2488 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002489 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002490 if (task_curr(task)) {
2491 raw_spin_unlock_irq(&ctx->lock);
2492 goto again;
2493 }
2494 add_event_to_ctx(event, ctx);
2495 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002496}
2497
2498/*
2499 * Put a event into inactive state and update time fields.
2500 * Enabling the leader of a group effectively enables all
2501 * the group members that aren't explicitly disabled, so we
2502 * have to update their ->tstamp_enabled also.
2503 * Note: this works for group members as well as group leaders
2504 * since the non-leader members' sibling_lists will be empty.
2505 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002506static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507{
2508 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002509 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002510
2511 event->state = PERF_EVENT_STATE_INACTIVE;
Peter Zijlstra9b231d92017-08-03 15:42:09 +02002512 __perf_event_enable_time(event, tstamp);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002513 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Peter Zijlstra9b231d92017-08-03 15:42:09 +02002514 /* XXX should not be > INACTIVE if event isn't */
Stephane Eranian41587552011-01-03 18:20:01 +02002515 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra9b231d92017-08-03 15:42:09 +02002516 __perf_event_enable_time(sub, tstamp);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002517 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002518}
2519
2520/*
2521 * Cross CPU call to enable a performance event
2522 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002523static void __perf_event_enable(struct perf_event *event,
2524 struct perf_cpu_context *cpuctx,
2525 struct perf_event_context *ctx,
2526 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002527{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002528 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002529 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002530
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002531 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2532 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002533 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002534
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002535 if (ctx->is_active)
2536 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2537
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002538 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002539
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002540 if (!ctx->is_active)
2541 return;
2542
Stephane Eraniane5d13672011-02-14 11:20:01 +02002543 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002544 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002545 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002546 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002547 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002548 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002549
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002550 /*
2551 * If the event is in a group and isn't the group leader,
2552 * then don't put it on unless the group is on.
2553 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002554 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2555 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002556 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002557 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002558
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002559 task_ctx = cpuctx->task_ctx;
2560 if (ctx->task)
2561 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002562
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002563 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002564}
2565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002566/*
2567 * Enable a event.
2568 *
2569 * If event->ctx is a cloned context, callers must make sure that
2570 * every task struct that event->ctx->task could possibly point to
2571 * remains valid. This condition is satisfied when called through
2572 * perf_event_for_each_child or perf_event_for_each as described
2573 * for perf_event_disable.
2574 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002575static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002576{
2577 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002578
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002579 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002580 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2581 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002582 raw_spin_unlock_irq(&ctx->lock);
2583 return;
2584 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002585
2586 /*
2587 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002588 *
2589 * That way, if we see the event in error state below, we know that it
2590 * has gone back into error state, as distinct from the task having
2591 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002592 */
2593 if (event->state == PERF_EVENT_STATE_ERROR)
2594 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002595 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002596
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002597 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002598}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002599
2600/*
2601 * See perf_event_disable();
2602 */
2603void perf_event_enable(struct perf_event *event)
2604{
2605 struct perf_event_context *ctx;
2606
2607 ctx = perf_event_ctx_lock(event);
2608 _perf_event_enable(event);
2609 perf_event_ctx_unlock(event, ctx);
2610}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002611EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002612
Alexander Shishkin375637b2016-04-27 18:44:46 +03002613struct stop_event_data {
2614 struct perf_event *event;
2615 unsigned int restart;
2616};
2617
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002618static int __perf_event_stop(void *info)
2619{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002620 struct stop_event_data *sd = info;
2621 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002622
Alexander Shishkin375637b2016-04-27 18:44:46 +03002623 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002624 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2625 return 0;
2626
2627 /* matches smp_wmb() in event_sched_in() */
2628 smp_rmb();
2629
2630 /*
2631 * There is a window with interrupts enabled before we get here,
2632 * so we need to check again lest we try to stop another CPU's event.
2633 */
2634 if (READ_ONCE(event->oncpu) != smp_processor_id())
2635 return -EAGAIN;
2636
2637 event->pmu->stop(event, PERF_EF_UPDATE);
2638
Alexander Shishkin375637b2016-04-27 18:44:46 +03002639 /*
2640 * May race with the actual stop (through perf_pmu_output_stop()),
2641 * but it is only used for events with AUX ring buffer, and such
2642 * events will refuse to restart because of rb::aux_mmap_count==0,
2643 * see comments in perf_aux_output_begin().
2644 *
2645 * Since this is happening on a event-local CPU, no trace is lost
2646 * while restarting.
2647 */
2648 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002649 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002650
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002651 return 0;
2652}
2653
Alexander Shishkin767ae082016-09-06 16:23:49 +03002654static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002655{
2656 struct stop_event_data sd = {
2657 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002658 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002659 };
2660 int ret = 0;
2661
2662 do {
2663 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2664 return 0;
2665
2666 /* matches smp_wmb() in event_sched_in() */
2667 smp_rmb();
2668
2669 /*
2670 * We only want to restart ACTIVE events, so if the event goes
2671 * inactive here (event->oncpu==-1), there's nothing more to do;
2672 * fall through with ret==-ENXIO.
2673 */
2674 ret = cpu_function_call(READ_ONCE(event->oncpu),
2675 __perf_event_stop, &sd);
2676 } while (ret == -EAGAIN);
2677
2678 return ret;
2679}
2680
2681/*
2682 * In order to contain the amount of racy and tricky in the address filter
2683 * configuration management, it is a two part process:
2684 *
2685 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2686 * we update the addresses of corresponding vmas in
2687 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2688 * (p2) when an event is scheduled in (pmu::add), it calls
2689 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2690 * if the generation has changed since the previous call.
2691 *
2692 * If (p1) happens while the event is active, we restart it to force (p2).
2693 *
2694 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2695 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2696 * ioctl;
2697 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2698 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2699 * for reading;
2700 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2701 * of exec.
2702 */
2703void perf_event_addr_filters_sync(struct perf_event *event)
2704{
2705 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2706
2707 if (!has_addr_filter(event))
2708 return;
2709
2710 raw_spin_lock(&ifh->lock);
2711 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2712 event->pmu->addr_filters_sync(event);
2713 event->hw.addr_filters_gen = event->addr_filters_gen;
2714 }
2715 raw_spin_unlock(&ifh->lock);
2716}
2717EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2718
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002719static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720{
2721 /*
2722 * not supported on inherited events
2723 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002724 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002725 return -EINVAL;
2726
2727 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002728 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002729
2730 return 0;
2731}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002732
2733/*
2734 * See perf_event_disable()
2735 */
2736int perf_event_refresh(struct perf_event *event, int refresh)
2737{
2738 struct perf_event_context *ctx;
2739 int ret;
2740
2741 ctx = perf_event_ctx_lock(event);
2742 ret = _perf_event_refresh(event, refresh);
2743 perf_event_ctx_unlock(event, ctx);
2744
2745 return ret;
2746}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002747EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002748
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002749static void ctx_sched_out(struct perf_event_context *ctx,
2750 struct perf_cpu_context *cpuctx,
2751 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002753 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002754 struct perf_event *event;
2755
2756 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002757
Peter Zijlstra39a43642016-01-11 12:46:35 +01002758 if (likely(!ctx->nr_events)) {
2759 /*
2760 * See __perf_remove_from_context().
2761 */
2762 WARN_ON_ONCE(ctx->is_active);
2763 if (ctx->task)
2764 WARN_ON_ONCE(cpuctx->task_ctx);
2765 return;
2766 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767
Peter Zijlstradb24d332011-04-09 21:17:45 +02002768 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002769 if (!(ctx->is_active & EVENT_ALL))
2770 ctx->is_active = 0;
2771
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002772 if (ctx->task) {
2773 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2774 if (!ctx->is_active)
2775 cpuctx->task_ctx = NULL;
2776 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002777
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002778 /*
2779 * Always update time if it was set; not only when it changes.
2780 * Otherwise we can 'forget' to update time for any but the last
2781 * context we sched out. For example:
2782 *
2783 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2784 * ctx_sched_out(.event_type = EVENT_PINNED)
2785 *
2786 * would only update time for the pinned events.
2787 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002788 if (is_active & EVENT_TIME) {
2789 /* update (and stop) ctx time */
2790 update_context_time(ctx);
2791 update_cgrp_time_from_cpuctx(cpuctx);
2792 }
2793
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002794 is_active ^= ctx->is_active; /* changed bits */
2795
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002796 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002797 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002798
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002799 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002800 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002801 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2802 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002803 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002804
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002805 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002806 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002807 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002808 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002809 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002810}
2811
2812/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002813 * Test whether two contexts are equivalent, i.e. whether they have both been
2814 * cloned from the same version of the same context.
2815 *
2816 * Equivalence is measured using a generation number in the context that is
2817 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2818 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002819 */
2820static int context_equiv(struct perf_event_context *ctx1,
2821 struct perf_event_context *ctx2)
2822{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002823 lockdep_assert_held(&ctx1->lock);
2824 lockdep_assert_held(&ctx2->lock);
2825
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002826 /* Pinning disables the swap optimization */
2827 if (ctx1->pin_count || ctx2->pin_count)
2828 return 0;
2829
2830 /* If ctx1 is the parent of ctx2 */
2831 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2832 return 1;
2833
2834 /* If ctx2 is the parent of ctx1 */
2835 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2836 return 1;
2837
2838 /*
2839 * If ctx1 and ctx2 have the same parent; we flatten the parent
2840 * hierarchy, see perf_event_init_context().
2841 */
2842 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2843 ctx1->parent_gen == ctx2->parent_gen)
2844 return 1;
2845
2846 /* Unmatched */
2847 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848}
2849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002850static void __perf_event_sync_stat(struct perf_event *event,
2851 struct perf_event *next_event)
2852{
2853 u64 value;
2854
2855 if (!event->attr.inherit_stat)
2856 return;
2857
2858 /*
2859 * Update the event value, we cannot use perf_event_read()
2860 * because we're in the middle of a context switch and have IRQs
2861 * disabled, which upsets smp_call_function_single(), however
2862 * we know the event must be on the current CPU, therefore we
2863 * don't need to use it.
2864 */
2865 switch (event->state) {
2866 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002867 event->pmu->read(event);
2868 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002869
2870 case PERF_EVENT_STATE_INACTIVE:
2871 update_event_times(event);
2872 break;
2873
2874 default:
2875 break;
2876 }
2877
2878 /*
2879 * In order to keep per-task stats reliable we need to flip the event
2880 * values when we flip the contexts.
2881 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002882 value = local64_read(&next_event->count);
2883 value = local64_xchg(&event->count, value);
2884 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002885
2886 swap(event->total_time_enabled, next_event->total_time_enabled);
2887 swap(event->total_time_running, next_event->total_time_running);
2888
2889 /*
2890 * Since we swizzled the values, update the user visible data too.
2891 */
2892 perf_event_update_userpage(event);
2893 perf_event_update_userpage(next_event);
2894}
2895
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002896static void perf_event_sync_stat(struct perf_event_context *ctx,
2897 struct perf_event_context *next_ctx)
2898{
2899 struct perf_event *event, *next_event;
2900
2901 if (!ctx->nr_stat)
2902 return;
2903
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002904 update_context_time(ctx);
2905
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002906 event = list_first_entry(&ctx->event_list,
2907 struct perf_event, event_entry);
2908
2909 next_event = list_first_entry(&next_ctx->event_list,
2910 struct perf_event, event_entry);
2911
2912 while (&event->event_entry != &ctx->event_list &&
2913 &next_event->event_entry != &next_ctx->event_list) {
2914
2915 __perf_event_sync_stat(event, next_event);
2916
2917 event = list_next_entry(event, event_entry);
2918 next_event = list_next_entry(next_event, event_entry);
2919 }
2920}
2921
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002922static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2923 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002924{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002925 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002926 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002927 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002928 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002929 int do_switch = 1;
2930
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002931 if (likely(!ctx))
2932 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002933
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002934 cpuctx = __get_cpu_context(ctx);
2935 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002936 return;
2937
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002938 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002939 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002940 if (!next_ctx)
2941 goto unlock;
2942
2943 parent = rcu_dereference(ctx->parent_ctx);
2944 next_parent = rcu_dereference(next_ctx->parent_ctx);
2945
2946 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002947 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002948 goto unlock;
2949
2950 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002951 /*
2952 * Looks like the two contexts are clones, so we might be
2953 * able to optimize the context switch. We lock both
2954 * contexts and check that they are clones under the
2955 * lock (including re-checking that neither has been
2956 * uncloned in the meantime). It doesn't matter which
2957 * order we take the locks because no other cpu could
2958 * be trying to lock both of these tasks.
2959 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002960 raw_spin_lock(&ctx->lock);
2961 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002962 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002963 WRITE_ONCE(ctx->task, next);
2964 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002965
2966 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2967
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002968 /*
2969 * RCU_INIT_POINTER here is safe because we've not
2970 * modified the ctx and the above modification of
2971 * ctx->task and ctx->task_ctx_data are immaterial
2972 * since those values are always verified under
2973 * ctx->lock which we're now holding.
2974 */
2975 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2976 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2977
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002978 do_switch = 0;
2979
2980 perf_event_sync_stat(ctx, next_ctx);
2981 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002982 raw_spin_unlock(&next_ctx->lock);
2983 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002984 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002985unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002986 rcu_read_unlock();
2987
2988 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002989 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002990 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002991 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002992 }
2993}
2994
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002995static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2996
Yan, Zhengba532502014-11-04 21:55:58 -05002997void perf_sched_cb_dec(struct pmu *pmu)
2998{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002999 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3000
Yan, Zhengba532502014-11-04 21:55:58 -05003001 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003002
3003 if (!--cpuctx->sched_cb_usage)
3004 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05003005}
3006
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003007
Yan, Zhengba532502014-11-04 21:55:58 -05003008void perf_sched_cb_inc(struct pmu *pmu)
3009{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003010 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3011
3012 if (!cpuctx->sched_cb_usage++)
3013 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3014
Yan, Zhengba532502014-11-04 21:55:58 -05003015 this_cpu_inc(perf_sched_cb_usages);
3016}
3017
3018/*
3019 * This function provides the context switch callback to the lower code
3020 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02003021 *
3022 * This callback is relevant even to per-cpu events; for example multi event
3023 * PEBS requires this to provide PID/TID information. This requires we flush
3024 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05003025 */
3026static void perf_pmu_sched_task(struct task_struct *prev,
3027 struct task_struct *next,
3028 bool sched_in)
3029{
3030 struct perf_cpu_context *cpuctx;
3031 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05003032
3033 if (prev == next)
3034 return;
3035
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003036 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08003037 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05003038
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003039 if (WARN_ON_ONCE(!pmu->sched_task))
3040 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05003041
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003042 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3043 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05003044
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003045 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003046
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003047 perf_pmu_enable(pmu);
3048 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003049 }
Yan, Zhengba532502014-11-04 21:55:58 -05003050}
3051
Adrian Hunter45ac1402015-07-21 12:44:02 +03003052static void perf_event_switch(struct task_struct *task,
3053 struct task_struct *next_prev, bool sched_in);
3054
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003055#define for_each_task_context_nr(ctxn) \
3056 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3057
3058/*
3059 * Called from scheduler to remove the events of the current task,
3060 * with interrupts disabled.
3061 *
3062 * We stop each event and update the event value in event->count.
3063 *
3064 * This does not protect us against NMI, but disable()
3065 * sets the disabled bit in the control field of event _before_
3066 * accessing the event control register. If a NMI hits, then it will
3067 * not restart the event.
3068 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003069void __perf_event_task_sched_out(struct task_struct *task,
3070 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003071{
3072 int ctxn;
3073
Yan, Zhengba532502014-11-04 21:55:58 -05003074 if (__this_cpu_read(perf_sched_cb_usages))
3075 perf_pmu_sched_task(task, next, false);
3076
Adrian Hunter45ac1402015-07-21 12:44:02 +03003077 if (atomic_read(&nr_switch_events))
3078 perf_event_switch(task, next, false);
3079
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003080 for_each_task_context_nr(ctxn)
3081 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003082
3083 /*
3084 * if cgroup events exist on this CPU, then we need
3085 * to check if we have to switch out PMU state.
3086 * cgroup event are system-wide mode only
3087 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003088 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003089 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003090}
3091
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003092/*
3093 * Called with IRQs disabled
3094 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003095static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3096 enum event_type_t event_type)
3097{
3098 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003099}
3100
3101static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003102ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003103 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003104{
3105 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003106
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003107 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
3108 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003109 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02003110 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111 continue;
3112
Stephane Eraniane5d13672011-02-14 11:20:01 +02003113 /* may need to reset tstamp_enabled */
3114 if (is_cgroup_event(event))
3115 perf_cgroup_mark_enabled(event, ctx);
3116
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003117 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01003118 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003119
3120 /*
3121 * If this pinned group hasn't been scheduled,
3122 * put it in error state.
3123 */
3124 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3125 update_group_times(event);
3126 event->state = PERF_EVENT_STATE_ERROR;
3127 }
3128 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003129}
3130
3131static void
3132ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003133 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003134{
3135 struct perf_event *event;
3136 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003137
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003138 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
3139 /* Ignore events in OFF or ERROR state */
3140 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003141 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003142 /*
3143 * Listen to the 'cpu' scheduling filter constraint
3144 * of events:
3145 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02003146 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003147 continue;
3148
Stephane Eraniane5d13672011-02-14 11:20:01 +02003149 /* may need to reset tstamp_enabled */
3150 if (is_cgroup_event(event))
3151 perf_cgroup_mark_enabled(event, ctx);
3152
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003153 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003154 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003155 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003156 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003157 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003158}
3159
3160static void
3161ctx_sched_in(struct perf_event_context *ctx,
3162 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003163 enum event_type_t event_type,
3164 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003165{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003166 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003167 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003168
Peter Zijlstrac994d612016-01-08 09:20:23 +01003169 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003170
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003171 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003172 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003173
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003174 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003175 if (ctx->task) {
3176 if (!is_active)
3177 cpuctx->task_ctx = ctx;
3178 else
3179 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3180 }
3181
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003182 is_active ^= ctx->is_active; /* changed bits */
3183
3184 if (is_active & EVENT_TIME) {
3185 /* start ctx time */
3186 now = perf_clock();
3187 ctx->timestamp = now;
3188 perf_cgroup_set_timestamp(task, ctx);
3189 }
3190
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003191 /*
3192 * First go through the list and put on any pinned groups
3193 * in order to give them the best chance of going on.
3194 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003195 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003196 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003197
3198 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003199 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003200 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003201}
3202
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003203static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003204 enum event_type_t event_type,
3205 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003206{
3207 struct perf_event_context *ctx = &cpuctx->ctx;
3208
Stephane Eraniane5d13672011-02-14 11:20:01 +02003209 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003210}
3211
Stephane Eraniane5d13672011-02-14 11:20:01 +02003212static void perf_event_context_sched_in(struct perf_event_context *ctx,
3213 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003214{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003215 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003217 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003218 if (cpuctx->task_ctx == ctx)
3219 return;
3220
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003221 perf_ctx_lock(cpuctx, ctx);
leilei.linfdccc3f2017-08-09 08:29:21 +08003222 /*
3223 * We must check ctx->nr_events while holding ctx->lock, such
3224 * that we serialize against perf_install_in_context().
3225 */
3226 if (!ctx->nr_events)
3227 goto unlock;
3228
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003229 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003230 /*
3231 * We want to keep the following priority order:
3232 * cpu pinned (that don't need to move), task pinned,
3233 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003234 *
3235 * However, if task's ctx is not carrying any pinned
3236 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003237 */
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003238 if (!list_empty(&ctx->pinned_groups))
3239 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003240 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003241 perf_pmu_enable(ctx->pmu);
leilei.linfdccc3f2017-08-09 08:29:21 +08003242
3243unlock:
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003244 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003245}
3246
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003247/*
3248 * Called from scheduler to add the events of the current task
3249 * with interrupts disabled.
3250 *
3251 * We restore the event value and then enable it.
3252 *
3253 * This does not protect us against NMI, but enable()
3254 * sets the enabled bit in the control field of event _before_
3255 * accessing the event control register. If a NMI hits, then it will
3256 * keep the event running.
3257 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003258void __perf_event_task_sched_in(struct task_struct *prev,
3259 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003260{
3261 struct perf_event_context *ctx;
3262 int ctxn;
3263
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003264 /*
3265 * If cgroup events exist on this CPU, then we need to check if we have
3266 * to switch in PMU state; cgroup event are system-wide mode only.
3267 *
3268 * Since cgroup events are CPU events, we must schedule these in before
3269 * we schedule in the task events.
3270 */
3271 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3272 perf_cgroup_sched_in(prev, task);
3273
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003274 for_each_task_context_nr(ctxn) {
3275 ctx = task->perf_event_ctxp[ctxn];
3276 if (likely(!ctx))
3277 continue;
3278
Stephane Eraniane5d13672011-02-14 11:20:01 +02003279 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003280 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003281
Adrian Hunter45ac1402015-07-21 12:44:02 +03003282 if (atomic_read(&nr_switch_events))
3283 perf_event_switch(task, prev, true);
3284
Yan, Zhengba532502014-11-04 21:55:58 -05003285 if (__this_cpu_read(perf_sched_cb_usages))
3286 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003287}
3288
Peter Zijlstraabd50712010-01-26 18:50:16 +01003289static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3290{
3291 u64 frequency = event->attr.sample_freq;
3292 u64 sec = NSEC_PER_SEC;
3293 u64 divisor, dividend;
3294
3295 int count_fls, nsec_fls, frequency_fls, sec_fls;
3296
3297 count_fls = fls64(count);
3298 nsec_fls = fls64(nsec);
3299 frequency_fls = fls64(frequency);
3300 sec_fls = 30;
3301
3302 /*
3303 * We got @count in @nsec, with a target of sample_freq HZ
3304 * the target period becomes:
3305 *
3306 * @count * 10^9
3307 * period = -------------------
3308 * @nsec * sample_freq
3309 *
3310 */
3311
3312 /*
3313 * Reduce accuracy by one bit such that @a and @b converge
3314 * to a similar magnitude.
3315 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003316#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003317do { \
3318 if (a##_fls > b##_fls) { \
3319 a >>= 1; \
3320 a##_fls--; \
3321 } else { \
3322 b >>= 1; \
3323 b##_fls--; \
3324 } \
3325} while (0)
3326
3327 /*
3328 * Reduce accuracy until either term fits in a u64, then proceed with
3329 * the other, so that finally we can do a u64/u64 division.
3330 */
3331 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3332 REDUCE_FLS(nsec, frequency);
3333 REDUCE_FLS(sec, count);
3334 }
3335
3336 if (count_fls + sec_fls > 64) {
3337 divisor = nsec * frequency;
3338
3339 while (count_fls + sec_fls > 64) {
3340 REDUCE_FLS(count, sec);
3341 divisor >>= 1;
3342 }
3343
3344 dividend = count * sec;
3345 } else {
3346 dividend = count * sec;
3347
3348 while (nsec_fls + frequency_fls > 64) {
3349 REDUCE_FLS(nsec, frequency);
3350 dividend >>= 1;
3351 }
3352
3353 divisor = nsec * frequency;
3354 }
3355
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003356 if (!divisor)
3357 return dividend;
3358
Peter Zijlstraabd50712010-01-26 18:50:16 +01003359 return div64_u64(dividend, divisor);
3360}
3361
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003362static DEFINE_PER_CPU(int, perf_throttled_count);
3363static DEFINE_PER_CPU(u64, perf_throttled_seq);
3364
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003365static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366{
3367 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003368 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003369 s64 delta;
3370
Peter Zijlstraabd50712010-01-26 18:50:16 +01003371 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003372
3373 delta = (s64)(period - hwc->sample_period);
3374 delta = (delta + 7) / 8; /* low pass filter */
3375
3376 sample_period = hwc->sample_period + delta;
3377
3378 if (!sample_period)
3379 sample_period = 1;
3380
3381 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003382
Peter Zijlstrae7850592010-05-21 14:43:08 +02003383 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003384 if (disable)
3385 event->pmu->stop(event, PERF_EF_UPDATE);
3386
Peter Zijlstrae7850592010-05-21 14:43:08 +02003387 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003388
3389 if (disable)
3390 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003391 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392}
3393
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003394/*
3395 * combine freq adjustment with unthrottling to avoid two passes over the
3396 * events. At the same time, make sure, having freq events does not change
3397 * the rate of unthrottling as that would introduce bias.
3398 */
3399static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3400 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003401{
3402 struct perf_event *event;
3403 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003404 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003405 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003407 /*
3408 * only need to iterate over all events iff:
3409 * - context have events in frequency mode (needs freq adjust)
3410 * - there are events to unthrottle on this cpu
3411 */
3412 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003413 return;
3414
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003415 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003416 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003417
Paul Mackerras03541f82009-10-14 16:58:03 +11003418 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003419 if (event->state != PERF_EVENT_STATE_ACTIVE)
3420 continue;
3421
Stephane Eranian5632ab12011-01-03 18:20:01 +02003422 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003423 continue;
3424
Alexander Shishkin44377272013-12-16 14:17:36 +02003425 perf_pmu_disable(event->pmu);
3426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003427 hwc = &event->hw;
3428
Jiri Olsaae23bff2013-08-24 16:45:54 +02003429 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003430 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003431 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003432 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433 }
3434
3435 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003436 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003437
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003438 /*
3439 * stop the event and update event->count
3440 */
3441 event->pmu->stop(event, PERF_EF_UPDATE);
3442
Peter Zijlstrae7850592010-05-21 14:43:08 +02003443 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003444 delta = now - hwc->freq_count_stamp;
3445 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003446
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003447 /*
3448 * restart the event
3449 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003450 * we have stopped the event so tell that
3451 * to perf_adjust_period() to avoid stopping it
3452 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003453 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003454 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003455 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003456
3457 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003458 next:
3459 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003460 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003461
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003462 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003463 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003464}
3465
3466/*
3467 * Round-robin a context's events:
3468 */
3469static void rotate_ctx(struct perf_event_context *ctx)
3470{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003471 /*
3472 * Rotate the first entry last of non-pinned groups. Rotation might be
3473 * disabled by the inheritance code.
3474 */
3475 if (!ctx->rotate_disable)
3476 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003477}
3478
Stephane Eranian9e630202013-04-03 14:21:33 +02003479static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003480{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003481 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003482 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003483
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003484 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003485 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3486 rotate = 1;
3487 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003488
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003489 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003490 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003491 if (ctx->nr_events != ctx->nr_active)
3492 rotate = 1;
3493 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003494
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003495 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003496 goto done;
3497
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003498 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003499 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003501 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3502 if (ctx)
3503 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003504
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003505 rotate_ctx(&cpuctx->ctx);
3506 if (ctx)
3507 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003508
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003509 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003510
3511 perf_pmu_enable(cpuctx->ctx.pmu);
3512 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003513done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003514
3515 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003516}
3517
3518void perf_event_task_tick(void)
3519{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003520 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3521 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003522 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003523
3524 WARN_ON(!irqs_disabled());
3525
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003526 __this_cpu_inc(perf_throttled_seq);
3527 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003528 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003529
Mark Rutland2fde4f92015-01-07 15:01:54 +00003530 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003531 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003532}
3533
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003534static int event_enable_on_exec(struct perf_event *event,
3535 struct perf_event_context *ctx)
3536{
3537 if (!event->attr.enable_on_exec)
3538 return 0;
3539
3540 event->attr.enable_on_exec = 0;
3541 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3542 return 0;
3543
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003544 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003545
3546 return 1;
3547}
3548
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003549/*
3550 * Enable all of a task's events that have been marked enable-on-exec.
3551 * This expects task == current.
3552 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003553static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003554{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003555 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003556 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003557 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003558 struct perf_event *event;
3559 unsigned long flags;
3560 int enabled = 0;
3561
3562 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003563 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003564 if (!ctx || !ctx->nr_events)
3565 goto out;
3566
Peter Zijlstra3e349502016-01-08 10:01:18 +01003567 cpuctx = __get_cpu_context(ctx);
3568 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003569 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003570 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003571 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003572 event_type |= get_event_type(event);
3573 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003574
3575 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003576 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003577 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003578 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003579 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003580 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003581 } else {
3582 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003583 }
3584 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003585
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003586out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003587 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003588
3589 if (clone_ctx)
3590 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003591}
3592
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003593struct perf_read_data {
3594 struct perf_event *event;
3595 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003596 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003597};
3598
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003599static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003600{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003601 u16 local_pkg, event_pkg;
3602
3603 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003604 int local_cpu = smp_processor_id();
3605
3606 event_pkg = topology_physical_package_id(event_cpu);
3607 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003608
3609 if (event_pkg == local_pkg)
3610 return local_cpu;
3611 }
3612
3613 return event_cpu;
3614}
3615
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003616/*
3617 * Cross CPU call to read the hardware event
3618 */
3619static void __perf_event_read(void *info)
3620{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003621 struct perf_read_data *data = info;
3622 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003623 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003624 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003625 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003626
3627 /*
3628 * If this is a task context, we need to check whether it is
3629 * the current task context of this cpu. If not it has been
3630 * scheduled out before the smp call arrived. In that case
3631 * event->count would have been updated to a recent sample
3632 * when the event was scheduled out.
3633 */
3634 if (ctx->task && cpuctx->task_ctx != ctx)
3635 return;
3636
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003637 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003638 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003639 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003640 update_cgrp_time_from_event(event);
3641 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003642
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003643 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003644 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003645 goto unlock;
3646
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003647 if (!data->group) {
3648 pmu->read(event);
3649 data->ret = 0;
3650 goto unlock;
3651 }
3652
3653 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3654
3655 pmu->read(event);
3656
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003657 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3658 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003659 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3660 /*
3661 * Use sibling's PMU rather than @event's since
3662 * sibling could be on different (eg: software) PMU.
3663 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003664 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003665 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003666 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003667
3668 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003669
3670unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003671 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003672}
3673
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003674static inline u64 perf_event_count(struct perf_event *event)
3675{
Vikas Shivappac39a0e22017-07-25 14:14:20 -07003676 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003677}
3678
Kaixu Xiaffe86902015-08-06 07:02:32 +00003679/*
3680 * NMI-safe method to read a local event, that is an event that
3681 * is:
3682 * - either for the current task, or for this CPU
3683 * - does not have inherit set, for inherited task events
3684 * will not be local and we cannot read them atomically
3685 * - must not have a pmu::count method
3686 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07003687int perf_event_read_local(struct perf_event *event, u64 *value,
3688 u64 *enabled, u64 *running)
Kaixu Xiaffe86902015-08-06 07:02:32 +00003689{
3690 unsigned long flags;
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003691 int ret = 0;
Yonghong Song7d9285e2017-10-05 09:19:19 -07003692 u64 now;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003693
3694 /*
3695 * Disabling interrupts avoids all counter scheduling (context
3696 * switches, timer based rotation and IPIs).
3697 */
3698 local_irq_save(flags);
3699
Kaixu Xiaffe86902015-08-06 07:02:32 +00003700 /*
3701 * It must not be an event with inherit set, we cannot read
3702 * all child counters from atomic context.
3703 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003704 if (event->attr.inherit) {
3705 ret = -EOPNOTSUPP;
3706 goto out;
3707 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003708
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003709 /* If this is a per-task event, it must be for current */
3710 if ((event->attach_state & PERF_ATTACH_TASK) &&
3711 event->hw.target != current) {
3712 ret = -EINVAL;
3713 goto out;
3714 }
3715
3716 /* If this is a per-CPU event, it must be for this CPU */
3717 if (!(event->attach_state & PERF_ATTACH_TASK) &&
3718 event->cpu != smp_processor_id()) {
3719 ret = -EINVAL;
3720 goto out;
3721 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003722
Yonghong Song7d9285e2017-10-05 09:19:19 -07003723 now = event->shadow_ctx_time + perf_clock();
3724 if (enabled)
3725 *enabled = now - event->tstamp_enabled;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003726 /*
3727 * If the event is currently on this CPU, its either a per-task event,
3728 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3729 * oncpu == -1).
3730 */
Yonghong Song7d9285e2017-10-05 09:19:19 -07003731 if (event->oncpu == smp_processor_id()) {
Kaixu Xiaffe86902015-08-06 07:02:32 +00003732 event->pmu->read(event);
Yonghong Song7d9285e2017-10-05 09:19:19 -07003733 if (running)
3734 *running = now - event->tstamp_running;
3735 } else if (running) {
3736 *running = event->total_time_running;
3737 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00003738
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003739 *value = local64_read(&event->count);
3740out:
Kaixu Xiaffe86902015-08-06 07:02:32 +00003741 local_irq_restore(flags);
3742
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07003743 return ret;
Kaixu Xiaffe86902015-08-06 07:02:32 +00003744}
3745
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003746static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003747{
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003748 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003749
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003750 /*
3751 * If event is enabled and currently active on a CPU, update the
3752 * value in the event structure:
3753 */
3754 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003755 struct perf_read_data data = {
3756 .event = event,
3757 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003758 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003759 };
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003760
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003761 event_cpu = READ_ONCE(event->oncpu);
3762 if ((unsigned)event_cpu >= nr_cpu_ids)
3763 return 0;
3764
3765 preempt_disable();
3766 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003767
Peter Zijlstra58763142016-08-30 10:15:03 +02003768 /*
3769 * Purposely ignore the smp_call_function_single() return
3770 * value.
3771 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003772 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02003773 * scheduled out and that will have updated the event count.
3774 *
3775 * Therefore, either way, we'll have an up-to-date event count
3776 * after this.
3777 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003778 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
3779 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02003780 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003781 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003782 struct perf_event_context *ctx = event->ctx;
3783 unsigned long flags;
3784
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003785 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003786 /*
3787 * may read while context is not active
3788 * (e.g., thread is blocked), in that case
3789 * we cannot update context time
3790 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003791 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003792 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003793 update_cgrp_time_from_event(event);
3794 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003795 if (group)
3796 update_group_times(event);
3797 else
3798 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003799 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003800 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003801
3802 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003803}
3804
3805/*
3806 * Initialize the perf_event context in a task_struct:
3807 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003808static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003809{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003810 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003811 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003812 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003813 INIT_LIST_HEAD(&ctx->pinned_groups);
3814 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003815 INIT_LIST_HEAD(&ctx->event_list);
3816 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003817}
3818
Peter Zijlstraeb184472010-09-07 15:55:13 +02003819static struct perf_event_context *
3820alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003821{
3822 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003823
3824 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3825 if (!ctx)
3826 return NULL;
3827
3828 __perf_event_init_context(ctx);
3829 if (task) {
3830 ctx->task = task;
3831 get_task_struct(task);
3832 }
3833 ctx->pmu = pmu;
3834
3835 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003836}
3837
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003838static struct task_struct *
3839find_lively_task_by_vpid(pid_t vpid)
3840{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003841 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003842
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003843 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003844 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003845 task = current;
3846 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003847 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003848 if (task)
3849 get_task_struct(task);
3850 rcu_read_unlock();
3851
3852 if (!task)
3853 return ERR_PTR(-ESRCH);
3854
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003855 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003856}
3857
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003858/*
3859 * Returns a matching context with refcount and pincount.
3860 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003861static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003862find_get_context(struct pmu *pmu, struct task_struct *task,
3863 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003864{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003865 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003866 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003867 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003868 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003869 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003870 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003871
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003872 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003873 /* Must be root to operate on a CPU event: */
3874 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3875 return ERR_PTR(-EACCES);
3876
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003877 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003878 ctx = &cpuctx->ctx;
3879 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003880 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003881
3882 return ctx;
3883 }
3884
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003885 err = -EINVAL;
3886 ctxn = pmu->task_ctx_nr;
3887 if (ctxn < 0)
3888 goto errout;
3889
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003890 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3891 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3892 if (!task_ctx_data) {
3893 err = -ENOMEM;
3894 goto errout;
3895 }
3896 }
3897
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003898retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003899 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003900 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003901 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003902 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003903
3904 if (task_ctx_data && !ctx->task_ctx_data) {
3905 ctx->task_ctx_data = task_ctx_data;
3906 task_ctx_data = NULL;
3907 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003908 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003909
3910 if (clone_ctx)
3911 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003912 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003913 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003914 err = -ENOMEM;
3915 if (!ctx)
3916 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003917
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003918 if (task_ctx_data) {
3919 ctx->task_ctx_data = task_ctx_data;
3920 task_ctx_data = NULL;
3921 }
3922
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003923 err = 0;
3924 mutex_lock(&task->perf_event_mutex);
3925 /*
3926 * If it has already passed perf_event_exit_task().
3927 * we must see PF_EXITING, it takes this mutex too.
3928 */
3929 if (task->flags & PF_EXITING)
3930 err = -ESRCH;
3931 else if (task->perf_event_ctxp[ctxn])
3932 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003933 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003934 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003935 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003936 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003937 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003938 mutex_unlock(&task->perf_event_mutex);
3939
3940 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003941 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003942
3943 if (err == -EAGAIN)
3944 goto retry;
3945 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003946 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003947 }
3948
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003949 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003950 return ctx;
3951
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003952errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003953 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003954 return ERR_PTR(err);
3955}
3956
Li Zefan6fb29152009-10-15 11:21:42 +08003957static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003958static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003959
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003960static void free_event_rcu(struct rcu_head *head)
3961{
3962 struct perf_event *event;
3963
3964 event = container_of(head, struct perf_event, rcu_head);
3965 if (event->ns)
3966 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003967 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003968 kfree(event);
3969}
3970
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003971static void ring_buffer_attach(struct perf_event *event,
3972 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003973
Kan Liangf2fb6be2016-03-23 11:24:37 -07003974static void detach_sb_event(struct perf_event *event)
3975{
3976 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3977
3978 raw_spin_lock(&pel->lock);
3979 list_del_rcu(&event->sb_list);
3980 raw_spin_unlock(&pel->lock);
3981}
3982
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003983static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003984{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003985 struct perf_event_attr *attr = &event->attr;
3986
Kan Liangf2fb6be2016-03-23 11:24:37 -07003987 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003988 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003989
3990 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003991 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003992
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003993 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3994 attr->comm || attr->comm_exec ||
3995 attr->task ||
3996 attr->context_switch)
3997 return true;
3998 return false;
3999}
4000
4001static void unaccount_pmu_sb_event(struct perf_event *event)
4002{
4003 if (is_sb_event(event))
4004 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004005}
4006
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004007static void unaccount_event_cpu(struct perf_event *event, int cpu)
4008{
4009 if (event->parent)
4010 return;
4011
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004012 if (is_cgroup_event(event))
4013 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4014}
4015
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004016#ifdef CONFIG_NO_HZ_FULL
4017static DEFINE_SPINLOCK(nr_freq_lock);
4018#endif
4019
4020static void unaccount_freq_event_nohz(void)
4021{
4022#ifdef CONFIG_NO_HZ_FULL
4023 spin_lock(&nr_freq_lock);
4024 if (atomic_dec_and_test(&nr_freq_events))
4025 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4026 spin_unlock(&nr_freq_lock);
4027#endif
4028}
4029
4030static void unaccount_freq_event(void)
4031{
4032 if (tick_nohz_full_enabled())
4033 unaccount_freq_event_nohz();
4034 else
4035 atomic_dec(&nr_freq_events);
4036}
4037
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004038static void unaccount_event(struct perf_event *event)
4039{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004040 bool dec = false;
4041
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004042 if (event->parent)
4043 return;
4044
4045 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004046 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004047 if (event->attr.mmap || event->attr.mmap_data)
4048 atomic_dec(&nr_mmap_events);
4049 if (event->attr.comm)
4050 atomic_dec(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05304051 if (event->attr.namespaces)
4052 atomic_dec(&nr_namespaces_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004053 if (event->attr.task)
4054 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02004055 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02004056 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03004057 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004058 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004059 atomic_dec(&nr_switch_events);
4060 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004061 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004062 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004063 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004064 dec = true;
4065
Peter Zijlstra9107c892016-02-24 18:45:45 +01004066 if (dec) {
4067 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4068 schedule_delayed_work(&perf_sched_work, HZ);
4069 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004070
4071 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004072
4073 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004074}
4075
Peter Zijlstra9107c892016-02-24 18:45:45 +01004076static void perf_sched_delayed(struct work_struct *work)
4077{
4078 mutex_lock(&perf_sched_mutex);
4079 if (atomic_dec_and_test(&perf_sched_count))
4080 static_branch_disable(&perf_sched_events);
4081 mutex_unlock(&perf_sched_mutex);
4082}
4083
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004084/*
4085 * The following implement mutual exclusion of events on "exclusive" pmus
4086 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4087 * at a time, so we disallow creating events that might conflict, namely:
4088 *
4089 * 1) cpu-wide events in the presence of per-task events,
4090 * 2) per-task events in the presence of cpu-wide events,
4091 * 3) two matching events on the same context.
4092 *
4093 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004094 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004095 */
4096static int exclusive_event_init(struct perf_event *event)
4097{
4098 struct pmu *pmu = event->pmu;
4099
4100 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4101 return 0;
4102
4103 /*
4104 * Prevent co-existence of per-task and cpu-wide events on the
4105 * same exclusive pmu.
4106 *
4107 * Negative pmu::exclusive_cnt means there are cpu-wide
4108 * events on this "exclusive" pmu, positive means there are
4109 * per-task events.
4110 *
4111 * Since this is called in perf_event_alloc() path, event::ctx
4112 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4113 * to mean "per-task event", because unlike other attach states it
4114 * never gets cleared.
4115 */
4116 if (event->attach_state & PERF_ATTACH_TASK) {
4117 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4118 return -EBUSY;
4119 } else {
4120 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4121 return -EBUSY;
4122 }
4123
4124 return 0;
4125}
4126
4127static void exclusive_event_destroy(struct perf_event *event)
4128{
4129 struct pmu *pmu = event->pmu;
4130
4131 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4132 return;
4133
4134 /* see comment in exclusive_event_init() */
4135 if (event->attach_state & PERF_ATTACH_TASK)
4136 atomic_dec(&pmu->exclusive_cnt);
4137 else
4138 atomic_inc(&pmu->exclusive_cnt);
4139}
4140
4141static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4142{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004143 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004144 (e1->cpu == e2->cpu ||
4145 e1->cpu == -1 ||
4146 e2->cpu == -1))
4147 return true;
4148 return false;
4149}
4150
4151/* Called under the same ctx::mutex as perf_install_in_context() */
4152static bool exclusive_event_installable(struct perf_event *event,
4153 struct perf_event_context *ctx)
4154{
4155 struct perf_event *iter_event;
4156 struct pmu *pmu = event->pmu;
4157
4158 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4159 return true;
4160
4161 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4162 if (exclusive_event_match(iter_event, event))
4163 return false;
4164 }
4165
4166 return true;
4167}
4168
Alexander Shishkin375637b2016-04-27 18:44:46 +03004169static void perf_addr_filters_splice(struct perf_event *event,
4170 struct list_head *head);
4171
Peter Zijlstra683ede42014-05-05 12:11:24 +02004172static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004174 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004175
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004176 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004177
Frederic Weisbecker76369132011-05-19 19:55:04 +02004178 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004179 /*
4180 * Can happen when we close an event with re-directed output.
4181 *
4182 * Since we have a 0 refcount, perf_mmap_close() will skip
4183 * over us; possibly making our ring_buffer_put() the last.
4184 */
4185 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004186 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004187 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004188 }
4189
Stephane Eraniane5d13672011-02-14 11:20:01 +02004190 if (is_cgroup_event(event))
4191 perf_detach_cgroup(event);
4192
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004193 if (!event->parent) {
4194 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4195 put_callchain_buffers();
4196 }
4197
4198 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004199 perf_addr_filters_splice(event, NULL);
4200 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004201
4202 if (event->destroy)
4203 event->destroy(event);
4204
4205 if (event->ctx)
4206 put_ctx(event->ctx);
4207
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004208 exclusive_event_destroy(event);
4209 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004210
4211 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004212}
4213
Peter Zijlstra683ede42014-05-05 12:11:24 +02004214/*
4215 * Used to free events which have a known refcount of 1, such as in error paths
4216 * where the event isn't exposed yet and inherited events.
4217 */
4218static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004219{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004220 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4221 "unexpected event refcount: %ld; ptr=%p\n",
4222 atomic_long_read(&event->refcount), event)) {
4223 /* leak to avoid use-after-free */
4224 return;
4225 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004226
Peter Zijlstra683ede42014-05-05 12:11:24 +02004227 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004228}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004229
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004230/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004231 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004232 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004233static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004234{
Peter Zijlstra88821352010-11-09 19:01:43 +01004235 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004236
Peter Zijlstra88821352010-11-09 19:01:43 +01004237 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004238 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004239 * Matches the smp_store_release() in perf_event_exit_task(). If we
4240 * observe !owner it means the list deletion is complete and we can
4241 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004242 * owner->perf_event_mutex.
4243 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004244 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004245 if (owner) {
4246 /*
4247 * Since delayed_put_task_struct() also drops the last
4248 * task reference we can safely take a new reference
4249 * while holding the rcu_read_lock().
4250 */
4251 get_task_struct(owner);
4252 }
4253 rcu_read_unlock();
4254
4255 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004256 /*
4257 * If we're here through perf_event_exit_task() we're already
4258 * holding ctx->mutex which would be an inversion wrt. the
4259 * normal lock order.
4260 *
4261 * However we can safely take this lock because its the child
4262 * ctx->mutex.
4263 */
4264 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4265
Peter Zijlstra88821352010-11-09 19:01:43 +01004266 /*
4267 * We have to re-check the event->owner field, if it is cleared
4268 * we raced with perf_event_exit_task(), acquiring the mutex
4269 * ensured they're done, and we can proceed with freeing the
4270 * event.
4271 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004272 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004273 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004274 smp_store_release(&event->owner, NULL);
4275 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004276 mutex_unlock(&owner->perf_event_mutex);
4277 put_task_struct(owner);
4278 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004279}
4280
Jiri Olsaf8697762014-08-01 14:33:01 +02004281static void put_event(struct perf_event *event)
4282{
Jiri Olsaf8697762014-08-01 14:33:01 +02004283 if (!atomic_long_dec_and_test(&event->refcount))
4284 return;
4285
Peter Zijlstra683ede42014-05-05 12:11:24 +02004286 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004287}
4288
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004289/*
4290 * Kill an event dead; while event:refcount will preserve the event
4291 * object, it will not preserve its functionality. Once the last 'user'
4292 * gives up the object, we'll destroy the thing.
4293 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004294int perf_event_release_kernel(struct perf_event *event)
4295{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004296 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004297 struct perf_event *child, *tmp;
4298
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004299 /*
4300 * If we got here through err_file: fput(event_file); we will not have
4301 * attached to a context yet.
4302 */
4303 if (!ctx) {
4304 WARN_ON_ONCE(event->attach_state &
4305 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4306 goto no_ctx;
4307 }
4308
Peter Zijlstra88821352010-11-09 19:01:43 +01004309 if (!is_kernel_event(event))
4310 perf_remove_from_owner(event);
4311
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004312 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004313 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004314 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004315
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004316 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004317 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004318 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004319 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004320 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004321 * Anybody acquiring event->child_mutex after the below loop _must_
4322 * also see this, most importantly inherit_event() which will avoid
4323 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004324 *
4325 * Thus this guarantees that we will in fact observe and kill _ALL_
4326 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004327 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004328 event->state = PERF_EVENT_STATE_DEAD;
4329 raw_spin_unlock_irq(&ctx->lock);
4330
4331 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004332
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004333again:
4334 mutex_lock(&event->child_mutex);
4335 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004336
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004337 /*
4338 * Cannot change, child events are not migrated, see the
4339 * comment with perf_event_ctx_lock_nested().
4340 */
4341 ctx = lockless_dereference(child->ctx);
4342 /*
4343 * Since child_mutex nests inside ctx::mutex, we must jump
4344 * through hoops. We start by grabbing a reference on the ctx.
4345 *
4346 * Since the event cannot get freed while we hold the
4347 * child_mutex, the context must also exist and have a !0
4348 * reference count.
4349 */
4350 get_ctx(ctx);
4351
4352 /*
4353 * Now that we have a ctx ref, we can drop child_mutex, and
4354 * acquire ctx::mutex without fear of it going away. Then we
4355 * can re-acquire child_mutex.
4356 */
4357 mutex_unlock(&event->child_mutex);
4358 mutex_lock(&ctx->mutex);
4359 mutex_lock(&event->child_mutex);
4360
4361 /*
4362 * Now that we hold ctx::mutex and child_mutex, revalidate our
4363 * state, if child is still the first entry, it didn't get freed
4364 * and we can continue doing so.
4365 */
4366 tmp = list_first_entry_or_null(&event->child_list,
4367 struct perf_event, child_list);
4368 if (tmp == child) {
4369 perf_remove_from_context(child, DETACH_GROUP);
4370 list_del(&child->child_list);
4371 free_event(child);
4372 /*
4373 * This matches the refcount bump in inherit_event();
4374 * this can't be the last reference.
4375 */
4376 put_event(event);
4377 }
4378
4379 mutex_unlock(&event->child_mutex);
4380 mutex_unlock(&ctx->mutex);
4381 put_ctx(ctx);
4382 goto again;
4383 }
4384 mutex_unlock(&event->child_mutex);
4385
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004386no_ctx:
4387 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004388 return 0;
4389}
4390EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4391
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004392/*
4393 * Called when the last reference to the file is gone.
4394 */
Al Viroa6fa9412012-08-20 14:59:25 +01004395static int perf_release(struct inode *inode, struct file *file)
4396{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004397 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004398 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004399}
4400
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004401static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004402{
4403 struct perf_event *child;
4404 u64 total = 0;
4405
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004406 *enabled = 0;
4407 *running = 0;
4408
Peter Zijlstra6f105812009-11-20 22:19:56 +01004409 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004410
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004411 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004412 total += perf_event_count(event);
4413
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004414 *enabled += event->total_time_enabled +
4415 atomic64_read(&event->child_total_time_enabled);
4416 *running += event->total_time_running +
4417 atomic64_read(&event->child_total_time_running);
4418
4419 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004420 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004421 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004422 *enabled += child->total_time_enabled;
4423 *running += child->total_time_running;
4424 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004425 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004426
4427 return total;
4428}
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004429
4430u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
4431{
4432 struct perf_event_context *ctx;
4433 u64 count;
4434
4435 ctx = perf_event_ctx_lock(event);
4436 count = __perf_event_read_value(event, enabled, running);
4437 perf_event_ctx_unlock(event, ctx);
4438
4439 return count;
4440}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004441EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004442
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004443static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004444 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004445{
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004446 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004447 struct perf_event *sub;
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004448 unsigned long flags;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004449 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004450 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004451
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004452 ret = perf_event_read(leader, true);
4453 if (ret)
4454 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004455
Peter Zijlstraa9cd8192017-09-05 13:38:24 +02004456 raw_spin_lock_irqsave(&ctx->lock, flags);
4457
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004458 /*
4459 * Since we co-schedule groups, {enabled,running} times of siblings
4460 * will be identical to those of the leader, so we only publish one
4461 * set.
4462 */
4463 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4464 values[n++] += leader->total_time_enabled +
4465 atomic64_read(&leader->child_total_time_enabled);
4466 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004467
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004468 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4469 values[n++] += leader->total_time_running +
4470 atomic64_read(&leader->child_total_time_running);
4471 }
4472
4473 /*
4474 * Write {count,id} tuples for every sibling.
4475 */
4476 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004477 if (read_format & PERF_FORMAT_ID)
4478 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004480 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004481 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004482 if (read_format & PERF_FORMAT_ID)
4483 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004484 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004485
Jiri Olsa2aeb1882017-07-20 16:14:55 +02004486 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004487 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004488}
4489
4490static int perf_read_group(struct perf_event *event,
4491 u64 read_format, char __user *buf)
4492{
4493 struct perf_event *leader = event->group_leader, *child;
4494 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004495 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004496 u64 *values;
4497
4498 lockdep_assert_held(&ctx->mutex);
4499
4500 values = kzalloc(event->read_size, GFP_KERNEL);
4501 if (!values)
4502 return -ENOMEM;
4503
4504 values[0] = 1 + leader->nr_siblings;
4505
4506 /*
4507 * By locking the child_mutex of the leader we effectively
4508 * lock the child list of all siblings.. XXX explain how.
4509 */
4510 mutex_lock(&leader->child_mutex);
4511
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004512 ret = __perf_read_group_add(leader, read_format, values);
4513 if (ret)
4514 goto unlock;
4515
4516 list_for_each_entry(child, &leader->child_list, child_list) {
4517 ret = __perf_read_group_add(child, read_format, values);
4518 if (ret)
4519 goto unlock;
4520 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004521
4522 mutex_unlock(&leader->child_mutex);
4523
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004524 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004525 if (copy_to_user(buf, values, event->read_size))
4526 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004527 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004528
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004529unlock:
4530 mutex_unlock(&leader->child_mutex);
4531out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004532 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004533 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004534}
4535
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004536static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004537 u64 read_format, char __user *buf)
4538{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004539 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004540 u64 values[4];
4541 int n = 0;
4542
Peter Zijlstraca0dd442017-09-05 13:23:44 +02004543 values[n++] = __perf_event_read_value(event, &enabled, &running);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004544 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4545 values[n++] = enabled;
4546 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4547 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004548 if (read_format & PERF_FORMAT_ID)
4549 values[n++] = primary_event_id(event);
4550
4551 if (copy_to_user(buf, values, n * sizeof(u64)))
4552 return -EFAULT;
4553
4554 return n * sizeof(u64);
4555}
4556
Jiri Olsadc633982014-09-12 13:18:26 +02004557static bool is_event_hup(struct perf_event *event)
4558{
4559 bool no_children;
4560
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004561 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004562 return false;
4563
4564 mutex_lock(&event->child_mutex);
4565 no_children = list_empty(&event->child_list);
4566 mutex_unlock(&event->child_mutex);
4567 return no_children;
4568}
4569
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004570/*
4571 * Read the performance event - simple non blocking version for now
4572 */
4573static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004574__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004575{
4576 u64 read_format = event->attr.read_format;
4577 int ret;
4578
4579 /*
4580 * Return end-of-file for a read on a event that is in
4581 * error state (i.e. because it was pinned but it couldn't be
4582 * scheduled on to the CPU at some point).
4583 */
4584 if (event->state == PERF_EVENT_STATE_ERROR)
4585 return 0;
4586
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004587 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004588 return -ENOSPC;
4589
4590 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004591 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004592 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004593 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004594 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004595
4596 return ret;
4597}
4598
4599static ssize_t
4600perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4601{
4602 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004603 struct perf_event_context *ctx;
4604 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004605
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004606 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004607 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004608 perf_event_ctx_unlock(event, ctx);
4609
4610 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004611}
4612
4613static unsigned int perf_poll(struct file *file, poll_table *wait)
4614{
4615 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004616 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004617 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004618
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004619 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004620
Jiri Olsadc633982014-09-12 13:18:26 +02004621 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004622 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004623
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004624 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004625 * Pin the event->rb by taking event->mmap_mutex; otherwise
4626 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004627 */
4628 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004629 rb = event->rb;
4630 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004631 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004632 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004633 return events;
4634}
4635
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004636static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004637{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004638 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004639 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004640 perf_event_update_userpage(event);
4641}
4642
4643/*
4644 * Holding the top-level event's child_mutex means that any
4645 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004646 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004647 * task existence requirements of perf_event_enable/disable.
4648 */
4649static void perf_event_for_each_child(struct perf_event *event,
4650 void (*func)(struct perf_event *))
4651{
4652 struct perf_event *child;
4653
4654 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004655
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656 mutex_lock(&event->child_mutex);
4657 func(event);
4658 list_for_each_entry(child, &event->child_list, child_list)
4659 func(child);
4660 mutex_unlock(&event->child_mutex);
4661}
4662
4663static void perf_event_for_each(struct perf_event *event,
4664 void (*func)(struct perf_event *))
4665{
4666 struct perf_event_context *ctx = event->ctx;
4667 struct perf_event *sibling;
4668
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004669 lockdep_assert_held(&ctx->mutex);
4670
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004671 event = event->group_leader;
4672
4673 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004674 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004675 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004676}
4677
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004678static void __perf_event_period(struct perf_event *event,
4679 struct perf_cpu_context *cpuctx,
4680 struct perf_event_context *ctx,
4681 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004682{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004683 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004684 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004685
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004686 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004687 event->attr.sample_freq = value;
4688 } else {
4689 event->attr.sample_period = value;
4690 event->hw.sample_period = value;
4691 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004692
4693 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4694 if (active) {
4695 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004696 /*
4697 * We could be throttled; unthrottle now to avoid the tick
4698 * trying to unthrottle while we already re-started the event.
4699 */
4700 if (event->hw.interrupts == MAX_INTERRUPTS) {
4701 event->hw.interrupts = 0;
4702 perf_log_throttle(event, 1);
4703 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004704 event->pmu->stop(event, PERF_EF_UPDATE);
4705 }
4706
4707 local64_set(&event->hw.period_left, 0);
4708
4709 if (active) {
4710 event->pmu->start(event, PERF_EF_RELOAD);
4711 perf_pmu_enable(ctx->pmu);
4712 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004713}
4714
4715static int perf_event_period(struct perf_event *event, u64 __user *arg)
4716{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004717 u64 value;
4718
4719 if (!is_sampling_event(event))
4720 return -EINVAL;
4721
4722 if (copy_from_user(&value, arg, sizeof(value)))
4723 return -EFAULT;
4724
4725 if (!value)
4726 return -EINVAL;
4727
4728 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4729 return -EINVAL;
4730
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004731 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004732
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004733 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004734}
4735
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004736static const struct file_operations perf_fops;
4737
Al Viro2903ff02012-08-28 12:52:22 -04004738static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004739{
Al Viro2903ff02012-08-28 12:52:22 -04004740 struct fd f = fdget(fd);
4741 if (!f.file)
4742 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004743
Al Viro2903ff02012-08-28 12:52:22 -04004744 if (f.file->f_op != &perf_fops) {
4745 fdput(f);
4746 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004747 }
Al Viro2903ff02012-08-28 12:52:22 -04004748 *p = f;
4749 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004750}
4751
4752static int perf_event_set_output(struct perf_event *event,
4753 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004754static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004755static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004756
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004757static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004758{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004759 void (*func)(struct perf_event *);
4760 u32 flags = arg;
4761
4762 switch (cmd) {
4763 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004764 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004765 break;
4766 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004767 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004768 break;
4769 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004770 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004771 break;
4772
4773 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004774 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004775
4776 case PERF_EVENT_IOC_PERIOD:
4777 return perf_event_period(event, (u64 __user *)arg);
4778
Jiri Olsacf4957f2012-10-24 13:37:58 +02004779 case PERF_EVENT_IOC_ID:
4780 {
4781 u64 id = primary_event_id(event);
4782
4783 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4784 return -EFAULT;
4785 return 0;
4786 }
4787
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004788 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004789 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004790 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004791 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004792 struct perf_event *output_event;
4793 struct fd output;
4794 ret = perf_fget_light(arg, &output);
4795 if (ret)
4796 return ret;
4797 output_event = output.file->private_data;
4798 ret = perf_event_set_output(event, output_event);
4799 fdput(output);
4800 } else {
4801 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004802 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004803 return ret;
4804 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004805
Li Zefan6fb29152009-10-15 11:21:42 +08004806 case PERF_EVENT_IOC_SET_FILTER:
4807 return perf_event_set_filter(event, (void __user *)arg);
4808
Alexei Starovoitov25415172015-03-25 12:49:20 -07004809 case PERF_EVENT_IOC_SET_BPF:
4810 return perf_event_set_bpf_prog(event, arg);
4811
Wang Nan86e79722016-03-28 06:41:29 +00004812 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4813 struct ring_buffer *rb;
4814
4815 rcu_read_lock();
4816 rb = rcu_dereference(event->rb);
4817 if (!rb || !rb->nr_pages) {
4818 rcu_read_unlock();
4819 return -EINVAL;
4820 }
4821 rb_toggle_paused(rb, !!arg);
4822 rcu_read_unlock();
4823 return 0;
4824 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004825 default:
4826 return -ENOTTY;
4827 }
4828
4829 if (flags & PERF_IOC_FLAG_GROUP)
4830 perf_event_for_each(event, func);
4831 else
4832 perf_event_for_each_child(event, func);
4833
4834 return 0;
4835}
4836
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004837static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4838{
4839 struct perf_event *event = file->private_data;
4840 struct perf_event_context *ctx;
4841 long ret;
4842
4843 ctx = perf_event_ctx_lock(event);
4844 ret = _perf_ioctl(event, cmd, arg);
4845 perf_event_ctx_unlock(event, ctx);
4846
4847 return ret;
4848}
4849
Pawel Mollb3f20782014-06-13 16:03:32 +01004850#ifdef CONFIG_COMPAT
4851static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4852 unsigned long arg)
4853{
4854 switch (_IOC_NR(cmd)) {
4855 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4856 case _IOC_NR(PERF_EVENT_IOC_ID):
4857 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4858 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4859 cmd &= ~IOCSIZE_MASK;
4860 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4861 }
4862 break;
4863 }
4864 return perf_ioctl(file, cmd, arg);
4865}
4866#else
4867# define perf_compat_ioctl NULL
4868#endif
4869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004870int perf_event_task_enable(void)
4871{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004872 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004873 struct perf_event *event;
4874
4875 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004876 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4877 ctx = perf_event_ctx_lock(event);
4878 perf_event_for_each_child(event, _perf_event_enable);
4879 perf_event_ctx_unlock(event, ctx);
4880 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881 mutex_unlock(&current->perf_event_mutex);
4882
4883 return 0;
4884}
4885
4886int perf_event_task_disable(void)
4887{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004888 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004889 struct perf_event *event;
4890
4891 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004892 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4893 ctx = perf_event_ctx_lock(event);
4894 perf_event_for_each_child(event, _perf_event_disable);
4895 perf_event_ctx_unlock(event, ctx);
4896 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004897 mutex_unlock(&current->perf_event_mutex);
4898
4899 return 0;
4900}
4901
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004902static int perf_event_index(struct perf_event *event)
4903{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004904 if (event->hw.state & PERF_HES_STOPPED)
4905 return 0;
4906
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004907 if (event->state != PERF_EVENT_STATE_ACTIVE)
4908 return 0;
4909
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004910 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004911}
4912
Eric B Munsonc4794292011-06-23 16:34:38 -04004913static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004914 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004915 u64 *enabled,
4916 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004917{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004918 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004919
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004920 *now = perf_clock();
4921 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004922 *enabled = ctx_time - event->tstamp_enabled;
4923 *running = ctx_time - event->tstamp_running;
4924}
4925
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004926static void perf_event_init_userpage(struct perf_event *event)
4927{
4928 struct perf_event_mmap_page *userpg;
4929 struct ring_buffer *rb;
4930
4931 rcu_read_lock();
4932 rb = rcu_dereference(event->rb);
4933 if (!rb)
4934 goto unlock;
4935
4936 userpg = rb->user_page;
4937
4938 /* Allow new userspace to detect that bit 0 is deprecated */
4939 userpg->cap_bit0_is_deprecated = 1;
4940 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004941 userpg->data_offset = PAGE_SIZE;
4942 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004943
4944unlock:
4945 rcu_read_unlock();
4946}
4947
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004948void __weak arch_perf_update_userpage(
4949 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004950{
4951}
4952
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004953/*
4954 * Callers need to ensure there can be no nesting of this function, otherwise
4955 * the seqlock logic goes bad. We can not serialize this because the arch
4956 * code calls this from NMI context.
4957 */
4958void perf_event_update_userpage(struct perf_event *event)
4959{
4960 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004961 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004962 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004963
4964 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004965 rb = rcu_dereference(event->rb);
4966 if (!rb)
4967 goto unlock;
4968
Eric B Munson0d641202011-06-24 12:26:26 -04004969 /*
4970 * compute total_time_enabled, total_time_running
4971 * based on snapshot values taken when the event
4972 * was last scheduled in.
4973 *
4974 * we cannot simply called update_context_time()
4975 * because of locking issue as we can be called in
4976 * NMI context
4977 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004978 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004979
Frederic Weisbecker76369132011-05-19 19:55:04 +02004980 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004981 /*
4982 * Disable preemption so as to not let the corresponding user-space
4983 * spin too long if we get preempted.
4984 */
4985 preempt_disable();
4986 ++userpg->lock;
4987 barrier();
4988 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004989 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004990 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004991 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004992
Eric B Munson0d641202011-06-24 12:26:26 -04004993 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004994 atomic64_read(&event->child_total_time_enabled);
4995
Eric B Munson0d641202011-06-24 12:26:26 -04004996 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004997 atomic64_read(&event->child_total_time_running);
4998
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004999 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005000
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005001 barrier();
5002 ++userpg->lock;
5003 preempt_enable();
5004unlock:
5005 rcu_read_unlock();
5006}
5007
Dave Jiang11bac802017-02-24 14:56:41 -08005008static int perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005009{
Dave Jiang11bac802017-02-24 14:56:41 -08005010 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02005011 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005012 int ret = VM_FAULT_SIGBUS;
5013
5014 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5015 if (vmf->pgoff == 0)
5016 ret = 0;
5017 return ret;
5018 }
5019
5020 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005021 rb = rcu_dereference(event->rb);
5022 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02005023 goto unlock;
5024
5025 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5026 goto unlock;
5027
Frederic Weisbecker76369132011-05-19 19:55:04 +02005028 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005029 if (!vmf->page)
5030 goto unlock;
5031
5032 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08005033 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02005034 vmf->page->index = vmf->pgoff;
5035
5036 ret = 0;
5037unlock:
5038 rcu_read_unlock();
5039
5040 return ret;
5041}
5042
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005043static void ring_buffer_attach(struct perf_event *event,
5044 struct ring_buffer *rb)
5045{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005046 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005047 unsigned long flags;
5048
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005049 if (event->rb) {
5050 /*
5051 * Should be impossible, we set this when removing
5052 * event->rb_entry and wait/clear when adding event->rb_entry.
5053 */
5054 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005055
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005056 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005057 spin_lock_irqsave(&old_rb->event_lock, flags);
5058 list_del_rcu(&event->rb_entry);
5059 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005060
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005061 event->rcu_batches = get_state_synchronize_rcu();
5062 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005063 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005064
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005065 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02005066 if (event->rcu_pending) {
5067 cond_synchronize_rcu(event->rcu_batches);
5068 event->rcu_pending = 0;
5069 }
5070
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005071 spin_lock_irqsave(&rb->event_lock, flags);
5072 list_add_rcu(&event->rb_entry, &rb->event_list);
5073 spin_unlock_irqrestore(&rb->event_lock, flags);
5074 }
5075
Alexander Shishkin767ae082016-09-06 16:23:49 +03005076 /*
5077 * Avoid racing with perf_mmap_close(AUX): stop the event
5078 * before swizzling the event::rb pointer; if it's getting
5079 * unmapped, its aux_mmap_count will be 0 and it won't
5080 * restart. See the comment in __perf_pmu_output_stop().
5081 *
5082 * Data will inevitably be lost when set_output is done in
5083 * mid-air, but then again, whoever does it like this is
5084 * not in for the data anyway.
5085 */
5086 if (has_aux(event))
5087 perf_event_stop(event, 0);
5088
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005089 rcu_assign_pointer(event->rb, rb);
5090
5091 if (old_rb) {
5092 ring_buffer_put(old_rb);
5093 /*
5094 * Since we detached before setting the new rb, so that we
5095 * could attach the new rb, we could have missed a wakeup.
5096 * Provide it now.
5097 */
5098 wake_up_all(&event->waitq);
5099 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005100}
5101
5102static void ring_buffer_wakeup(struct perf_event *event)
5103{
5104 struct ring_buffer *rb;
5105
5106 rcu_read_lock();
5107 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005108 if (rb) {
5109 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5110 wake_up_all(&event->waitq);
5111 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005112 rcu_read_unlock();
5113}
5114
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005115struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005116{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005117 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005118
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005119 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005120 rb = rcu_dereference(event->rb);
5121 if (rb) {
5122 if (!atomic_inc_not_zero(&rb->refcount))
5123 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005124 }
5125 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005126
Frederic Weisbecker76369132011-05-19 19:55:04 +02005127 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005128}
5129
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005130void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005131{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005132 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005133 return;
5134
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005135 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005136
Frederic Weisbecker76369132011-05-19 19:55:04 +02005137 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005138}
5139
5140static void perf_mmap_open(struct vm_area_struct *vma)
5141{
5142 struct perf_event *event = vma->vm_file->private_data;
5143
5144 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005145 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005146
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005147 if (vma->vm_pgoff)
5148 atomic_inc(&event->rb->aux_mmap_count);
5149
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005150 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005151 event->pmu->event_mapped(event, vma->vm_mm);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152}
5153
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005154static void perf_pmu_output_stop(struct perf_event *event);
5155
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005156/*
5157 * A buffer can be mmap()ed multiple times; either directly through the same
5158 * event, or through other events by use of perf_event_set_output().
5159 *
5160 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5161 * the buffer here, where we still have a VM context. This means we need
5162 * to detach all events redirecting to us.
5163 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005164static void perf_mmap_close(struct vm_area_struct *vma)
5165{
5166 struct perf_event *event = vma->vm_file->private_data;
5167
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005168 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005169 struct user_struct *mmap_user = rb->mmap_user;
5170 int mmap_locked = rb->mmap_locked;
5171 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005172
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005173 if (event->pmu->event_unmapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005174 event->pmu->event_unmapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005175
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005176 /*
5177 * rb->aux_mmap_count will always drop before rb->mmap_count and
5178 * event->mmap_count, so it is ok to use event->mmap_mutex to
5179 * serialize with perf_mmap here.
5180 */
5181 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5182 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005183 /*
5184 * Stop all AUX events that are writing to this buffer,
5185 * so that we can free its AUX pages and corresponding PMU
5186 * data. Note that after rb::aux_mmap_count dropped to zero,
5187 * they won't start any more (see perf_aux_output_begin()).
5188 */
5189 perf_pmu_output_stop(event);
5190
5191 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005192 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5193 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5194
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005195 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005196 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005197 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5198
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005199 mutex_unlock(&event->mmap_mutex);
5200 }
5201
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005202 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005203
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005204 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005205 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005206
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005207 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005208 mutex_unlock(&event->mmap_mutex);
5209
5210 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005211 if (atomic_read(&rb->mmap_count))
5212 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005213
5214 /*
5215 * No other mmap()s, detach from all other events that might redirect
5216 * into the now unreachable buffer. Somewhat complicated by the
5217 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5218 */
5219again:
5220 rcu_read_lock();
5221 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5222 if (!atomic_long_inc_not_zero(&event->refcount)) {
5223 /*
5224 * This event is en-route to free_event() which will
5225 * detach it and remove it from the list.
5226 */
5227 continue;
5228 }
5229 rcu_read_unlock();
5230
5231 mutex_lock(&event->mmap_mutex);
5232 /*
5233 * Check we didn't race with perf_event_set_output() which can
5234 * swizzle the rb from under us while we were waiting to
5235 * acquire mmap_mutex.
5236 *
5237 * If we find a different rb; ignore this event, a next
5238 * iteration will no longer find it on the list. We have to
5239 * still restart the iteration to make sure we're not now
5240 * iterating the wrong list.
5241 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005242 if (event->rb == rb)
5243 ring_buffer_attach(event, NULL);
5244
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005245 mutex_unlock(&event->mmap_mutex);
5246 put_event(event);
5247
5248 /*
5249 * Restart the iteration; either we're on the wrong list or
5250 * destroyed its integrity by doing a deletion.
5251 */
5252 goto again;
5253 }
5254 rcu_read_unlock();
5255
5256 /*
5257 * It could be there's still a few 0-ref events on the list; they'll
5258 * get cleaned up by free_event() -- they'll also still have their
5259 * ref on the rb and will free it whenever they are done with it.
5260 *
5261 * Aside from that, this buffer is 'fully' detached and unmapped,
5262 * undo the VM accounting.
5263 */
5264
5265 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5266 vma->vm_mm->pinned_vm -= mmap_locked;
5267 free_uid(mmap_user);
5268
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005269out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005270 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005271}
5272
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005273static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005274 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005275 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005276 .fault = perf_mmap_fault,
5277 .page_mkwrite = perf_mmap_fault,
5278};
5279
5280static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5281{
5282 struct perf_event *event = file->private_data;
5283 unsigned long user_locked, user_lock_limit;
5284 struct user_struct *user = current_user();
5285 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005286 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005287 unsigned long vma_size;
5288 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005289 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005290 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005291
Peter Zijlstrac7920612010-05-18 10:33:24 +02005292 /*
5293 * Don't allow mmap() of inherited per-task counters. This would
5294 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005295 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005296 */
5297 if (event->cpu == -1 && event->attr.inherit)
5298 return -EINVAL;
5299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005300 if (!(vma->vm_flags & VM_SHARED))
5301 return -EINVAL;
5302
5303 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005304
5305 if (vma->vm_pgoff == 0) {
5306 nr_pages = (vma_size / PAGE_SIZE) - 1;
5307 } else {
5308 /*
5309 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5310 * mapped, all subsequent mappings should have the same size
5311 * and offset. Must be above the normal perf buffer.
5312 */
5313 u64 aux_offset, aux_size;
5314
5315 if (!event->rb)
5316 return -EINVAL;
5317
5318 nr_pages = vma_size / PAGE_SIZE;
5319
5320 mutex_lock(&event->mmap_mutex);
5321 ret = -EINVAL;
5322
5323 rb = event->rb;
5324 if (!rb)
5325 goto aux_unlock;
5326
5327 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
5328 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
5329
5330 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5331 goto aux_unlock;
5332
5333 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5334 goto aux_unlock;
5335
5336 /* already mapped with a different offset */
5337 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5338 goto aux_unlock;
5339
5340 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5341 goto aux_unlock;
5342
5343 /* already mapped with a different size */
5344 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5345 goto aux_unlock;
5346
5347 if (!is_power_of_2(nr_pages))
5348 goto aux_unlock;
5349
5350 if (!atomic_inc_not_zero(&rb->mmap_count))
5351 goto aux_unlock;
5352
5353 if (rb_has_aux(rb)) {
5354 atomic_inc(&rb->aux_mmap_count);
5355 ret = 0;
5356 goto unlock;
5357 }
5358
5359 atomic_set(&rb->aux_mmap_count, 1);
5360 user_extra = nr_pages;
5361
5362 goto accounting;
5363 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005364
5365 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005366 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005367 * can do bitmasks instead of modulo.
5368 */
Kan Liang2ed11312015-03-02 02:14:26 -05005369 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005370 return -EINVAL;
5371
5372 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5373 return -EINVAL;
5374
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005375 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005376again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005377 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005378 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005379 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005380 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005381 goto unlock;
5382 }
5383
5384 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5385 /*
5386 * Raced against perf_mmap_close() through
5387 * perf_event_set_output(). Try again, hope for better
5388 * luck.
5389 */
5390 mutex_unlock(&event->mmap_mutex);
5391 goto again;
5392 }
5393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005394 goto unlock;
5395 }
5396
5397 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005398
5399accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005400 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5401
5402 /*
5403 * Increase the limit linearly with more CPUs:
5404 */
5405 user_lock_limit *= num_online_cpus();
5406
5407 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5408
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005409 if (user_locked > user_lock_limit)
5410 extra = user_locked - user_lock_limit;
5411
Jiri Slaby78d7d402010-03-05 13:42:54 -08005412 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005414 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005415
5416 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5417 !capable(CAP_IPC_LOCK)) {
5418 ret = -EPERM;
5419 goto unlock;
5420 }
5421
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005422 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005423
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005424 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005425 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005426
Frederic Weisbecker76369132011-05-19 19:55:04 +02005427 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005428 rb = rb_alloc(nr_pages,
5429 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5430 event->cpu, flags);
5431
5432 if (!rb) {
5433 ret = -ENOMEM;
5434 goto unlock;
5435 }
5436
5437 atomic_set(&rb->mmap_count, 1);
5438 rb->mmap_user = get_current_user();
5439 rb->mmap_locked = extra;
5440
5441 ring_buffer_attach(event, rb);
5442
5443 perf_event_init_userpage(event);
5444 perf_event_update_userpage(event);
5445 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005446 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5447 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005448 if (!ret)
5449 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005450 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005453 if (!ret) {
5454 atomic_long_add(user_extra, &user->locked_vm);
5455 vma->vm_mm->pinned_vm += extra;
5456
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005457 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005458 } else if (rb) {
5459 atomic_dec(&rb->mmap_count);
5460 }
5461aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005462 mutex_unlock(&event->mmap_mutex);
5463
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005464 /*
5465 * Since pinned accounting is per vm we cannot allow fork() to copy our
5466 * vma.
5467 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005468 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469 vma->vm_ops = &perf_mmap_vmops;
5470
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005471 if (event->pmu->event_mapped)
Peter Zijlstrabfe334922017-08-02 19:39:30 +02005472 event->pmu->event_mapped(event, vma->vm_mm);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005473
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005474 return ret;
5475}
5476
5477static int perf_fasync(int fd, struct file *filp, int on)
5478{
Al Viro496ad9a2013-01-23 17:07:38 -05005479 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005480 struct perf_event *event = filp->private_data;
5481 int retval;
5482
Al Viro59551022016-01-22 15:40:57 -05005483 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005484 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005485 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005486
5487 if (retval < 0)
5488 return retval;
5489
5490 return 0;
5491}
5492
5493static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005494 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005495 .release = perf_release,
5496 .read = perf_read,
5497 .poll = perf_poll,
5498 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005499 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005500 .mmap = perf_mmap,
5501 .fasync = perf_fasync,
5502};
5503
5504/*
5505 * Perf event wakeup
5506 *
5507 * If there's data, ensure we set the poll() state and publish everything
5508 * to user-space before waking everybody up.
5509 */
5510
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005511static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5512{
5513 /* only the parent has fasync state */
5514 if (event->parent)
5515 event = event->parent;
5516 return &event->fasync;
5517}
5518
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005519void perf_event_wakeup(struct perf_event *event)
5520{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005521 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005522
5523 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005524 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005525 event->pending_kill = 0;
5526 }
5527}
5528
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005529static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005530{
5531 struct perf_event *event = container_of(entry,
5532 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005533 int rctx;
5534
5535 rctx = perf_swevent_get_recursion_context();
5536 /*
5537 * If we 'fail' here, that's OK, it means recursion is already disabled
5538 * and we won't recurse 'further'.
5539 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005540
5541 if (event->pending_disable) {
5542 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005543 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005544 }
5545
5546 if (event->pending_wakeup) {
5547 event->pending_wakeup = 0;
5548 perf_event_wakeup(event);
5549 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005550
5551 if (rctx >= 0)
5552 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005553}
5554
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005555/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005556 * We assume there is only KVM supporting the callbacks.
5557 * Later on, we might change it to a list if there is
5558 * another virtualization implementation supporting the callbacks.
5559 */
5560struct perf_guest_info_callbacks *perf_guest_cbs;
5561
5562int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5563{
5564 perf_guest_cbs = cbs;
5565 return 0;
5566}
5567EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5568
5569int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5570{
5571 perf_guest_cbs = NULL;
5572 return 0;
5573}
5574EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5575
Jiri Olsa40189942012-08-07 15:20:37 +02005576static void
5577perf_output_sample_regs(struct perf_output_handle *handle,
5578 struct pt_regs *regs, u64 mask)
5579{
5580 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305581 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005582
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305583 bitmap_from_u64(_mask, mask);
5584 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005585 u64 val;
5586
5587 val = perf_reg_value(regs, bit);
5588 perf_output_put(handle, val);
5589 }
5590}
5591
Stephane Eranian60e23642014-09-24 13:48:37 +02005592static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005593 struct pt_regs *regs,
5594 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005595{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005596 if (user_mode(regs)) {
5597 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005598 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005599 } else if (current->mm) {
5600 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005601 } else {
5602 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5603 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005604 }
5605}
5606
Stephane Eranian60e23642014-09-24 13:48:37 +02005607static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5608 struct pt_regs *regs)
5609{
5610 regs_intr->regs = regs;
5611 regs_intr->abi = perf_reg_abi(current);
5612}
5613
5614
Jiri Olsac5ebced2012-08-07 15:20:40 +02005615/*
5616 * Get remaining task size from user stack pointer.
5617 *
5618 * It'd be better to take stack vma map and limit this more
5619 * precisly, but there's no way to get it safely under interrupt,
5620 * so using TASK_SIZE as limit.
5621 */
5622static u64 perf_ustack_task_size(struct pt_regs *regs)
5623{
5624 unsigned long addr = perf_user_stack_pointer(regs);
5625
5626 if (!addr || addr >= TASK_SIZE)
5627 return 0;
5628
5629 return TASK_SIZE - addr;
5630}
5631
5632static u16
5633perf_sample_ustack_size(u16 stack_size, u16 header_size,
5634 struct pt_regs *regs)
5635{
5636 u64 task_size;
5637
5638 /* No regs, no stack pointer, no dump. */
5639 if (!regs)
5640 return 0;
5641
5642 /*
5643 * Check if we fit in with the requested stack size into the:
5644 * - TASK_SIZE
5645 * If we don't, we limit the size to the TASK_SIZE.
5646 *
5647 * - remaining sample size
5648 * If we don't, we customize the stack size to
5649 * fit in to the remaining sample size.
5650 */
5651
5652 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5653 stack_size = min(stack_size, (u16) task_size);
5654
5655 /* Current header size plus static size and dynamic size. */
5656 header_size += 2 * sizeof(u64);
5657
5658 /* Do we fit in with the current stack dump size? */
5659 if ((u16) (header_size + stack_size) < header_size) {
5660 /*
5661 * If we overflow the maximum size for the sample,
5662 * we customize the stack dump size to fit in.
5663 */
5664 stack_size = USHRT_MAX - header_size - sizeof(u64);
5665 stack_size = round_up(stack_size, sizeof(u64));
5666 }
5667
5668 return stack_size;
5669}
5670
5671static void
5672perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5673 struct pt_regs *regs)
5674{
5675 /* Case of a kernel thread, nothing to dump */
5676 if (!regs) {
5677 u64 size = 0;
5678 perf_output_put(handle, size);
5679 } else {
5680 unsigned long sp;
5681 unsigned int rem;
5682 u64 dyn_size;
5683
5684 /*
5685 * We dump:
5686 * static size
5687 * - the size requested by user or the best one we can fit
5688 * in to the sample max size
5689 * data
5690 * - user stack dump data
5691 * dynamic size
5692 * - the actual dumped size
5693 */
5694
5695 /* Static size. */
5696 perf_output_put(handle, dump_size);
5697
5698 /* Data. */
5699 sp = perf_user_stack_pointer(regs);
5700 rem = __output_copy_user(handle, (void *) sp, dump_size);
5701 dyn_size = dump_size - rem;
5702
5703 perf_output_skip(handle, rem);
5704
5705 /* Dynamic size. */
5706 perf_output_put(handle, dyn_size);
5707 }
5708}
5709
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005710static void __perf_event_header__init_id(struct perf_event_header *header,
5711 struct perf_sample_data *data,
5712 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005713{
5714 u64 sample_type = event->attr.sample_type;
5715
5716 data->type = sample_type;
5717 header->size += event->id_header_size;
5718
5719 if (sample_type & PERF_SAMPLE_TID) {
5720 /* namespace issues */
5721 data->tid_entry.pid = perf_event_pid(event, current);
5722 data->tid_entry.tid = perf_event_tid(event, current);
5723 }
5724
5725 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005726 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005727
Adrian Hunterff3d5272013-08-27 11:23:07 +03005728 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005729 data->id = primary_event_id(event);
5730
5731 if (sample_type & PERF_SAMPLE_STREAM_ID)
5732 data->stream_id = event->id;
5733
5734 if (sample_type & PERF_SAMPLE_CPU) {
5735 data->cpu_entry.cpu = raw_smp_processor_id();
5736 data->cpu_entry.reserved = 0;
5737 }
5738}
5739
Frederic Weisbecker76369132011-05-19 19:55:04 +02005740void perf_event_header__init_id(struct perf_event_header *header,
5741 struct perf_sample_data *data,
5742 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005743{
5744 if (event->attr.sample_id_all)
5745 __perf_event_header__init_id(header, data, event);
5746}
5747
5748static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5749 struct perf_sample_data *data)
5750{
5751 u64 sample_type = data->type;
5752
5753 if (sample_type & PERF_SAMPLE_TID)
5754 perf_output_put(handle, data->tid_entry);
5755
5756 if (sample_type & PERF_SAMPLE_TIME)
5757 perf_output_put(handle, data->time);
5758
5759 if (sample_type & PERF_SAMPLE_ID)
5760 perf_output_put(handle, data->id);
5761
5762 if (sample_type & PERF_SAMPLE_STREAM_ID)
5763 perf_output_put(handle, data->stream_id);
5764
5765 if (sample_type & PERF_SAMPLE_CPU)
5766 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005767
5768 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5769 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005770}
5771
Frederic Weisbecker76369132011-05-19 19:55:04 +02005772void perf_event__output_id_sample(struct perf_event *event,
5773 struct perf_output_handle *handle,
5774 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005775{
5776 if (event->attr.sample_id_all)
5777 __perf_event__output_id_sample(handle, sample);
5778}
5779
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005780static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005781 struct perf_event *event,
5782 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005783{
5784 u64 read_format = event->attr.read_format;
5785 u64 values[4];
5786 int n = 0;
5787
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005788 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005789 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005790 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791 atomic64_read(&event->child_total_time_enabled);
5792 }
5793 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005794 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005795 atomic64_read(&event->child_total_time_running);
5796 }
5797 if (read_format & PERF_FORMAT_ID)
5798 values[n++] = primary_event_id(event);
5799
Frederic Weisbecker76369132011-05-19 19:55:04 +02005800 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005801}
5802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005803static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005804 struct perf_event *event,
5805 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005806{
5807 struct perf_event *leader = event->group_leader, *sub;
5808 u64 read_format = event->attr.read_format;
5809 u64 values[5];
5810 int n = 0;
5811
5812 values[n++] = 1 + leader->nr_siblings;
5813
5814 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005815 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005816
5817 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005818 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005819
5820 if (leader != event)
5821 leader->pmu->read(leader);
5822
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005823 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005824 if (read_format & PERF_FORMAT_ID)
5825 values[n++] = primary_event_id(leader);
5826
Frederic Weisbecker76369132011-05-19 19:55:04 +02005827 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005828
5829 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5830 n = 0;
5831
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005832 if ((sub != event) &&
5833 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005834 sub->pmu->read(sub);
5835
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005836 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005837 if (read_format & PERF_FORMAT_ID)
5838 values[n++] = primary_event_id(sub);
5839
Frederic Weisbecker76369132011-05-19 19:55:04 +02005840 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005841 }
5842}
5843
Stephane Eranianeed01522010-10-26 16:08:01 +02005844#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5845 PERF_FORMAT_TOTAL_TIME_RUNNING)
5846
Peter Zijlstraba5213a2017-05-30 11:45:12 +02005847/*
5848 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
5849 *
5850 * The problem is that its both hard and excessively expensive to iterate the
5851 * child list, not to mention that its impossible to IPI the children running
5852 * on another CPU, from interrupt/NMI context.
5853 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005854static void perf_output_read(struct perf_output_handle *handle,
5855 struct perf_event *event)
5856{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005857 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005858 u64 read_format = event->attr.read_format;
5859
5860 /*
5861 * compute total_time_enabled, total_time_running
5862 * based on snapshot values taken when the event
5863 * was last scheduled in.
5864 *
5865 * we cannot simply called update_context_time()
5866 * because of locking issue as we are called in
5867 * NMI context
5868 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005869 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005870 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005872 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005873 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005874 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005875 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005876}
5877
5878void perf_output_sample(struct perf_output_handle *handle,
5879 struct perf_event_header *header,
5880 struct perf_sample_data *data,
5881 struct perf_event *event)
5882{
5883 u64 sample_type = data->type;
5884
5885 perf_output_put(handle, *header);
5886
Adrian Hunterff3d5272013-08-27 11:23:07 +03005887 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5888 perf_output_put(handle, data->id);
5889
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005890 if (sample_type & PERF_SAMPLE_IP)
5891 perf_output_put(handle, data->ip);
5892
5893 if (sample_type & PERF_SAMPLE_TID)
5894 perf_output_put(handle, data->tid_entry);
5895
5896 if (sample_type & PERF_SAMPLE_TIME)
5897 perf_output_put(handle, data->time);
5898
5899 if (sample_type & PERF_SAMPLE_ADDR)
5900 perf_output_put(handle, data->addr);
5901
5902 if (sample_type & PERF_SAMPLE_ID)
5903 perf_output_put(handle, data->id);
5904
5905 if (sample_type & PERF_SAMPLE_STREAM_ID)
5906 perf_output_put(handle, data->stream_id);
5907
5908 if (sample_type & PERF_SAMPLE_CPU)
5909 perf_output_put(handle, data->cpu_entry);
5910
5911 if (sample_type & PERF_SAMPLE_PERIOD)
5912 perf_output_put(handle, data->period);
5913
5914 if (sample_type & PERF_SAMPLE_READ)
5915 perf_output_read(handle, event);
5916
5917 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5918 if (data->callchain) {
5919 int size = 1;
5920
5921 if (data->callchain)
5922 size += data->callchain->nr;
5923
5924 size *= sizeof(u64);
5925
Frederic Weisbecker76369132011-05-19 19:55:04 +02005926 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005927 } else {
5928 u64 nr = 0;
5929 perf_output_put(handle, nr);
5930 }
5931 }
5932
5933 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005934 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005935
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005936 if (raw) {
5937 struct perf_raw_frag *frag = &raw->frag;
5938
5939 perf_output_put(handle, raw->size);
5940 do {
5941 if (frag->copy) {
5942 __output_custom(handle, frag->copy,
5943 frag->data, frag->size);
5944 } else {
5945 __output_copy(handle, frag->data,
5946 frag->size);
5947 }
5948 if (perf_raw_frag_last(frag))
5949 break;
5950 frag = frag->next;
5951 } while (1);
5952 if (frag->pad)
5953 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005954 } else {
5955 struct {
5956 u32 size;
5957 u32 data;
5958 } raw = {
5959 .size = sizeof(u32),
5960 .data = 0,
5961 };
5962 perf_output_put(handle, raw);
5963 }
5964 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005965
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005966 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5967 if (data->br_stack) {
5968 size_t size;
5969
5970 size = data->br_stack->nr
5971 * sizeof(struct perf_branch_entry);
5972
5973 perf_output_put(handle, data->br_stack->nr);
5974 perf_output_copy(handle, data->br_stack->entries, size);
5975 } else {
5976 /*
5977 * we always store at least the value of nr
5978 */
5979 u64 nr = 0;
5980 perf_output_put(handle, nr);
5981 }
5982 }
Jiri Olsa40189942012-08-07 15:20:37 +02005983
5984 if (sample_type & PERF_SAMPLE_REGS_USER) {
5985 u64 abi = data->regs_user.abi;
5986
5987 /*
5988 * If there are no regs to dump, notice it through
5989 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5990 */
5991 perf_output_put(handle, abi);
5992
5993 if (abi) {
5994 u64 mask = event->attr.sample_regs_user;
5995 perf_output_sample_regs(handle,
5996 data->regs_user.regs,
5997 mask);
5998 }
5999 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006000
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006001 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02006002 perf_output_sample_ustack(handle,
6003 data->stack_user_size,
6004 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006005 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01006006
6007 if (sample_type & PERF_SAMPLE_WEIGHT)
6008 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01006009
6010 if (sample_type & PERF_SAMPLE_DATA_SRC)
6011 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006012
Andi Kleenfdfbbd02013-09-20 07:40:39 -07006013 if (sample_type & PERF_SAMPLE_TRANSACTION)
6014 perf_output_put(handle, data->txn);
6015
Stephane Eranian60e23642014-09-24 13:48:37 +02006016 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6017 u64 abi = data->regs_intr.abi;
6018 /*
6019 * If there are no regs to dump, notice it through
6020 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6021 */
6022 perf_output_put(handle, abi);
6023
6024 if (abi) {
6025 u64 mask = event->attr.sample_regs_intr;
6026
6027 perf_output_sample_regs(handle,
6028 data->regs_intr.regs,
6029 mask);
6030 }
6031 }
6032
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006033 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6034 perf_output_put(handle, data->phys_addr);
6035
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02006036 if (!event->attr.watermark) {
6037 int wakeup_events = event->attr.wakeup_events;
6038
6039 if (wakeup_events) {
6040 struct ring_buffer *rb = handle->rb;
6041 int events = local_inc_return(&rb->events);
6042
6043 if (events >= wakeup_events) {
6044 local_sub(wakeup_events, &rb->events);
6045 local_inc(&rb->wakeup);
6046 }
6047 }
6048 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006049}
6050
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006051static u64 perf_virt_to_phys(u64 virt)
6052{
6053 u64 phys_addr = 0;
6054 struct page *p = NULL;
6055
6056 if (!virt)
6057 return 0;
6058
6059 if (virt >= TASK_SIZE) {
6060 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6061 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6062 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6063 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6064 } else {
6065 /*
6066 * Walking the pages tables for user address.
6067 * Interrupts are disabled, so it prevents any tear down
6068 * of the page tables.
6069 * Try IRQ-safe __get_user_pages_fast first.
6070 * If failed, leave phys_addr as 0.
6071 */
6072 if ((current->mm != NULL) &&
6073 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6074 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6075
6076 if (p)
6077 put_page(p);
6078 }
6079
6080 return phys_addr;
6081}
6082
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006083void perf_prepare_sample(struct perf_event_header *header,
6084 struct perf_sample_data *data,
6085 struct perf_event *event,
6086 struct pt_regs *regs)
6087{
6088 u64 sample_type = event->attr.sample_type;
6089
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006090 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006091 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006092
6093 header->misc = 0;
6094 header->misc |= perf_misc_flags(regs);
6095
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006096 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006097
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006098 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006099 data->ip = perf_instruction_pointer(regs);
6100
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006101 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
6102 int size = 1;
6103
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006104 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006105
6106 if (data->callchain)
6107 size += data->callchain->nr;
6108
6109 header->size += size * sizeof(u64);
6110 }
6111
6112 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006113 struct perf_raw_record *raw = data->raw;
6114 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006115
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006116 if (raw) {
6117 struct perf_raw_frag *frag = &raw->frag;
6118 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006119
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006120 do {
6121 sum += frag->size;
6122 if (perf_raw_frag_last(frag))
6123 break;
6124 frag = frag->next;
6125 } while (1);
6126
6127 size = round_up(sum + sizeof(u32), sizeof(u64));
6128 raw->size = size - sizeof(u32);
6129 frag->pad = raw->size - sum;
6130 } else {
6131 size = sizeof(u64);
6132 }
6133
6134 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006135 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006136
6137 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6138 int size = sizeof(u64); /* nr */
6139 if (data->br_stack) {
6140 size += data->br_stack->nr
6141 * sizeof(struct perf_branch_entry);
6142 }
6143 header->size += size;
6144 }
Jiri Olsa40189942012-08-07 15:20:37 +02006145
Peter Zijlstra25657112014-09-24 13:48:42 +02006146 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006147 perf_sample_regs_user(&data->regs_user, regs,
6148 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006149
Jiri Olsa40189942012-08-07 15:20:37 +02006150 if (sample_type & PERF_SAMPLE_REGS_USER) {
6151 /* regs dump ABI info */
6152 int size = sizeof(u64);
6153
Jiri Olsa40189942012-08-07 15:20:37 +02006154 if (data->regs_user.regs) {
6155 u64 mask = event->attr.sample_regs_user;
6156 size += hweight64(mask) * sizeof(u64);
6157 }
6158
6159 header->size += size;
6160 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006161
6162 if (sample_type & PERF_SAMPLE_STACK_USER) {
6163 /*
6164 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
6165 * processed as the last one or have additional check added
6166 * in case new sample type is added, because we could eat
6167 * up the rest of the sample size.
6168 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006169 u16 stack_size = event->attr.sample_stack_user;
6170 u16 size = sizeof(u64);
6171
Jiri Olsac5ebced2012-08-07 15:20:40 +02006172 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006173 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006174
6175 /*
6176 * If there is something to dump, add space for the dump
6177 * itself and for the field that tells the dynamic size,
6178 * which is how many have been actually dumped.
6179 */
6180 if (stack_size)
6181 size += sizeof(u64) + stack_size;
6182
6183 data->stack_user_size = stack_size;
6184 header->size += size;
6185 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006186
6187 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6188 /* regs dump ABI info */
6189 int size = sizeof(u64);
6190
6191 perf_sample_regs_intr(&data->regs_intr, regs);
6192
6193 if (data->regs_intr.regs) {
6194 u64 mask = event->attr.sample_regs_intr;
6195
6196 size += hweight64(mask) * sizeof(u64);
6197 }
6198
6199 header->size += size;
6200 }
Kan Liangfc7ce9c2017-08-28 20:52:49 -04006201
6202 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6203 data->phys_addr = perf_virt_to_phys(data->addr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006204}
6205
Wang Nan9ecda412016-04-05 14:11:18 +00006206static void __always_inline
6207__perf_event_output(struct perf_event *event,
6208 struct perf_sample_data *data,
6209 struct pt_regs *regs,
6210 int (*output_begin)(struct perf_output_handle *,
6211 struct perf_event *,
6212 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006213{
6214 struct perf_output_handle handle;
6215 struct perf_event_header header;
6216
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006217 /* protect the callchain buffers */
6218 rcu_read_lock();
6219
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006220 perf_prepare_sample(&header, data, event, regs);
6221
Wang Nan9ecda412016-04-05 14:11:18 +00006222 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006223 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006224
6225 perf_output_sample(&handle, &header, data, event);
6226
6227 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006228
6229exit:
6230 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006231}
6232
Wang Nan9ecda412016-04-05 14:11:18 +00006233void
6234perf_event_output_forward(struct perf_event *event,
6235 struct perf_sample_data *data,
6236 struct pt_regs *regs)
6237{
6238 __perf_event_output(event, data, regs, perf_output_begin_forward);
6239}
6240
6241void
6242perf_event_output_backward(struct perf_event *event,
6243 struct perf_sample_data *data,
6244 struct pt_regs *regs)
6245{
6246 __perf_event_output(event, data, regs, perf_output_begin_backward);
6247}
6248
6249void
6250perf_event_output(struct perf_event *event,
6251 struct perf_sample_data *data,
6252 struct pt_regs *regs)
6253{
6254 __perf_event_output(event, data, regs, perf_output_begin);
6255}
6256
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006257/*
6258 * read event_id
6259 */
6260
6261struct perf_read_event {
6262 struct perf_event_header header;
6263
6264 u32 pid;
6265 u32 tid;
6266};
6267
6268static void
6269perf_event_read_event(struct perf_event *event,
6270 struct task_struct *task)
6271{
6272 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006273 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006274 struct perf_read_event read_event = {
6275 .header = {
6276 .type = PERF_RECORD_READ,
6277 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006278 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006279 },
6280 .pid = perf_event_pid(event, task),
6281 .tid = perf_event_tid(event, task),
6282 };
6283 int ret;
6284
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006285 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006286 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006287 if (ret)
6288 return;
6289
6290 perf_output_put(&handle, read_event);
6291 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006292 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006293
6294 perf_output_end(&handle);
6295}
6296
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006297typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006298
6299static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006300perf_iterate_ctx(struct perf_event_context *ctx,
6301 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006302 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006303{
6304 struct perf_event *event;
6305
6306 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006307 if (!all) {
6308 if (event->state < PERF_EVENT_STATE_INACTIVE)
6309 continue;
6310 if (!event_filter_match(event))
6311 continue;
6312 }
6313
Jiri Olsa67516842013-07-09 18:56:31 +02006314 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006315 }
6316}
6317
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006318static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006319{
6320 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6321 struct perf_event *event;
6322
6323 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006324 /*
6325 * Skip events that are not fully formed yet; ensure that
6326 * if we observe event->ctx, both event and ctx will be
6327 * complete enough. See perf_install_in_context().
6328 */
6329 if (!smp_load_acquire(&event->ctx))
6330 continue;
6331
Kan Liangf2fb6be2016-03-23 11:24:37 -07006332 if (event->state < PERF_EVENT_STATE_INACTIVE)
6333 continue;
6334 if (!event_filter_match(event))
6335 continue;
6336 output(event, data);
6337 }
6338}
6339
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006340/*
6341 * Iterate all events that need to receive side-band events.
6342 *
6343 * For new callers; ensure that account_pmu_sb_event() includes
6344 * your event, otherwise it might not get delivered.
6345 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006346static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006347perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006348 struct perf_event_context *task_ctx)
6349{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006350 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006351 int ctxn;
6352
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006353 rcu_read_lock();
6354 preempt_disable();
6355
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006356 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006357 * If we have task_ctx != NULL we only notify the task context itself.
6358 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006359 * context.
6360 */
6361 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006362 perf_iterate_ctx(task_ctx, output, data, false);
6363 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006364 }
6365
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006366 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006367
6368 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006369 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6370 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006371 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006372 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006373done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006374 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006375 rcu_read_unlock();
6376}
6377
Alexander Shishkin375637b2016-04-27 18:44:46 +03006378/*
6379 * Clear all file-based filters at exec, they'll have to be
6380 * re-instated when/if these objects are mmapped again.
6381 */
6382static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6383{
6384 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6385 struct perf_addr_filter *filter;
6386 unsigned int restart = 0, count = 0;
6387 unsigned long flags;
6388
6389 if (!has_addr_filter(event))
6390 return;
6391
6392 raw_spin_lock_irqsave(&ifh->lock, flags);
6393 list_for_each_entry(filter, &ifh->list, entry) {
6394 if (filter->inode) {
6395 event->addr_filters_offs[count] = 0;
6396 restart++;
6397 }
6398
6399 count++;
6400 }
6401
6402 if (restart)
6403 event->addr_filters_gen++;
6404 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6405
6406 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006407 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006408}
6409
6410void perf_event_exec(void)
6411{
6412 struct perf_event_context *ctx;
6413 int ctxn;
6414
6415 rcu_read_lock();
6416 for_each_task_context_nr(ctxn) {
6417 ctx = current->perf_event_ctxp[ctxn];
6418 if (!ctx)
6419 continue;
6420
6421 perf_event_enable_on_exec(ctxn);
6422
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006423 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006424 true);
6425 }
6426 rcu_read_unlock();
6427}
6428
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006429struct remote_output {
6430 struct ring_buffer *rb;
6431 int err;
6432};
6433
6434static void __perf_event_output_stop(struct perf_event *event, void *data)
6435{
6436 struct perf_event *parent = event->parent;
6437 struct remote_output *ro = data;
6438 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006439 struct stop_event_data sd = {
6440 .event = event,
6441 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006442
6443 if (!has_aux(event))
6444 return;
6445
6446 if (!parent)
6447 parent = event;
6448
6449 /*
6450 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006451 * ring-buffer, but it will be the child that's actually using it.
6452 *
6453 * We are using event::rb to determine if the event should be stopped,
6454 * however this may race with ring_buffer_attach() (through set_output),
6455 * which will make us skip the event that actually needs to be stopped.
6456 * So ring_buffer_attach() has to stop an aux event before re-assigning
6457 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006458 */
6459 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006460 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006461}
6462
6463static int __perf_pmu_output_stop(void *info)
6464{
6465 struct perf_event *event = info;
6466 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006467 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006468 struct remote_output ro = {
6469 .rb = event->rb,
6470 };
6471
6472 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006473 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006474 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006475 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006476 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006477 rcu_read_unlock();
6478
6479 return ro.err;
6480}
6481
6482static void perf_pmu_output_stop(struct perf_event *event)
6483{
6484 struct perf_event *iter;
6485 int err, cpu;
6486
6487restart:
6488 rcu_read_lock();
6489 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6490 /*
6491 * For per-CPU events, we need to make sure that neither they
6492 * nor their children are running; for cpu==-1 events it's
6493 * sufficient to stop the event itself if it's active, since
6494 * it can't have children.
6495 */
6496 cpu = iter->cpu;
6497 if (cpu == -1)
6498 cpu = READ_ONCE(iter->oncpu);
6499
6500 if (cpu == -1)
6501 continue;
6502
6503 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6504 if (err == -EAGAIN) {
6505 rcu_read_unlock();
6506 goto restart;
6507 }
6508 }
6509 rcu_read_unlock();
6510}
6511
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006512/*
6513 * task tracking -- fork/exit
6514 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006515 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006516 */
6517
6518struct perf_task_event {
6519 struct task_struct *task;
6520 struct perf_event_context *task_ctx;
6521
6522 struct {
6523 struct perf_event_header header;
6524
6525 u32 pid;
6526 u32 ppid;
6527 u32 tid;
6528 u32 ptid;
6529 u64 time;
6530 } event_id;
6531};
6532
Jiri Olsa67516842013-07-09 18:56:31 +02006533static int perf_event_task_match(struct perf_event *event)
6534{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006535 return event->attr.comm || event->attr.mmap ||
6536 event->attr.mmap2 || event->attr.mmap_data ||
6537 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006538}
6539
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006541 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006542{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006543 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006544 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006545 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006546 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006547 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006548
Jiri Olsa67516842013-07-09 18:56:31 +02006549 if (!perf_event_task_match(event))
6550 return;
6551
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006552 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006553
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006554 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006555 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006556 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006557 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006558
6559 task_event->event_id.pid = perf_event_pid(event, task);
6560 task_event->event_id.ppid = perf_event_pid(event, current);
6561
6562 task_event->event_id.tid = perf_event_tid(event, task);
6563 task_event->event_id.ptid = perf_event_tid(event, current);
6564
Peter Zijlstra34f43922015-02-20 14:05:38 +01006565 task_event->event_id.time = perf_event_clock(event);
6566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006567 perf_output_put(&handle, task_event->event_id);
6568
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006569 perf_event__output_id_sample(event, &handle, &sample);
6570
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006571 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006572out:
6573 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006574}
6575
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006576static void perf_event_task(struct task_struct *task,
6577 struct perf_event_context *task_ctx,
6578 int new)
6579{
6580 struct perf_task_event task_event;
6581
6582 if (!atomic_read(&nr_comm_events) &&
6583 !atomic_read(&nr_mmap_events) &&
6584 !atomic_read(&nr_task_events))
6585 return;
6586
6587 task_event = (struct perf_task_event){
6588 .task = task,
6589 .task_ctx = task_ctx,
6590 .event_id = {
6591 .header = {
6592 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6593 .misc = 0,
6594 .size = sizeof(task_event.event_id),
6595 },
6596 /* .pid */
6597 /* .ppid */
6598 /* .tid */
6599 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006600 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006601 },
6602 };
6603
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006604 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006605 &task_event,
6606 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006607}
6608
6609void perf_event_fork(struct task_struct *task)
6610{
6611 perf_event_task(task, NULL, 1);
Hari Bathinie4222672017-03-08 02:11:36 +05306612 perf_event_namespaces(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006613}
6614
6615/*
6616 * comm tracking
6617 */
6618
6619struct perf_comm_event {
6620 struct task_struct *task;
6621 char *comm;
6622 int comm_size;
6623
6624 struct {
6625 struct perf_event_header header;
6626
6627 u32 pid;
6628 u32 tid;
6629 } event_id;
6630};
6631
Jiri Olsa67516842013-07-09 18:56:31 +02006632static int perf_event_comm_match(struct perf_event *event)
6633{
6634 return event->attr.comm;
6635}
6636
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006637static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006638 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006639{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006640 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006641 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006642 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006643 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006644 int ret;
6645
Jiri Olsa67516842013-07-09 18:56:31 +02006646 if (!perf_event_comm_match(event))
6647 return;
6648
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006649 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6650 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006651 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006652
6653 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006654 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006655
6656 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6657 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6658
6659 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006660 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006661 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006662
6663 perf_event__output_id_sample(event, &handle, &sample);
6664
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006665 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006666out:
6667 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006668}
6669
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006670static void perf_event_comm_event(struct perf_comm_event *comm_event)
6671{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006672 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006673 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006674
6675 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006676 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006677 size = ALIGN(strlen(comm)+1, sizeof(u64));
6678
6679 comm_event->comm = comm;
6680 comm_event->comm_size = size;
6681
6682 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006683
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006684 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006685 comm_event,
6686 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006687}
6688
Adrian Hunter82b89772014-05-28 11:45:04 +03006689void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006690{
6691 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006692
6693 if (!atomic_read(&nr_comm_events))
6694 return;
6695
6696 comm_event = (struct perf_comm_event){
6697 .task = task,
6698 /* .comm */
6699 /* .comm_size */
6700 .event_id = {
6701 .header = {
6702 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006703 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006704 /* .size */
6705 },
6706 /* .pid */
6707 /* .tid */
6708 },
6709 };
6710
6711 perf_event_comm_event(&comm_event);
6712}
6713
6714/*
Hari Bathinie4222672017-03-08 02:11:36 +05306715 * namespaces tracking
6716 */
6717
6718struct perf_namespaces_event {
6719 struct task_struct *task;
6720
6721 struct {
6722 struct perf_event_header header;
6723
6724 u32 pid;
6725 u32 tid;
6726 u64 nr_namespaces;
6727 struct perf_ns_link_info link_info[NR_NAMESPACES];
6728 } event_id;
6729};
6730
6731static int perf_event_namespaces_match(struct perf_event *event)
6732{
6733 return event->attr.namespaces;
6734}
6735
6736static void perf_event_namespaces_output(struct perf_event *event,
6737 void *data)
6738{
6739 struct perf_namespaces_event *namespaces_event = data;
6740 struct perf_output_handle handle;
6741 struct perf_sample_data sample;
6742 int ret;
6743
6744 if (!perf_event_namespaces_match(event))
6745 return;
6746
6747 perf_event_header__init_id(&namespaces_event->event_id.header,
6748 &sample, event);
6749 ret = perf_output_begin(&handle, event,
6750 namespaces_event->event_id.header.size);
6751 if (ret)
6752 return;
6753
6754 namespaces_event->event_id.pid = perf_event_pid(event,
6755 namespaces_event->task);
6756 namespaces_event->event_id.tid = perf_event_tid(event,
6757 namespaces_event->task);
6758
6759 perf_output_put(&handle, namespaces_event->event_id);
6760
6761 perf_event__output_id_sample(event, &handle, &sample);
6762
6763 perf_output_end(&handle);
6764}
6765
6766static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
6767 struct task_struct *task,
6768 const struct proc_ns_operations *ns_ops)
6769{
6770 struct path ns_path;
6771 struct inode *ns_inode;
6772 void *error;
6773
6774 error = ns_get_path(&ns_path, task, ns_ops);
6775 if (!error) {
6776 ns_inode = ns_path.dentry->d_inode;
6777 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
6778 ns_link_info->ino = ns_inode->i_ino;
6779 }
6780}
6781
6782void perf_event_namespaces(struct task_struct *task)
6783{
6784 struct perf_namespaces_event namespaces_event;
6785 struct perf_ns_link_info *ns_link_info;
6786
6787 if (!atomic_read(&nr_namespaces_events))
6788 return;
6789
6790 namespaces_event = (struct perf_namespaces_event){
6791 .task = task,
6792 .event_id = {
6793 .header = {
6794 .type = PERF_RECORD_NAMESPACES,
6795 .misc = 0,
6796 .size = sizeof(namespaces_event.event_id),
6797 },
6798 /* .pid */
6799 /* .tid */
6800 .nr_namespaces = NR_NAMESPACES,
6801 /* .link_info[NR_NAMESPACES] */
6802 },
6803 };
6804
6805 ns_link_info = namespaces_event.event_id.link_info;
6806
6807 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
6808 task, &mntns_operations);
6809
6810#ifdef CONFIG_USER_NS
6811 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
6812 task, &userns_operations);
6813#endif
6814#ifdef CONFIG_NET_NS
6815 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
6816 task, &netns_operations);
6817#endif
6818#ifdef CONFIG_UTS_NS
6819 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
6820 task, &utsns_operations);
6821#endif
6822#ifdef CONFIG_IPC_NS
6823 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
6824 task, &ipcns_operations);
6825#endif
6826#ifdef CONFIG_PID_NS
6827 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
6828 task, &pidns_operations);
6829#endif
6830#ifdef CONFIG_CGROUPS
6831 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
6832 task, &cgroupns_operations);
6833#endif
6834
6835 perf_iterate_sb(perf_event_namespaces_output,
6836 &namespaces_event,
6837 NULL);
6838}
6839
6840/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006841 * mmap tracking
6842 */
6843
6844struct perf_mmap_event {
6845 struct vm_area_struct *vma;
6846
6847 const char *file_name;
6848 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006849 int maj, min;
6850 u64 ino;
6851 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006852 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006853
6854 struct {
6855 struct perf_event_header header;
6856
6857 u32 pid;
6858 u32 tid;
6859 u64 start;
6860 u64 len;
6861 u64 pgoff;
6862 } event_id;
6863};
6864
Jiri Olsa67516842013-07-09 18:56:31 +02006865static int perf_event_mmap_match(struct perf_event *event,
6866 void *data)
6867{
6868 struct perf_mmap_event *mmap_event = data;
6869 struct vm_area_struct *vma = mmap_event->vma;
6870 int executable = vma->vm_flags & VM_EXEC;
6871
6872 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006873 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006874}
6875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006876static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006877 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006878{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006879 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006880 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006881 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006882 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006883 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006884
Jiri Olsa67516842013-07-09 18:56:31 +02006885 if (!perf_event_mmap_match(event, data))
6886 return;
6887
Stephane Eranian13d7a242013-08-21 12:10:24 +02006888 if (event->attr.mmap2) {
6889 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6890 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6891 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6892 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006893 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006894 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6895 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006896 }
6897
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006898 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6899 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006900 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006901 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006902 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903
6904 mmap_event->event_id.pid = perf_event_pid(event, current);
6905 mmap_event->event_id.tid = perf_event_tid(event, current);
6906
6907 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006908
6909 if (event->attr.mmap2) {
6910 perf_output_put(&handle, mmap_event->maj);
6911 perf_output_put(&handle, mmap_event->min);
6912 perf_output_put(&handle, mmap_event->ino);
6913 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006914 perf_output_put(&handle, mmap_event->prot);
6915 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006916 }
6917
Frederic Weisbecker76369132011-05-19 19:55:04 +02006918 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006919 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006920
6921 perf_event__output_id_sample(event, &handle, &sample);
6922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006923 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006924out:
6925 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006926}
6927
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006928static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6929{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006930 struct vm_area_struct *vma = mmap_event->vma;
6931 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006932 int maj = 0, min = 0;
6933 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006934 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935 unsigned int size;
6936 char tmp[16];
6937 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006938 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006939
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01006940 if (vma->vm_flags & VM_READ)
6941 prot |= PROT_READ;
6942 if (vma->vm_flags & VM_WRITE)
6943 prot |= PROT_WRITE;
6944 if (vma->vm_flags & VM_EXEC)
6945 prot |= PROT_EXEC;
6946
6947 if (vma->vm_flags & VM_MAYSHARE)
6948 flags = MAP_SHARED;
6949 else
6950 flags = MAP_PRIVATE;
6951
6952 if (vma->vm_flags & VM_DENYWRITE)
6953 flags |= MAP_DENYWRITE;
6954 if (vma->vm_flags & VM_MAYEXEC)
6955 flags |= MAP_EXECUTABLE;
6956 if (vma->vm_flags & VM_LOCKED)
6957 flags |= MAP_LOCKED;
6958 if (vma->vm_flags & VM_HUGETLB)
6959 flags |= MAP_HUGETLB;
6960
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006961 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006962 struct inode *inode;
6963 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006964
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006965 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006966 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006967 name = "//enomem";
6968 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006969 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006970 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006971 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006972 * need to add enough zero bytes after the string to handle
6973 * the 64bit alignment we do later.
6974 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006975 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006976 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006977 name = "//toolong";
6978 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006979 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006980 inode = file_inode(vma->vm_file);
6981 dev = inode->i_sb->s_dev;
6982 ino = inode->i_ino;
6983 gen = inode->i_generation;
6984 maj = MAJOR(dev);
6985 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006986
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006987 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006988 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006989 if (vma->vm_ops && vma->vm_ops->name) {
6990 name = (char *) vma->vm_ops->name(vma);
6991 if (name)
6992 goto cpy_name;
6993 }
6994
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006995 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006996 if (name)
6997 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006998
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006999 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007000 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007001 name = "[heap]";
7002 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02007003 }
7004 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007005 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007006 name = "[stack]";
7007 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007008 }
7009
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007010 name = "//anon";
7011 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007012 }
7013
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02007014cpy_name:
7015 strlcpy(tmp, name, sizeof(tmp));
7016 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007017got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02007018 /*
7019 * Since our buffer works in 8 byte units we need to align our string
7020 * size to a multiple of 8. However, we must guarantee the tail end is
7021 * zero'd out to avoid leaking random bits to userspace.
7022 */
7023 size = strlen(name)+1;
7024 while (!IS_ALIGNED(size, sizeof(u64)))
7025 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007026
7027 mmap_event->file_name = name;
7028 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02007029 mmap_event->maj = maj;
7030 mmap_event->min = min;
7031 mmap_event->ino = ino;
7032 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007033 mmap_event->prot = prot;
7034 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007035
Stephane Eranian2fe85422013-01-24 16:10:39 +01007036 if (!(vma->vm_flags & VM_EXEC))
7037 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
7038
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007039 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
7040
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007041 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02007042 mmap_event,
7043 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044
7045 kfree(buf);
7046}
7047
Alexander Shishkin375637b2016-04-27 18:44:46 +03007048/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03007049 * Check whether inode and address range match filter criteria.
7050 */
7051static bool perf_addr_filter_match(struct perf_addr_filter *filter,
7052 struct file *file, unsigned long offset,
7053 unsigned long size)
7054{
Al Viro45063092016-12-04 18:24:56 -05007055 if (filter->inode != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03007056 return false;
7057
7058 if (filter->offset > offset + size)
7059 return false;
7060
7061 if (filter->offset + filter->size < offset)
7062 return false;
7063
7064 return true;
7065}
7066
7067static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
7068{
7069 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7070 struct vm_area_struct *vma = data;
7071 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
7072 struct file *file = vma->vm_file;
7073 struct perf_addr_filter *filter;
7074 unsigned int restart = 0, count = 0;
7075
7076 if (!has_addr_filter(event))
7077 return;
7078
7079 if (!file)
7080 return;
7081
7082 raw_spin_lock_irqsave(&ifh->lock, flags);
7083 list_for_each_entry(filter, &ifh->list, entry) {
7084 if (perf_addr_filter_match(filter, file, off,
7085 vma->vm_end - vma->vm_start)) {
7086 event->addr_filters_offs[count] = vma->vm_start;
7087 restart++;
7088 }
7089
7090 count++;
7091 }
7092
7093 if (restart)
7094 event->addr_filters_gen++;
7095 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7096
7097 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03007098 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007099}
7100
7101/*
7102 * Adjust all task's events' filters to the new vma
7103 */
7104static void perf_addr_filters_adjust(struct vm_area_struct *vma)
7105{
7106 struct perf_event_context *ctx;
7107 int ctxn;
7108
Mathieu Poirier12b40a22016-07-18 10:43:06 -06007109 /*
7110 * Data tracing isn't supported yet and as such there is no need
7111 * to keep track of anything that isn't related to executable code:
7112 */
7113 if (!(vma->vm_flags & VM_EXEC))
7114 return;
7115
Alexander Shishkin375637b2016-04-27 18:44:46 +03007116 rcu_read_lock();
7117 for_each_task_context_nr(ctxn) {
7118 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7119 if (!ctx)
7120 continue;
7121
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007122 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007123 }
7124 rcu_read_unlock();
7125}
7126
Eric B Munson3af9e852010-05-18 15:30:49 +01007127void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007128{
7129 struct perf_mmap_event mmap_event;
7130
7131 if (!atomic_read(&nr_mmap_events))
7132 return;
7133
7134 mmap_event = (struct perf_mmap_event){
7135 .vma = vma,
7136 /* .file_name */
7137 /* .file_size */
7138 .event_id = {
7139 .header = {
7140 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08007141 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007142 /* .size */
7143 },
7144 /* .pid */
7145 /* .tid */
7146 .start = vma->vm_start,
7147 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01007148 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007149 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02007150 /* .maj (attr_mmap2 only) */
7151 /* .min (attr_mmap2 only) */
7152 /* .ino (attr_mmap2 only) */
7153 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04007154 /* .prot (attr_mmap2 only) */
7155 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007156 };
7157
Alexander Shishkin375637b2016-04-27 18:44:46 +03007158 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007159 perf_event_mmap_event(&mmap_event);
7160}
7161
Alexander Shishkin68db7e92015-01-14 14:18:15 +02007162void perf_event_aux_event(struct perf_event *event, unsigned long head,
7163 unsigned long size, u64 flags)
7164{
7165 struct perf_output_handle handle;
7166 struct perf_sample_data sample;
7167 struct perf_aux_event {
7168 struct perf_event_header header;
7169 u64 offset;
7170 u64 size;
7171 u64 flags;
7172 } rec = {
7173 .header = {
7174 .type = PERF_RECORD_AUX,
7175 .misc = 0,
7176 .size = sizeof(rec),
7177 },
7178 .offset = head,
7179 .size = size,
7180 .flags = flags,
7181 };
7182 int ret;
7183
7184 perf_event_header__init_id(&rec.header, &sample, event);
7185 ret = perf_output_begin(&handle, event, rec.header.size);
7186
7187 if (ret)
7188 return;
7189
7190 perf_output_put(&handle, rec);
7191 perf_event__output_id_sample(event, &handle, &sample);
7192
7193 perf_output_end(&handle);
7194}
7195
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007196/*
Kan Liangf38b0db2015-05-10 15:13:14 -04007197 * Lost/dropped samples logging
7198 */
7199void perf_log_lost_samples(struct perf_event *event, u64 lost)
7200{
7201 struct perf_output_handle handle;
7202 struct perf_sample_data sample;
7203 int ret;
7204
7205 struct {
7206 struct perf_event_header header;
7207 u64 lost;
7208 } lost_samples_event = {
7209 .header = {
7210 .type = PERF_RECORD_LOST_SAMPLES,
7211 .misc = 0,
7212 .size = sizeof(lost_samples_event),
7213 },
7214 .lost = lost,
7215 };
7216
7217 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
7218
7219 ret = perf_output_begin(&handle, event,
7220 lost_samples_event.header.size);
7221 if (ret)
7222 return;
7223
7224 perf_output_put(&handle, lost_samples_event);
7225 perf_event__output_id_sample(event, &handle, &sample);
7226 perf_output_end(&handle);
7227}
7228
7229/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03007230 * context_switch tracking
7231 */
7232
7233struct perf_switch_event {
7234 struct task_struct *task;
7235 struct task_struct *next_prev;
7236
7237 struct {
7238 struct perf_event_header header;
7239 u32 next_prev_pid;
7240 u32 next_prev_tid;
7241 } event_id;
7242};
7243
7244static int perf_event_switch_match(struct perf_event *event)
7245{
7246 return event->attr.context_switch;
7247}
7248
7249static void perf_event_switch_output(struct perf_event *event, void *data)
7250{
7251 struct perf_switch_event *se = data;
7252 struct perf_output_handle handle;
7253 struct perf_sample_data sample;
7254 int ret;
7255
7256 if (!perf_event_switch_match(event))
7257 return;
7258
7259 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7260 if (event->ctx->task) {
7261 se->event_id.header.type = PERF_RECORD_SWITCH;
7262 se->event_id.header.size = sizeof(se->event_id.header);
7263 } else {
7264 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7265 se->event_id.header.size = sizeof(se->event_id);
7266 se->event_id.next_prev_pid =
7267 perf_event_pid(event, se->next_prev);
7268 se->event_id.next_prev_tid =
7269 perf_event_tid(event, se->next_prev);
7270 }
7271
7272 perf_event_header__init_id(&se->event_id.header, &sample, event);
7273
7274 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7275 if (ret)
7276 return;
7277
7278 if (event->ctx->task)
7279 perf_output_put(&handle, se->event_id.header);
7280 else
7281 perf_output_put(&handle, se->event_id);
7282
7283 perf_event__output_id_sample(event, &handle, &sample);
7284
7285 perf_output_end(&handle);
7286}
7287
7288static void perf_event_switch(struct task_struct *task,
7289 struct task_struct *next_prev, bool sched_in)
7290{
7291 struct perf_switch_event switch_event;
7292
7293 /* N.B. caller checks nr_switch_events != 0 */
7294
7295 switch_event = (struct perf_switch_event){
7296 .task = task,
7297 .next_prev = next_prev,
7298 .event_id = {
7299 .header = {
7300 /* .type */
7301 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7302 /* .size */
7303 },
7304 /* .next_prev_pid */
7305 /* .next_prev_tid */
7306 },
7307 };
7308
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007309 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007310 &switch_event,
7311 NULL);
7312}
7313
7314/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007315 * IRQ throttle logging
7316 */
7317
7318static void perf_log_throttle(struct perf_event *event, int enable)
7319{
7320 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007321 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007322 int ret;
7323
7324 struct {
7325 struct perf_event_header header;
7326 u64 time;
7327 u64 id;
7328 u64 stream_id;
7329 } throttle_event = {
7330 .header = {
7331 .type = PERF_RECORD_THROTTLE,
7332 .misc = 0,
7333 .size = sizeof(throttle_event),
7334 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007335 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007336 .id = primary_event_id(event),
7337 .stream_id = event->id,
7338 };
7339
7340 if (enable)
7341 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7342
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007343 perf_event_header__init_id(&throttle_event.header, &sample, event);
7344
7345 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007346 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007347 if (ret)
7348 return;
7349
7350 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007351 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007352 perf_output_end(&handle);
7353}
7354
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007355void perf_event_itrace_started(struct perf_event *event)
7356{
7357 event->attach_state |= PERF_ATTACH_ITRACE;
7358}
7359
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007360static void perf_log_itrace_start(struct perf_event *event)
7361{
7362 struct perf_output_handle handle;
7363 struct perf_sample_data sample;
7364 struct perf_aux_event {
7365 struct perf_event_header header;
7366 u32 pid;
7367 u32 tid;
7368 } rec;
7369 int ret;
7370
7371 if (event->parent)
7372 event = event->parent;
7373
7374 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
Alexander Shishkin8d4e6c42017-03-30 18:39:56 +03007375 event->attach_state & PERF_ATTACH_ITRACE)
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007376 return;
7377
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007378 rec.header.type = PERF_RECORD_ITRACE_START;
7379 rec.header.misc = 0;
7380 rec.header.size = sizeof(rec);
7381 rec.pid = perf_event_pid(event, current);
7382 rec.tid = perf_event_tid(event, current);
7383
7384 perf_event_header__init_id(&rec.header, &sample, event);
7385 ret = perf_output_begin(&handle, event, rec.header.size);
7386
7387 if (ret)
7388 return;
7389
7390 perf_output_put(&handle, rec);
7391 perf_event__output_id_sample(event, &handle, &sample);
7392
7393 perf_output_end(&handle);
7394}
7395
Jiri Olsa475113d2016-12-28 14:31:03 +01007396static int
7397__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007398{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007399 struct hw_perf_event *hwc = &event->hw;
7400 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01007401 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01007402
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007403 seq = __this_cpu_read(perf_throttled_seq);
7404 if (seq != hwc->interrupts_seq) {
7405 hwc->interrupts_seq = seq;
7406 hwc->interrupts = 1;
7407 } else {
7408 hwc->interrupts++;
7409 if (unlikely(throttle
7410 && hwc->interrupts >= max_samples_per_tick)) {
7411 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007412 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007413 hwc->interrupts = MAX_INTERRUPTS;
7414 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007415 ret = 1;
7416 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007417 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007418
7419 if (event->attr.freq) {
7420 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007421 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007422
Peter Zijlstraabd50712010-01-26 18:50:16 +01007423 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007424
Peter Zijlstraabd50712010-01-26 18:50:16 +01007425 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007426 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007427 }
7428
Jiri Olsa475113d2016-12-28 14:31:03 +01007429 return ret;
7430}
7431
7432int perf_event_account_interrupt(struct perf_event *event)
7433{
7434 return __perf_event_account_interrupt(event, 1);
7435}
7436
7437/*
7438 * Generic event overflow handling, sampling.
7439 */
7440
7441static int __perf_event_overflow(struct perf_event *event,
7442 int throttle, struct perf_sample_data *data,
7443 struct pt_regs *regs)
7444{
7445 int events = atomic_read(&event->event_limit);
7446 int ret = 0;
7447
7448 /*
7449 * Non-sampling counters might still use the PMI to fold short
7450 * hardware counters, ignore those.
7451 */
7452 if (unlikely(!is_sampling_event(event)))
7453 return 0;
7454
7455 ret = __perf_event_account_interrupt(event, throttle);
7456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007457 /*
7458 * XXX event_limit might not quite work as expected on inherited
7459 * events
7460 */
7461
7462 event->pending_kill = POLL_IN;
7463 if (events && atomic_dec_and_test(&event->event_limit)) {
7464 ret = 1;
7465 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007466
7467 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007468 }
7469
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007470 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007471
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007472 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007473 event->pending_wakeup = 1;
7474 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007475 }
7476
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007477 return ret;
7478}
7479
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007480int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007481 struct perf_sample_data *data,
7482 struct pt_regs *regs)
7483{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007484 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007485}
7486
7487/*
7488 * Generic software event infrastructure
7489 */
7490
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007491struct swevent_htable {
7492 struct swevent_hlist *swevent_hlist;
7493 struct mutex hlist_mutex;
7494 int hlist_refcount;
7495
7496 /* Recursion avoidance in each contexts */
7497 int recursion[PERF_NR_CONTEXTS];
7498};
7499
7500static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007502/*
7503 * We directly increment event->count and keep a second value in
7504 * event->hw.period_left to count intervals. This period event
7505 * is kept in the range [-sample_period, 0] so that we can use the
7506 * sign as trigger.
7507 */
7508
Jiri Olsaab573842013-05-01 17:25:44 +02007509u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007510{
7511 struct hw_perf_event *hwc = &event->hw;
7512 u64 period = hwc->last_period;
7513 u64 nr, offset;
7514 s64 old, val;
7515
7516 hwc->last_period = hwc->sample_period;
7517
7518again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007519 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007520 if (val < 0)
7521 return 0;
7522
7523 nr = div64_u64(period + val, period);
7524 offset = nr * period;
7525 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007526 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007527 goto again;
7528
7529 return nr;
7530}
7531
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007532static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007533 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007534 struct pt_regs *regs)
7535{
7536 struct hw_perf_event *hwc = &event->hw;
7537 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007538
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007539 if (!overflow)
7540 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007541
7542 if (hwc->interrupts == MAX_INTERRUPTS)
7543 return;
7544
7545 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007546 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007547 data, regs)) {
7548 /*
7549 * We inhibit the overflow from happening when
7550 * hwc->interrupts == MAX_INTERRUPTS.
7551 */
7552 break;
7553 }
7554 throttle = 1;
7555 }
7556}
7557
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007558static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007559 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007560 struct pt_regs *regs)
7561{
7562 struct hw_perf_event *hwc = &event->hw;
7563
Peter Zijlstrae7850592010-05-21 14:43:08 +02007564 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007565
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007566 if (!regs)
7567 return;
7568
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007569 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007570 return;
7571
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007572 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7573 data->period = nr;
7574 return perf_swevent_overflow(event, 1, data, regs);
7575 } else
7576 data->period = event->hw.last_period;
7577
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007578 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007579 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007580
Peter Zijlstrae7850592010-05-21 14:43:08 +02007581 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007582 return;
7583
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007584 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007585}
7586
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007587static int perf_exclude_event(struct perf_event *event,
7588 struct pt_regs *regs)
7589{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007590 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007591 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007592
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007593 if (regs) {
7594 if (event->attr.exclude_user && user_mode(regs))
7595 return 1;
7596
7597 if (event->attr.exclude_kernel && !user_mode(regs))
7598 return 1;
7599 }
7600
7601 return 0;
7602}
7603
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007604static int perf_swevent_match(struct perf_event *event,
7605 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007606 u32 event_id,
7607 struct perf_sample_data *data,
7608 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007609{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007610 if (event->attr.type != type)
7611 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007612
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007613 if (event->attr.config != event_id)
7614 return 0;
7615
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007616 if (perf_exclude_event(event, regs))
7617 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007618
7619 return 1;
7620}
7621
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007622static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007623{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007624 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007625
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007626 return hash_64(val, SWEVENT_HLIST_BITS);
7627}
7628
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007629static inline struct hlist_head *
7630__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007631{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007632 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007633
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007634 return &hlist->heads[hash];
7635}
7636
7637/* For the read side: events when they trigger */
7638static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007639find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007640{
7641 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007642
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007643 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007644 if (!hlist)
7645 return NULL;
7646
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007647 return __find_swevent_head(hlist, type, event_id);
7648}
7649
7650/* For the event head insertion and removal in the hlist */
7651static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007652find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007653{
7654 struct swevent_hlist *hlist;
7655 u32 event_id = event->attr.config;
7656 u64 type = event->attr.type;
7657
7658 /*
7659 * Event scheduling is always serialized against hlist allocation
7660 * and release. Which makes the protected version suitable here.
7661 * The context lock guarantees that.
7662 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007663 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007664 lockdep_is_held(&event->ctx->lock));
7665 if (!hlist)
7666 return NULL;
7667
7668 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007669}
7670
7671static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007672 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007673 struct perf_sample_data *data,
7674 struct pt_regs *regs)
7675{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007676 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007677 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007678 struct hlist_head *head;
7679
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007680 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007681 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007682 if (!head)
7683 goto end;
7684
Sasha Levinb67bfe02013-02-27 17:06:00 -08007685 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007686 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007687 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007688 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007689end:
7690 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007691}
7692
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007693DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7694
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007695int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007696{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007697 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007698
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007699 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007700}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007701EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007702
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007703void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007704{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007705 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007706
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007707 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007708}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007709
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007710void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007711{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007712 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007713
7714 if (WARN_ON_ONCE(!regs))
7715 return;
7716
7717 perf_sample_data_init(&data, addr, 0);
7718 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7719}
7720
7721void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7722{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007723 int rctx;
7724
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007725 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007726 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007727 if (unlikely(rctx < 0))
7728 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007729
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007730 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007731
7732 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007733fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007734 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007735}
7736
7737static void perf_swevent_read(struct perf_event *event)
7738{
7739}
7740
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007741static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007742{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007743 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007744 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007745 struct hlist_head *head;
7746
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007747 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007748 hwc->last_period = hwc->sample_period;
7749 perf_swevent_set_period(event);
7750 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007751
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007752 hwc->state = !(flags & PERF_EF_START);
7753
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007754 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007755 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007756 return -EINVAL;
7757
7758 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007759 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007760
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007761 return 0;
7762}
7763
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007764static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007765{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007766 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007767}
7768
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007769static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007770{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007771 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007772}
7773
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007774static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007775{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007776 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007777}
7778
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007779/* Deref the hlist from the update side */
7780static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007781swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007782{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007783 return rcu_dereference_protected(swhash->swevent_hlist,
7784 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007785}
7786
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007787static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007788{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007789 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007790
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007791 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007792 return;
7793
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007794 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007795 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007796}
7797
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007798static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007799{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007800 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007801
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007802 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007803
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007804 if (!--swhash->hlist_refcount)
7805 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007806
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007807 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007808}
7809
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007810static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007811{
7812 int cpu;
7813
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007814 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007815 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007816}
7817
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007818static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007819{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007820 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007821 int err = 0;
7822
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007823 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007824 if (!swevent_hlist_deref(swhash) &&
7825 cpumask_test_cpu(cpu, perf_online_mask)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007826 struct swevent_hlist *hlist;
7827
7828 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7829 if (!hlist) {
7830 err = -ENOMEM;
7831 goto exit;
7832 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007833 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007834 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007835 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007836exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007837 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007838
7839 return err;
7840}
7841
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007842static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007843{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007844 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007845
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007846 mutex_lock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007847 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007848 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007849 if (err) {
7850 failed_cpu = cpu;
7851 goto fail;
7852 }
7853 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007854 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007855 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007856fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007857 for_each_possible_cpu(cpu) {
7858 if (cpu == failed_cpu)
7859 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007860 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007861 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02007862 mutex_unlock(&pmus_lock);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007863 return err;
7864}
7865
Ingo Molnarc5905af2012-02-24 08:31:31 +01007866struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007867
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007868static void sw_perf_event_destroy(struct perf_event *event)
7869{
7870 u64 event_id = event->attr.config;
7871
7872 WARN_ON(event->parent);
7873
Ingo Molnarc5905af2012-02-24 08:31:31 +01007874 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007875 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007876}
7877
7878static int perf_swevent_init(struct perf_event *event)
7879{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007880 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007881
7882 if (event->attr.type != PERF_TYPE_SOFTWARE)
7883 return -ENOENT;
7884
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007885 /*
7886 * no branch sampling for software events
7887 */
7888 if (has_branch_stack(event))
7889 return -EOPNOTSUPP;
7890
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007891 switch (event_id) {
7892 case PERF_COUNT_SW_CPU_CLOCK:
7893 case PERF_COUNT_SW_TASK_CLOCK:
7894 return -ENOENT;
7895
7896 default:
7897 break;
7898 }
7899
Dan Carpenterce677832010-10-24 21:50:42 +02007900 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007901 return -ENOENT;
7902
7903 if (!event->parent) {
7904 int err;
7905
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007906 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007907 if (err)
7908 return err;
7909
Ingo Molnarc5905af2012-02-24 08:31:31 +01007910 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007911 event->destroy = sw_perf_event_destroy;
7912 }
7913
7914 return 0;
7915}
7916
7917static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007918 .task_ctx_nr = perf_sw_context,
7919
Peter Zijlstra34f43922015-02-20 14:05:38 +01007920 .capabilities = PERF_PMU_CAP_NO_NMI,
7921
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007922 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007923 .add = perf_swevent_add,
7924 .del = perf_swevent_del,
7925 .start = perf_swevent_start,
7926 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007927 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007928};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007929
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007930#ifdef CONFIG_EVENT_TRACING
7931
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007932static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007933 struct perf_sample_data *data)
7934{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007935 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007936
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007937 /* only top level events have filters set */
7938 if (event->parent)
7939 event = event->parent;
7940
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007941 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7942 return 1;
7943 return 0;
7944}
7945
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007946static int perf_tp_event_match(struct perf_event *event,
7947 struct perf_sample_data *data,
7948 struct pt_regs *regs)
7949{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007950 if (event->hw.state & PERF_HES_STOPPED)
7951 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007952 /*
7953 * All tracepoints are from kernel-space.
7954 */
7955 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007956 return 0;
7957
7958 if (!perf_tp_filter_match(event, data))
7959 return 0;
7960
7961 return 1;
7962}
7963
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007964void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7965 struct trace_event_call *call, u64 count,
7966 struct pt_regs *regs, struct hlist_head *head,
7967 struct task_struct *task)
7968{
7969 struct bpf_prog *prog = call->prog;
7970
7971 if (prog) {
7972 *(struct pt_regs **)raw_data = regs;
7973 if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) {
7974 perf_swevent_put_recursion_context(rctx);
7975 return;
7976 }
7977 }
7978 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
Zhou Chengming75e83872017-08-25 21:49:37 +08007979 rctx, task, NULL);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007980}
7981EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7982
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007983void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007984 struct pt_regs *regs, struct hlist_head *head, int rctx,
Zhou Chengming75e83872017-08-25 21:49:37 +08007985 struct task_struct *task, struct perf_event *event)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007986{
7987 struct perf_sample_data data;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007988
7989 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007990 .frag = {
7991 .size = entry_size,
7992 .data = record,
7993 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007994 };
7995
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007996 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007997 data.raw = &raw;
7998
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007999 perf_trace_buf_update(record, event_type);
8000
Zhou Chengming75e83872017-08-25 21:49:37 +08008001 /* Use the given event instead of the hlist */
8002 if (event) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008003 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008004 perf_swevent_event(event, count, &data, regs);
Zhou Chengming75e83872017-08-25 21:49:37 +08008005 } else {
8006 hlist_for_each_entry_rcu(event, head, hlist_entry) {
8007 if (perf_tp_event_match(event, &data, regs))
8008 perf_swevent_event(event, count, &data, regs);
8009 }
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008010 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008011
Andrew Vagine6dab5f2012-07-11 18:14:58 +04008012 /*
8013 * If we got specified a target task, also iterate its context and
8014 * deliver this event there too.
8015 */
8016 if (task && task != current) {
8017 struct perf_event_context *ctx;
8018 struct trace_entry *entry = record;
8019
8020 rcu_read_lock();
8021 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
8022 if (!ctx)
8023 goto unlock;
8024
8025 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
8026 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8027 continue;
8028 if (event->attr.config != entry->type)
8029 continue;
8030 if (perf_tp_event_match(event, &data, regs))
8031 perf_swevent_event(event, count, &data, regs);
8032 }
8033unlock:
8034 rcu_read_unlock();
8035 }
8036
Peter Zijlstraecc55f82010-05-21 15:11:34 +02008037 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008038}
8039EXPORT_SYMBOL_GPL(perf_tp_event);
8040
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008041static void tp_perf_event_destroy(struct perf_event *event)
8042{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008043 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008044}
8045
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008046static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008047{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008048 int err;
8049
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008050 if (event->attr.type != PERF_TYPE_TRACEPOINT)
8051 return -ENOENT;
8052
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008053 /*
8054 * no branch sampling for tracepoint events
8055 */
8056 if (has_branch_stack(event))
8057 return -EOPNOTSUPP;
8058
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02008059 err = perf_trace_init(event);
8060 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008061 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008062
8063 event->destroy = tp_perf_event_destroy;
8064
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008065 return 0;
8066}
8067
8068static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008069 .task_ctx_nr = perf_sw_context,
8070
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008071 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008072 .add = perf_trace_add,
8073 .del = perf_trace_del,
8074 .start = perf_swevent_start,
8075 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008076 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008077};
8078
8079static inline void perf_tp_register(void)
8080{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008081 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008082}
Li Zefan6fb29152009-10-15 11:21:42 +08008083
Li Zefan6fb29152009-10-15 11:21:42 +08008084static void perf_event_free_filter(struct perf_event *event)
8085{
8086 ftrace_profile_free_filter(event);
8087}
8088
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008089#ifdef CONFIG_BPF_SYSCALL
8090static void bpf_overflow_handler(struct perf_event *event,
8091 struct perf_sample_data *data,
8092 struct pt_regs *regs)
8093{
8094 struct bpf_perf_event_data_kern ctx = {
8095 .data = data,
8096 .regs = regs,
Yonghong Song7d9285e2017-10-05 09:19:19 -07008097 .event = event,
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008098 };
8099 int ret = 0;
8100
8101 preempt_disable();
8102 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
8103 goto out;
8104 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01008105 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008106 rcu_read_unlock();
8107out:
8108 __this_cpu_dec(bpf_prog_active);
8109 preempt_enable();
8110 if (!ret)
8111 return;
8112
8113 event->orig_overflow_handler(event, data, regs);
8114}
8115
8116static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8117{
8118 struct bpf_prog *prog;
8119
8120 if (event->overflow_handler_context)
8121 /* hw breakpoint or kernel counter */
8122 return -EINVAL;
8123
8124 if (event->prog)
8125 return -EEXIST;
8126
8127 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
8128 if (IS_ERR(prog))
8129 return PTR_ERR(prog);
8130
8131 event->prog = prog;
8132 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
8133 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
8134 return 0;
8135}
8136
8137static void perf_event_free_bpf_handler(struct perf_event *event)
8138{
8139 struct bpf_prog *prog = event->prog;
8140
8141 if (!prog)
8142 return;
8143
8144 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
8145 event->prog = NULL;
8146 bpf_prog_put(prog);
8147}
8148#else
8149static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
8150{
8151 return -EOPNOTSUPP;
8152}
8153static void perf_event_free_bpf_handler(struct perf_event *event)
8154{
8155}
8156#endif
8157
Alexei Starovoitov25415172015-03-25 12:49:20 -07008158static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8159{
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008160 bool is_kprobe, is_tracepoint, is_syscall_tp;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008161 struct bpf_prog *prog;
8162
8163 if (event->attr.type != PERF_TYPE_TRACEPOINT)
Alexei Starovoitovf91840a2017-06-02 21:03:52 -07008164 return perf_event_set_bpf_handler(event, prog_fd);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008165
8166 if (event->tp_event->prog)
8167 return -EEXIST;
8168
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008169 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
8170 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008171 is_syscall_tp = is_syscall_trace_event(event->tp_event);
8172 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008173 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07008174 return -EINVAL;
8175
8176 prog = bpf_prog_get(prog_fd);
8177 if (IS_ERR(prog))
8178 return PTR_ERR(prog);
8179
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07008180 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008181 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
8182 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07008183 /* valid fd, but invalid bpf program type */
8184 bpf_prog_put(prog);
8185 return -EINVAL;
8186 }
8187
Yonghong Songcf5f5ce2017-08-04 16:00:09 -07008188 if (is_tracepoint || is_syscall_tp) {
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07008189 int off = trace_event_get_offsets(event->tp_event);
8190
8191 if (prog->aux->max_ctx_offset > off) {
8192 bpf_prog_put(prog);
8193 return -EACCES;
8194 }
8195 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07008196 event->tp_event->prog = prog;
Yonghong Songec9dd352017-09-18 16:38:36 -07008197 event->tp_event->bpf_prog_owner = event;
Alexei Starovoitov25415172015-03-25 12:49:20 -07008198
8199 return 0;
8200}
8201
8202static void perf_event_free_bpf_prog(struct perf_event *event)
8203{
8204 struct bpf_prog *prog;
8205
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07008206 perf_event_free_bpf_handler(event);
8207
Alexei Starovoitov25415172015-03-25 12:49:20 -07008208 if (!event->tp_event)
8209 return;
8210
8211 prog = event->tp_event->prog;
Yonghong Songec9dd352017-09-18 16:38:36 -07008212 if (prog && event->tp_event->bpf_prog_owner == event) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07008213 event->tp_event->prog = NULL;
Daniel Borkmann1aacde32016-06-30 17:24:43 +02008214 bpf_prog_put(prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07008215 }
8216}
8217
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008218#else
Li Zefan6fb29152009-10-15 11:21:42 +08008219
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008220static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008221{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008222}
Li Zefan6fb29152009-10-15 11:21:42 +08008223
Li Zefan6fb29152009-10-15 11:21:42 +08008224static void perf_event_free_filter(struct perf_event *event)
8225{
8226}
8227
Alexei Starovoitov25415172015-03-25 12:49:20 -07008228static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
8229{
8230 return -ENOENT;
8231}
8232
8233static void perf_event_free_bpf_prog(struct perf_event *event)
8234{
8235}
Li Zefan07b139c2009-12-21 14:27:35 +08008236#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008237
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008238#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008239void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008240{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008241 struct perf_sample_data sample;
8242 struct pt_regs *regs = data;
8243
Robert Richterfd0d0002012-04-02 20:19:08 +02008244 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01008245
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008246 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02008247 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008248}
8249#endif
8250
Alexander Shishkin375637b2016-04-27 18:44:46 +03008251/*
8252 * Allocate a new address filter
8253 */
8254static struct perf_addr_filter *
8255perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
8256{
8257 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
8258 struct perf_addr_filter *filter;
8259
8260 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
8261 if (!filter)
8262 return NULL;
8263
8264 INIT_LIST_HEAD(&filter->entry);
8265 list_add_tail(&filter->entry, filters);
8266
8267 return filter;
8268}
8269
8270static void free_filters_list(struct list_head *filters)
8271{
8272 struct perf_addr_filter *filter, *iter;
8273
8274 list_for_each_entry_safe(filter, iter, filters, entry) {
8275 if (filter->inode)
8276 iput(filter->inode);
8277 list_del(&filter->entry);
8278 kfree(filter);
8279 }
8280}
8281
8282/*
8283 * Free existing address filters and optionally install new ones
8284 */
8285static void perf_addr_filters_splice(struct perf_event *event,
8286 struct list_head *head)
8287{
8288 unsigned long flags;
8289 LIST_HEAD(list);
8290
8291 if (!has_addr_filter(event))
8292 return;
8293
8294 /* don't bother with children, they don't have their own filters */
8295 if (event->parent)
8296 return;
8297
8298 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
8299
8300 list_splice_init(&event->addr_filters.list, &list);
8301 if (head)
8302 list_splice(head, &event->addr_filters.list);
8303
8304 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
8305
8306 free_filters_list(&list);
8307}
8308
8309/*
8310 * Scan through mm's vmas and see if one of them matches the
8311 * @filter; if so, adjust filter's address range.
8312 * Called with mm::mmap_sem down for reading.
8313 */
8314static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
8315 struct mm_struct *mm)
8316{
8317 struct vm_area_struct *vma;
8318
8319 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8320 struct file *file = vma->vm_file;
8321 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8322 unsigned long vma_size = vma->vm_end - vma->vm_start;
8323
8324 if (!file)
8325 continue;
8326
8327 if (!perf_addr_filter_match(filter, file, off, vma_size))
8328 continue;
8329
8330 return vma->vm_start;
8331 }
8332
8333 return 0;
8334}
8335
8336/*
8337 * Update event's address range filters based on the
8338 * task's existing mappings, if any.
8339 */
8340static void perf_event_addr_filters_apply(struct perf_event *event)
8341{
8342 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8343 struct task_struct *task = READ_ONCE(event->ctx->task);
8344 struct perf_addr_filter *filter;
8345 struct mm_struct *mm = NULL;
8346 unsigned int count = 0;
8347 unsigned long flags;
8348
8349 /*
8350 * We may observe TASK_TOMBSTONE, which means that the event tear-down
8351 * will stop on the parent's child_mutex that our caller is also holding
8352 */
8353 if (task == TASK_TOMBSTONE)
8354 return;
8355
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008356 if (!ifh->nr_file_filters)
8357 return;
8358
Alexander Shishkin375637b2016-04-27 18:44:46 +03008359 mm = get_task_mm(event->ctx->task);
8360 if (!mm)
8361 goto restart;
8362
8363 down_read(&mm->mmap_sem);
8364
8365 raw_spin_lock_irqsave(&ifh->lock, flags);
8366 list_for_each_entry(filter, &ifh->list, entry) {
8367 event->addr_filters_offs[count] = 0;
8368
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008369 /*
8370 * Adjust base offset if the filter is associated to a binary
8371 * that needs to be mapped:
8372 */
8373 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008374 event->addr_filters_offs[count] =
8375 perf_addr_filter_apply(filter, mm);
8376
8377 count++;
8378 }
8379
8380 event->addr_filters_gen++;
8381 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8382
8383 up_read(&mm->mmap_sem);
8384
8385 mmput(mm);
8386
8387restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008388 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008389}
8390
8391/*
8392 * Address range filtering: limiting the data to certain
8393 * instruction address ranges. Filters are ioctl()ed to us from
8394 * userspace as ascii strings.
8395 *
8396 * Filter string format:
8397 *
8398 * ACTION RANGE_SPEC
8399 * where ACTION is one of the
8400 * * "filter": limit the trace to this region
8401 * * "start": start tracing from this address
8402 * * "stop": stop tracing at this address/region;
8403 * RANGE_SPEC is
8404 * * for kernel addresses: <start address>[/<size>]
8405 * * for object files: <start address>[/<size>]@</path/to/object/file>
8406 *
8407 * if <size> is not specified, the range is treated as a single address.
8408 */
8409enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008410 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008411 IF_ACT_FILTER,
8412 IF_ACT_START,
8413 IF_ACT_STOP,
8414 IF_SRC_FILE,
8415 IF_SRC_KERNEL,
8416 IF_SRC_FILEADDR,
8417 IF_SRC_KERNELADDR,
8418};
8419
8420enum {
8421 IF_STATE_ACTION = 0,
8422 IF_STATE_SOURCE,
8423 IF_STATE_END,
8424};
8425
8426static const match_table_t if_tokens = {
8427 { IF_ACT_FILTER, "filter" },
8428 { IF_ACT_START, "start" },
8429 { IF_ACT_STOP, "stop" },
8430 { IF_SRC_FILE, "%u/%u@%s" },
8431 { IF_SRC_KERNEL, "%u/%u" },
8432 { IF_SRC_FILEADDR, "%u@%s" },
8433 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008434 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008435};
8436
8437/*
8438 * Address filter string parser
8439 */
8440static int
8441perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8442 struct list_head *filters)
8443{
8444 struct perf_addr_filter *filter = NULL;
8445 char *start, *orig, *filename = NULL;
8446 struct path path;
8447 substring_t args[MAX_OPT_ARGS];
8448 int state = IF_STATE_ACTION, token;
8449 unsigned int kernel = 0;
8450 int ret = -EINVAL;
8451
8452 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8453 if (!fstr)
8454 return -ENOMEM;
8455
8456 while ((start = strsep(&fstr, " ,\n")) != NULL) {
8457 ret = -EINVAL;
8458
8459 if (!*start)
8460 continue;
8461
8462 /* filter definition begins */
8463 if (state == IF_STATE_ACTION) {
8464 filter = perf_addr_filter_new(event, filters);
8465 if (!filter)
8466 goto fail;
8467 }
8468
8469 token = match_token(start, if_tokens, args);
8470 switch (token) {
8471 case IF_ACT_FILTER:
8472 case IF_ACT_START:
8473 filter->filter = 1;
8474
8475 case IF_ACT_STOP:
8476 if (state != IF_STATE_ACTION)
8477 goto fail;
8478
8479 state = IF_STATE_SOURCE;
8480 break;
8481
8482 case IF_SRC_KERNELADDR:
8483 case IF_SRC_KERNEL:
8484 kernel = 1;
8485
8486 case IF_SRC_FILEADDR:
8487 case IF_SRC_FILE:
8488 if (state != IF_STATE_SOURCE)
8489 goto fail;
8490
8491 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8492 filter->range = 1;
8493
8494 *args[0].to = 0;
8495 ret = kstrtoul(args[0].from, 0, &filter->offset);
8496 if (ret)
8497 goto fail;
8498
8499 if (filter->range) {
8500 *args[1].to = 0;
8501 ret = kstrtoul(args[1].from, 0, &filter->size);
8502 if (ret)
8503 goto fail;
8504 }
8505
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008506 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8507 int fpos = filter->range ? 2 : 1;
8508
8509 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008510 if (!filename) {
8511 ret = -ENOMEM;
8512 goto fail;
8513 }
8514 }
8515
8516 state = IF_STATE_END;
8517 break;
8518
8519 default:
8520 goto fail;
8521 }
8522
8523 /*
8524 * Filter definition is fully parsed, validate and install it.
8525 * Make sure that it doesn't contradict itself or the event's
8526 * attribute.
8527 */
8528 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02008529 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008530 if (kernel && event->attr.exclude_kernel)
8531 goto fail;
8532
8533 if (!kernel) {
8534 if (!filename)
8535 goto fail;
8536
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008537 /*
8538 * For now, we only support file-based filters
8539 * in per-task events; doing so for CPU-wide
8540 * events requires additional context switching
8541 * trickery, since same object code will be
8542 * mapped at different virtual addresses in
8543 * different processes.
8544 */
8545 ret = -EOPNOTSUPP;
8546 if (!event->ctx->task)
8547 goto fail_free_name;
8548
Alexander Shishkin375637b2016-04-27 18:44:46 +03008549 /* look up the path and grab its inode */
8550 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8551 if (ret)
8552 goto fail_free_name;
8553
8554 filter->inode = igrab(d_inode(path.dentry));
8555 path_put(&path);
8556 kfree(filename);
8557 filename = NULL;
8558
8559 ret = -EINVAL;
8560 if (!filter->inode ||
8561 !S_ISREG(filter->inode->i_mode))
8562 /* free_filters_list() will iput() */
8563 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008564
8565 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008566 }
8567
8568 /* ready to consume more filters */
8569 state = IF_STATE_ACTION;
8570 filter = NULL;
8571 }
8572 }
8573
8574 if (state != IF_STATE_ACTION)
8575 goto fail;
8576
8577 kfree(orig);
8578
8579 return 0;
8580
8581fail_free_name:
8582 kfree(filename);
8583fail:
8584 free_filters_list(filters);
8585 kfree(orig);
8586
8587 return ret;
8588}
8589
8590static int
8591perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8592{
8593 LIST_HEAD(filters);
8594 int ret;
8595
8596 /*
8597 * Since this is called in perf_ioctl() path, we're already holding
8598 * ctx::mutex.
8599 */
8600 lockdep_assert_held(&event->ctx->mutex);
8601
8602 if (WARN_ON_ONCE(event->parent))
8603 return -EINVAL;
8604
Alexander Shishkin375637b2016-04-27 18:44:46 +03008605 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8606 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008607 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008608
8609 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008610 if (ret)
8611 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008612
8613 /* remove existing filters, if any */
8614 perf_addr_filters_splice(event, &filters);
8615
8616 /* install new filters */
8617 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8618
8619 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008620
8621fail_free_filters:
8622 free_filters_list(&filters);
8623
8624fail_clear_files:
8625 event->addr_filters.nr_file_filters = 0;
8626
8627 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008628}
8629
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008630static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8631{
8632 char *filter_str;
8633 int ret = -EINVAL;
8634
Alexander Shishkin375637b2016-04-27 18:44:46 +03008635 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8636 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8637 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008638 return -EINVAL;
8639
8640 filter_str = strndup_user(arg, PAGE_SIZE);
8641 if (IS_ERR(filter_str))
8642 return PTR_ERR(filter_str);
8643
8644 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8645 event->attr.type == PERF_TYPE_TRACEPOINT)
8646 ret = ftrace_profile_set_filter(event, event->attr.config,
8647 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008648 else if (has_addr_filter(event))
8649 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008650
8651 kfree(filter_str);
8652 return ret;
8653}
8654
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008655/*
8656 * hrtimer based swevent callback
8657 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008658
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008659static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008660{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008661 enum hrtimer_restart ret = HRTIMER_RESTART;
8662 struct perf_sample_data data;
8663 struct pt_regs *regs;
8664 struct perf_event *event;
8665 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008666
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008667 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008668
8669 if (event->state != PERF_EVENT_STATE_ACTIVE)
8670 return HRTIMER_NORESTART;
8671
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008672 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008673
Robert Richterfd0d0002012-04-02 20:19:08 +02008674 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008675 regs = get_irq_regs();
8676
8677 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008678 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008679 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008680 ret = HRTIMER_NORESTART;
8681 }
8682
8683 period = max_t(u64, 10000, event->hw.sample_period);
8684 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8685
8686 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008687}
8688
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008689static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008690{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008691 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008692 s64 period;
8693
8694 if (!is_sampling_event(event))
8695 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008696
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008697 period = local64_read(&hwc->period_left);
8698 if (period) {
8699 if (period < 0)
8700 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008701
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008702 local64_set(&hwc->period_left, 0);
8703 } else {
8704 period = max_t(u64, 10000, hwc->sample_period);
8705 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008706 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8707 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008708}
8709
8710static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8711{
8712 struct hw_perf_event *hwc = &event->hw;
8713
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008714 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008715 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008716 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008717
8718 hrtimer_cancel(&hwc->hrtimer);
8719 }
8720}
8721
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008722static void perf_swevent_init_hrtimer(struct perf_event *event)
8723{
8724 struct hw_perf_event *hwc = &event->hw;
8725
8726 if (!is_sampling_event(event))
8727 return;
8728
8729 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8730 hwc->hrtimer.function = perf_swevent_hrtimer;
8731
8732 /*
8733 * Since hrtimers have a fixed rate, we can do a static freq->period
8734 * mapping and avoid the whole period adjust feedback stuff.
8735 */
8736 if (event->attr.freq) {
8737 long freq = event->attr.sample_freq;
8738
8739 event->attr.sample_period = NSEC_PER_SEC / freq;
8740 hwc->sample_period = event->attr.sample_period;
8741 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008742 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008743 event->attr.freq = 0;
8744 }
8745}
8746
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008747/*
8748 * Software event: cpu wall time clock
8749 */
8750
8751static void cpu_clock_event_update(struct perf_event *event)
8752{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008753 s64 prev;
8754 u64 now;
8755
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008756 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008757 prev = local64_xchg(&event->hw.prev_count, now);
8758 local64_add(now - prev, &event->count);
8759}
8760
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008761static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008762{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008763 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008764 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008765}
8766
8767static void cpu_clock_event_stop(struct perf_event *event, int flags)
8768{
8769 perf_swevent_cancel_hrtimer(event);
8770 cpu_clock_event_update(event);
8771}
8772
8773static int cpu_clock_event_add(struct perf_event *event, int flags)
8774{
8775 if (flags & PERF_EF_START)
8776 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008777 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008778
8779 return 0;
8780}
8781
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008782static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008783{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008784 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008785}
8786
8787static void cpu_clock_event_read(struct perf_event *event)
8788{
8789 cpu_clock_event_update(event);
8790}
8791
8792static int cpu_clock_event_init(struct perf_event *event)
8793{
8794 if (event->attr.type != PERF_TYPE_SOFTWARE)
8795 return -ENOENT;
8796
8797 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8798 return -ENOENT;
8799
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008800 /*
8801 * no branch sampling for software events
8802 */
8803 if (has_branch_stack(event))
8804 return -EOPNOTSUPP;
8805
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008806 perf_swevent_init_hrtimer(event);
8807
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008808 return 0;
8809}
8810
8811static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008812 .task_ctx_nr = perf_sw_context,
8813
Peter Zijlstra34f43922015-02-20 14:05:38 +01008814 .capabilities = PERF_PMU_CAP_NO_NMI,
8815
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008816 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008817 .add = cpu_clock_event_add,
8818 .del = cpu_clock_event_del,
8819 .start = cpu_clock_event_start,
8820 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008821 .read = cpu_clock_event_read,
8822};
8823
8824/*
8825 * Software event: task time clock
8826 */
8827
8828static void task_clock_event_update(struct perf_event *event, u64 now)
8829{
8830 u64 prev;
8831 s64 delta;
8832
8833 prev = local64_xchg(&event->hw.prev_count, now);
8834 delta = now - prev;
8835 local64_add(delta, &event->count);
8836}
8837
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008838static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008839{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008840 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008841 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008842}
8843
8844static void task_clock_event_stop(struct perf_event *event, int flags)
8845{
8846 perf_swevent_cancel_hrtimer(event);
8847 task_clock_event_update(event, event->ctx->time);
8848}
8849
8850static int task_clock_event_add(struct perf_event *event, int flags)
8851{
8852 if (flags & PERF_EF_START)
8853 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008854 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008855
8856 return 0;
8857}
8858
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008859static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008860{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008861 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008862}
8863
8864static void task_clock_event_read(struct perf_event *event)
8865{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008866 u64 now = perf_clock();
8867 u64 delta = now - event->ctx->timestamp;
8868 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008869
8870 task_clock_event_update(event, time);
8871}
8872
8873static int task_clock_event_init(struct perf_event *event)
8874{
8875 if (event->attr.type != PERF_TYPE_SOFTWARE)
8876 return -ENOENT;
8877
8878 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8879 return -ENOENT;
8880
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008881 /*
8882 * no branch sampling for software events
8883 */
8884 if (has_branch_stack(event))
8885 return -EOPNOTSUPP;
8886
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008887 perf_swevent_init_hrtimer(event);
8888
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008889 return 0;
8890}
8891
8892static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008893 .task_ctx_nr = perf_sw_context,
8894
Peter Zijlstra34f43922015-02-20 14:05:38 +01008895 .capabilities = PERF_PMU_CAP_NO_NMI,
8896
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008897 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008898 .add = task_clock_event_add,
8899 .del = task_clock_event_del,
8900 .start = task_clock_event_start,
8901 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008902 .read = task_clock_event_read,
8903};
8904
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008905static void perf_pmu_nop_void(struct pmu *pmu)
8906{
8907}
8908
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008909static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8910{
8911}
8912
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008913static int perf_pmu_nop_int(struct pmu *pmu)
8914{
8915 return 0;
8916}
8917
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008918static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008919
8920static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008921{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008922 __this_cpu_write(nop_txn_flags, flags);
8923
8924 if (flags & ~PERF_PMU_TXN_ADD)
8925 return;
8926
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008927 perf_pmu_disable(pmu);
8928}
8929
8930static int perf_pmu_commit_txn(struct pmu *pmu)
8931{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008932 unsigned int flags = __this_cpu_read(nop_txn_flags);
8933
8934 __this_cpu_write(nop_txn_flags, 0);
8935
8936 if (flags & ~PERF_PMU_TXN_ADD)
8937 return 0;
8938
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008939 perf_pmu_enable(pmu);
8940 return 0;
8941}
8942
8943static void perf_pmu_cancel_txn(struct pmu *pmu)
8944{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008945 unsigned int flags = __this_cpu_read(nop_txn_flags);
8946
8947 __this_cpu_write(nop_txn_flags, 0);
8948
8949 if (flags & ~PERF_PMU_TXN_ADD)
8950 return;
8951
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008952 perf_pmu_enable(pmu);
8953}
8954
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008955static int perf_event_idx_default(struct perf_event *event)
8956{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008957 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008958}
8959
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008960/*
8961 * Ensures all contexts with the same task_ctx_nr have the same
8962 * pmu_cpu_context too.
8963 */
Mark Rutland9e317042014-02-10 17:44:18 +00008964static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008965{
8966 struct pmu *pmu;
8967
8968 if (ctxn < 0)
8969 return NULL;
8970
8971 list_for_each_entry(pmu, &pmus, entry) {
8972 if (pmu->task_ctx_nr == ctxn)
8973 return pmu->pmu_cpu_context;
8974 }
8975
8976 return NULL;
8977}
8978
Peter Zijlstra51676952010-12-07 14:18:20 +01008979static void free_pmu_context(struct pmu *pmu)
8980{
Will Deacondf0062b2017-10-03 15:20:50 +01008981 /*
8982 * Static contexts such as perf_sw_context have a global lifetime
8983 * and may be shared between different PMUs. Avoid freeing them
8984 * when a single PMU is going away.
8985 */
8986 if (pmu->task_ctx_nr > perf_invalid_context)
8987 return;
8988
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008989 mutex_lock(&pmus_lock);
Peter Zijlstra51676952010-12-07 14:18:20 +01008990 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008991 mutex_unlock(&pmus_lock);
8992}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008993
8994/*
8995 * Let userspace know that this PMU supports address range filtering:
8996 */
8997static ssize_t nr_addr_filters_show(struct device *dev,
8998 struct device_attribute *attr,
8999 char *page)
9000{
9001 struct pmu *pmu = dev_get_drvdata(dev);
9002
9003 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
9004}
9005DEVICE_ATTR_RO(nr_addr_filters);
9006
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009007static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009008
Peter Zijlstraabe43402010-11-17 23:17:37 +01009009static ssize_t
9010type_show(struct device *dev, struct device_attribute *attr, char *page)
9011{
9012 struct pmu *pmu = dev_get_drvdata(dev);
9013
9014 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
9015}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009016static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009017
Stephane Eranian62b85632013-04-03 14:21:34 +02009018static ssize_t
9019perf_event_mux_interval_ms_show(struct device *dev,
9020 struct device_attribute *attr,
9021 char *page)
9022{
9023 struct pmu *pmu = dev_get_drvdata(dev);
9024
9025 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
9026}
9027
Peter Zijlstra272325c2015-04-15 11:41:58 +02009028static DEFINE_MUTEX(mux_interval_mutex);
9029
Stephane Eranian62b85632013-04-03 14:21:34 +02009030static ssize_t
9031perf_event_mux_interval_ms_store(struct device *dev,
9032 struct device_attribute *attr,
9033 const char *buf, size_t count)
9034{
9035 struct pmu *pmu = dev_get_drvdata(dev);
9036 int timer, cpu, ret;
9037
9038 ret = kstrtoint(buf, 0, &timer);
9039 if (ret)
9040 return ret;
9041
9042 if (timer < 1)
9043 return -EINVAL;
9044
9045 /* same value, noting to do */
9046 if (timer == pmu->hrtimer_interval_ms)
9047 return count;
9048
Peter Zijlstra272325c2015-04-15 11:41:58 +02009049 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009050 pmu->hrtimer_interval_ms = timer;
9051
9052 /* update all cpuctx for this PMU */
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009053 cpus_read_lock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009054 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02009055 struct perf_cpu_context *cpuctx;
9056 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
9057 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
9058
Peter Zijlstra272325c2015-04-15 11:41:58 +02009059 cpu_function_call(cpu,
9060 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02009061 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009062 cpus_read_unlock();
Peter Zijlstra272325c2015-04-15 11:41:58 +02009063 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02009064
9065 return count;
9066}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009067static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02009068
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009069static struct attribute *pmu_dev_attrs[] = {
9070 &dev_attr_type.attr,
9071 &dev_attr_perf_event_mux_interval_ms.attr,
9072 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009073};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009074ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01009075
9076static int pmu_bus_running;
9077static struct bus_type pmu_bus = {
9078 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07009079 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01009080};
9081
9082static void pmu_dev_release(struct device *dev)
9083{
9084 kfree(dev);
9085}
9086
9087static int pmu_dev_alloc(struct pmu *pmu)
9088{
9089 int ret = -ENOMEM;
9090
9091 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
9092 if (!pmu->dev)
9093 goto out;
9094
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01009095 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01009096 device_initialize(pmu->dev);
9097 ret = dev_set_name(pmu->dev, "%s", pmu->name);
9098 if (ret)
9099 goto free_dev;
9100
9101 dev_set_drvdata(pmu->dev, pmu);
9102 pmu->dev->bus = &pmu_bus;
9103 pmu->dev->release = pmu_dev_release;
9104 ret = device_add(pmu->dev);
9105 if (ret)
9106 goto free_dev;
9107
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009108 /* For PMUs with address filters, throw in an extra attribute: */
9109 if (pmu->nr_addr_filters)
9110 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
9111
9112 if (ret)
9113 goto del_dev;
9114
Peter Zijlstraabe43402010-11-17 23:17:37 +01009115out:
9116 return ret;
9117
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03009118del_dev:
9119 device_del(pmu->dev);
9120
Peter Zijlstraabe43402010-11-17 23:17:37 +01009121free_dev:
9122 put_device(pmu->dev);
9123 goto out;
9124}
9125
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009126static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009127static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009128
Mischa Jonker03d8e802013-06-04 11:45:48 +02009129int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009130{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009131 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009132
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009133 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009134 ret = -ENOMEM;
9135 pmu->pmu_disable_count = alloc_percpu(int);
9136 if (!pmu->pmu_disable_count)
9137 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009138
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009139 pmu->type = -1;
9140 if (!name)
9141 goto skip_type;
9142 pmu->name = name;
9143
9144 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08009145 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
9146 if (type < 0) {
9147 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009148 goto free_pdc;
9149 }
9150 }
9151 pmu->type = type;
9152
Peter Zijlstraabe43402010-11-17 23:17:37 +01009153 if (pmu_bus_running) {
9154 ret = pmu_dev_alloc(pmu);
9155 if (ret)
9156 goto free_idr;
9157 }
9158
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009159skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01009160 if (pmu->task_ctx_nr == perf_hw_context) {
9161 static int hw_context_taken = 0;
9162
Mark Rutland5101ef22016-04-26 11:33:46 +01009163 /*
9164 * Other than systems with heterogeneous CPUs, it never makes
9165 * sense for two PMUs to share perf_hw_context. PMUs which are
9166 * uncore must use perf_invalid_context.
9167 */
9168 if (WARN_ON_ONCE(hw_context_taken &&
9169 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01009170 pmu->task_ctx_nr = perf_invalid_context;
9171
9172 hw_context_taken = 1;
9173 }
9174
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009175 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
9176 if (pmu->pmu_cpu_context)
9177 goto got_cpu_context;
9178
Wei Yongjunc4814202013-04-12 11:05:54 +08009179 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009180 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
9181 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01009182 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009183
9184 for_each_possible_cpu(cpu) {
9185 struct perf_cpu_context *cpuctx;
9186
9187 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02009188 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01009189 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02009190 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009191 cpuctx->ctx.pmu = pmu;
Thomas Gleixnera63fbed2017-05-24 10:15:34 +02009192 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
Stephane Eranian9e630202013-04-03 14:21:33 +02009193
Peter Zijlstra272325c2015-04-15 11:41:58 +02009194 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009195 }
9196
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009197got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009198 if (!pmu->start_txn) {
9199 if (pmu->pmu_enable) {
9200 /*
9201 * If we have pmu_enable/pmu_disable calls, install
9202 * transaction stubs that use that to try and batch
9203 * hardware accesses.
9204 */
9205 pmu->start_txn = perf_pmu_start_txn;
9206 pmu->commit_txn = perf_pmu_commit_txn;
9207 pmu->cancel_txn = perf_pmu_cancel_txn;
9208 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07009209 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02009210 pmu->commit_txn = perf_pmu_nop_int;
9211 pmu->cancel_txn = perf_pmu_nop_void;
9212 }
9213 }
9214
9215 if (!pmu->pmu_enable) {
9216 pmu->pmu_enable = perf_pmu_nop_void;
9217 pmu->pmu_disable = perf_pmu_nop_void;
9218 }
9219
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01009220 if (!pmu->event_idx)
9221 pmu->event_idx = perf_event_idx_default;
9222
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009223 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009224 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009225 ret = 0;
9226unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009227 mutex_unlock(&pmus_lock);
9228
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009229 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009230
Peter Zijlstraabe43402010-11-17 23:17:37 +01009231free_dev:
9232 device_del(pmu->dev);
9233 put_device(pmu->dev);
9234
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009235free_idr:
9236 if (pmu->type >= PERF_TYPE_MAX)
9237 idr_remove(&pmu_idr, pmu->type);
9238
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009239free_pdc:
9240 free_percpu(pmu->pmu_disable_count);
9241 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009242}
Yan, Zhengc464c762014-03-18 16:56:41 +08009243EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009244
9245void perf_pmu_unregister(struct pmu *pmu)
9246{
Jiri Olsa09338402016-10-20 13:10:11 +02009247 int remove_device;
9248
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009249 mutex_lock(&pmus_lock);
Jiri Olsa09338402016-10-20 13:10:11 +02009250 remove_device = pmu_bus_running;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009251 list_del_rcu(&pmu->entry);
9252 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009253
9254 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02009255 * We dereference the pmu list under both SRCU and regular RCU, so
9256 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009257 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009258 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02009259 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009260
Peter Zijlstra33696fc2010-06-14 08:49:00 +02009261 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009262 if (pmu->type >= PERF_TYPE_MAX)
9263 idr_remove(&pmu_idr, pmu->type);
Jiri Olsa09338402016-10-20 13:10:11 +02009264 if (remove_device) {
9265 if (pmu->nr_addr_filters)
9266 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
9267 device_del(pmu->dev);
9268 put_device(pmu->dev);
9269 }
Peter Zijlstra51676952010-12-07 14:18:20 +01009270 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009271}
Yan, Zhengc464c762014-03-18 16:56:41 +08009272EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009273
Mark Rutlandcc34b982015-01-07 14:56:51 +00009274static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
9275{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009276 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00009277 int ret;
9278
9279 if (!try_module_get(pmu->module))
9280 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009281
9282 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02009283 /*
9284 * This ctx->mutex can nest when we're called through
9285 * inheritance. See the perf_event_ctx_lock_nested() comment.
9286 */
9287 ctx = perf_event_ctx_lock_nested(event->group_leader,
9288 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009289 BUG_ON(!ctx);
9290 }
9291
Mark Rutlandcc34b982015-01-07 14:56:51 +00009292 event->pmu = pmu;
9293 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009294
9295 if (ctx)
9296 perf_event_ctx_unlock(event->group_leader, ctx);
9297
Mark Rutlandcc34b982015-01-07 14:56:51 +00009298 if (ret)
9299 module_put(pmu->module);
9300
9301 return ret;
9302}
9303
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009304static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009305{
Dan Carpenter85c617a2017-05-22 12:03:49 +03009306 struct pmu *pmu;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009307 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08009308 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009309
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009310 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009311
Kan Liang40999312017-01-18 08:21:01 -05009312 /* Try parent's PMU first: */
9313 if (event->parent && event->parent->pmu) {
9314 pmu = event->parent->pmu;
9315 ret = perf_try_init_event(pmu, event);
9316 if (!ret)
9317 goto unlock;
9318 }
9319
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009320 rcu_read_lock();
9321 pmu = idr_find(&pmu_idr, event->attr.type);
9322 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08009323 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009324 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08009325 if (ret)
9326 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009327 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08009328 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009329
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009330 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009331 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009332 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009333 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009334
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009335 if (ret != -ENOENT) {
9336 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009337 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009338 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009339 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009340 pmu = ERR_PTR(-ENOENT);
9341unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009342 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009343
9344 return pmu;
9345}
9346
Kan Liangf2fb6be2016-03-23 11:24:37 -07009347static void attach_sb_event(struct perf_event *event)
9348{
9349 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
9350
9351 raw_spin_lock(&pel->lock);
9352 list_add_rcu(&event->sb_list, &pel->list);
9353 raw_spin_unlock(&pel->lock);
9354}
9355
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009356/*
9357 * We keep a list of all !task (and therefore per-cpu) events
9358 * that need to receive side-band records.
9359 *
9360 * This avoids having to scan all the various PMU per-cpu contexts
9361 * looking for them.
9362 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009363static void account_pmu_sb_event(struct perf_event *event)
9364{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009365 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009366 attach_sb_event(event);
9367}
9368
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009369static void account_event_cpu(struct perf_event *event, int cpu)
9370{
9371 if (event->parent)
9372 return;
9373
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009374 if (is_cgroup_event(event))
9375 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9376}
9377
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009378/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9379static void account_freq_event_nohz(void)
9380{
9381#ifdef CONFIG_NO_HZ_FULL
9382 /* Lock so we don't race with concurrent unaccount */
9383 spin_lock(&nr_freq_lock);
9384 if (atomic_inc_return(&nr_freq_events) == 1)
9385 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9386 spin_unlock(&nr_freq_lock);
9387#endif
9388}
9389
9390static void account_freq_event(void)
9391{
9392 if (tick_nohz_full_enabled())
9393 account_freq_event_nohz();
9394 else
9395 atomic_inc(&nr_freq_events);
9396}
9397
9398
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009399static void account_event(struct perf_event *event)
9400{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009401 bool inc = false;
9402
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009403 if (event->parent)
9404 return;
9405
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009406 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009407 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009408 if (event->attr.mmap || event->attr.mmap_data)
9409 atomic_inc(&nr_mmap_events);
9410 if (event->attr.comm)
9411 atomic_inc(&nr_comm_events);
Hari Bathinie4222672017-03-08 02:11:36 +05309412 if (event->attr.namespaces)
9413 atomic_inc(&nr_namespaces_events);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009414 if (event->attr.task)
9415 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009416 if (event->attr.freq)
9417 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009418 if (event->attr.context_switch) {
9419 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009420 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009421 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009422 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009423 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009424 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009425 inc = true;
9426
Peter Zijlstra9107c892016-02-24 18:45:45 +01009427 if (inc) {
Alexander Shishkin5bce9db2017-08-29 17:01:03 +03009428 /*
9429 * We need the mutex here because static_branch_enable()
9430 * must complete *before* the perf_sched_count increment
9431 * becomes visible.
9432 */
Peter Zijlstra9107c892016-02-24 18:45:45 +01009433 if (atomic_inc_not_zero(&perf_sched_count))
9434 goto enabled;
9435
9436 mutex_lock(&perf_sched_mutex);
9437 if (!atomic_read(&perf_sched_count)) {
9438 static_branch_enable(&perf_sched_events);
9439 /*
9440 * Guarantee that all CPUs observe they key change and
9441 * call the perf scheduling hooks before proceeding to
9442 * install events that need them.
9443 */
9444 synchronize_sched();
9445 }
9446 /*
9447 * Now that we have waited for the sync_sched(), allow further
9448 * increments to by-pass the mutex.
9449 */
9450 atomic_inc(&perf_sched_count);
9451 mutex_unlock(&perf_sched_mutex);
9452 }
9453enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009454
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009455 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009456
9457 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009458}
9459
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009460/*
9461 * Allocate and initialize a event structure
9462 */
9463static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009464perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009465 struct task_struct *task,
9466 struct perf_event *group_leader,
9467 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009468 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009469 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009470{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009471 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009472 struct perf_event *event;
9473 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009474 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009475
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009476 if ((unsigned)cpu >= nr_cpu_ids) {
9477 if (!task || cpu != -1)
9478 return ERR_PTR(-EINVAL);
9479 }
9480
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009481 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009482 if (!event)
9483 return ERR_PTR(-ENOMEM);
9484
9485 /*
9486 * Single events are their own group leaders, with an
9487 * empty sibling list:
9488 */
9489 if (!group_leader)
9490 group_leader = event;
9491
9492 mutex_init(&event->child_mutex);
9493 INIT_LIST_HEAD(&event->child_list);
9494
9495 INIT_LIST_HEAD(&event->group_entry);
9496 INIT_LIST_HEAD(&event->event_entry);
9497 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009498 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009499 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009500 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009501 INIT_HLIST_NODE(&event->hlist_entry);
9502
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009503
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009504 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009505 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009506
9507 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009508 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009509
Al Viroa6fa9412012-08-20 14:59:25 +01009510 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009511 event->cpu = cpu;
9512 event->attr = *attr;
9513 event->group_leader = group_leader;
9514 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009515 event->oncpu = -1;
9516
9517 event->parent = parent_event;
9518
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009519 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009520 event->id = atomic64_inc_return(&perf_event_id);
9521
9522 event->state = PERF_EVENT_STATE_INACTIVE;
9523
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009524 if (task) {
9525 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009526 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009527 * XXX pmu::event_init needs to know what task to account to
9528 * and we cannot use the ctx information because we need the
9529 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009530 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009531 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009532 }
9533
Peter Zijlstra34f43922015-02-20 14:05:38 +01009534 event->clock = &local_clock;
9535 if (parent_event)
9536 event->clock = parent_event->clock;
9537
Avi Kivity4dc0da82011-06-29 18:42:35 +03009538 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009539 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009540 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +02009541#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009542 if (overflow_handler == bpf_overflow_handler) {
9543 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
9544
9545 if (IS_ERR(prog)) {
9546 err = PTR_ERR(prog);
9547 goto err_ns;
9548 }
9549 event->prog = prog;
9550 event->orig_overflow_handler =
9551 parent_event->orig_overflow_handler;
9552 }
9553#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +03009554 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009555
Wang Nan18794452016-03-28 06:41:30 +00009556 if (overflow_handler) {
9557 event->overflow_handler = overflow_handler;
9558 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009559 } else if (is_write_backward(event)){
9560 event->overflow_handler = perf_event_output_backward;
9561 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009562 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009563 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009564 event->overflow_handler_context = NULL;
9565 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009566
Jiri Olsa0231bb52013-02-01 11:23:45 +01009567 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009568
9569 pmu = NULL;
9570
9571 hwc = &event->hw;
9572 hwc->sample_period = attr->sample_period;
9573 if (attr->freq && attr->sample_freq)
9574 hwc->sample_period = 1;
9575 hwc->last_period = hwc->sample_period;
9576
Peter Zijlstrae7850592010-05-21 14:43:08 +02009577 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009578
9579 /*
Peter Zijlstraba5213a2017-05-30 11:45:12 +02009580 * We currently do not support PERF_SAMPLE_READ on inherited events.
9581 * See perf_output_read().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009582 */
Peter Zijlstraba5213a2017-05-30 11:45:12 +02009583 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009584 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009585
Yan, Zhenga46a2302014-11-04 21:56:06 -05009586 if (!has_branch_stack(event))
9587 event->attr.branch_sample_type = 0;
9588
Matt Fleming79dff512015-01-23 18:45:42 +00009589 if (cgroup_fd != -1) {
9590 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9591 if (err)
9592 goto err_ns;
9593 }
9594
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009595 pmu = perf_init_event(event);
Dan Carpenter85c617a2017-05-22 12:03:49 +03009596 if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009597 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009598 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009599 }
9600
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009601 err = exclusive_event_init(event);
9602 if (err)
9603 goto err_pmu;
9604
Alexander Shishkin375637b2016-04-27 18:44:46 +03009605 if (has_addr_filter(event)) {
9606 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9607 sizeof(unsigned long),
9608 GFP_KERNEL);
Dan Carpenter36cc2b92017-05-22 12:04:18 +03009609 if (!event->addr_filters_offs) {
9610 err = -ENOMEM;
Alexander Shishkin375637b2016-04-27 18:44:46 +03009611 goto err_per_task;
Dan Carpenter36cc2b92017-05-22 12:04:18 +03009612 }
Alexander Shishkin375637b2016-04-27 18:44:46 +03009613
9614 /* force hw sync on the address filters */
9615 event->addr_filters_gen = 1;
9616 }
9617
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009618 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009619 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009620 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009621 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009622 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009623 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009624 }
9625
Alexander Shishkin927a5572016-03-02 13:24:14 +02009626 /* symmetric to unaccount_event() in _free_event() */
9627 account_event(event);
9628
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009629 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009630
Alexander Shishkin375637b2016-04-27 18:44:46 +03009631err_addr_filters:
9632 kfree(event->addr_filters_offs);
9633
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009634err_per_task:
9635 exclusive_event_destroy(event);
9636
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009637err_pmu:
9638 if (event->destroy)
9639 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009640 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009641err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009642 if (is_cgroup_event(event))
9643 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009644 if (event->ns)
9645 put_pid_ns(event->ns);
9646 kfree(event);
9647
9648 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009649}
9650
9651static int perf_copy_attr(struct perf_event_attr __user *uattr,
9652 struct perf_event_attr *attr)
9653{
9654 u32 size;
9655 int ret;
9656
9657 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9658 return -EFAULT;
9659
9660 /*
9661 * zero the full structure, so that a short copy will be nice.
9662 */
9663 memset(attr, 0, sizeof(*attr));
9664
9665 ret = get_user(size, &uattr->size);
9666 if (ret)
9667 return ret;
9668
9669 if (size > PAGE_SIZE) /* silly large */
9670 goto err_size;
9671
9672 if (!size) /* abi compat */
9673 size = PERF_ATTR_SIZE_VER0;
9674
9675 if (size < PERF_ATTR_SIZE_VER0)
9676 goto err_size;
9677
9678 /*
9679 * If we're handed a bigger struct than we know of,
9680 * ensure all the unknown bits are 0 - i.e. new
9681 * user-space does not rely on any kernel feature
9682 * extensions we dont know about yet.
9683 */
9684 if (size > sizeof(*attr)) {
9685 unsigned char __user *addr;
9686 unsigned char __user *end;
9687 unsigned char val;
9688
9689 addr = (void __user *)uattr + sizeof(*attr);
9690 end = (void __user *)uattr + size;
9691
9692 for (; addr < end; addr++) {
9693 ret = get_user(val, addr);
9694 if (ret)
9695 return ret;
9696 if (val)
9697 goto err_size;
9698 }
9699 size = sizeof(*attr);
9700 }
9701
9702 ret = copy_from_user(attr, uattr, size);
9703 if (ret)
9704 return -EFAULT;
9705
Meng Xuf12f42a2017-08-23 17:07:50 -04009706 attr->size = size;
9707
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309708 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009709 return -EINVAL;
9710
9711 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9712 return -EINVAL;
9713
9714 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9715 return -EINVAL;
9716
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009717 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9718 u64 mask = attr->branch_sample_type;
9719
9720 /* only using defined bits */
9721 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9722 return -EINVAL;
9723
9724 /* at least one branch bit must be set */
9725 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9726 return -EINVAL;
9727
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009728 /* propagate priv level, when not set for branch */
9729 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9730
9731 /* exclude_kernel checked on syscall entry */
9732 if (!attr->exclude_kernel)
9733 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9734
9735 if (!attr->exclude_user)
9736 mask |= PERF_SAMPLE_BRANCH_USER;
9737
9738 if (!attr->exclude_hv)
9739 mask |= PERF_SAMPLE_BRANCH_HV;
9740 /*
9741 * adjust user setting (for HW filter setup)
9742 */
9743 attr->branch_sample_type = mask;
9744 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009745 /* privileged levels capture (kernel, hv): check permissions */
9746 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009747 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9748 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009749 }
Jiri Olsa40189942012-08-07 15:20:37 +02009750
Jiri Olsac5ebced2012-08-07 15:20:40 +02009751 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009752 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009753 if (ret)
9754 return ret;
9755 }
9756
9757 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9758 if (!arch_perf_have_user_stack_dump())
9759 return -ENOSYS;
9760
9761 /*
9762 * We have __u32 type for the size, but so far
9763 * we can only use __u16 as maximum due to the
9764 * __u16 sample size limit.
9765 */
9766 if (attr->sample_stack_user >= USHRT_MAX)
9767 ret = -EINVAL;
9768 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9769 ret = -EINVAL;
9770 }
Jiri Olsa40189942012-08-07 15:20:37 +02009771
Stephane Eranian60e23642014-09-24 13:48:37 +02009772 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9773 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009774out:
9775 return ret;
9776
9777err_size:
9778 put_user(sizeof(*attr), &uattr->size);
9779 ret = -E2BIG;
9780 goto out;
9781}
9782
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009783static int
9784perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009785{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009786 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009787 int ret = -EINVAL;
9788
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009789 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009790 goto set;
9791
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009792 /* don't allow circular references */
9793 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009794 goto out;
9795
Peter Zijlstra0f139302010-05-20 14:35:15 +02009796 /*
9797 * Don't allow cross-cpu buffers
9798 */
9799 if (output_event->cpu != event->cpu)
9800 goto out;
9801
9802 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009803 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009804 */
9805 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9806 goto out;
9807
Peter Zijlstra34f43922015-02-20 14:05:38 +01009808 /*
9809 * Mixing clocks in the same buffer is trouble you don't need.
9810 */
9811 if (output_event->clock != event->clock)
9812 goto out;
9813
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009814 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009815 * Either writing ring buffer from beginning or from end.
9816 * Mixing is not allowed.
9817 */
9818 if (is_write_backward(output_event) != is_write_backward(event))
9819 goto out;
9820
9821 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009822 * If both events generate aux data, they must be on the same PMU
9823 */
9824 if (has_aux(event) && has_aux(output_event) &&
9825 event->pmu != output_event->pmu)
9826 goto out;
9827
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009828set:
9829 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009830 /* Can't redirect output if we've got an active mmap() */
9831 if (atomic_read(&event->mmap_count))
9832 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009833
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009834 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009835 /* get the rb we want to redirect to */
9836 rb = ring_buffer_get(output_event);
9837 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009838 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009839 }
9840
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009841 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009842
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009843 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009844unlock:
9845 mutex_unlock(&event->mmap_mutex);
9846
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009847out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009848 return ret;
9849}
9850
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009851static void mutex_lock_double(struct mutex *a, struct mutex *b)
9852{
9853 if (b < a)
9854 swap(a, b);
9855
9856 mutex_lock(a);
9857 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9858}
9859
Peter Zijlstra34f43922015-02-20 14:05:38 +01009860static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9861{
9862 bool nmi_safe = false;
9863
9864 switch (clk_id) {
9865 case CLOCK_MONOTONIC:
9866 event->clock = &ktime_get_mono_fast_ns;
9867 nmi_safe = true;
9868 break;
9869
9870 case CLOCK_MONOTONIC_RAW:
9871 event->clock = &ktime_get_raw_fast_ns;
9872 nmi_safe = true;
9873 break;
9874
9875 case CLOCK_REALTIME:
9876 event->clock = &ktime_get_real_ns;
9877 break;
9878
9879 case CLOCK_BOOTTIME:
9880 event->clock = &ktime_get_boot_ns;
9881 break;
9882
9883 case CLOCK_TAI:
9884 event->clock = &ktime_get_tai_ns;
9885 break;
9886
9887 default:
9888 return -EINVAL;
9889 }
9890
9891 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9892 return -EINVAL;
9893
9894 return 0;
9895}
9896
Peter Zijlstra321027c2017-01-11 21:09:50 +01009897/*
9898 * Variation on perf_event_ctx_lock_nested(), except we take two context
9899 * mutexes.
9900 */
9901static struct perf_event_context *
9902__perf_event_ctx_lock_double(struct perf_event *group_leader,
9903 struct perf_event_context *ctx)
9904{
9905 struct perf_event_context *gctx;
9906
9907again:
9908 rcu_read_lock();
9909 gctx = READ_ONCE(group_leader->ctx);
9910 if (!atomic_inc_not_zero(&gctx->refcount)) {
9911 rcu_read_unlock();
9912 goto again;
9913 }
9914 rcu_read_unlock();
9915
9916 mutex_lock_double(&gctx->mutex, &ctx->mutex);
9917
9918 if (group_leader->ctx != gctx) {
9919 mutex_unlock(&ctx->mutex);
9920 mutex_unlock(&gctx->mutex);
9921 put_ctx(gctx);
9922 goto again;
9923 }
9924
9925 return gctx;
9926}
9927
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009928/**
9929 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9930 *
9931 * @attr_uptr: event_id type attributes for monitoring/sampling
9932 * @pid: target pid
9933 * @cpu: target cpu
9934 * @group_fd: group leader event fd
9935 */
9936SYSCALL_DEFINE5(perf_event_open,
9937 struct perf_event_attr __user *, attr_uptr,
9938 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9939{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009940 struct perf_event *group_leader = NULL, *output_event = NULL;
9941 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009942 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009943 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009944 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009945 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009946 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009947 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009948 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009949 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009950 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009951 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009952 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009953
9954 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009955 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009956 return -EINVAL;
9957
9958 err = perf_copy_attr(attr_uptr, &attr);
9959 if (err)
9960 return err;
9961
9962 if (!attr.exclude_kernel) {
9963 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9964 return -EACCES;
9965 }
9966
Hari Bathinie4222672017-03-08 02:11:36 +05309967 if (attr.namespaces) {
9968 if (!capable(CAP_SYS_ADMIN))
9969 return -EACCES;
9970 }
9971
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009972 if (attr.freq) {
9973 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9974 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009975 } else {
9976 if (attr.sample_period & (1ULL << 63))
9977 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009978 }
9979
Kan Liangfc7ce9c2017-08-28 20:52:49 -04009980 /* Only privileged users can get physical addresses */
9981 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR) &&
9982 perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9983 return -EACCES;
9984
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009985 if (!attr.sample_max_stack)
9986 attr.sample_max_stack = sysctl_perf_event_max_stack;
9987
Stephane Eraniane5d13672011-02-14 11:20:01 +02009988 /*
9989 * In cgroup mode, the pid argument is used to pass the fd
9990 * opened to the cgroup directory in cgroupfs. The cpu argument
9991 * designates the cpu on which to monitor threads from that
9992 * cgroup.
9993 */
9994 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9995 return -EINVAL;
9996
Yann Droneauda21b0b32014-01-05 21:36:33 +01009997 if (flags & PERF_FLAG_FD_CLOEXEC)
9998 f_flags |= O_CLOEXEC;
9999
10000 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010001 if (event_fd < 0)
10002 return event_fd;
10003
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010004 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -040010005 err = perf_fget_light(group_fd, &group);
10006 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010007 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -040010008 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010009 if (flags & PERF_FLAG_FD_OUTPUT)
10010 output_event = group_leader;
10011 if (flags & PERF_FLAG_FD_NO_GROUP)
10012 group_leader = NULL;
10013 }
10014
Stephane Eraniane5d13672011-02-14 11:20:01 +020010015 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010016 task = find_lively_task_by_vpid(pid);
10017 if (IS_ERR(task)) {
10018 err = PTR_ERR(task);
10019 goto err_group_fd;
10020 }
10021 }
10022
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010023 if (task && group_leader &&
10024 group_leader->attr.inherit != attr.inherit) {
10025 err = -EINVAL;
10026 goto err_task;
10027 }
10028
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010029 if (task) {
10030 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
10031 if (err)
Alexander Levine5aeee52017-06-03 03:39:13 +000010032 goto err_task;
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010033
10034 /*
10035 * Reuse ptrace permission checks for now.
10036 *
10037 * We must hold cred_guard_mutex across this and any potential
10038 * perf_install_in_context() call for this new event to
10039 * serialize against exec() altering our credentials (and the
10040 * perf_event_exit_task() that could imply).
10041 */
10042 err = -EACCES;
10043 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
10044 goto err_cred;
10045 }
10046
Matt Fleming79dff512015-01-23 18:45:42 +000010047 if (flags & PERF_FLAG_PID_CGROUP)
10048 cgroup_fd = pid;
10049
Avi Kivity4dc0da82011-06-29 18:42:35 +030010050 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010051 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010052 if (IS_ERR(event)) {
10053 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010054 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +020010055 }
10056
Vince Weaver53b25332014-05-16 17:12:12 -040010057 if (is_sampling_event(event)) {
10058 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +053010059 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -040010060 goto err_alloc;
10061 }
10062 }
10063
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010064 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010065 * Special case software events and allow them to be part of
10066 * any hardware group.
10067 */
10068 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010069
Peter Zijlstra34f43922015-02-20 14:05:38 +010010070 if (attr.use_clockid) {
10071 err = perf_event_set_clock(event, attr.clockid);
10072 if (err)
10073 goto err_alloc;
10074 }
10075
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010076 if (pmu->task_ctx_nr == perf_sw_context)
10077 event->event_caps |= PERF_EV_CAP_SOFTWARE;
10078
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010079 if (group_leader &&
10080 (is_software_event(event) != is_software_event(group_leader))) {
10081 if (is_software_event(event)) {
10082 /*
10083 * If event and group_leader are not both a software
10084 * event, and event is, then group leader is not.
10085 *
10086 * Allow the addition of software events to !software
10087 * groups, this is safe because software events never
10088 * fail to schedule.
10089 */
10090 pmu = group_leader->pmu;
10091 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -070010092 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010093 /*
10094 * In case the group is a pure software group, and we
10095 * try to add a hardware event, move the whole group to
10096 * the hardware context.
10097 */
10098 move_group = 1;
10099 }
10100 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010101
10102 /*
10103 * Get the target context (task or percpu):
10104 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010105 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010106 if (IS_ERR(ctx)) {
10107 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010108 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010109 }
10110
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010111 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
10112 err = -EBUSY;
10113 goto err_context;
10114 }
10115
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010116 /*
10117 * Look up the group leader (we will attach this event to it):
10118 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010119 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010120 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010121
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010122 /*
10123 * Do not allow a recursive hierarchy (this new sibling
10124 * becoming part of another group-sibling):
10125 */
10126 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010127 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +010010128
10129 /* All events in a group should have the same clock */
10130 if (group_leader->clock != event->clock)
10131 goto err_context;
10132
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010133 /*
Mark Rutland64aee2a2017-06-22 15:41:38 +010010134 * Make sure we're both events for the same CPU;
10135 * grouping events for different CPUs is broken; since
10136 * you can never concurrently schedule them anyhow.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010137 */
Mark Rutland64aee2a2017-06-22 15:41:38 +010010138 if (group_leader->cpu != event->cpu)
10139 goto err_context;
Peter Zijlstrac3c87e72015-01-23 11:19:48 +010010140
Mark Rutland64aee2a2017-06-22 15:41:38 +010010141 /*
10142 * Make sure we're both on the same task, or both
10143 * per-CPU events.
10144 */
10145 if (group_leader->ctx->task != ctx->task)
10146 goto err_context;
10147
10148 /*
10149 * Do not allow to attach to a group in a different task
10150 * or CPU context. If we're moving SW events, we'll fix
10151 * this up later, so allow that.
10152 */
10153 if (!move_group && group_leader->ctx != ctx)
10154 goto err_context;
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010155
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010156 /*
10157 * Only a group leader can be exclusive or pinned
10158 */
10159 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010160 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010161 }
10162
10163 if (output_event) {
10164 err = perf_event_set_output(event, output_event);
10165 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010166 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +020010167 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010168
Yann Droneauda21b0b32014-01-05 21:36:33 +010010169 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
10170 f_flags);
Al Viroea635c62010-05-26 17:40:29 -040010171 if (IS_ERR(event_file)) {
10172 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +020010173 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010174 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -040010175 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010176
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010177 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +010010178 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
10179
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010180 if (gctx->task == TASK_TOMBSTONE) {
10181 err = -ESRCH;
10182 goto err_locked;
10183 }
Peter Zijlstra321027c2017-01-11 21:09:50 +010010184
10185 /*
10186 * Check if we raced against another sys_perf_event_open() call
10187 * moving the software group underneath us.
10188 */
10189 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
10190 /*
10191 * If someone moved the group out from under us, check
10192 * if this new event wound up on the same ctx, if so
10193 * its the regular !move_group case, otherwise fail.
10194 */
10195 if (gctx != ctx) {
10196 err = -EINVAL;
10197 goto err_locked;
10198 } else {
10199 perf_event_ctx_unlock(group_leader, gctx);
10200 move_group = 0;
10201 }
10202 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010203 } else {
10204 mutex_lock(&ctx->mutex);
10205 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010206
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010207 if (ctx->task == TASK_TOMBSTONE) {
10208 err = -ESRCH;
10209 goto err_locked;
10210 }
10211
Peter Zijlstraa7239682015-09-09 19:06:33 +020010212 if (!perf_event_validate_size(event)) {
10213 err = -E2BIG;
10214 goto err_locked;
10215 }
10216
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010217 if (!task) {
10218 /*
10219 * Check if the @cpu we're creating an event for is online.
10220 *
10221 * We use the perf_cpu_context::ctx::mutex to serialize against
10222 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10223 */
10224 struct perf_cpu_context *cpuctx =
10225 container_of(ctx, struct perf_cpu_context, ctx);
10226
10227 if (!cpuctx->online) {
10228 err = -ENODEV;
10229 goto err_locked;
10230 }
10231 }
10232
10233
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010234 /*
10235 * Must be under the same ctx::mutex as perf_install_in_context(),
10236 * because we need to serialize with concurrent event creation.
10237 */
10238 if (!exclusive_event_installable(event, ctx)) {
10239 /* exclusive and group stuff are assumed mutually exclusive */
10240 WARN_ON_ONCE(move_group);
10241
10242 err = -EBUSY;
10243 goto err_locked;
10244 }
10245
10246 WARN_ON_ONCE(ctx->parent_ctx);
10247
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010248 /*
10249 * This is the point on no return; we cannot fail hereafter. This is
10250 * where we start modifying current state.
10251 */
10252
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010253 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010254 /*
10255 * See perf_event_ctx_lock() for comments on the details
10256 * of swizzling perf_event::ctx.
10257 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010258 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +010010259 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +010010260
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010261 list_for_each_entry(sibling, &group_leader->sibling_list,
10262 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010263 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010264 put_ctx(gctx);
10265 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010266
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010267 /*
10268 * Wait for everybody to stop referencing the events through
10269 * the old lists, before installing it on new lists.
10270 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010271 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010272
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010273 /*
10274 * Install the group siblings before the group leader.
10275 *
10276 * Because a group leader will try and install the entire group
10277 * (through the sibling list, which is still in-tact), we can
10278 * end up with siblings installed in the wrong context.
10279 *
10280 * By installing siblings first we NO-OP because they're not
10281 * reachable through the group lists.
10282 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010283 list_for_each_entry(sibling, &group_leader->sibling_list,
10284 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010285 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +010010286 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010287 get_ctx(ctx);
10288 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010289
10290 /*
10291 * Removing from the context ends up with disabled
10292 * event. What we want here is event in the initial
10293 * startup state, ready to be add into new context.
10294 */
10295 perf_event__state_init(group_leader);
10296 perf_install_in_context(ctx, group_leader, group_leader->cpu);
10297 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010298 }
10299
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020010300 /*
10301 * Precalculate sample_data sizes; do while holding ctx::mutex such
10302 * that we're serialized against further additions and before
10303 * perf_install_in_context() which is the point the event is active and
10304 * can use these values.
10305 */
10306 perf_event__header_size(event);
10307 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010308
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010010309 event->owner = current;
10310
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080010311 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010312 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010313
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010314 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010315 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010316 mutex_unlock(&ctx->mutex);
10317
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010318 if (task) {
10319 mutex_unlock(&task->signal->cred_guard_mutex);
10320 put_task_struct(task);
10321 }
10322
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010323 mutex_lock(&current->perf_event_mutex);
10324 list_add_tail(&event->owner_entry, &current->perf_event_list);
10325 mutex_unlock(&current->perf_event_mutex);
10326
Peter Zijlstra8a495422010-05-27 15:47:49 +020010327 /*
10328 * Drop the reference on the group_event after placing the
10329 * new event on the sibling_list. This ensures destruction
10330 * of the group leader will find the pointer to itself in
10331 * perf_group_detach().
10332 */
Al Viro2903ff02012-08-28 12:52:22 -040010333 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010334 fd_install(event_fd, event_file);
10335 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010336
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010337err_locked:
10338 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010339 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010340 mutex_unlock(&ctx->mutex);
10341/* err_file: */
10342 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010343err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010344 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040010345 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010346err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010010347 /*
10348 * If event_file is set, the fput() above will have called ->release()
10349 * and that will take care of freeing the event.
10350 */
10351 if (!event_file)
10352 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010353err_cred:
10354 if (task)
10355 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010356err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020010357 if (task)
10358 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010359err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040010360 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010361err_fd:
10362 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010363 return err;
10364}
10365
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010366/**
10367 * perf_event_create_kernel_counter
10368 *
10369 * @attr: attributes of the counter to create
10370 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070010371 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010372 */
10373struct perf_event *
10374perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070010375 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010376 perf_overflow_handler_t overflow_handler,
10377 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010378{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010379 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010380 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010381 int err;
10382
10383 /*
10384 * Get the target context (task or percpu):
10385 */
10386
Avi Kivity4dc0da82011-06-29 18:42:35 +030010387 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010388 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010389 if (IS_ERR(event)) {
10390 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010391 goto err;
10392 }
10393
Jiri Olsaf8697762014-08-01 14:33:01 +020010394 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010395 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020010396
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010397 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010398 if (IS_ERR(ctx)) {
10399 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010400 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010401 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010402
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010403 WARN_ON_ONCE(ctx->parent_ctx);
10404 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010405 if (ctx->task == TASK_TOMBSTONE) {
10406 err = -ESRCH;
10407 goto err_unlock;
10408 }
10409
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020010410 if (!task) {
10411 /*
10412 * Check if the @cpu we're creating an event for is online.
10413 *
10414 * We use the perf_cpu_context::ctx::mutex to serialize against
10415 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
10416 */
10417 struct perf_cpu_context *cpuctx =
10418 container_of(ctx, struct perf_cpu_context, ctx);
10419 if (!cpuctx->online) {
10420 err = -ENODEV;
10421 goto err_unlock;
10422 }
10423 }
10424
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010425 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010426 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010427 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010428 }
10429
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010430 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010431 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010432 mutex_unlock(&ctx->mutex);
10433
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010434 return event;
10435
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010436err_unlock:
10437 mutex_unlock(&ctx->mutex);
10438 perf_unpin_context(ctx);
10439 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010440err_free:
10441 free_event(event);
10442err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010443 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010444}
10445EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10446
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010447void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10448{
10449 struct perf_event_context *src_ctx;
10450 struct perf_event_context *dst_ctx;
10451 struct perf_event *event, *tmp;
10452 LIST_HEAD(events);
10453
10454 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10455 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10456
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010457 /*
10458 * See perf_event_ctx_lock() for comments on the details
10459 * of swizzling perf_event::ctx.
10460 */
10461 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010462 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10463 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010464 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010465 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010466 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010467 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010468 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010469
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010470 /*
10471 * Wait for the events to quiesce before re-instating them.
10472 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010473 synchronize_rcu();
10474
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010475 /*
10476 * Re-instate events in 2 passes.
10477 *
10478 * Skip over group leaders and only install siblings on this first
10479 * pass, siblings will not get enabled without a leader, however a
10480 * leader will enable its siblings, even if those are still on the old
10481 * context.
10482 */
10483 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10484 if (event->group_leader == event)
10485 continue;
10486
10487 list_del(&event->migrate_entry);
10488 if (event->state >= PERF_EVENT_STATE_OFF)
10489 event->state = PERF_EVENT_STATE_INACTIVE;
10490 account_event_cpu(event, dst_cpu);
10491 perf_install_in_context(dst_ctx, event, dst_cpu);
10492 get_ctx(dst_ctx);
10493 }
10494
10495 /*
10496 * Once all the siblings are setup properly, install the group leaders
10497 * to make it go.
10498 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010499 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10500 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010501 if (event->state >= PERF_EVENT_STATE_OFF)
10502 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010503 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010504 perf_install_in_context(dst_ctx, event, dst_cpu);
10505 get_ctx(dst_ctx);
10506 }
10507 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010508 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010509}
10510EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10511
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010512static void sync_child_event(struct perf_event *child_event,
10513 struct task_struct *child)
10514{
10515 struct perf_event *parent_event = child_event->parent;
10516 u64 child_val;
10517
10518 if (child_event->attr.inherit_stat)
10519 perf_event_read_event(child_event, child);
10520
Peter Zijlstrab5e58792010-05-21 14:43:12 +020010521 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010522
10523 /*
10524 * Add back the child's count to the parent's count:
10525 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020010526 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010527 atomic64_add(child_event->total_time_enabled,
10528 &parent_event->child_total_time_enabled);
10529 atomic64_add(child_event->total_time_running,
10530 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010531}
10532
10533static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010534perf_event_exit_event(struct perf_event *child_event,
10535 struct perf_event_context *child_ctx,
10536 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010537{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010538 struct perf_event *parent_event = child_event->parent;
10539
Peter Zijlstra1903d502014-07-15 17:27:27 +020010540 /*
10541 * Do not destroy the 'original' grouping; because of the context
10542 * switch optimization the original events could've ended up in a
10543 * random child task.
10544 *
10545 * If we were to destroy the original group, all group related
10546 * operations would cease to function properly after this random
10547 * child dies.
10548 *
10549 * Do destroy all inherited groups, we don't care about those
10550 * and being thorough is better.
10551 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010552 raw_spin_lock_irq(&child_ctx->lock);
10553 WARN_ON_ONCE(child_ctx->is_active);
10554
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010555 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010010556 perf_group_detach(child_event);
10557 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +010010558 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010559 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010560
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010561 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010562 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010563 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010564 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040010565 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010566 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010567 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010568 /*
10569 * Child events can be cleaned up.
10570 */
10571
10572 sync_child_event(child_event, child);
10573
10574 /*
10575 * Remove this event from the parent's list
10576 */
10577 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
10578 mutex_lock(&parent_event->child_mutex);
10579 list_del_init(&child_event->child_list);
10580 mutex_unlock(&parent_event->child_mutex);
10581
10582 /*
10583 * Kick perf_poll() for is_event_hup().
10584 */
10585 perf_event_wakeup(parent_event);
10586 free_event(child_event);
10587 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010588}
10589
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010590static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010591{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010592 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010593 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010594
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010595 WARN_ON_ONCE(child != current);
10596
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010597 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010598 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010599 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010600
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010601 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010602 * In order to reduce the amount of tricky in ctx tear-down, we hold
10603 * ctx::mutex over the entire thing. This serializes against almost
10604 * everything that wants to access the ctx.
10605 *
10606 * The exception is sys_perf_event_open() /
10607 * perf_event_create_kernel_count() which does find_get_context()
10608 * without ctx::mutex (it cannot because of the move_group double mutex
10609 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010610 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010611 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010612
10613 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010614 * In a single ctx::lock section, de-schedule the events and detach the
10615 * context from the task such that we cannot ever get it scheduled back
10616 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010617 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010618 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020010619 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010620
10621 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010622 * Now that the context is inactive, destroy the task <-> ctx relation
10623 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010624 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010625 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10626 put_ctx(child_ctx); /* cannot be last */
10627 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10628 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010629
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010630 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010631 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010632
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010633 if (clone_ctx)
10634 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010635
10636 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010637 * Report the task dead after unscheduling the events so that we
10638 * won't get any samples after PERF_RECORD_EXIT. We can however still
10639 * get a few PERF_RECORD_READ events.
10640 */
10641 perf_event_task(child, child_ctx, 0);
10642
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010643 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010644 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010645
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010646 mutex_unlock(&child_ctx->mutex);
10647
10648 put_ctx(child_ctx);
10649}
10650
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010651/*
10652 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010653 *
10654 * Can be called with cred_guard_mutex held when called from
10655 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010656 */
10657void perf_event_exit_task(struct task_struct *child)
10658{
Peter Zijlstra88821352010-11-09 19:01:43 +010010659 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010660 int ctxn;
10661
Peter Zijlstra88821352010-11-09 19:01:43 +010010662 mutex_lock(&child->perf_event_mutex);
10663 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10664 owner_entry) {
10665 list_del_init(&event->owner_entry);
10666
10667 /*
10668 * Ensure the list deletion is visible before we clear
10669 * the owner, closes a race against perf_release() where
10670 * we need to serialize on the owner->perf_event_mutex.
10671 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010672 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010673 }
10674 mutex_unlock(&child->perf_event_mutex);
10675
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010676 for_each_task_context_nr(ctxn)
10677 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010678
10679 /*
10680 * The perf_event_exit_task_context calls perf_event_task
10681 * with child's task_ctx, which generates EXIT events for
10682 * child contexts and sets child->perf_event_ctxp[] to NULL.
10683 * At this point we need to send EXIT events to cpu contexts.
10684 */
10685 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010686}
10687
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010688static void perf_free_event(struct perf_event *event,
10689 struct perf_event_context *ctx)
10690{
10691 struct perf_event *parent = event->parent;
10692
10693 if (WARN_ON_ONCE(!parent))
10694 return;
10695
10696 mutex_lock(&parent->child_mutex);
10697 list_del_init(&event->child_list);
10698 mutex_unlock(&parent->child_mutex);
10699
Al Viroa6fa9412012-08-20 14:59:25 +010010700 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010701
Peter Zijlstra652884f2015-01-23 11:20:10 +010010702 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010703 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010704 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010705 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010706 free_event(event);
10707}
10708
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010709/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010710 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010711 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010712 *
10713 * Not all locks are strictly required, but take them anyway to be nice and
10714 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010715 */
10716void perf_event_free_task(struct task_struct *task)
10717{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010718 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010719 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010720 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010721
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010722 for_each_task_context_nr(ctxn) {
10723 ctx = task->perf_event_ctxp[ctxn];
10724 if (!ctx)
10725 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010726
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010727 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010010728 raw_spin_lock_irq(&ctx->lock);
10729 /*
10730 * Destroy the task <-> ctx relation and mark the context dead.
10731 *
10732 * This is important because even though the task hasn't been
10733 * exposed yet the context has been (through child_list).
10734 */
10735 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
10736 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
10737 put_task_struct(task); /* cannot be last */
10738 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010739
Peter Zijlstra15121c72017-03-16 13:47:50 +010010740 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010741 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010742
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010743 mutex_unlock(&ctx->mutex);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010744 put_ctx(ctx);
10745 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010746}
10747
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010748void perf_event_delayed_put(struct task_struct *task)
10749{
10750 int ctxn;
10751
10752 for_each_task_context_nr(ctxn)
10753 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10754}
10755
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010756struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010757{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010758 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010759
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010760 file = fget_raw(fd);
10761 if (!file)
10762 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010763
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010764 if (file->f_op != &perf_fops) {
10765 fput(file);
10766 return ERR_PTR(-EBADF);
10767 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010768
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010769 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010770}
10771
10772const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10773{
10774 if (!event)
10775 return ERR_PTR(-EINVAL);
10776
10777 return &event->attr;
10778}
10779
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010780/*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010781 * Inherit a event from parent task to child task.
10782 *
10783 * Returns:
10784 * - valid pointer on success
10785 * - NULL for orphaned events
10786 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010787 */
10788static struct perf_event *
10789inherit_event(struct perf_event *parent_event,
10790 struct task_struct *parent,
10791 struct perf_event_context *parent_ctx,
10792 struct task_struct *child,
10793 struct perf_event *group_leader,
10794 struct perf_event_context *child_ctx)
10795{
Jiri Olsa1929def2014-09-12 13:18:27 +020010796 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010797 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010798 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010799
10800 /*
10801 * Instead of creating recursive hierarchies of events,
10802 * we link inherited events back to the original parent,
10803 * which has a filp for sure, which we use as the reference
10804 * count:
10805 */
10806 if (parent_event->parent)
10807 parent_event = parent_event->parent;
10808
10809 child_event = perf_event_alloc(&parent_event->attr,
10810 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010811 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010812 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010813 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010814 if (IS_ERR(child_event))
10815 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010816
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010817 /*
10818 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10819 * must be under the same lock in order to serialize against
10820 * perf_event_release_kernel(), such that either we must observe
10821 * is_orphaned_event() or they will observe us on the child_list.
10822 */
10823 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010824 if (is_orphaned_event(parent_event) ||
10825 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010826 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010827 free_event(child_event);
10828 return NULL;
10829 }
10830
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010831 get_ctx(child_ctx);
10832
10833 /*
10834 * Make the child state follow the state of the parent event,
10835 * not its attr.disabled bit. We hold the parent's mutex,
10836 * so we won't race with perf_event_{en, dis}able_family.
10837 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010838 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010839 child_event->state = PERF_EVENT_STATE_INACTIVE;
10840 else
10841 child_event->state = PERF_EVENT_STATE_OFF;
10842
10843 if (parent_event->attr.freq) {
10844 u64 sample_period = parent_event->hw.sample_period;
10845 struct hw_perf_event *hwc = &child_event->hw;
10846
10847 hwc->sample_period = sample_period;
10848 hwc->last_period = sample_period;
10849
10850 local64_set(&hwc->period_left, sample_period);
10851 }
10852
10853 child_event->ctx = child_ctx;
10854 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010855 child_event->overflow_handler_context
10856 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010857
10858 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010859 * Precalculate sample_data sizes
10860 */
10861 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010862 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010863
10864 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010865 * Link it up in the child's context:
10866 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010867 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010868 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010869 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010870
10871 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010872 * Link this into the parent event's child list
10873 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010874 list_add_tail(&child_event->child_list, &parent_event->child_list);
10875 mutex_unlock(&parent_event->child_mutex);
10876
10877 return child_event;
10878}
10879
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010880/*
10881 * Inherits an event group.
10882 *
10883 * This will quietly suppress orphaned events; !inherit_event() is not an error.
10884 * This matches with perf_event_release_kernel() removing all child events.
10885 *
10886 * Returns:
10887 * - 0 on success
10888 * - <0 on error
10889 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010890static int inherit_group(struct perf_event *parent_event,
10891 struct task_struct *parent,
10892 struct perf_event_context *parent_ctx,
10893 struct task_struct *child,
10894 struct perf_event_context *child_ctx)
10895{
10896 struct perf_event *leader;
10897 struct perf_event *sub;
10898 struct perf_event *child_ctr;
10899
10900 leader = inherit_event(parent_event, parent, parent_ctx,
10901 child, NULL, child_ctx);
10902 if (IS_ERR(leader))
10903 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010904 /*
10905 * @leader can be NULL here because of is_orphaned_event(). In this
10906 * case inherit_event() will create individual events, similar to what
10907 * perf_group_detach() would do anyway.
10908 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010909 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10910 child_ctr = inherit_event(sub, parent, parent_ctx,
10911 child, leader, child_ctx);
10912 if (IS_ERR(child_ctr))
10913 return PTR_ERR(child_ctr);
10914 }
10915 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010916}
10917
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010918/*
10919 * Creates the child task context and tries to inherit the event-group.
10920 *
10921 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
10922 * inherited_all set when we 'fail' to inherit an orphaned event; this is
10923 * consistent with perf_event_release_kernel() removing all child events.
10924 *
10925 * Returns:
10926 * - 0 on success
10927 * - <0 on error
10928 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010929static int
10930inherit_task_group(struct perf_event *event, struct task_struct *parent,
10931 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010932 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010933 int *inherited_all)
10934{
10935 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010936 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010937
10938 if (!event->attr.inherit) {
10939 *inherited_all = 0;
10940 return 0;
10941 }
10942
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010943 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010944 if (!child_ctx) {
10945 /*
10946 * This is executed from the parent task context, so
10947 * inherit events that have been marked for cloning.
10948 * First allocate and initialize a context for the
10949 * child.
10950 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020010951 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010952 if (!child_ctx)
10953 return -ENOMEM;
10954
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010955 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010956 }
10957
10958 ret = inherit_group(event, parent, parent_ctx,
10959 child, child_ctx);
10960
10961 if (ret)
10962 *inherited_all = 0;
10963
10964 return ret;
10965}
10966
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010967/*
10968 * Initialize the perf_event context in task_struct
10969 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010970static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010971{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010972 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010973 struct perf_event_context *cloned_ctx;
10974 struct perf_event *event;
10975 struct task_struct *parent = current;
10976 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010977 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010978 int ret = 0;
10979
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010980 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010981 return 0;
10982
10983 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010984 * If the parent's context is a clone, pin it so it won't get
10985 * swapped under us.
10986 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010987 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010988 if (!parent_ctx)
10989 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010990
10991 /*
10992 * No need to check if parent_ctx != NULL here; since we saw
10993 * it non-NULL earlier, the only reason for it to become NULL
10994 * is if we exit, and since we're currently in the middle of
10995 * a fork we can't be exiting at the same time.
10996 */
10997
10998 /*
10999 * Lock the parent list. No need to lock the child - not PID
11000 * hashed yet and not running, so nobody can access it.
11001 */
11002 mutex_lock(&parent_ctx->mutex);
11003
11004 /*
11005 * We dont have to disable NMIs - we are only looking at
11006 * the list, not manipulating it:
11007 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011008 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011009 ret = inherit_task_group(event, parent, parent_ctx,
11010 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011011 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011012 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011013 }
11014
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011015 /*
11016 * We can't hold ctx->lock when iterating the ->flexible_group list due
11017 * to allocations, but we need to prevent rotation because
11018 * rotate_ctx() will change the list from interrupt context.
11019 */
11020 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
11021 parent_ctx->rotate_disable = 1;
11022 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
11023
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011024 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011025 ret = inherit_task_group(event, parent, parent_ctx,
11026 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011027 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011028 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011029 }
11030
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011031 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
11032 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010011033
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011034 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010011035
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010011036 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011037 /*
11038 * Mark the child context as a clone of the parent
11039 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011040 *
11041 * Note that if the parent is a clone, the holding of
11042 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011043 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011044 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011045 if (cloned_ctx) {
11046 child_ctx->parent_ctx = cloned_ctx;
11047 child_ctx->parent_gen = parent_ctx->parent_gen;
11048 } else {
11049 child_ctx->parent_ctx = parent_ctx;
11050 child_ctx->parent_gen = parent_ctx->generation;
11051 }
11052 get_ctx(child_ctx->parent_ctx);
11053 }
11054
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010011055 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010011056out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011057 mutex_unlock(&parent_ctx->mutex);
11058
11059 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010011060 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011061
11062 return ret;
11063}
11064
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011065/*
11066 * Initialize the perf_event context in task_struct
11067 */
11068int perf_event_init_task(struct task_struct *child)
11069{
11070 int ctxn, ret;
11071
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010011072 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
11073 mutex_init(&child->perf_event_mutex);
11074 INIT_LIST_HEAD(&child->perf_event_list);
11075
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011076 for_each_task_context_nr(ctxn) {
11077 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011078 if (ret) {
11079 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011080 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070011081 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020011082 }
11083
11084 return 0;
11085}
11086
Paul Mackerras220b1402010-03-10 20:45:52 +110011087static void __init perf_event_init_all_cpus(void)
11088{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011089 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110011090 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110011091
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011092 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
11093
Paul Mackerras220b1402010-03-10 20:45:52 +110011094 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011095 swhash = &per_cpu(swevent_htable, cpu);
11096 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000011097 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070011098
11099 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
11100 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011101
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080011102#ifdef CONFIG_CGROUP_PERF
11103 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
11104#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020011105 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110011106 }
11107}
11108
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011109void perf_swevent_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011110{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011111 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011112
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011113 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000011114 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011115 struct swevent_hlist *hlist;
11116
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011117 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
11118 WARN_ON(!hlist);
11119 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020011120 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020011121 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011122}
11123
Dave Young2965faa2015-09-09 15:38:55 -070011124#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011125static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011126{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011127 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011128 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
11129 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011130
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011131 raw_spin_lock(&ctx->lock);
Peter Zijlstra0ee098c2017-09-05 13:24:28 +020011132 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011133 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010011134 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010011135 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011136}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011137
11138static void perf_event_exit_cpu_context(int cpu)
11139{
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011140 struct perf_cpu_context *cpuctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011141 struct perf_event_context *ctx;
11142 struct pmu *pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011143
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011144 mutex_lock(&pmus_lock);
11145 list_for_each_entry(pmu, &pmus, entry) {
11146 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11147 ctx = &cpuctx->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011148
11149 mutex_lock(&ctx->mutex);
11150 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011151 cpuctx->online = 0;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011152 mutex_unlock(&ctx->mutex);
11153 }
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011154 cpumask_clear_cpu(cpu, perf_online_mask);
11155 mutex_unlock(&pmus_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011156}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011157#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020011158
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011159static void perf_event_exit_cpu_context(int cpu) { }
11160
11161#endif
11162
Thomas Gleixnera63fbed2017-05-24 10:15:34 +020011163int perf_event_init_cpu(unsigned int cpu)
11164{
11165 struct perf_cpu_context *cpuctx;
11166 struct perf_event_context *ctx;
11167 struct pmu *pmu;
11168
11169 perf_swevent_init_cpu(cpu);
11170
11171 mutex_lock(&pmus_lock);
11172 cpumask_set_cpu(cpu, perf_online_mask);
11173 list_for_each_entry(pmu, &pmus, entry) {
11174 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
11175 ctx = &cpuctx->ctx;
11176
11177 mutex_lock(&ctx->mutex);
11178 cpuctx->online = 1;
11179 mutex_unlock(&ctx->mutex);
11180 }
11181 mutex_unlock(&pmus_lock);
11182
11183 return 0;
11184}
11185
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011186int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011187{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010011188 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011189 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011190}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011191
Peter Zijlstrac2774432010-12-08 15:29:02 +010011192static int
11193perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
11194{
11195 int cpu;
11196
11197 for_each_online_cpu(cpu)
11198 perf_event_exit_cpu(cpu);
11199
11200 return NOTIFY_OK;
11201}
11202
11203/*
11204 * Run the perf reboot notifier at the very last possible moment so that
11205 * the generic watchdog code runs as long as possible.
11206 */
11207static struct notifier_block perf_reboot_notifier = {
11208 .notifier_call = perf_reboot,
11209 .priority = INT_MIN,
11210};
11211
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011212void __init perf_event_init(void)
11213{
Jason Wessel3c502e72010-11-04 17:33:01 -050011214 int ret;
11215
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011216 idr_init(&pmu_idr);
11217
Paul Mackerras220b1402010-03-10 20:45:52 +110011218 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011219 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010011220 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
11221 perf_pmu_register(&perf_cpu_clock, NULL, -1);
11222 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020011223 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000011224 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010011225 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050011226
11227 ret = init_hw_breakpoint();
11228 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020011229
Jiri Olsab01c3a02012-03-23 15:41:20 +010011230 /*
11231 * Build time assertion that we keep the data_head at the intended
11232 * location. IOW, validation we got the __reserved[] size right.
11233 */
11234 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
11235 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020011236}
Peter Zijlstraabe43402010-11-17 23:17:37 +010011237
Cody P Schaferfd979c02015-01-30 13:45:57 -080011238ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
11239 char *page)
11240{
11241 struct perf_pmu_events_attr *pmu_attr =
11242 container_of(attr, struct perf_pmu_events_attr, attr);
11243
11244 if (pmu_attr->event_str)
11245 return sprintf(page, "%s\n", pmu_attr->event_str);
11246
11247 return 0;
11248}
Thomas Gleixner675965b2016-02-22 22:19:27 +000011249EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080011250
Peter Zijlstraabe43402010-11-17 23:17:37 +010011251static int __init perf_event_sysfs_init(void)
11252{
11253 struct pmu *pmu;
11254 int ret;
11255
11256 mutex_lock(&pmus_lock);
11257
11258 ret = bus_register(&pmu_bus);
11259 if (ret)
11260 goto unlock;
11261
11262 list_for_each_entry(pmu, &pmus, entry) {
11263 if (!pmu->name || pmu->type < 0)
11264 continue;
11265
11266 ret = pmu_dev_alloc(pmu);
11267 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
11268 }
11269 pmu_bus_running = 1;
11270 ret = 0;
11271
11272unlock:
11273 mutex_unlock(&pmus_lock);
11274
11275 return ret;
11276}
11277device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011278
11279#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040011280static struct cgroup_subsys_state *
11281perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011282{
11283 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020011284
Li Zefan1b15d052011-03-03 14:26:06 +080011285 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011286 if (!jc)
11287 return ERR_PTR(-ENOMEM);
11288
Stephane Eraniane5d13672011-02-14 11:20:01 +020011289 jc->info = alloc_percpu(struct perf_cgroup_info);
11290 if (!jc->info) {
11291 kfree(jc);
11292 return ERR_PTR(-ENOMEM);
11293 }
11294
Stephane Eraniane5d13672011-02-14 11:20:01 +020011295 return &jc->css;
11296}
11297
Tejun Heoeb954192013-08-08 20:11:23 -040011298static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011299{
Tejun Heoeb954192013-08-08 20:11:23 -040011300 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
11301
Stephane Eraniane5d13672011-02-14 11:20:01 +020011302 free_percpu(jc->info);
11303 kfree(jc);
11304}
11305
11306static int __perf_cgroup_move(void *info)
11307{
11308 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011309 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011310 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010011311 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020011312 return 0;
11313}
11314
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011315static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020011316{
Tejun Heobb9d97b2011-12-12 18:12:21 -080011317 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011318 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080011319
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050011320 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080011321 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020011322}
11323
Tejun Heo073219e2014-02-08 10:36:58 -050011324struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080011325 .css_alloc = perf_cgroup_css_alloc,
11326 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080011327 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050011328 /*
11329 * Implicitly enable on dfl hierarchy so that perf events can
11330 * always be filtered by cgroup2 path as long as perf_event
11331 * controller is not mounted on a legacy hierarchy.
11332 */
11333 .implicit_on_dfl = true,
Tejun Heo8cfd8142017-07-21 11:14:51 -040011334 .threaded = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020011335};
11336#endif /* CONFIG_CGROUP_PERF */