blob: ff01cba86f430fd29916ab73c755698bf81feff0 [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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020051
Frederic Weisbecker76369132011-05-19 19:55:04 +020052#include "internal.h"
53
Ingo Molnarcdd6c482009-09-21 12:02:48 +020054#include <asm/irq_regs.h>
55
Peter Zijlstra272325c2015-04-15 11:41:58 +020056typedef int (*remote_function_f)(void *);
57
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010058struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020059 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020060 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020061 void *info;
62 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010063};
64
65static void remote_function(void *data)
66{
67 struct remote_function_call *tfc = data;
68 struct task_struct *p = tfc->p;
69
70 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010071 /* -EAGAIN */
72 if (task_cpu(p) != smp_processor_id())
73 return;
74
75 /*
76 * Now that we're on right CPU with IRQs disabled, we can test
77 * if we hit the right task without races.
78 */
79
80 tfc->ret = -ESRCH; /* No such (running) process */
81 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010082 return;
83 }
84
85 tfc->ret = tfc->func(tfc->info);
86}
87
88/**
89 * task_function_call - call a function on the cpu on which a task runs
90 * @p: the task to evaluate
91 * @func: the function to be called
92 * @info: the function call argument
93 *
94 * Calls the function @func when the task is currently running. This might
95 * be on the current CPU, which just calls the function directly
96 *
97 * returns: @func return value, or
98 * -ESRCH - when the process isn't running
99 * -EAGAIN - when the process moved away
100 */
101static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200102task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100103{
104 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200105 .p = p,
106 .func = func,
107 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100108 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100109 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100111
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100112 do {
113 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
114 if (!ret)
115 ret = data.ret;
116 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100117
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100118 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100119}
120
121/**
122 * cpu_function_call - call a function on the cpu
123 * @func: the function to be called
124 * @info: the function call argument
125 *
126 * Calls the function @func on the remote cpu.
127 *
128 * returns: @func return value or -ENXIO when the cpu is offline
129 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200130static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100131{
132 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200133 .p = NULL,
134 .func = func,
135 .info = info,
136 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100137 };
138
139 smp_call_function_single(cpu, remote_function, &data, 1);
140
141 return data.ret;
142}
143
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100144static inline struct perf_cpu_context *
145__get_cpu_context(struct perf_event_context *ctx)
146{
147 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
148}
149
150static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
151 struct perf_event_context *ctx)
152{
153 raw_spin_lock(&cpuctx->ctx.lock);
154 if (ctx)
155 raw_spin_lock(&ctx->lock);
156}
157
158static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
159 struct perf_event_context *ctx)
160{
161 if (ctx)
162 raw_spin_unlock(&ctx->lock);
163 raw_spin_unlock(&cpuctx->ctx.lock);
164}
165
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100166#define TASK_TOMBSTONE ((void *)-1L)
167
168static bool is_kernel_event(struct perf_event *event)
169{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100170 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100171}
172
Peter Zijlstra39a43642016-01-11 12:46:35 +0100173/*
174 * On task ctx scheduling...
175 *
176 * When !ctx->nr_events a task context will not be scheduled. This means
177 * we can disable the scheduler hooks (for performance) without leaving
178 * pending task ctx state.
179 *
180 * This however results in two special cases:
181 *
182 * - removing the last event from a task ctx; this is relatively straight
183 * forward and is done in __perf_remove_from_context.
184 *
185 * - adding the first event to a task ctx; this is tricky because we cannot
186 * rely on ctx->is_active and therefore cannot use event_function_call().
187 * See perf_install_in_context().
188 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100189 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
190 */
191
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100192typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
193 struct perf_event_context *, void *);
194
195struct event_function_struct {
196 struct perf_event *event;
197 event_f func;
198 void *data;
199};
200
201static int event_function(void *info)
202{
203 struct event_function_struct *efs = info;
204 struct perf_event *event = efs->event;
205 struct perf_event_context *ctx = event->ctx;
206 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
207 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100208 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100209
210 WARN_ON_ONCE(!irqs_disabled());
211
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100212 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100213 /*
214 * Since we do the IPI call without holding ctx->lock things can have
215 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100216 */
217 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100218 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100219 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100220 goto unlock;
221 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100222
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100223 /*
224 * We only use event_function_call() on established contexts,
225 * and event_function() is only ever called when active (or
226 * rather, we'll have bailed in task_function_call() or the
227 * above ctx->task != current test), therefore we must have
228 * ctx->is_active here.
229 */
230 WARN_ON_ONCE(!ctx->is_active);
231 /*
232 * And since we have ctx->is_active, cpuctx->task_ctx must
233 * match.
234 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100235 WARN_ON_ONCE(task_ctx != ctx);
236 } else {
237 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100238 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100239
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100241unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100242 perf_ctx_unlock(cpuctx, task_ctx);
243
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100244 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100245}
246
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100247static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100248{
249 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100250 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100251 struct event_function_struct efs = {
252 .event = event,
253 .func = func,
254 .data = data,
255 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100256
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100257 if (!event->parent) {
258 /*
259 * If this is a !child event, we must hold ctx::mutex to
260 * stabilize the the event->ctx relation. See
261 * perf_event_ctx_lock().
262 */
263 lockdep_assert_held(&ctx->mutex);
264 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100265
266 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100267 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100268 return;
269 }
270
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100271 if (task == TASK_TOMBSTONE)
272 return;
273
Peter Zijlstraa0963092016-02-24 18:45:50 +0100274again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100275 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100276 return;
277
278 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100279 /*
280 * Reload the task pointer, it might have been changed by
281 * a concurrent perf_event_context_sched_out().
282 */
283 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100284 if (task == TASK_TOMBSTONE) {
285 raw_spin_unlock_irq(&ctx->lock);
286 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100287 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100288 if (ctx->is_active) {
289 raw_spin_unlock_irq(&ctx->lock);
290 goto again;
291 }
292 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100293 raw_spin_unlock_irq(&ctx->lock);
294}
295
Peter Zijlstracca20942016-08-16 13:33:26 +0200296/*
297 * Similar to event_function_call() + event_function(), but hard assumes IRQs
298 * are already disabled and we're on the right CPU.
299 */
300static void event_function_local(struct perf_event *event, event_f func, void *data)
301{
302 struct perf_event_context *ctx = event->ctx;
303 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
304 struct task_struct *task = READ_ONCE(ctx->task);
305 struct perf_event_context *task_ctx = NULL;
306
307 WARN_ON_ONCE(!irqs_disabled());
308
309 if (task) {
310 if (task == TASK_TOMBSTONE)
311 return;
312
313 task_ctx = ctx;
314 }
315
316 perf_ctx_lock(cpuctx, task_ctx);
317
318 task = ctx->task;
319 if (task == TASK_TOMBSTONE)
320 goto unlock;
321
322 if (task) {
323 /*
324 * We must be either inactive or active and the right task,
325 * otherwise we're screwed, since we cannot IPI to somewhere
326 * else.
327 */
328 if (ctx->is_active) {
329 if (WARN_ON_ONCE(task != current))
330 goto unlock;
331
332 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
333 goto unlock;
334 }
335 } else {
336 WARN_ON_ONCE(&cpuctx->ctx != ctx);
337 }
338
339 func(event, cpuctx, ctx, data);
340unlock:
341 perf_ctx_unlock(cpuctx, task_ctx);
342}
343
Stephane Eraniane5d13672011-02-14 11:20:01 +0200344#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
345 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100346 PERF_FLAG_PID_CGROUP |\
347 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200348
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100349/*
350 * branch priv levels that need permission checks
351 */
352#define PERF_SAMPLE_BRANCH_PERM_PLM \
353 (PERF_SAMPLE_BRANCH_KERNEL |\
354 PERF_SAMPLE_BRANCH_HV)
355
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200356enum event_type_t {
357 EVENT_FLEXIBLE = 0x1,
358 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100359 EVENT_TIME = 0x4,
Alexander Shishkin487f05e2017-01-19 18:43:30 +0200360 /* see ctx_resched() for details */
361 EVENT_CPU = 0x8,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200362 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
363};
364
Stephane Eraniane5d13672011-02-14 11:20:01 +0200365/*
366 * perf_sched_events : >0 events exist
367 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
368 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100369
370static void perf_sched_delayed(struct work_struct *work);
371DEFINE_STATIC_KEY_FALSE(perf_sched_events);
372static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
373static DEFINE_MUTEX(perf_sched_mutex);
374static atomic_t perf_sched_count;
375
Stephane Eraniane5d13672011-02-14 11:20:01 +0200376static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500377static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700378static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200379
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200380static atomic_t nr_mmap_events __read_mostly;
381static atomic_t nr_comm_events __read_mostly;
382static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200383static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300384static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200385
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200386static LIST_HEAD(pmus);
387static DEFINE_MUTEX(pmus_lock);
388static struct srcu_struct pmus_srcu;
389
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200390/*
391 * perf event paranoia level:
392 * -1 - not paranoid at all
393 * 0 - disallow raw tracepoint access for unpriv
394 * 1 - disallow cpu events for unpriv
395 * 2 - disallow kernel profiling for unpriv
396 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700397int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200398
Frederic Weisbecker20443382011-03-31 03:33:29 +0200399/* Minimum for 512 kiB + 1 user control page */
400int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200401
402/*
403 * max perf event sample rate
404 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700405#define DEFAULT_MAX_SAMPLE_RATE 100000
406#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
407#define DEFAULT_CPU_TIME_MAX_PERCENT 25
408
409int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
410
411static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
412static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
413
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200414static int perf_sample_allowed_ns __read_mostly =
415 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700416
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800417static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700418{
419 u64 tmp = perf_sample_period_ns;
420
421 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100422 tmp = div_u64(tmp, 100);
423 if (!tmp)
424 tmp = 1;
425
426 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700427}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100428
Stephane Eranian9e630202013-04-03 14:21:33 +0200429static int perf_rotate_context(struct perf_cpu_context *cpuctx);
430
Peter Zijlstra163ec432011-02-16 11:22:34 +0100431int perf_proc_update_handler(struct ctl_table *table, int write,
432 void __user *buffer, size_t *lenp,
433 loff_t *ppos)
434{
Knut Petersen723478c2013-09-25 14:29:37 +0200435 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100436
437 if (ret || !write)
438 return ret;
439
Kan Liangab7fdef2016-05-03 00:26:06 -0700440 /*
441 * If throttling is disabled don't allow the write:
442 */
443 if (sysctl_perf_cpu_time_max_percent == 100 ||
444 sysctl_perf_cpu_time_max_percent == 0)
445 return -EINVAL;
446
Peter Zijlstra163ec432011-02-16 11:22:34 +0100447 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700448 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
449 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100450
451 return 0;
452}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200453
Dave Hansen14c63f12013-06-21 08:51:36 -0700454int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
455
456int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
457 void __user *buffer, size_t *lenp,
458 loff_t *ppos)
459{
Tan Xiaojun1572e452017-02-23 14:04:39 +0800460 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Dave Hansen14c63f12013-06-21 08:51:36 -0700461
462 if (ret || !write)
463 return ret;
464
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200465 if (sysctl_perf_cpu_time_max_percent == 100 ||
466 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100467 printk(KERN_WARNING
468 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
469 WRITE_ONCE(perf_sample_allowed_ns, 0);
470 } else {
471 update_perf_cpu_limits();
472 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700473
474 return 0;
475}
476
477/*
478 * perf samples are done in some very critical code paths (NMIs).
479 * If they take too much CPU time, the system can lock up and not
480 * get any real work done. This will drop the sample rate when
481 * we detect that events are taking too long.
482 */
483#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200484static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700485
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100486static u64 __report_avg;
487static u64 __report_allowed;
488
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100489static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700490{
David Ahern0d87d7e2016-08-01 13:49:29 -0700491 printk_ratelimited(KERN_INFO
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100492 "perf: interrupt took too long (%lld > %lld), lowering "
493 "kernel.perf_event_max_sample_rate to %d\n",
494 __report_avg, __report_allowed,
495 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100496}
497
498static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
499
500void perf_sample_event_took(u64 sample_len_ns)
501{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100502 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
503 u64 running_len;
504 u64 avg_len;
505 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700506
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100507 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700508 return;
509
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100510 /* Decay the counter by 1 average sample. */
511 running_len = __this_cpu_read(running_sample_length);
512 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
513 running_len += sample_len_ns;
514 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700515
516 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100517 * Note: this will be biased artifically low until we have
518 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700519 * from having to maintain a count.
520 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100521 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
522 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700523 return;
524
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100525 __report_avg = avg_len;
526 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700527
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100528 /*
529 * Compute a throttle threshold 25% below the current duration.
530 */
531 avg_len += avg_len / 4;
532 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
533 if (avg_len < max)
534 max /= (u32)avg_len;
535 else
536 max = 1;
537
538 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
539 WRITE_ONCE(max_samples_per_tick, max);
540
541 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700542 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
543
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100544 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100545 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100546 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100547 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100548 sysctl_perf_event_sample_rate);
549 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700550}
551
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200552static atomic64_t perf_event_id;
553
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200554static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
555 enum event_type_t event_type);
556
557static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200558 enum event_type_t event_type,
559 struct task_struct *task);
560
561static void update_context_time(struct perf_event_context *ctx);
562static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200563
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200564void __weak perf_event_print_debug(void) { }
565
Matt Fleming84c79912010-10-03 21:41:13 +0100566extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200567{
Matt Fleming84c79912010-10-03 21:41:13 +0100568 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200569}
570
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200571static inline u64 perf_clock(void)
572{
573 return local_clock();
574}
575
Peter Zijlstra34f43922015-02-20 14:05:38 +0100576static inline u64 perf_event_clock(struct perf_event *event)
577{
578 return event->clock();
579}
580
Stephane Eraniane5d13672011-02-14 11:20:01 +0200581#ifdef CONFIG_CGROUP_PERF
582
Stephane Eraniane5d13672011-02-14 11:20:01 +0200583static inline bool
584perf_cgroup_match(struct perf_event *event)
585{
586 struct perf_event_context *ctx = event->ctx;
587 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
588
Tejun Heoef824fa2013-04-08 19:00:38 -0700589 /* @event doesn't care about cgroup */
590 if (!event->cgrp)
591 return true;
592
593 /* wants specific cgroup scope but @cpuctx isn't associated with any */
594 if (!cpuctx->cgrp)
595 return false;
596
597 /*
598 * Cgroup scoping is recursive. An event enabled for a cgroup is
599 * also enabled for all its descendant cgroups. If @cpuctx's
600 * cgroup is a descendant of @event's (the test covers identity
601 * case), it's a match.
602 */
603 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
604 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200605}
606
Stephane Eraniane5d13672011-02-14 11:20:01 +0200607static inline void perf_detach_cgroup(struct perf_event *event)
608{
Zefan Li4e2ba652014-09-19 16:53:14 +0800609 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200610 event->cgrp = NULL;
611}
612
613static inline int is_cgroup_event(struct perf_event *event)
614{
615 return event->cgrp != NULL;
616}
617
618static inline u64 perf_cgroup_event_time(struct perf_event *event)
619{
620 struct perf_cgroup_info *t;
621
622 t = per_cpu_ptr(event->cgrp->info, event->cpu);
623 return t->time;
624}
625
626static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
627{
628 struct perf_cgroup_info *info;
629 u64 now;
630
631 now = perf_clock();
632
633 info = this_cpu_ptr(cgrp->info);
634
635 info->time += now - info->timestamp;
636 info->timestamp = now;
637}
638
639static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
640{
641 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
642 if (cgrp_out)
643 __update_cgrp_time(cgrp_out);
644}
645
646static inline void update_cgrp_time_from_event(struct perf_event *event)
647{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200648 struct perf_cgroup *cgrp;
649
Stephane Eraniane5d13672011-02-14 11:20:01 +0200650 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200651 * ensure we access cgroup data only when needed and
652 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200653 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200654 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200655 return;
656
Stephane Eranian614e4c42015-11-12 11:00:04 +0100657 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200658 /*
659 * Do not update time when cgroup is not active
660 */
661 if (cgrp == event->cgrp)
662 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200663}
664
665static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200666perf_cgroup_set_timestamp(struct task_struct *task,
667 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200668{
669 struct perf_cgroup *cgrp;
670 struct perf_cgroup_info *info;
671
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200672 /*
673 * ctx->lock held by caller
674 * ensure we do not access cgroup data
675 * unless we have the cgroup pinned (css_get)
676 */
677 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200678 return;
679
Stephane Eranian614e4c42015-11-12 11:00:04 +0100680 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200681 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200682 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200683}
684
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800685static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
686
Stephane Eraniane5d13672011-02-14 11:20:01 +0200687#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
688#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
689
690/*
691 * reschedule events based on the cgroup constraint of task.
692 *
693 * mode SWOUT : schedule out everything
694 * mode SWIN : schedule in based on cgroup for next
695 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800696static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200697{
698 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800699 struct list_head *list;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200700 unsigned long flags;
701
702 /*
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800703 * Disable interrupts and preemption to avoid this CPU's
704 * cgrp_cpuctx_entry to change under us.
Stephane Eraniane5d13672011-02-14 11:20:01 +0200705 */
706 local_irq_save(flags);
707
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800708 list = this_cpu_ptr(&cgrp_cpuctx_list);
709 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
710 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200711
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800712 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
713 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200714
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800715 if (mode & PERF_CGROUP_SWOUT) {
716 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
717 /*
718 * must not be done before ctxswout due
719 * to event_filter_match() in event_sched_out()
720 */
721 cpuctx->cgrp = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200722 }
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800723
724 if (mode & PERF_CGROUP_SWIN) {
725 WARN_ON_ONCE(cpuctx->cgrp);
726 /*
727 * set cgrp before ctxsw in to allow
728 * event_filter_match() to not have to pass
729 * task around
730 * we pass the cpuctx->ctx to perf_cgroup_from_task()
731 * because cgorup events are only per-cpu
732 */
733 cpuctx->cgrp = perf_cgroup_from_task(task,
734 &cpuctx->ctx);
735 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
736 }
737 perf_pmu_enable(cpuctx->ctx.pmu);
738 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200739 }
740
Stephane Eraniane5d13672011-02-14 11:20:01 +0200741 local_irq_restore(flags);
742}
743
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200744static inline void perf_cgroup_sched_out(struct task_struct *task,
745 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200746{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200747 struct perf_cgroup *cgrp1;
748 struct perf_cgroup *cgrp2 = NULL;
749
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100750 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200751 /*
752 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100753 * we do not need to pass the ctx here because we know
754 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200755 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100756 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100757 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200758
759 /*
760 * only schedule out current cgroup events if we know
761 * that we are switching to a different cgroup. Otherwise,
762 * do no touch the cgroup events.
763 */
764 if (cgrp1 != cgrp2)
765 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100766
767 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200768}
769
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200770static inline void perf_cgroup_sched_in(struct task_struct *prev,
771 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200772{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200773 struct perf_cgroup *cgrp1;
774 struct perf_cgroup *cgrp2 = NULL;
775
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100776 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200777 /*
778 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100779 * we do not need to pass the ctx here because we know
780 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200781 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100782 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100783 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200784
785 /*
786 * only need to schedule in cgroup events if we are changing
787 * cgroup during ctxsw. Cgroup events were not scheduled
788 * out of ctxsw out if that was not the case.
789 */
790 if (cgrp1 != cgrp2)
791 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100792
793 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200794}
795
796static inline int perf_cgroup_connect(int fd, struct perf_event *event,
797 struct perf_event_attr *attr,
798 struct perf_event *group_leader)
799{
800 struct perf_cgroup *cgrp;
801 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400802 struct fd f = fdget(fd);
803 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200804
Al Viro2903ff02012-08-28 12:52:22 -0400805 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200806 return -EBADF;
807
Al Virob5830432014-10-31 01:22:04 -0400808 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400809 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800810 if (IS_ERR(css)) {
811 ret = PTR_ERR(css);
812 goto out;
813 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200814
815 cgrp = container_of(css, struct perf_cgroup, css);
816 event->cgrp = cgrp;
817
818 /*
819 * all events in a group must monitor
820 * the same cgroup because a task belongs
821 * to only one perf cgroup at a time
822 */
823 if (group_leader && group_leader->cgrp != cgrp) {
824 perf_detach_cgroup(event);
825 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200826 }
Li Zefan3db272c2011-03-03 14:25:37 +0800827out:
Al Viro2903ff02012-08-28 12:52:22 -0400828 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200829 return ret;
830}
831
832static inline void
833perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
834{
835 struct perf_cgroup_info *t;
836 t = per_cpu_ptr(event->cgrp->info, event->cpu);
837 event->shadow_ctx_time = now - t->timestamp;
838}
839
840static inline void
841perf_cgroup_defer_enabled(struct perf_event *event)
842{
843 /*
844 * when the current task's perf cgroup does not match
845 * the event's, we need to remember to call the
846 * perf_mark_enable() function the first time a task with
847 * a matching perf cgroup is scheduled in.
848 */
849 if (is_cgroup_event(event) && !perf_cgroup_match(event))
850 event->cgrp_defer_enabled = 1;
851}
852
853static inline void
854perf_cgroup_mark_enabled(struct perf_event *event,
855 struct perf_event_context *ctx)
856{
857 struct perf_event *sub;
858 u64 tstamp = perf_event_time(event);
859
860 if (!event->cgrp_defer_enabled)
861 return;
862
863 event->cgrp_defer_enabled = 0;
864
865 event->tstamp_enabled = tstamp - event->total_time_enabled;
866 list_for_each_entry(sub, &event->sibling_list, group_entry) {
867 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
868 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
869 sub->cgrp_defer_enabled = 0;
870 }
871 }
872}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700873
874/*
875 * Update cpuctx->cgrp so that it is set when first cgroup event is added and
876 * cleared when last cgroup event is removed.
877 */
878static inline void
879list_update_cgroup_event(struct perf_event *event,
880 struct perf_event_context *ctx, bool add)
881{
882 struct perf_cpu_context *cpuctx;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800883 struct list_head *cpuctx_entry;
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700884
885 if (!is_cgroup_event(event))
886 return;
887
888 if (add && ctx->nr_cgroups++)
889 return;
890 else if (!add && --ctx->nr_cgroups)
891 return;
892 /*
893 * Because cgroup events are always per-cpu events,
894 * this will always be called from the right CPU.
895 */
896 cpuctx = __get_cpu_context(ctx);
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800897 cpuctx_entry = &cpuctx->cgrp_cpuctx_entry;
898 /* cpuctx->cgrp is NULL unless a cgroup event is active in this CPU .*/
899 if (add) {
900 list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list));
901 if (perf_cgroup_from_task(current, ctx) == event->cgrp)
902 cpuctx->cgrp = event->cgrp;
903 } else {
904 list_del(cpuctx_entry);
David Carrillo-Cisneros8fc31ce2016-12-04 00:46:17 -0800905 cpuctx->cgrp = NULL;
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -0800906 }
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700907}
908
Stephane Eraniane5d13672011-02-14 11:20:01 +0200909#else /* !CONFIG_CGROUP_PERF */
910
911static inline bool
912perf_cgroup_match(struct perf_event *event)
913{
914 return true;
915}
916
917static inline void perf_detach_cgroup(struct perf_event *event)
918{}
919
920static inline int is_cgroup_event(struct perf_event *event)
921{
922 return 0;
923}
924
925static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
926{
927 return 0;
928}
929
930static inline void update_cgrp_time_from_event(struct perf_event *event)
931{
932}
933
934static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
935{
936}
937
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200938static inline void perf_cgroup_sched_out(struct task_struct *task,
939 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200940{
941}
942
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200943static inline void perf_cgroup_sched_in(struct task_struct *prev,
944 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200945{
946}
947
948static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
949 struct perf_event_attr *attr,
950 struct perf_event *group_leader)
951{
952 return -EINVAL;
953}
954
955static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200956perf_cgroup_set_timestamp(struct task_struct *task,
957 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200958{
959}
960
961void
962perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
963{
964}
965
966static inline void
967perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
968{
969}
970
971static inline u64 perf_cgroup_event_time(struct perf_event *event)
972{
973 return 0;
974}
975
976static inline void
977perf_cgroup_defer_enabled(struct perf_event *event)
978{
979}
980
981static inline void
982perf_cgroup_mark_enabled(struct perf_event *event,
983 struct perf_event_context *ctx)
984{
985}
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -0700986
987static inline void
988list_update_cgroup_event(struct perf_event *event,
989 struct perf_event_context *ctx, bool add)
990{
991}
992
Stephane Eraniane5d13672011-02-14 11:20:01 +0200993#endif
994
Stephane Eranian9e630202013-04-03 14:21:33 +0200995/*
996 * set default to be dependent on timer tick just
997 * like original code
998 */
999#define PERF_CPU_HRTIMER (1000 / HZ)
1000/*
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08001001 * function must be called with interrupts disabled
Stephane Eranian9e630202013-04-03 14:21:33 +02001002 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001003static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +02001004{
1005 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +02001006 int rotations = 0;
1007
1008 WARN_ON(!irqs_disabled());
1009
1010 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +02001011 rotations = perf_rotate_context(cpuctx);
1012
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001013 raw_spin_lock(&cpuctx->hrtimer_lock);
1014 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +02001015 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001016 else
1017 cpuctx->hrtimer_active = 0;
1018 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +02001019
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001020 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +02001021}
1022
Peter Zijlstra272325c2015-04-15 11:41:58 +02001023static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +02001024{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001025 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001026 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +02001027 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +02001028
1029 /* no multiplexing needed for SW PMU */
1030 if (pmu->task_ctx_nr == perf_sw_context)
1031 return;
1032
Stephane Eranian62b85632013-04-03 14:21:34 +02001033 /*
1034 * check default is sane, if not set then force to
1035 * default interval (1/tick)
1036 */
Peter Zijlstra272325c2015-04-15 11:41:58 +02001037 interval = pmu->hrtimer_interval_ms;
1038 if (interval < 1)
1039 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +02001040
Peter Zijlstra272325c2015-04-15 11:41:58 +02001041 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +02001042
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001043 raw_spin_lock_init(&cpuctx->hrtimer_lock);
1044 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001045 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +02001046}
1047
Peter Zijlstra272325c2015-04-15 11:41:58 +02001048static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +02001049{
Peter Zijlstra272325c2015-04-15 11:41:58 +02001050 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +02001051 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001052 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +02001053
1054 /* not for SW PMU */
1055 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +02001056 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001057
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02001058 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1059 if (!cpuctx->hrtimer_active) {
1060 cpuctx->hrtimer_active = 1;
1061 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
1062 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
1063 }
1064 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +02001065
Peter Zijlstra272325c2015-04-15 11:41:58 +02001066 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +02001067}
1068
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001069void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001070{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001071 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1072 if (!(*count)++)
1073 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001074}
1075
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001076void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001077{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001078 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1079 if (!--(*count))
1080 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001081}
1082
Mark Rutland2fde4f92015-01-07 15:01:54 +00001083static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001084
1085/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001086 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1087 * perf_event_task_tick() are fully serialized because they're strictly cpu
1088 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1089 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001090 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001091static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001092{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001093 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001094
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001095 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001096
Mark Rutland2fde4f92015-01-07 15:01:54 +00001097 WARN_ON(!list_empty(&ctx->active_ctx_list));
1098
1099 list_add(&ctx->active_ctx_list, head);
1100}
1101
1102static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1103{
1104 WARN_ON(!irqs_disabled());
1105
1106 WARN_ON(list_empty(&ctx->active_ctx_list));
1107
1108 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001109}
1110
1111static void get_ctx(struct perf_event_context *ctx)
1112{
1113 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1114}
1115
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001116static void free_ctx(struct rcu_head *head)
1117{
1118 struct perf_event_context *ctx;
1119
1120 ctx = container_of(head, struct perf_event_context, rcu_head);
1121 kfree(ctx->task_ctx_data);
1122 kfree(ctx);
1123}
1124
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001125static void put_ctx(struct perf_event_context *ctx)
1126{
1127 if (atomic_dec_and_test(&ctx->refcount)) {
1128 if (ctx->parent_ctx)
1129 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001130 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001131 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001132 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001133 }
1134}
1135
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001136/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001137 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1138 * perf_pmu_migrate_context() we need some magic.
1139 *
1140 * Those places that change perf_event::ctx will hold both
1141 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1142 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001143 * Lock ordering is by mutex address. There are two other sites where
1144 * perf_event_context::mutex nests and those are:
1145 *
1146 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001147 * perf_event_exit_event()
1148 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001149 *
1150 * - perf_event_init_context() [ parent, 0 ]
1151 * inherit_task_group()
1152 * inherit_group()
1153 * inherit_event()
1154 * perf_event_alloc()
1155 * perf_init_event()
1156 * perf_try_init_event() [ child , 1 ]
1157 *
1158 * While it appears there is an obvious deadlock here -- the parent and child
1159 * nesting levels are inverted between the two. This is in fact safe because
1160 * life-time rules separate them. That is an exiting task cannot fork, and a
1161 * spawning task cannot (yet) exit.
1162 *
1163 * But remember that that these are parent<->child context relations, and
1164 * migration does not affect children, therefore these two orderings should not
1165 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001166 *
1167 * The change in perf_event::ctx does not affect children (as claimed above)
1168 * because the sys_perf_event_open() case will install a new event and break
1169 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1170 * concerned with cpuctx and that doesn't have children.
1171 *
1172 * The places that change perf_event::ctx will issue:
1173 *
1174 * perf_remove_from_context();
1175 * synchronize_rcu();
1176 * perf_install_in_context();
1177 *
1178 * to affect the change. The remove_from_context() + synchronize_rcu() should
1179 * quiesce the event, after which we can install it in the new location. This
1180 * means that only external vectors (perf_fops, prctl) can perturb the event
1181 * while in transit. Therefore all such accessors should also acquire
1182 * perf_event_context::mutex to serialize against this.
1183 *
1184 * However; because event->ctx can change while we're waiting to acquire
1185 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1186 * function.
1187 *
1188 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001189 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001190 * task_struct::perf_event_mutex
1191 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001192 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001193 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001194 * perf_event::mmap_mutex
1195 * mmap_sem
1196 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001197static struct perf_event_context *
1198perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001199{
1200 struct perf_event_context *ctx;
1201
1202again:
1203 rcu_read_lock();
1204 ctx = ACCESS_ONCE(event->ctx);
1205 if (!atomic_inc_not_zero(&ctx->refcount)) {
1206 rcu_read_unlock();
1207 goto again;
1208 }
1209 rcu_read_unlock();
1210
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001211 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001212 if (event->ctx != ctx) {
1213 mutex_unlock(&ctx->mutex);
1214 put_ctx(ctx);
1215 goto again;
1216 }
1217
1218 return ctx;
1219}
1220
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001221static inline struct perf_event_context *
1222perf_event_ctx_lock(struct perf_event *event)
1223{
1224 return perf_event_ctx_lock_nested(event, 0);
1225}
1226
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001227static void perf_event_ctx_unlock(struct perf_event *event,
1228 struct perf_event_context *ctx)
1229{
1230 mutex_unlock(&ctx->mutex);
1231 put_ctx(ctx);
1232}
1233
1234/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001235 * This must be done under the ctx->lock, such as to serialize against
1236 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1237 * calling scheduler related locks and ctx->lock nests inside those.
1238 */
1239static __must_check struct perf_event_context *
1240unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001241{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001242 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1243
1244 lockdep_assert_held(&ctx->lock);
1245
1246 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001247 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001248 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001249
1250 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001251}
1252
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001253static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1254{
1255 /*
1256 * only top level events have the pid namespace they were created in
1257 */
1258 if (event->parent)
1259 event = event->parent;
1260
1261 return task_tgid_nr_ns(p, event->ns);
1262}
1263
1264static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1265{
1266 /*
1267 * only top level events have the pid namespace they were created in
1268 */
1269 if (event->parent)
1270 event = event->parent;
1271
1272 return task_pid_nr_ns(p, event->ns);
1273}
1274
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001275/*
1276 * If we inherit events we want to return the parent event id
1277 * to userspace.
1278 */
1279static u64 primary_event_id(struct perf_event *event)
1280{
1281 u64 id = event->id;
1282
1283 if (event->parent)
1284 id = event->parent->id;
1285
1286 return id;
1287}
1288
1289/*
1290 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001291 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001292 * This has to cope with with the fact that until it is locked,
1293 * the context could get moved to another task.
1294 */
1295static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001296perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001297{
1298 struct perf_event_context *ctx;
1299
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001300retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001301 /*
1302 * One of the few rules of preemptible RCU is that one cannot do
1303 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001304 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001305 * rcu_read_unlock_special().
1306 *
1307 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001308 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001309 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001310 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001311 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001312 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001313 if (ctx) {
1314 /*
1315 * If this context is a clone of another, it might
1316 * get swapped for another underneath us by
1317 * perf_event_task_sched_out, though the
1318 * rcu_read_lock() protects us from any context
1319 * getting freed. Lock the context and check if it
1320 * got swapped before we could get the lock, and retry
1321 * if so. If we locked the right context, then it
1322 * can't get swapped on us any more.
1323 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001324 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001325 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001326 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001327 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001328 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329 goto retry;
1330 }
1331
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001332 if (ctx->task == TASK_TOMBSTONE ||
1333 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001334 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001335 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001336 } else {
1337 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001338 }
1339 }
1340 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001341 if (!ctx)
1342 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001343 return ctx;
1344}
1345
1346/*
1347 * Get the context for a task and increment its pin_count so it
1348 * can't get swapped to another task. This also increments its
1349 * reference count so that the context can't get freed.
1350 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001351static struct perf_event_context *
1352perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001353{
1354 struct perf_event_context *ctx;
1355 unsigned long flags;
1356
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001357 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001358 if (ctx) {
1359 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001360 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001361 }
1362 return ctx;
1363}
1364
1365static void perf_unpin_context(struct perf_event_context *ctx)
1366{
1367 unsigned long flags;
1368
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001369 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001370 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001371 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001372}
1373
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001374/*
1375 * Update the record of the current time in a context.
1376 */
1377static void update_context_time(struct perf_event_context *ctx)
1378{
1379 u64 now = perf_clock();
1380
1381 ctx->time += now - ctx->timestamp;
1382 ctx->timestamp = now;
1383}
1384
Stephane Eranian41587552011-01-03 18:20:01 +02001385static u64 perf_event_time(struct perf_event *event)
1386{
1387 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001388
1389 if (is_cgroup_event(event))
1390 return perf_cgroup_event_time(event);
1391
Stephane Eranian41587552011-01-03 18:20:01 +02001392 return ctx ? ctx->time : 0;
1393}
1394
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001395/*
1396 * Update the total_time_enabled and total_time_running fields for a event.
1397 */
1398static void update_event_times(struct perf_event *event)
1399{
1400 struct perf_event_context *ctx = event->ctx;
1401 u64 run_end;
1402
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001403 lockdep_assert_held(&ctx->lock);
1404
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001405 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1406 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1407 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001408
Stephane Eraniane5d13672011-02-14 11:20:01 +02001409 /*
1410 * in cgroup mode, time_enabled represents
1411 * the time the event was enabled AND active
1412 * tasks were in the monitored cgroup. This is
1413 * independent of the activity of the context as
1414 * there may be a mix of cgroup and non-cgroup events.
1415 *
1416 * That is why we treat cgroup events differently
1417 * here.
1418 */
1419 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001420 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001421 else if (ctx->is_active)
1422 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001423 else
1424 run_end = event->tstamp_stopped;
1425
1426 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001427
1428 if (event->state == PERF_EVENT_STATE_INACTIVE)
1429 run_end = event->tstamp_stopped;
1430 else
Stephane Eranian41587552011-01-03 18:20:01 +02001431 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001432
1433 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001434
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001435}
1436
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001437/*
1438 * Update total_time_enabled and total_time_running for all events in a group.
1439 */
1440static void update_group_times(struct perf_event *leader)
1441{
1442 struct perf_event *event;
1443
1444 update_event_times(leader);
1445 list_for_each_entry(event, &leader->sibling_list, group_entry)
1446 update_event_times(event);
1447}
1448
Alexander Shishkin487f05e2017-01-19 18:43:30 +02001449static enum event_type_t get_event_type(struct perf_event *event)
1450{
1451 struct perf_event_context *ctx = event->ctx;
1452 enum event_type_t event_type;
1453
1454 lockdep_assert_held(&ctx->lock);
1455
1456 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1457 if (!ctx->task)
1458 event_type |= EVENT_CPU;
1459
1460 return event_type;
1461}
1462
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001463static struct list_head *
1464ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1465{
1466 if (event->attr.pinned)
1467 return &ctx->pinned_groups;
1468 else
1469 return &ctx->flexible_groups;
1470}
1471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001472/*
1473 * Add a event from the lists for its context.
1474 * Must be called with ctx->mutex and ctx->lock held.
1475 */
1476static void
1477list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1478{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001479 lockdep_assert_held(&ctx->lock);
1480
Peter Zijlstra8a495422010-05-27 15:47:49 +02001481 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1482 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001483
1484 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001485 * If we're a stand alone event or group leader, we go to the context
1486 * list, group events are kept attached to the group so that
1487 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001488 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001489 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001490 struct list_head *list;
1491
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001492 event->group_caps = event->event_caps;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001493
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001494 list = ctx_group_list(event, ctx);
1495 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001496 }
1497
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001498 list_update_cgroup_event(event, ctx, true);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001500 list_add_rcu(&event->event_entry, &ctx->event_list);
1501 ctx->nr_events++;
1502 if (event->attr.inherit_stat)
1503 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001504
1505 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506}
1507
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001508/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001509 * Initialize event state based on the perf_event_attr::disabled.
1510 */
1511static inline void perf_event__state_init(struct perf_event *event)
1512{
1513 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1514 PERF_EVENT_STATE_INACTIVE;
1515}
1516
Peter Zijlstraa7239682015-09-09 19:06:33 +02001517static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001518{
1519 int entry = sizeof(u64); /* value */
1520 int size = 0;
1521 int nr = 1;
1522
1523 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1524 size += sizeof(u64);
1525
1526 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1527 size += sizeof(u64);
1528
1529 if (event->attr.read_format & PERF_FORMAT_ID)
1530 entry += sizeof(u64);
1531
1532 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001533 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001534 size += sizeof(u64);
1535 }
1536
1537 size += entry * nr;
1538 event->read_size = size;
1539}
1540
Peter Zijlstraa7239682015-09-09 19:06:33 +02001541static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001542{
1543 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001544 u16 size = 0;
1545
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001546 if (sample_type & PERF_SAMPLE_IP)
1547 size += sizeof(data->ip);
1548
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001549 if (sample_type & PERF_SAMPLE_ADDR)
1550 size += sizeof(data->addr);
1551
1552 if (sample_type & PERF_SAMPLE_PERIOD)
1553 size += sizeof(data->period);
1554
Andi Kleenc3feedf2013-01-24 16:10:28 +01001555 if (sample_type & PERF_SAMPLE_WEIGHT)
1556 size += sizeof(data->weight);
1557
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001558 if (sample_type & PERF_SAMPLE_READ)
1559 size += event->read_size;
1560
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001561 if (sample_type & PERF_SAMPLE_DATA_SRC)
1562 size += sizeof(data->data_src.val);
1563
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001564 if (sample_type & PERF_SAMPLE_TRANSACTION)
1565 size += sizeof(data->txn);
1566
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001567 event->header_size = size;
1568}
1569
Peter Zijlstraa7239682015-09-09 19:06:33 +02001570/*
1571 * Called at perf_event creation and when events are attached/detached from a
1572 * group.
1573 */
1574static void perf_event__header_size(struct perf_event *event)
1575{
1576 __perf_event_read_size(event,
1577 event->group_leader->nr_siblings);
1578 __perf_event_header_size(event, event->attr.sample_type);
1579}
1580
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001581static void perf_event__id_header_size(struct perf_event *event)
1582{
1583 struct perf_sample_data *data;
1584 u64 sample_type = event->attr.sample_type;
1585 u16 size = 0;
1586
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001587 if (sample_type & PERF_SAMPLE_TID)
1588 size += sizeof(data->tid_entry);
1589
1590 if (sample_type & PERF_SAMPLE_TIME)
1591 size += sizeof(data->time);
1592
Adrian Hunterff3d5272013-08-27 11:23:07 +03001593 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1594 size += sizeof(data->id);
1595
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001596 if (sample_type & PERF_SAMPLE_ID)
1597 size += sizeof(data->id);
1598
1599 if (sample_type & PERF_SAMPLE_STREAM_ID)
1600 size += sizeof(data->stream_id);
1601
1602 if (sample_type & PERF_SAMPLE_CPU)
1603 size += sizeof(data->cpu_entry);
1604
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001605 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001606}
1607
Peter Zijlstraa7239682015-09-09 19:06:33 +02001608static bool perf_event_validate_size(struct perf_event *event)
1609{
1610 /*
1611 * The values computed here will be over-written when we actually
1612 * attach the event.
1613 */
1614 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1615 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1616 perf_event__id_header_size(event);
1617
1618 /*
1619 * Sum the lot; should not exceed the 64k limit we have on records.
1620 * Conservative limit to allow for callchains and other variable fields.
1621 */
1622 if (event->read_size + event->header_size +
1623 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1624 return false;
1625
1626 return true;
1627}
1628
Peter Zijlstra8a495422010-05-27 15:47:49 +02001629static void perf_group_attach(struct perf_event *event)
1630{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001631 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001632
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001633 lockdep_assert_held(&event->ctx->lock);
1634
Peter Zijlstra74c33372010-10-15 11:40:29 +02001635 /*
1636 * We can have double attach due to group movement in perf_event_open.
1637 */
1638 if (event->attach_state & PERF_ATTACH_GROUP)
1639 return;
1640
Peter Zijlstra8a495422010-05-27 15:47:49 +02001641 event->attach_state |= PERF_ATTACH_GROUP;
1642
1643 if (group_leader == event)
1644 return;
1645
Peter Zijlstra652884f2015-01-23 11:20:10 +01001646 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1647
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001648 group_leader->group_caps &= event->event_caps;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001649
1650 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1651 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001652
1653 perf_event__header_size(group_leader);
1654
1655 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1656 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001657}
1658
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001659/*
1660 * Remove a event from the lists for its context.
1661 * Must be called with ctx->mutex and ctx->lock held.
1662 */
1663static void
1664list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1665{
Peter Zijlstra652884f2015-01-23 11:20:10 +01001666 WARN_ON_ONCE(event->ctx != ctx);
1667 lockdep_assert_held(&ctx->lock);
1668
Peter Zijlstra8a495422010-05-27 15:47:49 +02001669 /*
1670 * We can have double detach due to exit/hot-unplug + close.
1671 */
1672 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001673 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001674
1675 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1676
David Carrillo-Cisnerosdb4a8352016-08-02 00:48:12 -07001677 list_update_cgroup_event(event, ctx, false);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001678
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679 ctx->nr_events--;
1680 if (event->attr.inherit_stat)
1681 ctx->nr_stat--;
1682
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001683 list_del_rcu(&event->event_entry);
1684
Peter Zijlstra8a495422010-05-27 15:47:49 +02001685 if (event->group_leader == event)
1686 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001687
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001688 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001689
1690 /*
1691 * If event was in error state, then keep it
1692 * that way, otherwise bogus counts will be
1693 * returned on read(). The only way to get out
1694 * of error state is by explicit re-enabling
1695 * of the event
1696 */
1697 if (event->state > PERF_EVENT_STATE_OFF)
1698 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001699
1700 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001701}
1702
Peter Zijlstra8a495422010-05-27 15:47:49 +02001703static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001704{
1705 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001706 struct list_head *list = NULL;
1707
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001708 lockdep_assert_held(&event->ctx->lock);
1709
Peter Zijlstra8a495422010-05-27 15:47:49 +02001710 /*
1711 * We can have double detach due to exit/hot-unplug + close.
1712 */
1713 if (!(event->attach_state & PERF_ATTACH_GROUP))
1714 return;
1715
1716 event->attach_state &= ~PERF_ATTACH_GROUP;
1717
1718 /*
1719 * If this is a sibling, remove it from its group.
1720 */
1721 if (event->group_leader != event) {
1722 list_del_init(&event->group_entry);
1723 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001724 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001725 }
1726
1727 if (!list_empty(&event->group_entry))
1728 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001729
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001730 /*
1731 * If this was a group event with sibling events then
1732 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001733 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001734 */
1735 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001736 if (list)
1737 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001738 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001739
1740 /* Inherit group flags from the previous leader */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07001741 sibling->group_caps = event->group_caps;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001742
1743 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001745
1746out:
1747 perf_event__header_size(event->group_leader);
1748
1749 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1750 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001751}
1752
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001753static bool is_orphaned_event(struct perf_event *event)
1754{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001755 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001756}
1757
Mark Rutland2c81a642016-06-14 16:10:41 +01001758static inline int __pmu_filter_match(struct perf_event *event)
Mark Rutland66eb5792015-05-13 17:12:23 +01001759{
1760 struct pmu *pmu = event->pmu;
1761 return pmu->filter_match ? pmu->filter_match(event) : 1;
1762}
1763
Mark Rutland2c81a642016-06-14 16:10:41 +01001764/*
1765 * Check whether we should attempt to schedule an event group based on
1766 * PMU-specific filtering. An event group can consist of HW and SW events,
1767 * potentially with a SW leader, so we must check all the filters, to
1768 * determine whether a group is schedulable:
1769 */
1770static inline int pmu_filter_match(struct perf_event *event)
1771{
1772 struct perf_event *child;
1773
1774 if (!__pmu_filter_match(event))
1775 return 0;
1776
1777 list_for_each_entry(child, &event->sibling_list, group_entry) {
1778 if (!__pmu_filter_match(child))
1779 return 0;
1780 }
1781
1782 return 1;
1783}
1784
Stephane Eranianfa66f072010-08-26 16:40:01 +02001785static inline int
1786event_filter_match(struct perf_event *event)
1787{
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001788 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
1789 perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001790}
1791
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001792static void
1793event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001794 struct perf_cpu_context *cpuctx,
1795 struct perf_event_context *ctx)
1796{
Stephane Eranian41587552011-01-03 18:20:01 +02001797 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001798 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001799
1800 WARN_ON_ONCE(event->ctx != ctx);
1801 lockdep_assert_held(&ctx->lock);
1802
Stephane Eranianfa66f072010-08-26 16:40:01 +02001803 /*
1804 * An event which could not be activated because of
1805 * filter mismatch still needs to have its timings
1806 * maintained, otherwise bogus information is return
1807 * via read() for time_enabled, time_running:
1808 */
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02001809 if (event->state == PERF_EVENT_STATE_INACTIVE &&
1810 !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001811 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001812 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001813 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001814 }
1815
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001816 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001817 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001818
Alexander Shishkin44377272013-12-16 14:17:36 +02001819 perf_pmu_disable(event->pmu);
1820
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001821 event->tstamp_stopped = tstamp;
1822 event->pmu->del(event, 0);
1823 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001824 event->state = PERF_EVENT_STATE_INACTIVE;
1825 if (event->pending_disable) {
1826 event->pending_disable = 0;
1827 event->state = PERF_EVENT_STATE_OFF;
1828 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001829
1830 if (!is_software_event(event))
1831 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001832 if (!--ctx->nr_active)
1833 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001834 if (event->attr.freq && event->attr.sample_freq)
1835 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001836 if (event->attr.exclusive || !cpuctx->active_oncpu)
1837 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001838
1839 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001840}
1841
1842static void
1843group_sched_out(struct perf_event *group_event,
1844 struct perf_cpu_context *cpuctx,
1845 struct perf_event_context *ctx)
1846{
1847 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001848 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001849
Mark Rutland3f005e72016-07-26 18:12:21 +01001850 perf_pmu_disable(ctx->pmu);
1851
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001852 event_sched_out(group_event, cpuctx, ctx);
1853
1854 /*
1855 * Schedule out siblings (if any):
1856 */
1857 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1858 event_sched_out(event, cpuctx, ctx);
1859
Mark Rutland3f005e72016-07-26 18:12:21 +01001860 perf_pmu_enable(ctx->pmu);
1861
Stephane Eranianfa66f072010-08-26 16:40:01 +02001862 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001863 cpuctx->exclusive = 0;
1864}
1865
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001866#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001868/*
1869 * Cross CPU call to remove a performance event
1870 *
1871 * We disable the event on the hardware level first. After that we
1872 * remove it from the context list.
1873 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001874static void
1875__perf_remove_from_context(struct perf_event *event,
1876 struct perf_cpu_context *cpuctx,
1877 struct perf_event_context *ctx,
1878 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001879{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001880 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001881
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001882 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001883 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001884 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001885 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001886
Peter Zijlstra39a43642016-01-11 12:46:35 +01001887 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001888 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001889 if (ctx->task) {
1890 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1891 cpuctx->task_ctx = NULL;
1892 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001893 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001894}
1895
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001896/*
1897 * Remove the event from a task's (or a CPU's) list of events.
1898 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001899 * If event->ctx is a cloned context, callers must make sure that
1900 * every task struct that event->ctx->task could possibly point to
1901 * remains valid. This is OK when called from perf_release since
1902 * that only calls us on the top-level context, which can't be a clone.
1903 * When called from perf_event_exit_task, it's OK because the
1904 * context has been detached from its task.
1905 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001906static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001907{
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001908 struct perf_event_context *ctx = event->ctx;
1909
1910 lockdep_assert_held(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001911
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001912 event_function_call(event, __perf_remove_from_context, (void *)flags);
Peter Zijlstraa76a82a2017-01-26 16:39:55 +01001913
1914 /*
1915 * The above event_function_call() can NO-OP when it hits
1916 * TASK_TOMBSTONE. In that case we must already have been detached
1917 * from the context (by perf_event_exit_event()) but the grouping
1918 * might still be in-tact.
1919 */
1920 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1921 if ((flags & DETACH_GROUP) &&
1922 (event->attach_state & PERF_ATTACH_GROUP)) {
1923 /*
1924 * Since in that case we cannot possibly be scheduled, simply
1925 * detach now.
1926 */
1927 raw_spin_lock_irq(&ctx->lock);
1928 perf_group_detach(event);
1929 raw_spin_unlock_irq(&ctx->lock);
1930 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001931}
1932
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001933/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001934 * Cross CPU call to disable a performance event
1935 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001936static void __perf_event_disable(struct perf_event *event,
1937 struct perf_cpu_context *cpuctx,
1938 struct perf_event_context *ctx,
1939 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001940{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001941 if (event->state < PERF_EVENT_STATE_INACTIVE)
1942 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001943
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001944 update_context_time(ctx);
1945 update_cgrp_time_from_event(event);
1946 update_group_times(event);
1947 if (event == event->group_leader)
1948 group_sched_out(event, cpuctx, ctx);
1949 else
1950 event_sched_out(event, cpuctx, ctx);
1951 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001952}
1953
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001954/*
1955 * Disable a event.
1956 *
1957 * If event->ctx is a cloned context, callers must make sure that
1958 * every task struct that event->ctx->task could possibly point to
1959 * remains valid. This condition is satisifed when called through
1960 * perf_event_for_each_child or perf_event_for_each because they
1961 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001962 * goes to exit will block in perf_event_exit_event().
1963 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001964 * When called from perf_pending_event it's OK because event->ctx
1965 * is the current context on this CPU and preemption is disabled,
1966 * hence we can't get into perf_event_task_sched_out for this context.
1967 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001968static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001969{
1970 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001971
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001972 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001973 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001974 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001975 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001976 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001977 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001978
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001979 event_function_call(event, __perf_event_disable, NULL);
1980}
1981
1982void perf_event_disable_local(struct perf_event *event)
1983{
1984 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001986
1987/*
1988 * Strictly speaking kernel users cannot create groups and therefore this
1989 * interface does not need the perf_event_ctx_lock() magic.
1990 */
1991void perf_event_disable(struct perf_event *event)
1992{
1993 struct perf_event_context *ctx;
1994
1995 ctx = perf_event_ctx_lock(event);
1996 _perf_event_disable(event);
1997 perf_event_ctx_unlock(event, ctx);
1998}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001999EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002000
Jiri Olsa5aab90c2016-10-26 11:48:24 +02002001void perf_event_disable_inatomic(struct perf_event *event)
2002{
2003 event->pending_disable = 1;
2004 irq_work_queue(&event->pending);
2005}
2006
Stephane Eraniane5d13672011-02-14 11:20:01 +02002007static void perf_set_shadow_time(struct perf_event *event,
2008 struct perf_event_context *ctx,
2009 u64 tstamp)
2010{
2011 /*
2012 * use the correct time source for the time snapshot
2013 *
2014 * We could get by without this by leveraging the
2015 * fact that to get to this function, the caller
2016 * has most likely already called update_context_time()
2017 * and update_cgrp_time_xx() and thus both timestamp
2018 * are identical (or very close). Given that tstamp is,
2019 * already adjusted for cgroup, we could say that:
2020 * tstamp - ctx->timestamp
2021 * is equivalent to
2022 * tstamp - cgrp->timestamp.
2023 *
2024 * Then, in perf_output_read(), the calculation would
2025 * work with no changes because:
2026 * - event is guaranteed scheduled in
2027 * - no scheduled out in between
2028 * - thus the timestamp would be the same
2029 *
2030 * But this is a bit hairy.
2031 *
2032 * So instead, we have an explicit cgroup call to remain
2033 * within the time time source all along. We believe it
2034 * is cleaner and simpler to understand.
2035 */
2036 if (is_cgroup_event(event))
2037 perf_cgroup_set_shadow_time(event, tstamp);
2038 else
2039 event->shadow_ctx_time = tstamp - ctx->timestamp;
2040}
2041
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002042#define MAX_INTERRUPTS (~0ULL)
2043
2044static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002045static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002046
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002047static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002048event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002049 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002050 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002051{
Stephane Eranian41587552011-01-03 18:20:01 +02002052 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02002053 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02002054
Peter Zijlstra63342412014-05-05 11:49:16 +02002055 lockdep_assert_held(&ctx->lock);
2056
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002057 if (event->state <= PERF_EVENT_STATE_OFF)
2058 return 0;
2059
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002060 WRITE_ONCE(event->oncpu, smp_processor_id());
2061 /*
2062 * Order event::oncpu write to happen before the ACTIVE state
2063 * is visible.
2064 */
2065 smp_wmb();
2066 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01002067
2068 /*
2069 * Unthrottle events, since we scheduled we might have missed several
2070 * ticks already, also for a heavily scheduling task there is little
2071 * guarantee it'll get a tick in a timely manner.
2072 */
2073 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2074 perf_log_throttle(event, 1);
2075 event->hw.interrupts = 0;
2076 }
2077
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002078 /*
2079 * The new state must be visible before we turn it on in the hardware:
2080 */
2081 smp_wmb();
2082
Alexander Shishkin44377272013-12-16 14:17:36 +02002083 perf_pmu_disable(event->pmu);
2084
Shaohua Li72f669c2015-02-05 15:55:31 -08002085 perf_set_shadow_time(event, ctx, tstamp);
2086
Alexander Shishkinec0d7722015-01-14 14:18:23 +02002087 perf_log_itrace_start(event);
2088
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002089 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002090 event->state = PERF_EVENT_STATE_INACTIVE;
2091 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02002092 ret = -EAGAIN;
2093 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002094 }
2095
Peter Zijlstra00a29162015-07-27 10:35:07 +02002096 event->tstamp_running += tstamp - event->tstamp_stopped;
2097
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002098 if (!is_software_event(event))
2099 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00002100 if (!ctx->nr_active++)
2101 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002102 if (event->attr.freq && event->attr.sample_freq)
2103 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104
2105 if (event->attr.exclusive)
2106 cpuctx->exclusive = 1;
2107
Alexander Shishkin44377272013-12-16 14:17:36 +02002108out:
2109 perf_pmu_enable(event->pmu);
2110
2111 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112}
2113
2114static int
2115group_sched_in(struct perf_event *group_event,
2116 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002117 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118{
Lin Ming6bde9b62010-04-23 13:56:00 +08002119 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01002120 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02002121 u64 now = ctx->time;
2122 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002123
2124 if (group_event->state == PERF_EVENT_STATE_OFF)
2125 return 0;
2126
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002127 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002128
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002129 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002130 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002131 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002132 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002133 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002134
2135 /*
2136 * Schedule in siblings as one group (if any):
2137 */
2138 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002139 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140 partial_group = event;
2141 goto group_error;
2142 }
2143 }
2144
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002145 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002146 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002147
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148group_error:
2149 /*
2150 * Groups can be scheduled in as one unit only, so undo any
2151 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002152 * The events up to the failed event are scheduled out normally,
2153 * tstamp_stopped will be updated.
2154 *
2155 * The failed events and the remaining siblings need to have
2156 * their timings updated as if they had gone thru event_sched_in()
2157 * and event_sched_out(). This is required to get consistent timings
2158 * across the group. This also takes care of the case where the group
2159 * could never be scheduled by ensuring tstamp_stopped is set to mark
2160 * the time the event was actually stopped, such that time delta
2161 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002162 */
2163 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2164 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002165 simulate = true;
2166
2167 if (simulate) {
2168 event->tstamp_running += now - event->tstamp_stopped;
2169 event->tstamp_stopped = now;
2170 } else {
2171 event_sched_out(event, cpuctx, ctx);
2172 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002174 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002176 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002177
Peter Zijlstra272325c2015-04-15 11:41:58 +02002178 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002180 return -EAGAIN;
2181}
2182
2183/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002184 * Work out whether we can put this event group on the CPU now.
2185 */
2186static int group_can_go_on(struct perf_event *event,
2187 struct perf_cpu_context *cpuctx,
2188 int can_add_hw)
2189{
2190 /*
2191 * Groups consisting entirely of software events can always go on.
2192 */
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07002193 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002194 return 1;
2195 /*
2196 * If an exclusive group is already on, no other hardware
2197 * events can go on.
2198 */
2199 if (cpuctx->exclusive)
2200 return 0;
2201 /*
2202 * If this group is exclusive and there are already
2203 * events on the CPU, it can't go on.
2204 */
2205 if (event->attr.exclusive && cpuctx->active_oncpu)
2206 return 0;
2207 /*
2208 * Otherwise, try to add it if all previous groups were able
2209 * to go on.
2210 */
2211 return can_add_hw;
2212}
2213
2214static void add_event_to_ctx(struct perf_event *event,
2215 struct perf_event_context *ctx)
2216{
Stephane Eranian41587552011-01-03 18:20:01 +02002217 u64 tstamp = perf_event_time(event);
2218
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002219 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002220 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002221 event->tstamp_enabled = tstamp;
2222 event->tstamp_running = tstamp;
2223 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002224}
2225
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002226static void ctx_sched_out(struct perf_event_context *ctx,
2227 struct perf_cpu_context *cpuctx,
2228 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002229static void
2230ctx_sched_in(struct perf_event_context *ctx,
2231 struct perf_cpu_context *cpuctx,
2232 enum event_type_t event_type,
2233 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002234
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002235static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002236 struct perf_event_context *ctx,
2237 enum event_type_t event_type)
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002238{
2239 if (!cpuctx->task_ctx)
2240 return;
2241
2242 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2243 return;
2244
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002245 ctx_sched_out(ctx, cpuctx, event_type);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002246}
2247
Peter Zijlstradce58552011-04-09 21:17:46 +02002248static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2249 struct perf_event_context *ctx,
2250 struct task_struct *task)
2251{
2252 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2253 if (ctx)
2254 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2255 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2256 if (ctx)
2257 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2258}
2259
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002260/*
2261 * We want to maintain the following priority of scheduling:
2262 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2263 * - task pinned (EVENT_PINNED)
2264 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2265 * - task flexible (EVENT_FLEXIBLE).
2266 *
2267 * In order to avoid unscheduling and scheduling back in everything every
2268 * time an event is added, only do it for the groups of equal priority and
2269 * below.
2270 *
2271 * This can be called after a batch operation on task events, in which case
2272 * event_type is a bit mask of the types of events involved. For CPU events,
2273 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2274 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01002275static void ctx_resched(struct perf_cpu_context *cpuctx,
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002276 struct perf_event_context *task_ctx,
2277 enum event_type_t event_type)
Peter Zijlstra00179602015-11-30 16:26:35 +01002278{
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002279 enum event_type_t ctx_event_type = event_type & EVENT_ALL;
2280 bool cpu_event = !!(event_type & EVENT_CPU);
2281
2282 /*
2283 * If pinned groups are involved, flexible groups also need to be
2284 * scheduled out.
2285 */
2286 if (event_type & EVENT_PINNED)
2287 event_type |= EVENT_FLEXIBLE;
2288
Peter Zijlstra3e349502016-01-08 10:01:18 +01002289 perf_pmu_disable(cpuctx->ctx.pmu);
2290 if (task_ctx)
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002291 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2292
2293 /*
2294 * Decide which cpu ctx groups to schedule out based on the types
2295 * of events that caused rescheduling:
2296 * - EVENT_CPU: schedule out corresponding groups;
2297 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2298 * - otherwise, do nothing more.
2299 */
2300 if (cpu_event)
2301 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2302 else if (ctx_event_type & EVENT_PINNED)
2303 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2304
Peter Zijlstra3e349502016-01-08 10:01:18 +01002305 perf_event_sched_in(cpuctx, task_ctx, current);
2306 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002307}
2308
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002309/*
2310 * Cross CPU call to install and enable a performance event
2311 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002312 * Very similar to remote_function() + event_function() but cannot assume that
2313 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002314 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002315static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002316{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002317 struct perf_event *event = info;
2318 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002319 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002320 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63cae122016-12-09 14:59:00 +01002321 bool reprogram = true;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002322 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002323
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002324 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002325 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002326 raw_spin_lock(&ctx->lock);
2327 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002328
Peter Zijlstra63cae122016-12-09 14:59:00 +01002329 reprogram = (ctx->task == current);
2330
2331 /*
2332 * If the task is running, it must be running on this CPU,
2333 * otherwise we cannot reprogram things.
2334 *
2335 * If its not running, we don't care, ctx->lock will
2336 * serialize against it becoming runnable.
2337 */
2338 if (task_curr(ctx->task) && !reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002339 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002340 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002341 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002342
Peter Zijlstra63cae122016-12-09 14:59:00 +01002343 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002344 } else if (task_ctx) {
2345 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002346 }
2347
Peter Zijlstra63cae122016-12-09 14:59:00 +01002348 if (reprogram) {
Peter Zijlstraa0963092016-02-24 18:45:50 +01002349 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2350 add_event_to_ctx(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002351 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstraa0963092016-02-24 18:45:50 +01002352 } else {
2353 add_event_to_ctx(event, ctx);
2354 }
2355
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002356unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002357 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002358
Peter Zijlstraa0963092016-02-24 18:45:50 +01002359 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360}
2361
2362/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002363 * Attach a performance event to a context.
2364 *
2365 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002366 */
2367static void
2368perf_install_in_context(struct perf_event_context *ctx,
2369 struct perf_event *event,
2370 int cpu)
2371{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002372 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002373
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002374 lockdep_assert_held(&ctx->mutex);
2375
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002376 if (event->cpu != -1)
2377 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002378
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02002379 /*
2380 * Ensures that if we can observe event->ctx, both the event and ctx
2381 * will be 'complete'. See perf_iterate_sb_cpu().
2382 */
2383 smp_store_release(&event->ctx, ctx);
2384
Peter Zijlstraa0963092016-02-24 18:45:50 +01002385 if (!task) {
2386 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002387 return;
2388 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002389
Peter Zijlstraa0963092016-02-24 18:45:50 +01002390 /*
2391 * Should not happen, we validate the ctx is still alive before calling.
2392 */
2393 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2394 return;
2395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002396 /*
2397 * Installing events is tricky because we cannot rely on ctx->is_active
2398 * to be set in case this is the nr_events 0 -> 1 transition.
Peter Zijlstra63cae122016-12-09 14:59:00 +01002399 *
2400 * Instead we use task_curr(), which tells us if the task is running.
2401 * However, since we use task_curr() outside of rq::lock, we can race
2402 * against the actual state. This means the result can be wrong.
2403 *
2404 * If we get a false positive, we retry, this is harmless.
2405 *
2406 * If we get a false negative, things are complicated. If we are after
2407 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2408 * value must be correct. If we're before, it doesn't matter since
2409 * perf_event_context_sched_in() will program the counter.
2410 *
2411 * However, this hinges on the remote context switch having observed
2412 * our task->perf_event_ctxp[] store, such that it will in fact take
2413 * ctx::lock in perf_event_context_sched_in().
2414 *
2415 * We do this by task_function_call(), if the IPI fails to hit the task
2416 * we know any future context switch of task must see the
2417 * perf_event_ctpx[] store.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002418 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002419
Peter Zijlstraa0963092016-02-24 18:45:50 +01002420 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002421 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2422 * task_cpu() load, such that if the IPI then does not find the task
2423 * running, a future context switch of that task must observe the
2424 * store.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002425 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002426 smp_mb();
2427again:
2428 if (!task_function_call(task, __perf_install_in_context, event))
Peter Zijlstraa0963092016-02-24 18:45:50 +01002429 return;
2430
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002431 raw_spin_lock_irq(&ctx->lock);
2432 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002433 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2434 /*
2435 * Cannot happen because we already checked above (which also
2436 * cannot happen), and we hold ctx->mutex, which serializes us
2437 * against perf_event_exit_task_context().
2438 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002439 raw_spin_unlock_irq(&ctx->lock);
2440 return;
2441 }
Peter Zijlstraa0963092016-02-24 18:45:50 +01002442 /*
Peter Zijlstra63cae122016-12-09 14:59:00 +01002443 * If the task is not running, ctx->lock will avoid it becoming so,
2444 * thus we can safely install the event.
Peter Zijlstraa0963092016-02-24 18:45:50 +01002445 */
Peter Zijlstra63cae122016-12-09 14:59:00 +01002446 if (task_curr(task)) {
2447 raw_spin_unlock_irq(&ctx->lock);
2448 goto again;
2449 }
2450 add_event_to_ctx(event, ctx);
2451 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002452}
2453
2454/*
2455 * Put a event into inactive state and update time fields.
2456 * Enabling the leader of a group effectively enables all
2457 * the group members that aren't explicitly disabled, so we
2458 * have to update their ->tstamp_enabled also.
2459 * Note: this works for group members as well as group leaders
2460 * since the non-leader members' sibling_lists will be empty.
2461 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002462static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002463{
2464 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002465 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002466
2467 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002468 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002469 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002470 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2471 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002472 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002473}
2474
2475/*
2476 * Cross CPU call to enable a performance event
2477 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002478static void __perf_event_enable(struct perf_event *event,
2479 struct perf_cpu_context *cpuctx,
2480 struct perf_event_context *ctx,
2481 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002482{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002484 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002485
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002486 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2487 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002488 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002489
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002490 if (ctx->is_active)
2491 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2492
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002493 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002494
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002495 if (!ctx->is_active)
2496 return;
2497
Stephane Eraniane5d13672011-02-14 11:20:01 +02002498 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002499 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002500 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002501 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002502 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002503 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002505 /*
2506 * If the event is in a group and isn't the group leader,
2507 * then don't put it on unless the group is on.
2508 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002509 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2510 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002511 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002512 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002513
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002514 task_ctx = cpuctx->task_ctx;
2515 if (ctx->task)
2516 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002517
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002518 ctx_resched(cpuctx, task_ctx, get_event_type(event));
Peter Zijlstra7b648012015-12-03 18:35:21 +01002519}
2520
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002521/*
2522 * Enable a event.
2523 *
2524 * If event->ctx is a cloned context, callers must make sure that
2525 * every task struct that event->ctx->task could possibly point to
2526 * remains valid. This condition is satisfied when called through
2527 * perf_event_for_each_child or perf_event_for_each as described
2528 * for perf_event_disable.
2529 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002530static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002531{
2532 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002533
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002534 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002535 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2536 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002537 raw_spin_unlock_irq(&ctx->lock);
2538 return;
2539 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002540
2541 /*
2542 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002543 *
2544 * That way, if we see the event in error state below, we know that it
2545 * has gone back into error state, as distinct from the task having
2546 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002547 */
2548 if (event->state == PERF_EVENT_STATE_ERROR)
2549 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002550 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002551
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002552 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002553}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002554
2555/*
2556 * See perf_event_disable();
2557 */
2558void perf_event_enable(struct perf_event *event)
2559{
2560 struct perf_event_context *ctx;
2561
2562 ctx = perf_event_ctx_lock(event);
2563 _perf_event_enable(event);
2564 perf_event_ctx_unlock(event, ctx);
2565}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002566EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002567
Alexander Shishkin375637b2016-04-27 18:44:46 +03002568struct stop_event_data {
2569 struct perf_event *event;
2570 unsigned int restart;
2571};
2572
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002573static int __perf_event_stop(void *info)
2574{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002575 struct stop_event_data *sd = info;
2576 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002577
Alexander Shishkin375637b2016-04-27 18:44:46 +03002578 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002579 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2580 return 0;
2581
2582 /* matches smp_wmb() in event_sched_in() */
2583 smp_rmb();
2584
2585 /*
2586 * There is a window with interrupts enabled before we get here,
2587 * so we need to check again lest we try to stop another CPU's event.
2588 */
2589 if (READ_ONCE(event->oncpu) != smp_processor_id())
2590 return -EAGAIN;
2591
2592 event->pmu->stop(event, PERF_EF_UPDATE);
2593
Alexander Shishkin375637b2016-04-27 18:44:46 +03002594 /*
2595 * May race with the actual stop (through perf_pmu_output_stop()),
2596 * but it is only used for events with AUX ring buffer, and such
2597 * events will refuse to restart because of rb::aux_mmap_count==0,
2598 * see comments in perf_aux_output_begin().
2599 *
2600 * Since this is happening on a event-local CPU, no trace is lost
2601 * while restarting.
2602 */
2603 if (sd->restart)
Will Deaconc9bbdd42016-08-15 11:42:45 +01002604 event->pmu->start(event, 0);
Alexander Shishkin375637b2016-04-27 18:44:46 +03002605
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002606 return 0;
2607}
2608
Alexander Shishkin767ae082016-09-06 16:23:49 +03002609static int perf_event_stop(struct perf_event *event, int restart)
Alexander Shishkin375637b2016-04-27 18:44:46 +03002610{
2611 struct stop_event_data sd = {
2612 .event = event,
Alexander Shishkin767ae082016-09-06 16:23:49 +03002613 .restart = restart,
Alexander Shishkin375637b2016-04-27 18:44:46 +03002614 };
2615 int ret = 0;
2616
2617 do {
2618 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2619 return 0;
2620
2621 /* matches smp_wmb() in event_sched_in() */
2622 smp_rmb();
2623
2624 /*
2625 * We only want to restart ACTIVE events, so if the event goes
2626 * inactive here (event->oncpu==-1), there's nothing more to do;
2627 * fall through with ret==-ENXIO.
2628 */
2629 ret = cpu_function_call(READ_ONCE(event->oncpu),
2630 __perf_event_stop, &sd);
2631 } while (ret == -EAGAIN);
2632
2633 return ret;
2634}
2635
2636/*
2637 * In order to contain the amount of racy and tricky in the address filter
2638 * configuration management, it is a two part process:
2639 *
2640 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2641 * we update the addresses of corresponding vmas in
2642 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2643 * (p2) when an event is scheduled in (pmu::add), it calls
2644 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2645 * if the generation has changed since the previous call.
2646 *
2647 * If (p1) happens while the event is active, we restart it to force (p2).
2648 *
2649 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2650 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2651 * ioctl;
2652 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2653 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2654 * for reading;
2655 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2656 * of exec.
2657 */
2658void perf_event_addr_filters_sync(struct perf_event *event)
2659{
2660 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2661
2662 if (!has_addr_filter(event))
2663 return;
2664
2665 raw_spin_lock(&ifh->lock);
2666 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2667 event->pmu->addr_filters_sync(event);
2668 event->hw.addr_filters_gen = event->addr_filters_gen;
2669 }
2670 raw_spin_unlock(&ifh->lock);
2671}
2672EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2673
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002674static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002675{
2676 /*
2677 * not supported on inherited events
2678 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002679 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680 return -EINVAL;
2681
2682 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002683 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002684
2685 return 0;
2686}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002687
2688/*
2689 * See perf_event_disable()
2690 */
2691int perf_event_refresh(struct perf_event *event, int refresh)
2692{
2693 struct perf_event_context *ctx;
2694 int ret;
2695
2696 ctx = perf_event_ctx_lock(event);
2697 ret = _perf_event_refresh(event, refresh);
2698 perf_event_ctx_unlock(event, ctx);
2699
2700 return ret;
2701}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002702EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002703
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002704static void ctx_sched_out(struct perf_event_context *ctx,
2705 struct perf_cpu_context *cpuctx,
2706 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002707{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002708 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002709 struct perf_event *event;
2710
2711 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002712
Peter Zijlstra39a43642016-01-11 12:46:35 +01002713 if (likely(!ctx->nr_events)) {
2714 /*
2715 * See __perf_remove_from_context().
2716 */
2717 WARN_ON_ONCE(ctx->is_active);
2718 if (ctx->task)
2719 WARN_ON_ONCE(cpuctx->task_ctx);
2720 return;
2721 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002722
Peter Zijlstradb24d332011-04-09 21:17:45 +02002723 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002724 if (!(ctx->is_active & EVENT_ALL))
2725 ctx->is_active = 0;
2726
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002727 if (ctx->task) {
2728 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2729 if (!ctx->is_active)
2730 cpuctx->task_ctx = NULL;
2731 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002732
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002733 /*
2734 * Always update time if it was set; not only when it changes.
2735 * Otherwise we can 'forget' to update time for any but the last
2736 * context we sched out. For example:
2737 *
2738 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2739 * ctx_sched_out(.event_type = EVENT_PINNED)
2740 *
2741 * would only update time for the pinned events.
2742 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002743 if (is_active & EVENT_TIME) {
2744 /* update (and stop) ctx time */
2745 update_context_time(ctx);
2746 update_cgrp_time_from_cpuctx(cpuctx);
2747 }
2748
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002749 is_active ^= ctx->is_active; /* changed bits */
2750
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002751 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002752 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002753
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002754 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002755 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002756 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2757 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002758 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002759
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002760 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002761 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002762 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002763 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002764 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002765}
2766
2767/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002768 * Test whether two contexts are equivalent, i.e. whether they have both been
2769 * cloned from the same version of the same context.
2770 *
2771 * Equivalence is measured using a generation number in the context that is
2772 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2773 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002774 */
2775static int context_equiv(struct perf_event_context *ctx1,
2776 struct perf_event_context *ctx2)
2777{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002778 lockdep_assert_held(&ctx1->lock);
2779 lockdep_assert_held(&ctx2->lock);
2780
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002781 /* Pinning disables the swap optimization */
2782 if (ctx1->pin_count || ctx2->pin_count)
2783 return 0;
2784
2785 /* If ctx1 is the parent of ctx2 */
2786 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2787 return 1;
2788
2789 /* If ctx2 is the parent of ctx1 */
2790 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2791 return 1;
2792
2793 /*
2794 * If ctx1 and ctx2 have the same parent; we flatten the parent
2795 * hierarchy, see perf_event_init_context().
2796 */
2797 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2798 ctx1->parent_gen == ctx2->parent_gen)
2799 return 1;
2800
2801 /* Unmatched */
2802 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803}
2804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002805static void __perf_event_sync_stat(struct perf_event *event,
2806 struct perf_event *next_event)
2807{
2808 u64 value;
2809
2810 if (!event->attr.inherit_stat)
2811 return;
2812
2813 /*
2814 * Update the event value, we cannot use perf_event_read()
2815 * because we're in the middle of a context switch and have IRQs
2816 * disabled, which upsets smp_call_function_single(), however
2817 * we know the event must be on the current CPU, therefore we
2818 * don't need to use it.
2819 */
2820 switch (event->state) {
2821 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002822 event->pmu->read(event);
2823 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002824
2825 case PERF_EVENT_STATE_INACTIVE:
2826 update_event_times(event);
2827 break;
2828
2829 default:
2830 break;
2831 }
2832
2833 /*
2834 * In order to keep per-task stats reliable we need to flip the event
2835 * values when we flip the contexts.
2836 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002837 value = local64_read(&next_event->count);
2838 value = local64_xchg(&event->count, value);
2839 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002840
2841 swap(event->total_time_enabled, next_event->total_time_enabled);
2842 swap(event->total_time_running, next_event->total_time_running);
2843
2844 /*
2845 * Since we swizzled the values, update the user visible data too.
2846 */
2847 perf_event_update_userpage(event);
2848 perf_event_update_userpage(next_event);
2849}
2850
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002851static void perf_event_sync_stat(struct perf_event_context *ctx,
2852 struct perf_event_context *next_ctx)
2853{
2854 struct perf_event *event, *next_event;
2855
2856 if (!ctx->nr_stat)
2857 return;
2858
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002859 update_context_time(ctx);
2860
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002861 event = list_first_entry(&ctx->event_list,
2862 struct perf_event, event_entry);
2863
2864 next_event = list_first_entry(&next_ctx->event_list,
2865 struct perf_event, event_entry);
2866
2867 while (&event->event_entry != &ctx->event_list &&
2868 &next_event->event_entry != &next_ctx->event_list) {
2869
2870 __perf_event_sync_stat(event, next_event);
2871
2872 event = list_next_entry(event, event_entry);
2873 next_event = list_next_entry(next_event, event_entry);
2874 }
2875}
2876
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002877static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2878 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002879{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002880 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002881 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002882 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002883 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002884 int do_switch = 1;
2885
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002886 if (likely(!ctx))
2887 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002888
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002889 cpuctx = __get_cpu_context(ctx);
2890 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002891 return;
2892
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002893 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002894 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002895 if (!next_ctx)
2896 goto unlock;
2897
2898 parent = rcu_dereference(ctx->parent_ctx);
2899 next_parent = rcu_dereference(next_ctx->parent_ctx);
2900
2901 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002902 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002903 goto unlock;
2904
2905 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002906 /*
2907 * Looks like the two contexts are clones, so we might be
2908 * able to optimize the context switch. We lock both
2909 * contexts and check that they are clones under the
2910 * lock (including re-checking that neither has been
2911 * uncloned in the meantime). It doesn't matter which
2912 * order we take the locks because no other cpu could
2913 * be trying to lock both of these tasks.
2914 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002915 raw_spin_lock(&ctx->lock);
2916 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002917 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002918 WRITE_ONCE(ctx->task, next);
2919 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002920
2921 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2922
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002923 /*
2924 * RCU_INIT_POINTER here is safe because we've not
2925 * modified the ctx and the above modification of
2926 * ctx->task and ctx->task_ctx_data are immaterial
2927 * since those values are always verified under
2928 * ctx->lock which we're now holding.
2929 */
2930 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2931 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2932
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002933 do_switch = 0;
2934
2935 perf_event_sync_stat(ctx, next_ctx);
2936 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002937 raw_spin_unlock(&next_ctx->lock);
2938 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002939 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002940unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002941 rcu_read_unlock();
2942
2943 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002944 raw_spin_lock(&ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02002945 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002946 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002947 }
2948}
2949
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002950static DEFINE_PER_CPU(struct list_head, sched_cb_list);
2951
Yan, Zhengba532502014-11-04 21:55:58 -05002952void perf_sched_cb_dec(struct pmu *pmu)
2953{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002954 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2955
Yan, Zhengba532502014-11-04 21:55:58 -05002956 this_cpu_dec(perf_sched_cb_usages);
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002957
2958 if (!--cpuctx->sched_cb_usage)
2959 list_del(&cpuctx->sched_cb_entry);
Yan, Zhengba532502014-11-04 21:55:58 -05002960}
2961
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002962
Yan, Zhengba532502014-11-04 21:55:58 -05002963void perf_sched_cb_inc(struct pmu *pmu)
2964{
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002965 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2966
2967 if (!cpuctx->sched_cb_usage++)
2968 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
2969
Yan, Zhengba532502014-11-04 21:55:58 -05002970 this_cpu_inc(perf_sched_cb_usages);
2971}
2972
2973/*
2974 * This function provides the context switch callback to the lower code
2975 * layer. It is invoked ONLY when the context switch callback is enabled.
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +02002976 *
2977 * This callback is relevant even to per-cpu events; for example multi event
2978 * PEBS requires this to provide PID/TID information. This requires we flush
2979 * all queued PEBS records before we context switch to a new task.
Yan, Zhengba532502014-11-04 21:55:58 -05002980 */
2981static void perf_pmu_sched_task(struct task_struct *prev,
2982 struct task_struct *next,
2983 bool sched_in)
2984{
2985 struct perf_cpu_context *cpuctx;
2986 struct pmu *pmu;
Yan, Zhengba532502014-11-04 21:55:58 -05002987
2988 if (prev == next)
2989 return;
2990
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002991 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
David Carrillo-Cisneros1fd7e412017-01-18 11:24:54 -08002992 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
Yan, Zhengba532502014-11-04 21:55:58 -05002993
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002994 if (WARN_ON_ONCE(!pmu->sched_task))
2995 continue;
Yan, Zhengba532502014-11-04 21:55:58 -05002996
Peter Zijlstrae48c1782016-07-06 09:18:30 +02002997 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2998 perf_pmu_disable(pmu);
Yan, Zhengba532502014-11-04 21:55:58 -05002999
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003000 pmu->sched_task(cpuctx->task_ctx, sched_in);
Yan, Zhengba532502014-11-04 21:55:58 -05003001
Peter Zijlstrae48c1782016-07-06 09:18:30 +02003002 perf_pmu_enable(pmu);
3003 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Yan, Zhengba532502014-11-04 21:55:58 -05003004 }
Yan, Zhengba532502014-11-04 21:55:58 -05003005}
3006
Adrian Hunter45ac1402015-07-21 12:44:02 +03003007static void perf_event_switch(struct task_struct *task,
3008 struct task_struct *next_prev, bool sched_in);
3009
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003010#define for_each_task_context_nr(ctxn) \
3011 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3012
3013/*
3014 * Called from scheduler to remove the events of the current task,
3015 * with interrupts disabled.
3016 *
3017 * We stop each event and update the event value in event->count.
3018 *
3019 * This does not protect us against NMI, but disable()
3020 * sets the disabled bit in the control field of event _before_
3021 * accessing the event control register. If a NMI hits, then it will
3022 * not restart the event.
3023 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003024void __perf_event_task_sched_out(struct task_struct *task,
3025 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003026{
3027 int ctxn;
3028
Yan, Zhengba532502014-11-04 21:55:58 -05003029 if (__this_cpu_read(perf_sched_cb_usages))
3030 perf_pmu_sched_task(task, next, false);
3031
Adrian Hunter45ac1402015-07-21 12:44:02 +03003032 if (atomic_read(&nr_switch_events))
3033 perf_event_switch(task, next, false);
3034
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003035 for_each_task_context_nr(ctxn)
3036 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003037
3038 /*
3039 * if cgroup events exist on this CPU, then we need
3040 * to check if we have to switch out PMU state.
3041 * cgroup event are system-wide mode only
3042 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05003043 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003044 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003045}
3046
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003047/*
3048 * Called with IRQs disabled
3049 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003050static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3051 enum event_type_t event_type)
3052{
3053 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003054}
3055
3056static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003057ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003058 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059{
3060 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003062 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
3063 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02003065 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003066 continue;
3067
Stephane Eraniane5d13672011-02-14 11:20:01 +02003068 /* may need to reset tstamp_enabled */
3069 if (is_cgroup_event(event))
3070 perf_cgroup_mark_enabled(event, ctx);
3071
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08003072 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01003073 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003074
3075 /*
3076 * If this pinned group hasn't been scheduled,
3077 * put it in error state.
3078 */
3079 if (event->state == PERF_EVENT_STATE_INACTIVE) {
3080 update_group_times(event);
3081 event->state = PERF_EVENT_STATE_ERROR;
3082 }
3083 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003084}
3085
3086static void
3087ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01003088 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003089{
3090 struct perf_event *event;
3091 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003092
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003093 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
3094 /* Ignore events in OFF or ERROR state */
3095 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003096 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003097 /*
3098 * Listen to the 'cpu' scheduling filter constraint
3099 * of events:
3100 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02003101 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102 continue;
3103
Stephane Eraniane5d13672011-02-14 11:20:01 +02003104 /* may need to reset tstamp_enabled */
3105 if (is_cgroup_event(event))
3106 perf_cgroup_mark_enabled(event, ctx);
3107
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003108 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01003109 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003110 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003111 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003112 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003113}
3114
3115static void
3116ctx_sched_in(struct perf_event_context *ctx,
3117 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003118 enum event_type_t event_type,
3119 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003120{
Peter Zijlstradb24d332011-04-09 21:17:45 +02003121 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01003122 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02003123
Peter Zijlstrac994d612016-01-08 09:20:23 +01003124 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003125
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003126 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003127 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003128
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003129 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003130 if (ctx->task) {
3131 if (!is_active)
3132 cpuctx->task_ctx = ctx;
3133 else
3134 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3135 }
3136
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003137 is_active ^= ctx->is_active; /* changed bits */
3138
3139 if (is_active & EVENT_TIME) {
3140 /* start ctx time */
3141 now = perf_clock();
3142 ctx->timestamp = now;
3143 perf_cgroup_set_timestamp(task, ctx);
3144 }
3145
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003146 /*
3147 * First go through the list and put on any pinned groups
3148 * in order to give them the best chance of going on.
3149 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003150 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003151 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01003152
3153 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01003154 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01003155 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003156}
3157
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003158static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02003159 enum event_type_t event_type,
3160 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003161{
3162 struct perf_event_context *ctx = &cpuctx->ctx;
3163
Stephane Eraniane5d13672011-02-14 11:20:01 +02003164 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003165}
3166
Stephane Eraniane5d13672011-02-14 11:20:01 +02003167static void perf_event_context_sched_in(struct perf_event_context *ctx,
3168 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003170 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003171
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003172 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003173 if (cpuctx->task_ctx == ctx)
3174 return;
3175
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003176 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003177 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003178 /*
3179 * We want to keep the following priority order:
3180 * cpu pinned (that don't need to move), task pinned,
3181 * cpu flexible, task flexible.
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003182 *
3183 * However, if task's ctx is not carrying any pinned
3184 * events, no need to flip the cpuctx's events around.
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01003185 */
Alexander Shishkinfe45baf2017-01-19 18:43:29 +02003186 if (!list_empty(&ctx->pinned_groups))
3187 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01003188 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003189 perf_pmu_enable(ctx->pmu);
3190 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003191}
3192
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003193/*
3194 * Called from scheduler to add the events of the current task
3195 * with interrupts disabled.
3196 *
3197 * We restore the event value and then enable it.
3198 *
3199 * This does not protect us against NMI, but enable()
3200 * sets the enabled bit in the control field of event _before_
3201 * accessing the event control register. If a NMI hits, then it will
3202 * keep the event running.
3203 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02003204void __perf_event_task_sched_in(struct task_struct *prev,
3205 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003206{
3207 struct perf_event_context *ctx;
3208 int ctxn;
3209
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003210 /*
3211 * If cgroup events exist on this CPU, then we need to check if we have
3212 * to switch in PMU state; cgroup event are system-wide mode only.
3213 *
3214 * Since cgroup events are CPU events, we must schedule these in before
3215 * we schedule in the task events.
3216 */
3217 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3218 perf_cgroup_sched_in(prev, task);
3219
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003220 for_each_task_context_nr(ctxn) {
3221 ctx = task->perf_event_ctxp[ctxn];
3222 if (likely(!ctx))
3223 continue;
3224
Stephane Eraniane5d13672011-02-14 11:20:01 +02003225 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003226 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003227
Adrian Hunter45ac1402015-07-21 12:44:02 +03003228 if (atomic_read(&nr_switch_events))
3229 perf_event_switch(task, prev, true);
3230
Yan, Zhengba532502014-11-04 21:55:58 -05003231 if (__this_cpu_read(perf_sched_cb_usages))
3232 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003233}
3234
Peter Zijlstraabd50712010-01-26 18:50:16 +01003235static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3236{
3237 u64 frequency = event->attr.sample_freq;
3238 u64 sec = NSEC_PER_SEC;
3239 u64 divisor, dividend;
3240
3241 int count_fls, nsec_fls, frequency_fls, sec_fls;
3242
3243 count_fls = fls64(count);
3244 nsec_fls = fls64(nsec);
3245 frequency_fls = fls64(frequency);
3246 sec_fls = 30;
3247
3248 /*
3249 * We got @count in @nsec, with a target of sample_freq HZ
3250 * the target period becomes:
3251 *
3252 * @count * 10^9
3253 * period = -------------------
3254 * @nsec * sample_freq
3255 *
3256 */
3257
3258 /*
3259 * Reduce accuracy by one bit such that @a and @b converge
3260 * to a similar magnitude.
3261 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003262#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003263do { \
3264 if (a##_fls > b##_fls) { \
3265 a >>= 1; \
3266 a##_fls--; \
3267 } else { \
3268 b >>= 1; \
3269 b##_fls--; \
3270 } \
3271} while (0)
3272
3273 /*
3274 * Reduce accuracy until either term fits in a u64, then proceed with
3275 * the other, so that finally we can do a u64/u64 division.
3276 */
3277 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3278 REDUCE_FLS(nsec, frequency);
3279 REDUCE_FLS(sec, count);
3280 }
3281
3282 if (count_fls + sec_fls > 64) {
3283 divisor = nsec * frequency;
3284
3285 while (count_fls + sec_fls > 64) {
3286 REDUCE_FLS(count, sec);
3287 divisor >>= 1;
3288 }
3289
3290 dividend = count * sec;
3291 } else {
3292 dividend = count * sec;
3293
3294 while (nsec_fls + frequency_fls > 64) {
3295 REDUCE_FLS(nsec, frequency);
3296 dividend >>= 1;
3297 }
3298
3299 divisor = nsec * frequency;
3300 }
3301
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003302 if (!divisor)
3303 return dividend;
3304
Peter Zijlstraabd50712010-01-26 18:50:16 +01003305 return div64_u64(dividend, divisor);
3306}
3307
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003308static DEFINE_PER_CPU(int, perf_throttled_count);
3309static DEFINE_PER_CPU(u64, perf_throttled_seq);
3310
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003311static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003312{
3313 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003314 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003315 s64 delta;
3316
Peter Zijlstraabd50712010-01-26 18:50:16 +01003317 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003318
3319 delta = (s64)(period - hwc->sample_period);
3320 delta = (delta + 7) / 8; /* low pass filter */
3321
3322 sample_period = hwc->sample_period + delta;
3323
3324 if (!sample_period)
3325 sample_period = 1;
3326
3327 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003328
Peter Zijlstrae7850592010-05-21 14:43:08 +02003329 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003330 if (disable)
3331 event->pmu->stop(event, PERF_EF_UPDATE);
3332
Peter Zijlstrae7850592010-05-21 14:43:08 +02003333 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003334
3335 if (disable)
3336 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003337 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003338}
3339
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003340/*
3341 * combine freq adjustment with unthrottling to avoid two passes over the
3342 * events. At the same time, make sure, having freq events does not change
3343 * the rate of unthrottling as that would introduce bias.
3344 */
3345static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3346 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003347{
3348 struct perf_event *event;
3349 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003350 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003351 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003352
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003353 /*
3354 * only need to iterate over all events iff:
3355 * - context have events in frequency mode (needs freq adjust)
3356 * - there are events to unthrottle on this cpu
3357 */
3358 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003359 return;
3360
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003361 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003362 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003363
Paul Mackerras03541f82009-10-14 16:58:03 +11003364 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365 if (event->state != PERF_EVENT_STATE_ACTIVE)
3366 continue;
3367
Stephane Eranian5632ab12011-01-03 18:20:01 +02003368 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003369 continue;
3370
Alexander Shishkin44377272013-12-16 14:17:36 +02003371 perf_pmu_disable(event->pmu);
3372
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003373 hwc = &event->hw;
3374
Jiri Olsaae23bff2013-08-24 16:45:54 +02003375 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003376 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003377 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003378 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003379 }
3380
3381 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003382 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003383
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003384 /*
3385 * stop the event and update event->count
3386 */
3387 event->pmu->stop(event, PERF_EF_UPDATE);
3388
Peter Zijlstrae7850592010-05-21 14:43:08 +02003389 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003390 delta = now - hwc->freq_count_stamp;
3391 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003393 /*
3394 * restart the event
3395 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003396 * we have stopped the event so tell that
3397 * to perf_adjust_period() to avoid stopping it
3398 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003399 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003400 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003401 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003402
3403 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003404 next:
3405 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003407
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003408 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003409 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003410}
3411
3412/*
3413 * Round-robin a context's events:
3414 */
3415static void rotate_ctx(struct perf_event_context *ctx)
3416{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003417 /*
3418 * Rotate the first entry last of non-pinned groups. Rotation might be
3419 * disabled by the inheritance code.
3420 */
3421 if (!ctx->rotate_disable)
3422 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003423}
3424
Stephane Eranian9e630202013-04-03 14:21:33 +02003425static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003426{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003427 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003428 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003429
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003430 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003431 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3432 rotate = 1;
3433 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003434
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003435 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003436 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003437 if (ctx->nr_events != ctx->nr_active)
3438 rotate = 1;
3439 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003440
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003441 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003442 goto done;
3443
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003444 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003445 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003446
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003447 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3448 if (ctx)
3449 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003450
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003451 rotate_ctx(&cpuctx->ctx);
3452 if (ctx)
3453 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003454
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003455 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003456
3457 perf_pmu_enable(cpuctx->ctx.pmu);
3458 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003459done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003460
3461 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003462}
3463
3464void perf_event_task_tick(void)
3465{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003466 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3467 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003468 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003469
3470 WARN_ON(!irqs_disabled());
3471
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003472 __this_cpu_inc(perf_throttled_seq);
3473 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003474 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003475
Mark Rutland2fde4f92015-01-07 15:01:54 +00003476 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003477 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478}
3479
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003480static int event_enable_on_exec(struct perf_event *event,
3481 struct perf_event_context *ctx)
3482{
3483 if (!event->attr.enable_on_exec)
3484 return 0;
3485
3486 event->attr.enable_on_exec = 0;
3487 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3488 return 0;
3489
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003490 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003491
3492 return 1;
3493}
3494
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003495/*
3496 * Enable all of a task's events that have been marked enable-on-exec.
3497 * This expects task == current.
3498 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003499static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003501 struct perf_event_context *ctx, *clone_ctx = NULL;
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003502 enum event_type_t event_type = 0;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003503 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003504 struct perf_event *event;
3505 unsigned long flags;
3506 int enabled = 0;
3507
3508 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003509 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003510 if (!ctx || !ctx->nr_events)
3511 goto out;
3512
Peter Zijlstra3e349502016-01-08 10:01:18 +01003513 cpuctx = __get_cpu_context(ctx);
3514 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003515 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003516 list_for_each_entry(event, &ctx->event_list, event_entry) {
Peter Zijlstra3e349502016-01-08 10:01:18 +01003517 enabled |= event_enable_on_exec(event, ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003518 event_type |= get_event_type(event);
3519 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003520
3521 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003522 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003523 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003524 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003525 clone_ctx = unclone_ctx(ctx);
Alexander Shishkin487f05e2017-01-19 18:43:30 +02003526 ctx_resched(cpuctx, ctx, event_type);
Peter Zijlstra7bbba0e2017-02-15 16:12:20 +01003527 } else {
3528 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003529 }
3530 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003531
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003532out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003533 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003534
3535 if (clone_ctx)
3536 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003537}
3538
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003539struct perf_read_data {
3540 struct perf_event *event;
3541 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003542 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003543};
3544
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003545static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003546{
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003547 u16 local_pkg, event_pkg;
3548
3549 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003550 int local_cpu = smp_processor_id();
3551
3552 event_pkg = topology_physical_package_id(event_cpu);
3553 local_pkg = topology_physical_package_id(local_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003554
3555 if (event_pkg == local_pkg)
3556 return local_cpu;
3557 }
3558
3559 return event_cpu;
3560}
3561
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003562/*
3563 * Cross CPU call to read the hardware event
3564 */
3565static void __perf_event_read(void *info)
3566{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003567 struct perf_read_data *data = info;
3568 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003569 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003570 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003571 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003572
3573 /*
3574 * If this is a task context, we need to check whether it is
3575 * the current task context of this cpu. If not it has been
3576 * scheduled out before the smp call arrived. In that case
3577 * event->count would have been updated to a recent sample
3578 * when the event was scheduled out.
3579 */
3580 if (ctx->task && cpuctx->task_ctx != ctx)
3581 return;
3582
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003583 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003584 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003585 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003586 update_cgrp_time_from_event(event);
3587 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003588
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003589 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003590 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003591 goto unlock;
3592
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003593 if (!data->group) {
3594 pmu->read(event);
3595 data->ret = 0;
3596 goto unlock;
3597 }
3598
3599 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3600
3601 pmu->read(event);
3602
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003603 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3604 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003605 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3606 /*
3607 * Use sibling's PMU rather than @event's since
3608 * sibling could be on different (eg: software) PMU.
3609 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003610 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003611 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003612 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003613
3614 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003615
3616unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003617 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003618}
3619
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003620static inline u64 perf_event_count(struct perf_event *event)
3621{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003622 if (event->pmu->count)
3623 return event->pmu->count(event);
3624
3625 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003626}
3627
Kaixu Xiaffe86902015-08-06 07:02:32 +00003628/*
3629 * NMI-safe method to read a local event, that is an event that
3630 * is:
3631 * - either for the current task, or for this CPU
3632 * - does not have inherit set, for inherited task events
3633 * will not be local and we cannot read them atomically
3634 * - must not have a pmu::count method
3635 */
3636u64 perf_event_read_local(struct perf_event *event)
3637{
3638 unsigned long flags;
3639 u64 val;
3640
3641 /*
3642 * Disabling interrupts avoids all counter scheduling (context
3643 * switches, timer based rotation and IPIs).
3644 */
3645 local_irq_save(flags);
3646
3647 /* If this is a per-task event, it must be for current */
3648 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3649 event->hw.target != current);
3650
3651 /* If this is a per-CPU event, it must be for this CPU */
3652 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3653 event->cpu != smp_processor_id());
3654
3655 /*
3656 * It must not be an event with inherit set, we cannot read
3657 * all child counters from atomic context.
3658 */
3659 WARN_ON_ONCE(event->attr.inherit);
3660
3661 /*
3662 * It must not have a pmu::count method, those are not
3663 * NMI safe.
3664 */
3665 WARN_ON_ONCE(event->pmu->count);
3666
3667 /*
3668 * If the event is currently on this CPU, its either a per-task event,
3669 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3670 * oncpu == -1).
3671 */
3672 if (event->oncpu == smp_processor_id())
3673 event->pmu->read(event);
3674
3675 val = local64_read(&event->count);
3676 local_irq_restore(flags);
3677
3678 return val;
3679}
3680
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003681static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003682{
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003683 int event_cpu, ret = 0;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003684
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003685 /*
3686 * If event is enabled and currently active on a CPU, update the
3687 * value in the event structure:
3688 */
3689 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003690 struct perf_read_data data = {
3691 .event = event,
3692 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003693 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003694 };
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003695
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003696 event_cpu = READ_ONCE(event->oncpu);
3697 if ((unsigned)event_cpu >= nr_cpu_ids)
3698 return 0;
3699
3700 preempt_disable();
3701 event_cpu = __perf_event_read_cpu(event, event_cpu);
David Carrillo-Cisnerosd6a2f9032016-08-17 13:55:06 -07003702
Peter Zijlstra58763142016-08-30 10:15:03 +02003703 /*
3704 * Purposely ignore the smp_call_function_single() return
3705 * value.
3706 *
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003707 * If event_cpu isn't a valid CPU it means the event got
Peter Zijlstra58763142016-08-30 10:15:03 +02003708 * scheduled out and that will have updated the event count.
3709 *
3710 * Therefore, either way, we'll have an up-to-date event count
3711 * after this.
3712 */
Peter Zijlstra451d24d2017-01-31 11:27:10 +01003713 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
3714 preempt_enable();
Peter Zijlstra58763142016-08-30 10:15:03 +02003715 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003716 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003717 struct perf_event_context *ctx = event->ctx;
3718 unsigned long flags;
3719
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003720 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003721 /*
3722 * may read while context is not active
3723 * (e.g., thread is blocked), in that case
3724 * we cannot update context time
3725 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003726 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003727 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003728 update_cgrp_time_from_event(event);
3729 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003730 if (group)
3731 update_group_times(event);
3732 else
3733 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003734 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003735 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003736
3737 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003738}
3739
3740/*
3741 * Initialize the perf_event context in a task_struct:
3742 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003743static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003744{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003745 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003747 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003748 INIT_LIST_HEAD(&ctx->pinned_groups);
3749 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003750 INIT_LIST_HEAD(&ctx->event_list);
3751 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003752}
3753
Peter Zijlstraeb184472010-09-07 15:55:13 +02003754static struct perf_event_context *
3755alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003756{
3757 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003758
3759 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3760 if (!ctx)
3761 return NULL;
3762
3763 __perf_event_init_context(ctx);
3764 if (task) {
3765 ctx->task = task;
3766 get_task_struct(task);
3767 }
3768 ctx->pmu = pmu;
3769
3770 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003771}
3772
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003773static struct task_struct *
3774find_lively_task_by_vpid(pid_t vpid)
3775{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003776 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003777
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003778 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003779 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003780 task = current;
3781 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003782 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003783 if (task)
3784 get_task_struct(task);
3785 rcu_read_unlock();
3786
3787 if (!task)
3788 return ERR_PTR(-ESRCH);
3789
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003790 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003791}
3792
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003793/*
3794 * Returns a matching context with refcount and pincount.
3795 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003796static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003797find_get_context(struct pmu *pmu, struct task_struct *task,
3798 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003799{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003800 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003802 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003803 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003804 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003805 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003807 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003808 /* Must be root to operate on a CPU event: */
3809 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3810 return ERR_PTR(-EACCES);
3811
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003812 /*
3813 * We could be clever and allow to attach a event to an
3814 * offline CPU and activate it when the CPU comes up, but
3815 * that's for later.
3816 */
3817 if (!cpu_online(cpu))
3818 return ERR_PTR(-ENODEV);
3819
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003820 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003821 ctx = &cpuctx->ctx;
3822 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003823 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003824
3825 return ctx;
3826 }
3827
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003828 err = -EINVAL;
3829 ctxn = pmu->task_ctx_nr;
3830 if (ctxn < 0)
3831 goto errout;
3832
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003833 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3834 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3835 if (!task_ctx_data) {
3836 err = -ENOMEM;
3837 goto errout;
3838 }
3839 }
3840
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003841retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003842 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003843 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003844 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003845 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003846
3847 if (task_ctx_data && !ctx->task_ctx_data) {
3848 ctx->task_ctx_data = task_ctx_data;
3849 task_ctx_data = NULL;
3850 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003851 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003852
3853 if (clone_ctx)
3854 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003855 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003856 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003857 err = -ENOMEM;
3858 if (!ctx)
3859 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003860
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003861 if (task_ctx_data) {
3862 ctx->task_ctx_data = task_ctx_data;
3863 task_ctx_data = NULL;
3864 }
3865
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003866 err = 0;
3867 mutex_lock(&task->perf_event_mutex);
3868 /*
3869 * If it has already passed perf_event_exit_task().
3870 * we must see PF_EXITING, it takes this mutex too.
3871 */
3872 if (task->flags & PF_EXITING)
3873 err = -ESRCH;
3874 else if (task->perf_event_ctxp[ctxn])
3875 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003876 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003877 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003878 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003879 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003880 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003881 mutex_unlock(&task->perf_event_mutex);
3882
3883 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003884 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003885
3886 if (err == -EAGAIN)
3887 goto retry;
3888 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003889 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003890 }
3891
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003892 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003893 return ctx;
3894
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003895errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003896 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003897 return ERR_PTR(err);
3898}
3899
Li Zefan6fb29152009-10-15 11:21:42 +08003900static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003901static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003903static void free_event_rcu(struct rcu_head *head)
3904{
3905 struct perf_event *event;
3906
3907 event = container_of(head, struct perf_event, rcu_head);
3908 if (event->ns)
3909 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003910 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003911 kfree(event);
3912}
3913
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003914static void ring_buffer_attach(struct perf_event *event,
3915 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003916
Kan Liangf2fb6be2016-03-23 11:24:37 -07003917static void detach_sb_event(struct perf_event *event)
3918{
3919 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3920
3921 raw_spin_lock(&pel->lock);
3922 list_del_rcu(&event->sb_list);
3923 raw_spin_unlock(&pel->lock);
3924}
3925
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003926static bool is_sb_event(struct perf_event *event)
Kan Liangf2fb6be2016-03-23 11:24:37 -07003927{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003928 struct perf_event_attr *attr = &event->attr;
3929
Kan Liangf2fb6be2016-03-23 11:24:37 -07003930 if (event->parent)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003931 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003932
3933 if (event->attach_state & PERF_ATTACH_TASK)
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003934 return false;
Kan Liangf2fb6be2016-03-23 11:24:37 -07003935
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07003936 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
3937 attr->comm || attr->comm_exec ||
3938 attr->task ||
3939 attr->context_switch)
3940 return true;
3941 return false;
3942}
3943
3944static void unaccount_pmu_sb_event(struct perf_event *event)
3945{
3946 if (is_sb_event(event))
3947 detach_sb_event(event);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003948}
3949
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003950static void unaccount_event_cpu(struct perf_event *event, int cpu)
3951{
3952 if (event->parent)
3953 return;
3954
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003955 if (is_cgroup_event(event))
3956 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3957}
3958
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003959#ifdef CONFIG_NO_HZ_FULL
3960static DEFINE_SPINLOCK(nr_freq_lock);
3961#endif
3962
3963static void unaccount_freq_event_nohz(void)
3964{
3965#ifdef CONFIG_NO_HZ_FULL
3966 spin_lock(&nr_freq_lock);
3967 if (atomic_dec_and_test(&nr_freq_events))
3968 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3969 spin_unlock(&nr_freq_lock);
3970#endif
3971}
3972
3973static void unaccount_freq_event(void)
3974{
3975 if (tick_nohz_full_enabled())
3976 unaccount_freq_event_nohz();
3977 else
3978 atomic_dec(&nr_freq_events);
3979}
3980
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003981static void unaccount_event(struct perf_event *event)
3982{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003983 bool dec = false;
3984
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003985 if (event->parent)
3986 return;
3987
3988 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003989 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003990 if (event->attr.mmap || event->attr.mmap_data)
3991 atomic_dec(&nr_mmap_events);
3992 if (event->attr.comm)
3993 atomic_dec(&nr_comm_events);
3994 if (event->attr.task)
3995 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003996 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003997 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003998 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003999 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03004000 atomic_dec(&nr_switch_events);
4001 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004002 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004003 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004004 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01004005 dec = true;
4006
Peter Zijlstra9107c892016-02-24 18:45:45 +01004007 if (dec) {
4008 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4009 schedule_delayed_work(&perf_sched_work, HZ);
4010 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004011
4012 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07004013
4014 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004015}
4016
Peter Zijlstra9107c892016-02-24 18:45:45 +01004017static void perf_sched_delayed(struct work_struct *work)
4018{
4019 mutex_lock(&perf_sched_mutex);
4020 if (atomic_dec_and_test(&perf_sched_count))
4021 static_branch_disable(&perf_sched_events);
4022 mutex_unlock(&perf_sched_mutex);
4023}
4024
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004025/*
4026 * The following implement mutual exclusion of events on "exclusive" pmus
4027 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4028 * at a time, so we disallow creating events that might conflict, namely:
4029 *
4030 * 1) cpu-wide events in the presence of per-task events,
4031 * 2) per-task events in the presence of cpu-wide events,
4032 * 3) two matching events on the same context.
4033 *
4034 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004035 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004036 */
4037static int exclusive_event_init(struct perf_event *event)
4038{
4039 struct pmu *pmu = event->pmu;
4040
4041 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4042 return 0;
4043
4044 /*
4045 * Prevent co-existence of per-task and cpu-wide events on the
4046 * same exclusive pmu.
4047 *
4048 * Negative pmu::exclusive_cnt means there are cpu-wide
4049 * events on this "exclusive" pmu, positive means there are
4050 * per-task events.
4051 *
4052 * Since this is called in perf_event_alloc() path, event::ctx
4053 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4054 * to mean "per-task event", because unlike other attach states it
4055 * never gets cleared.
4056 */
4057 if (event->attach_state & PERF_ATTACH_TASK) {
4058 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4059 return -EBUSY;
4060 } else {
4061 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4062 return -EBUSY;
4063 }
4064
4065 return 0;
4066}
4067
4068static void exclusive_event_destroy(struct perf_event *event)
4069{
4070 struct pmu *pmu = event->pmu;
4071
4072 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4073 return;
4074
4075 /* see comment in exclusive_event_init() */
4076 if (event->attach_state & PERF_ATTACH_TASK)
4077 atomic_dec(&pmu->exclusive_cnt);
4078 else
4079 atomic_inc(&pmu->exclusive_cnt);
4080}
4081
4082static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4083{
Alexander Shishkin3bf62152016-09-20 18:48:11 +03004084 if ((e1->pmu == e2->pmu) &&
Alexander Shishkinbed5b252015-01-30 12:31:06 +02004085 (e1->cpu == e2->cpu ||
4086 e1->cpu == -1 ||
4087 e2->cpu == -1))
4088 return true;
4089 return false;
4090}
4091
4092/* Called under the same ctx::mutex as perf_install_in_context() */
4093static bool exclusive_event_installable(struct perf_event *event,
4094 struct perf_event_context *ctx)
4095{
4096 struct perf_event *iter_event;
4097 struct pmu *pmu = event->pmu;
4098
4099 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
4100 return true;
4101
4102 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4103 if (exclusive_event_match(iter_event, event))
4104 return false;
4105 }
4106
4107 return true;
4108}
4109
Alexander Shishkin375637b2016-04-27 18:44:46 +03004110static void perf_addr_filters_splice(struct perf_event *event,
4111 struct list_head *head);
4112
Peter Zijlstra683ede42014-05-05 12:11:24 +02004113static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004114{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004115 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004116
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02004117 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004118
Frederic Weisbecker76369132011-05-19 19:55:04 +02004119 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004120 /*
4121 * Can happen when we close an event with re-directed output.
4122 *
4123 * Since we have a 0 refcount, perf_mmap_close() will skip
4124 * over us; possibly making our ring_buffer_put() the last.
4125 */
4126 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004127 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004128 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004129 }
4130
Stephane Eraniane5d13672011-02-14 11:20:01 +02004131 if (is_cgroup_event(event))
4132 perf_detach_cgroup(event);
4133
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004134 if (!event->parent) {
4135 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4136 put_callchain_buffers();
4137 }
4138
4139 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03004140 perf_addr_filters_splice(event, NULL);
4141 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004142
4143 if (event->destroy)
4144 event->destroy(event);
4145
4146 if (event->ctx)
4147 put_ctx(event->ctx);
4148
Alexander Shishkin62a92c82016-06-07 15:44:15 +03004149 exclusive_event_destroy(event);
4150 module_put(event->pmu->module);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01004151
4152 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004153}
4154
Peter Zijlstra683ede42014-05-05 12:11:24 +02004155/*
4156 * Used to free events which have a known refcount of 1, such as in error paths
4157 * where the event isn't exposed yet and inherited events.
4158 */
4159static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004160{
Peter Zijlstra683ede42014-05-05 12:11:24 +02004161 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4162 "unexpected event refcount: %ld; ptr=%p\n",
4163 atomic_long_read(&event->refcount), event)) {
4164 /* leak to avoid use-after-free */
4165 return;
4166 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004167
Peter Zijlstra683ede42014-05-05 12:11:24 +02004168 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004169}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004170
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004171/*
Jiri Olsaf8697762014-08-01 14:33:01 +02004172 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004173 */
Jiri Olsaf8697762014-08-01 14:33:01 +02004174static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004175{
Peter Zijlstra88821352010-11-09 19:01:43 +01004176 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004177
Peter Zijlstra88821352010-11-09 19:01:43 +01004178 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01004179 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004180 * Matches the smp_store_release() in perf_event_exit_task(). If we
4181 * observe !owner it means the list deletion is complete and we can
4182 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01004183 * owner->perf_event_mutex.
4184 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004185 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01004186 if (owner) {
4187 /*
4188 * Since delayed_put_task_struct() also drops the last
4189 * task reference we can safely take a new reference
4190 * while holding the rcu_read_lock().
4191 */
4192 get_task_struct(owner);
4193 }
4194 rcu_read_unlock();
4195
4196 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004197 /*
4198 * If we're here through perf_event_exit_task() we're already
4199 * holding ctx->mutex which would be an inversion wrt. the
4200 * normal lock order.
4201 *
4202 * However we can safely take this lock because its the child
4203 * ctx->mutex.
4204 */
4205 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4206
Peter Zijlstra88821352010-11-09 19:01:43 +01004207 /*
4208 * We have to re-check the event->owner field, if it is cleared
4209 * we raced with perf_event_exit_task(), acquiring the mutex
4210 * ensured they're done, and we can proceed with freeing the
4211 * event.
4212 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004213 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01004214 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01004215 smp_store_release(&event->owner, NULL);
4216 }
Peter Zijlstra88821352010-11-09 19:01:43 +01004217 mutex_unlock(&owner->perf_event_mutex);
4218 put_task_struct(owner);
4219 }
Jiri Olsaf8697762014-08-01 14:33:01 +02004220}
4221
Jiri Olsaf8697762014-08-01 14:33:01 +02004222static void put_event(struct perf_event *event)
4223{
Jiri Olsaf8697762014-08-01 14:33:01 +02004224 if (!atomic_long_dec_and_test(&event->refcount))
4225 return;
4226
Peter Zijlstra683ede42014-05-05 12:11:24 +02004227 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01004228}
4229
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004230/*
4231 * Kill an event dead; while event:refcount will preserve the event
4232 * object, it will not preserve its functionality. Once the last 'user'
4233 * gives up the object, we'll destroy the thing.
4234 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004235int perf_event_release_kernel(struct perf_event *event)
4236{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004237 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004238 struct perf_event *child, *tmp;
4239
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004240 /*
4241 * If we got here through err_file: fput(event_file); we will not have
4242 * attached to a context yet.
4243 */
4244 if (!ctx) {
4245 WARN_ON_ONCE(event->attach_state &
4246 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4247 goto no_ctx;
4248 }
4249
Peter Zijlstra88821352010-11-09 19:01:43 +01004250 if (!is_kernel_event(event))
4251 perf_remove_from_owner(event);
4252
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01004253 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02004254 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004255 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01004256
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004257 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004258 /*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +01004259 * Mark this event as STATE_DEAD, there is no external reference to it
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004260 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004261 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004262 * Anybody acquiring event->child_mutex after the below loop _must_
4263 * also see this, most importantly inherit_event() which will avoid
4264 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004265 *
4266 * Thus this guarantees that we will in fact observe and kill _ALL_
4267 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004268 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004269 event->state = PERF_EVENT_STATE_DEAD;
4270 raw_spin_unlock_irq(&ctx->lock);
4271
4272 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004273
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004274again:
4275 mutex_lock(&event->child_mutex);
4276 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004277
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004278 /*
4279 * Cannot change, child events are not migrated, see the
4280 * comment with perf_event_ctx_lock_nested().
4281 */
4282 ctx = lockless_dereference(child->ctx);
4283 /*
4284 * Since child_mutex nests inside ctx::mutex, we must jump
4285 * through hoops. We start by grabbing a reference on the ctx.
4286 *
4287 * Since the event cannot get freed while we hold the
4288 * child_mutex, the context must also exist and have a !0
4289 * reference count.
4290 */
4291 get_ctx(ctx);
4292
4293 /*
4294 * Now that we have a ctx ref, we can drop child_mutex, and
4295 * acquire ctx::mutex without fear of it going away. Then we
4296 * can re-acquire child_mutex.
4297 */
4298 mutex_unlock(&event->child_mutex);
4299 mutex_lock(&ctx->mutex);
4300 mutex_lock(&event->child_mutex);
4301
4302 /*
4303 * Now that we hold ctx::mutex and child_mutex, revalidate our
4304 * state, if child is still the first entry, it didn't get freed
4305 * and we can continue doing so.
4306 */
4307 tmp = list_first_entry_or_null(&event->child_list,
4308 struct perf_event, child_list);
4309 if (tmp == child) {
4310 perf_remove_from_context(child, DETACH_GROUP);
4311 list_del(&child->child_list);
4312 free_event(child);
4313 /*
4314 * This matches the refcount bump in inherit_event();
4315 * this can't be the last reference.
4316 */
4317 put_event(event);
4318 }
4319
4320 mutex_unlock(&event->child_mutex);
4321 mutex_unlock(&ctx->mutex);
4322 put_ctx(ctx);
4323 goto again;
4324 }
4325 mutex_unlock(&event->child_mutex);
4326
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004327no_ctx:
4328 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004329 return 0;
4330}
4331EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4332
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004333/*
4334 * Called when the last reference to the file is gone.
4335 */
Al Viroa6fa9412012-08-20 14:59:25 +01004336static int perf_release(struct inode *inode, struct file *file)
4337{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004338 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004339 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004340}
4341
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004342u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004343{
4344 struct perf_event *child;
4345 u64 total = 0;
4346
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004347 *enabled = 0;
4348 *running = 0;
4349
Peter Zijlstra6f105812009-11-20 22:19:56 +01004350 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004351
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004352 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004353 total += perf_event_count(event);
4354
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004355 *enabled += event->total_time_enabled +
4356 atomic64_read(&event->child_total_time_enabled);
4357 *running += event->total_time_running +
4358 atomic64_read(&event->child_total_time_running);
4359
4360 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004361 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004362 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004363 *enabled += child->total_time_enabled;
4364 *running += child->total_time_running;
4365 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004366 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004367
4368 return total;
4369}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004370EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004371
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004372static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004373 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004374{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004375 struct perf_event *sub;
4376 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004377 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004378
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004379 ret = perf_event_read(leader, true);
4380 if (ret)
4381 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004382
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004383 /*
4384 * Since we co-schedule groups, {enabled,running} times of siblings
4385 * will be identical to those of the leader, so we only publish one
4386 * set.
4387 */
4388 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4389 values[n++] += leader->total_time_enabled +
4390 atomic64_read(&leader->child_total_time_enabled);
4391 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004392
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004393 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4394 values[n++] += leader->total_time_running +
4395 atomic64_read(&leader->child_total_time_running);
4396 }
4397
4398 /*
4399 * Write {count,id} tuples for every sibling.
4400 */
4401 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004402 if (read_format & PERF_FORMAT_ID)
4403 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004404
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004405 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004406 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004407 if (read_format & PERF_FORMAT_ID)
4408 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004409 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004410
4411 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004412}
4413
4414static int perf_read_group(struct perf_event *event,
4415 u64 read_format, char __user *buf)
4416{
4417 struct perf_event *leader = event->group_leader, *child;
4418 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004419 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004420 u64 *values;
4421
4422 lockdep_assert_held(&ctx->mutex);
4423
4424 values = kzalloc(event->read_size, GFP_KERNEL);
4425 if (!values)
4426 return -ENOMEM;
4427
4428 values[0] = 1 + leader->nr_siblings;
4429
4430 /*
4431 * By locking the child_mutex of the leader we effectively
4432 * lock the child list of all siblings.. XXX explain how.
4433 */
4434 mutex_lock(&leader->child_mutex);
4435
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004436 ret = __perf_read_group_add(leader, read_format, values);
4437 if (ret)
4438 goto unlock;
4439
4440 list_for_each_entry(child, &leader->child_list, child_list) {
4441 ret = __perf_read_group_add(child, read_format, values);
4442 if (ret)
4443 goto unlock;
4444 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004445
4446 mutex_unlock(&leader->child_mutex);
4447
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004448 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004449 if (copy_to_user(buf, values, event->read_size))
4450 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004451 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004452
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004453unlock:
4454 mutex_unlock(&leader->child_mutex);
4455out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004456 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004457 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004458}
4459
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004460static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004461 u64 read_format, char __user *buf)
4462{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004463 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004464 u64 values[4];
4465 int n = 0;
4466
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004467 values[n++] = perf_event_read_value(event, &enabled, &running);
4468 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4469 values[n++] = enabled;
4470 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4471 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472 if (read_format & PERF_FORMAT_ID)
4473 values[n++] = primary_event_id(event);
4474
4475 if (copy_to_user(buf, values, n * sizeof(u64)))
4476 return -EFAULT;
4477
4478 return n * sizeof(u64);
4479}
4480
Jiri Olsadc633982014-09-12 13:18:26 +02004481static bool is_event_hup(struct perf_event *event)
4482{
4483 bool no_children;
4484
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004485 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004486 return false;
4487
4488 mutex_lock(&event->child_mutex);
4489 no_children = list_empty(&event->child_list);
4490 mutex_unlock(&event->child_mutex);
4491 return no_children;
4492}
4493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004494/*
4495 * Read the performance event - simple non blocking version for now
4496 */
4497static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004498__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004499{
4500 u64 read_format = event->attr.read_format;
4501 int ret;
4502
4503 /*
4504 * Return end-of-file for a read on a event that is in
4505 * error state (i.e. because it was pinned but it couldn't be
4506 * scheduled on to the CPU at some point).
4507 */
4508 if (event->state == PERF_EVENT_STATE_ERROR)
4509 return 0;
4510
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004511 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004512 return -ENOSPC;
4513
4514 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004515 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004516 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004517 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004518 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004519
4520 return ret;
4521}
4522
4523static ssize_t
4524perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4525{
4526 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004527 struct perf_event_context *ctx;
4528 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004529
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004530 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004531 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004532 perf_event_ctx_unlock(event, ctx);
4533
4534 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535}
4536
4537static unsigned int perf_poll(struct file *file, poll_table *wait)
4538{
4539 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004540 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004541 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004542
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004543 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004544
Jiri Olsadc633982014-09-12 13:18:26 +02004545 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004546 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004547
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004548 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004549 * Pin the event->rb by taking event->mmap_mutex; otherwise
4550 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004551 */
4552 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004553 rb = event->rb;
4554 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004555 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004556 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004557 return events;
4558}
4559
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004560static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004561{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004562 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004563 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004564 perf_event_update_userpage(event);
4565}
4566
4567/*
4568 * Holding the top-level event's child_mutex means that any
4569 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004570 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004571 * task existence requirements of perf_event_enable/disable.
4572 */
4573static void perf_event_for_each_child(struct perf_event *event,
4574 void (*func)(struct perf_event *))
4575{
4576 struct perf_event *child;
4577
4578 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004579
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004580 mutex_lock(&event->child_mutex);
4581 func(event);
4582 list_for_each_entry(child, &event->child_list, child_list)
4583 func(child);
4584 mutex_unlock(&event->child_mutex);
4585}
4586
4587static void perf_event_for_each(struct perf_event *event,
4588 void (*func)(struct perf_event *))
4589{
4590 struct perf_event_context *ctx = event->ctx;
4591 struct perf_event *sibling;
4592
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004593 lockdep_assert_held(&ctx->mutex);
4594
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004595 event = event->group_leader;
4596
4597 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004598 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004599 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004600}
4601
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004602static void __perf_event_period(struct perf_event *event,
4603 struct perf_cpu_context *cpuctx,
4604 struct perf_event_context *ctx,
4605 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004606{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004607 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004608 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004610 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004611 event->attr.sample_freq = value;
4612 } else {
4613 event->attr.sample_period = value;
4614 event->hw.sample_period = value;
4615 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004616
4617 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4618 if (active) {
4619 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004620 /*
4621 * We could be throttled; unthrottle now to avoid the tick
4622 * trying to unthrottle while we already re-started the event.
4623 */
4624 if (event->hw.interrupts == MAX_INTERRUPTS) {
4625 event->hw.interrupts = 0;
4626 perf_log_throttle(event, 1);
4627 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004628 event->pmu->stop(event, PERF_EF_UPDATE);
4629 }
4630
4631 local64_set(&event->hw.period_left, 0);
4632
4633 if (active) {
4634 event->pmu->start(event, PERF_EF_RELOAD);
4635 perf_pmu_enable(ctx->pmu);
4636 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004637}
4638
4639static int perf_event_period(struct perf_event *event, u64 __user *arg)
4640{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004641 u64 value;
4642
4643 if (!is_sampling_event(event))
4644 return -EINVAL;
4645
4646 if (copy_from_user(&value, arg, sizeof(value)))
4647 return -EFAULT;
4648
4649 if (!value)
4650 return -EINVAL;
4651
4652 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4653 return -EINVAL;
4654
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004655 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004657 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004658}
4659
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004660static const struct file_operations perf_fops;
4661
Al Viro2903ff02012-08-28 12:52:22 -04004662static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004663{
Al Viro2903ff02012-08-28 12:52:22 -04004664 struct fd f = fdget(fd);
4665 if (!f.file)
4666 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004667
Al Viro2903ff02012-08-28 12:52:22 -04004668 if (f.file->f_op != &perf_fops) {
4669 fdput(f);
4670 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004671 }
Al Viro2903ff02012-08-28 12:52:22 -04004672 *p = f;
4673 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004674}
4675
4676static int perf_event_set_output(struct perf_event *event,
4677 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004678static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004679static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004680
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004681static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004682{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004683 void (*func)(struct perf_event *);
4684 u32 flags = arg;
4685
4686 switch (cmd) {
4687 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004688 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004689 break;
4690 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004691 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004692 break;
4693 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004694 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004695 break;
4696
4697 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004698 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004699
4700 case PERF_EVENT_IOC_PERIOD:
4701 return perf_event_period(event, (u64 __user *)arg);
4702
Jiri Olsacf4957f2012-10-24 13:37:58 +02004703 case PERF_EVENT_IOC_ID:
4704 {
4705 u64 id = primary_event_id(event);
4706
4707 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4708 return -EFAULT;
4709 return 0;
4710 }
4711
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004712 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004713 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004714 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004715 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004716 struct perf_event *output_event;
4717 struct fd output;
4718 ret = perf_fget_light(arg, &output);
4719 if (ret)
4720 return ret;
4721 output_event = output.file->private_data;
4722 ret = perf_event_set_output(event, output_event);
4723 fdput(output);
4724 } else {
4725 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004726 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004727 return ret;
4728 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729
Li Zefan6fb29152009-10-15 11:21:42 +08004730 case PERF_EVENT_IOC_SET_FILTER:
4731 return perf_event_set_filter(event, (void __user *)arg);
4732
Alexei Starovoitov25415172015-03-25 12:49:20 -07004733 case PERF_EVENT_IOC_SET_BPF:
4734 return perf_event_set_bpf_prog(event, arg);
4735
Wang Nan86e79722016-03-28 06:41:29 +00004736 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4737 struct ring_buffer *rb;
4738
4739 rcu_read_lock();
4740 rb = rcu_dereference(event->rb);
4741 if (!rb || !rb->nr_pages) {
4742 rcu_read_unlock();
4743 return -EINVAL;
4744 }
4745 rb_toggle_paused(rb, !!arg);
4746 rcu_read_unlock();
4747 return 0;
4748 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004749 default:
4750 return -ENOTTY;
4751 }
4752
4753 if (flags & PERF_IOC_FLAG_GROUP)
4754 perf_event_for_each(event, func);
4755 else
4756 perf_event_for_each_child(event, func);
4757
4758 return 0;
4759}
4760
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004761static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4762{
4763 struct perf_event *event = file->private_data;
4764 struct perf_event_context *ctx;
4765 long ret;
4766
4767 ctx = perf_event_ctx_lock(event);
4768 ret = _perf_ioctl(event, cmd, arg);
4769 perf_event_ctx_unlock(event, ctx);
4770
4771 return ret;
4772}
4773
Pawel Mollb3f20782014-06-13 16:03:32 +01004774#ifdef CONFIG_COMPAT
4775static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4776 unsigned long arg)
4777{
4778 switch (_IOC_NR(cmd)) {
4779 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4780 case _IOC_NR(PERF_EVENT_IOC_ID):
4781 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4782 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4783 cmd &= ~IOCSIZE_MASK;
4784 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4785 }
4786 break;
4787 }
4788 return perf_ioctl(file, cmd, arg);
4789}
4790#else
4791# define perf_compat_ioctl NULL
4792#endif
4793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004794int perf_event_task_enable(void)
4795{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004796 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004797 struct perf_event *event;
4798
4799 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004800 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4801 ctx = perf_event_ctx_lock(event);
4802 perf_event_for_each_child(event, _perf_event_enable);
4803 perf_event_ctx_unlock(event, ctx);
4804 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004805 mutex_unlock(&current->perf_event_mutex);
4806
4807 return 0;
4808}
4809
4810int perf_event_task_disable(void)
4811{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004812 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004813 struct perf_event *event;
4814
4815 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004816 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4817 ctx = perf_event_ctx_lock(event);
4818 perf_event_for_each_child(event, _perf_event_disable);
4819 perf_event_ctx_unlock(event, ctx);
4820 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004821 mutex_unlock(&current->perf_event_mutex);
4822
4823 return 0;
4824}
4825
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004826static int perf_event_index(struct perf_event *event)
4827{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004828 if (event->hw.state & PERF_HES_STOPPED)
4829 return 0;
4830
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004831 if (event->state != PERF_EVENT_STATE_ACTIVE)
4832 return 0;
4833
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004834 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004835}
4836
Eric B Munsonc4794292011-06-23 16:34:38 -04004837static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004838 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004839 u64 *enabled,
4840 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004841{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004842 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004843
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004844 *now = perf_clock();
4845 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004846 *enabled = ctx_time - event->tstamp_enabled;
4847 *running = ctx_time - event->tstamp_running;
4848}
4849
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004850static void perf_event_init_userpage(struct perf_event *event)
4851{
4852 struct perf_event_mmap_page *userpg;
4853 struct ring_buffer *rb;
4854
4855 rcu_read_lock();
4856 rb = rcu_dereference(event->rb);
4857 if (!rb)
4858 goto unlock;
4859
4860 userpg = rb->user_page;
4861
4862 /* Allow new userspace to detect that bit 0 is deprecated */
4863 userpg->cap_bit0_is_deprecated = 1;
4864 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004865 userpg->data_offset = PAGE_SIZE;
4866 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004867
4868unlock:
4869 rcu_read_unlock();
4870}
4871
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004872void __weak arch_perf_update_userpage(
4873 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004874{
4875}
4876
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004877/*
4878 * Callers need to ensure there can be no nesting of this function, otherwise
4879 * the seqlock logic goes bad. We can not serialize this because the arch
4880 * code calls this from NMI context.
4881 */
4882void perf_event_update_userpage(struct perf_event *event)
4883{
4884 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004885 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004886 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004887
4888 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004889 rb = rcu_dereference(event->rb);
4890 if (!rb)
4891 goto unlock;
4892
Eric B Munson0d641202011-06-24 12:26:26 -04004893 /*
4894 * compute total_time_enabled, total_time_running
4895 * based on snapshot values taken when the event
4896 * was last scheduled in.
4897 *
4898 * we cannot simply called update_context_time()
4899 * because of locking issue as we can be called in
4900 * NMI context
4901 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004902 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004903
Frederic Weisbecker76369132011-05-19 19:55:04 +02004904 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004905 /*
4906 * Disable preemption so as to not let the corresponding user-space
4907 * spin too long if we get preempted.
4908 */
4909 preempt_disable();
4910 ++userpg->lock;
4911 barrier();
4912 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004913 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004914 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004915 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004916
Eric B Munson0d641202011-06-24 12:26:26 -04004917 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004918 atomic64_read(&event->child_total_time_enabled);
4919
Eric B Munson0d641202011-06-24 12:26:26 -04004920 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004921 atomic64_read(&event->child_total_time_running);
4922
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004923 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004924
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004925 barrier();
4926 ++userpg->lock;
4927 preempt_enable();
4928unlock:
4929 rcu_read_unlock();
4930}
4931
Dave Jiang11bac802017-02-24 14:56:41 -08004932static int perf_mmap_fault(struct vm_fault *vmf)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004933{
Dave Jiang11bac802017-02-24 14:56:41 -08004934 struct perf_event *event = vmf->vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004935 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004936 int ret = VM_FAULT_SIGBUS;
4937
4938 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4939 if (vmf->pgoff == 0)
4940 ret = 0;
4941 return ret;
4942 }
4943
4944 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004945 rb = rcu_dereference(event->rb);
4946 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004947 goto unlock;
4948
4949 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4950 goto unlock;
4951
Frederic Weisbecker76369132011-05-19 19:55:04 +02004952 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004953 if (!vmf->page)
4954 goto unlock;
4955
4956 get_page(vmf->page);
Dave Jiang11bac802017-02-24 14:56:41 -08004957 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004958 vmf->page->index = vmf->pgoff;
4959
4960 ret = 0;
4961unlock:
4962 rcu_read_unlock();
4963
4964 return ret;
4965}
4966
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004967static void ring_buffer_attach(struct perf_event *event,
4968 struct ring_buffer *rb)
4969{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004970 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004971 unsigned long flags;
4972
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004973 if (event->rb) {
4974 /*
4975 * Should be impossible, we set this when removing
4976 * event->rb_entry and wait/clear when adding event->rb_entry.
4977 */
4978 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004979
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004980 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004981 spin_lock_irqsave(&old_rb->event_lock, flags);
4982 list_del_rcu(&event->rb_entry);
4983 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004984
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004985 event->rcu_batches = get_state_synchronize_rcu();
4986 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004987 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004988
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004989 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004990 if (event->rcu_pending) {
4991 cond_synchronize_rcu(event->rcu_batches);
4992 event->rcu_pending = 0;
4993 }
4994
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004995 spin_lock_irqsave(&rb->event_lock, flags);
4996 list_add_rcu(&event->rb_entry, &rb->event_list);
4997 spin_unlock_irqrestore(&rb->event_lock, flags);
4998 }
4999
Alexander Shishkin767ae082016-09-06 16:23:49 +03005000 /*
5001 * Avoid racing with perf_mmap_close(AUX): stop the event
5002 * before swizzling the event::rb pointer; if it's getting
5003 * unmapped, its aux_mmap_count will be 0 and it won't
5004 * restart. See the comment in __perf_pmu_output_stop().
5005 *
5006 * Data will inevitably be lost when set_output is done in
5007 * mid-air, but then again, whoever does it like this is
5008 * not in for the data anyway.
5009 */
5010 if (has_aux(event))
5011 perf_event_stop(event, 0);
5012
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005013 rcu_assign_pointer(event->rb, rb);
5014
5015 if (old_rb) {
5016 ring_buffer_put(old_rb);
5017 /*
5018 * Since we detached before setting the new rb, so that we
5019 * could attach the new rb, we could have missed a wakeup.
5020 * Provide it now.
5021 */
5022 wake_up_all(&event->waitq);
5023 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005024}
5025
5026static void ring_buffer_wakeup(struct perf_event *event)
5027{
5028 struct ring_buffer *rb;
5029
5030 rcu_read_lock();
5031 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005032 if (rb) {
5033 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5034 wake_up_all(&event->waitq);
5035 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005036 rcu_read_unlock();
5037}
5038
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005039struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005040{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005041 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005042
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005043 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02005044 rb = rcu_dereference(event->rb);
5045 if (rb) {
5046 if (!atomic_inc_not_zero(&rb->refcount))
5047 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005048 }
5049 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005050
Frederic Weisbecker76369132011-05-19 19:55:04 +02005051 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005052}
5053
Alexander Shishkinfdc26702015-01-14 14:18:16 +02005054void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005055{
Frederic Weisbecker76369132011-05-19 19:55:04 +02005056 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005057 return;
5058
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005059 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005060
Frederic Weisbecker76369132011-05-19 19:55:04 +02005061 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005062}
5063
5064static void perf_mmap_open(struct vm_area_struct *vma)
5065{
5066 struct perf_event *event = vma->vm_file->private_data;
5067
5068 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005069 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005070
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005071 if (vma->vm_pgoff)
5072 atomic_inc(&event->rb->aux_mmap_count);
5073
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005074 if (event->pmu->event_mapped)
5075 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005076}
5077
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005078static void perf_pmu_output_stop(struct perf_event *event);
5079
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005080/*
5081 * A buffer can be mmap()ed multiple times; either directly through the same
5082 * event, or through other events by use of perf_event_set_output().
5083 *
5084 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5085 * the buffer here, where we still have a VM context. This means we need
5086 * to detach all events redirecting to us.
5087 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005088static void perf_mmap_close(struct vm_area_struct *vma)
5089{
5090 struct perf_event *event = vma->vm_file->private_data;
5091
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005092 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005093 struct user_struct *mmap_user = rb->mmap_user;
5094 int mmap_locked = rb->mmap_locked;
5095 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005097 if (event->pmu->event_unmapped)
5098 event->pmu->event_unmapped(event);
5099
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005100 /*
5101 * rb->aux_mmap_count will always drop before rb->mmap_count and
5102 * event->mmap_count, so it is ok to use event->mmap_mutex to
5103 * serialize with perf_mmap here.
5104 */
5105 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5106 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005107 /*
5108 * Stop all AUX events that are writing to this buffer,
5109 * so that we can free its AUX pages and corresponding PMU
5110 * data. Note that after rb::aux_mmap_count dropped to zero,
5111 * they won't start any more (see perf_aux_output_begin()).
5112 */
5113 perf_pmu_output_stop(event);
5114
5115 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005116 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
5117 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
5118
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005119 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005120 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02005121 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
5122
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005123 mutex_unlock(&event->mmap_mutex);
5124 }
5125
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005126 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005127
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005128 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005129 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005130
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005131 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005132 mutex_unlock(&event->mmap_mutex);
5133
5134 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005135 if (atomic_read(&rb->mmap_count))
5136 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005137
5138 /*
5139 * No other mmap()s, detach from all other events that might redirect
5140 * into the now unreachable buffer. Somewhat complicated by the
5141 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5142 */
5143again:
5144 rcu_read_lock();
5145 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5146 if (!atomic_long_inc_not_zero(&event->refcount)) {
5147 /*
5148 * This event is en-route to free_event() which will
5149 * detach it and remove it from the list.
5150 */
5151 continue;
5152 }
5153 rcu_read_unlock();
5154
5155 mutex_lock(&event->mmap_mutex);
5156 /*
5157 * Check we didn't race with perf_event_set_output() which can
5158 * swizzle the rb from under us while we were waiting to
5159 * acquire mmap_mutex.
5160 *
5161 * If we find a different rb; ignore this event, a next
5162 * iteration will no longer find it on the list. We have to
5163 * still restart the iteration to make sure we're not now
5164 * iterating the wrong list.
5165 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005166 if (event->rb == rb)
5167 ring_buffer_attach(event, NULL);
5168
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005169 mutex_unlock(&event->mmap_mutex);
5170 put_event(event);
5171
5172 /*
5173 * Restart the iteration; either we're on the wrong list or
5174 * destroyed its integrity by doing a deletion.
5175 */
5176 goto again;
5177 }
5178 rcu_read_unlock();
5179
5180 /*
5181 * It could be there's still a few 0-ref events on the list; they'll
5182 * get cleaned up by free_event() -- they'll also still have their
5183 * ref on the rb and will free it whenever they are done with it.
5184 *
5185 * Aside from that, this buffer is 'fully' detached and unmapped,
5186 * undo the VM accounting.
5187 */
5188
5189 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
5190 vma->vm_mm->pinned_vm -= mmap_locked;
5191 free_uid(mmap_user);
5192
Peter Zijlstrab69cf532014-03-14 10:50:33 +01005193out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005194 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005195}
5196
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04005197static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005198 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005199 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005200 .fault = perf_mmap_fault,
5201 .page_mkwrite = perf_mmap_fault,
5202};
5203
5204static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5205{
5206 struct perf_event *event = file->private_data;
5207 unsigned long user_locked, user_lock_limit;
5208 struct user_struct *user = current_user();
5209 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005210 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005211 unsigned long vma_size;
5212 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005213 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005214 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005215
Peter Zijlstrac7920612010-05-18 10:33:24 +02005216 /*
5217 * Don't allow mmap() of inherited per-task counters. This would
5218 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02005219 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02005220 */
5221 if (event->cpu == -1 && event->attr.inherit)
5222 return -EINVAL;
5223
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005224 if (!(vma->vm_flags & VM_SHARED))
5225 return -EINVAL;
5226
5227 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005228
5229 if (vma->vm_pgoff == 0) {
5230 nr_pages = (vma_size / PAGE_SIZE) - 1;
5231 } else {
5232 /*
5233 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5234 * mapped, all subsequent mappings should have the same size
5235 * and offset. Must be above the normal perf buffer.
5236 */
5237 u64 aux_offset, aux_size;
5238
5239 if (!event->rb)
5240 return -EINVAL;
5241
5242 nr_pages = vma_size / PAGE_SIZE;
5243
5244 mutex_lock(&event->mmap_mutex);
5245 ret = -EINVAL;
5246
5247 rb = event->rb;
5248 if (!rb)
5249 goto aux_unlock;
5250
5251 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
5252 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
5253
5254 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
5255 goto aux_unlock;
5256
5257 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
5258 goto aux_unlock;
5259
5260 /* already mapped with a different offset */
5261 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
5262 goto aux_unlock;
5263
5264 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
5265 goto aux_unlock;
5266
5267 /* already mapped with a different size */
5268 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
5269 goto aux_unlock;
5270
5271 if (!is_power_of_2(nr_pages))
5272 goto aux_unlock;
5273
5274 if (!atomic_inc_not_zero(&rb->mmap_count))
5275 goto aux_unlock;
5276
5277 if (rb_has_aux(rb)) {
5278 atomic_inc(&rb->aux_mmap_count);
5279 ret = 0;
5280 goto unlock;
5281 }
5282
5283 atomic_set(&rb->aux_mmap_count, 1);
5284 user_extra = nr_pages;
5285
5286 goto accounting;
5287 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288
5289 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005290 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005291 * can do bitmasks instead of modulo.
5292 */
Kan Liang2ed11312015-03-02 02:14:26 -05005293 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005294 return -EINVAL;
5295
5296 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5297 return -EINVAL;
5298
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005299 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005300again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005301 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005302 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005303 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005304 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005305 goto unlock;
5306 }
5307
5308 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5309 /*
5310 * Raced against perf_mmap_close() through
5311 * perf_event_set_output(). Try again, hope for better
5312 * luck.
5313 */
5314 mutex_unlock(&event->mmap_mutex);
5315 goto again;
5316 }
5317
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005318 goto unlock;
5319 }
5320
5321 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005322
5323accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005324 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5325
5326 /*
5327 * Increase the limit linearly with more CPUs:
5328 */
5329 user_lock_limit *= num_online_cpus();
5330
5331 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5332
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005333 if (user_locked > user_lock_limit)
5334 extra = user_locked - user_lock_limit;
5335
Jiri Slaby78d7d402010-03-05 13:42:54 -08005336 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005337 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005338 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005339
5340 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5341 !capable(CAP_IPC_LOCK)) {
5342 ret = -EPERM;
5343 goto unlock;
5344 }
5345
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005346 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005347
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005348 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005349 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005350
Frederic Weisbecker76369132011-05-19 19:55:04 +02005351 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005352 rb = rb_alloc(nr_pages,
5353 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5354 event->cpu, flags);
5355
5356 if (!rb) {
5357 ret = -ENOMEM;
5358 goto unlock;
5359 }
5360
5361 atomic_set(&rb->mmap_count, 1);
5362 rb->mmap_user = get_current_user();
5363 rb->mmap_locked = extra;
5364
5365 ring_buffer_attach(event, rb);
5366
5367 perf_event_init_userpage(event);
5368 perf_event_update_userpage(event);
5369 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005370 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5371 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005372 if (!ret)
5373 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005374 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005375
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005376unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005377 if (!ret) {
5378 atomic_long_add(user_extra, &user->locked_vm);
5379 vma->vm_mm->pinned_vm += extra;
5380
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005381 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005382 } else if (rb) {
5383 atomic_dec(&rb->mmap_count);
5384 }
5385aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005386 mutex_unlock(&event->mmap_mutex);
5387
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005388 /*
5389 * Since pinned accounting is per vm we cannot allow fork() to copy our
5390 * vma.
5391 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005392 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005393 vma->vm_ops = &perf_mmap_vmops;
5394
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005395 if (event->pmu->event_mapped)
5396 event->pmu->event_mapped(event);
5397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005398 return ret;
5399}
5400
5401static int perf_fasync(int fd, struct file *filp, int on)
5402{
Al Viro496ad9a2013-01-23 17:07:38 -05005403 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404 struct perf_event *event = filp->private_data;
5405 int retval;
5406
Al Viro59551022016-01-22 15:40:57 -05005407 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005409 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005410
5411 if (retval < 0)
5412 return retval;
5413
5414 return 0;
5415}
5416
5417static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005418 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005419 .release = perf_release,
5420 .read = perf_read,
5421 .poll = perf_poll,
5422 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005423 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005424 .mmap = perf_mmap,
5425 .fasync = perf_fasync,
5426};
5427
5428/*
5429 * Perf event wakeup
5430 *
5431 * If there's data, ensure we set the poll() state and publish everything
5432 * to user-space before waking everybody up.
5433 */
5434
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005435static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5436{
5437 /* only the parent has fasync state */
5438 if (event->parent)
5439 event = event->parent;
5440 return &event->fasync;
5441}
5442
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005443void perf_event_wakeup(struct perf_event *event)
5444{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005445 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005446
5447 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005448 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005449 event->pending_kill = 0;
5450 }
5451}
5452
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005453static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005454{
5455 struct perf_event *event = container_of(entry,
5456 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005457 int rctx;
5458
5459 rctx = perf_swevent_get_recursion_context();
5460 /*
5461 * If we 'fail' here, that's OK, it means recursion is already disabled
5462 * and we won't recurse 'further'.
5463 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005464
5465 if (event->pending_disable) {
5466 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005467 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005468 }
5469
5470 if (event->pending_wakeup) {
5471 event->pending_wakeup = 0;
5472 perf_event_wakeup(event);
5473 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005474
5475 if (rctx >= 0)
5476 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005477}
5478
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005479/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005480 * We assume there is only KVM supporting the callbacks.
5481 * Later on, we might change it to a list if there is
5482 * another virtualization implementation supporting the callbacks.
5483 */
5484struct perf_guest_info_callbacks *perf_guest_cbs;
5485
5486int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5487{
5488 perf_guest_cbs = cbs;
5489 return 0;
5490}
5491EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5492
5493int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5494{
5495 perf_guest_cbs = NULL;
5496 return 0;
5497}
5498EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5499
Jiri Olsa40189942012-08-07 15:20:37 +02005500static void
5501perf_output_sample_regs(struct perf_output_handle *handle,
5502 struct pt_regs *regs, u64 mask)
5503{
5504 int bit;
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305505 DECLARE_BITMAP(_mask, 64);
Jiri Olsa40189942012-08-07 15:20:37 +02005506
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +05305507 bitmap_from_u64(_mask, mask);
5508 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
Jiri Olsa40189942012-08-07 15:20:37 +02005509 u64 val;
5510
5511 val = perf_reg_value(regs, bit);
5512 perf_output_put(handle, val);
5513 }
5514}
5515
Stephane Eranian60e23642014-09-24 13:48:37 +02005516static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005517 struct pt_regs *regs,
5518 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005519{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005520 if (user_mode(regs)) {
5521 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005522 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005523 } else if (current->mm) {
5524 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005525 } else {
5526 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5527 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005528 }
5529}
5530
Stephane Eranian60e23642014-09-24 13:48:37 +02005531static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5532 struct pt_regs *regs)
5533{
5534 regs_intr->regs = regs;
5535 regs_intr->abi = perf_reg_abi(current);
5536}
5537
5538
Jiri Olsac5ebced2012-08-07 15:20:40 +02005539/*
5540 * Get remaining task size from user stack pointer.
5541 *
5542 * It'd be better to take stack vma map and limit this more
5543 * precisly, but there's no way to get it safely under interrupt,
5544 * so using TASK_SIZE as limit.
5545 */
5546static u64 perf_ustack_task_size(struct pt_regs *regs)
5547{
5548 unsigned long addr = perf_user_stack_pointer(regs);
5549
5550 if (!addr || addr >= TASK_SIZE)
5551 return 0;
5552
5553 return TASK_SIZE - addr;
5554}
5555
5556static u16
5557perf_sample_ustack_size(u16 stack_size, u16 header_size,
5558 struct pt_regs *regs)
5559{
5560 u64 task_size;
5561
5562 /* No regs, no stack pointer, no dump. */
5563 if (!regs)
5564 return 0;
5565
5566 /*
5567 * Check if we fit in with the requested stack size into the:
5568 * - TASK_SIZE
5569 * If we don't, we limit the size to the TASK_SIZE.
5570 *
5571 * - remaining sample size
5572 * If we don't, we customize the stack size to
5573 * fit in to the remaining sample size.
5574 */
5575
5576 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5577 stack_size = min(stack_size, (u16) task_size);
5578
5579 /* Current header size plus static size and dynamic size. */
5580 header_size += 2 * sizeof(u64);
5581
5582 /* Do we fit in with the current stack dump size? */
5583 if ((u16) (header_size + stack_size) < header_size) {
5584 /*
5585 * If we overflow the maximum size for the sample,
5586 * we customize the stack dump size to fit in.
5587 */
5588 stack_size = USHRT_MAX - header_size - sizeof(u64);
5589 stack_size = round_up(stack_size, sizeof(u64));
5590 }
5591
5592 return stack_size;
5593}
5594
5595static void
5596perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5597 struct pt_regs *regs)
5598{
5599 /* Case of a kernel thread, nothing to dump */
5600 if (!regs) {
5601 u64 size = 0;
5602 perf_output_put(handle, size);
5603 } else {
5604 unsigned long sp;
5605 unsigned int rem;
5606 u64 dyn_size;
5607
5608 /*
5609 * We dump:
5610 * static size
5611 * - the size requested by user or the best one we can fit
5612 * in to the sample max size
5613 * data
5614 * - user stack dump data
5615 * dynamic size
5616 * - the actual dumped size
5617 */
5618
5619 /* Static size. */
5620 perf_output_put(handle, dump_size);
5621
5622 /* Data. */
5623 sp = perf_user_stack_pointer(regs);
5624 rem = __output_copy_user(handle, (void *) sp, dump_size);
5625 dyn_size = dump_size - rem;
5626
5627 perf_output_skip(handle, rem);
5628
5629 /* Dynamic size. */
5630 perf_output_put(handle, dyn_size);
5631 }
5632}
5633
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005634static void __perf_event_header__init_id(struct perf_event_header *header,
5635 struct perf_sample_data *data,
5636 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005637{
5638 u64 sample_type = event->attr.sample_type;
5639
5640 data->type = sample_type;
5641 header->size += event->id_header_size;
5642
5643 if (sample_type & PERF_SAMPLE_TID) {
5644 /* namespace issues */
5645 data->tid_entry.pid = perf_event_pid(event, current);
5646 data->tid_entry.tid = perf_event_tid(event, current);
5647 }
5648
5649 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005650 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005651
Adrian Hunterff3d5272013-08-27 11:23:07 +03005652 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005653 data->id = primary_event_id(event);
5654
5655 if (sample_type & PERF_SAMPLE_STREAM_ID)
5656 data->stream_id = event->id;
5657
5658 if (sample_type & PERF_SAMPLE_CPU) {
5659 data->cpu_entry.cpu = raw_smp_processor_id();
5660 data->cpu_entry.reserved = 0;
5661 }
5662}
5663
Frederic Weisbecker76369132011-05-19 19:55:04 +02005664void perf_event_header__init_id(struct perf_event_header *header,
5665 struct perf_sample_data *data,
5666 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005667{
5668 if (event->attr.sample_id_all)
5669 __perf_event_header__init_id(header, data, event);
5670}
5671
5672static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5673 struct perf_sample_data *data)
5674{
5675 u64 sample_type = data->type;
5676
5677 if (sample_type & PERF_SAMPLE_TID)
5678 perf_output_put(handle, data->tid_entry);
5679
5680 if (sample_type & PERF_SAMPLE_TIME)
5681 perf_output_put(handle, data->time);
5682
5683 if (sample_type & PERF_SAMPLE_ID)
5684 perf_output_put(handle, data->id);
5685
5686 if (sample_type & PERF_SAMPLE_STREAM_ID)
5687 perf_output_put(handle, data->stream_id);
5688
5689 if (sample_type & PERF_SAMPLE_CPU)
5690 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005691
5692 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5693 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005694}
5695
Frederic Weisbecker76369132011-05-19 19:55:04 +02005696void perf_event__output_id_sample(struct perf_event *event,
5697 struct perf_output_handle *handle,
5698 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005699{
5700 if (event->attr.sample_id_all)
5701 __perf_event__output_id_sample(handle, sample);
5702}
5703
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005704static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005705 struct perf_event *event,
5706 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707{
5708 u64 read_format = event->attr.read_format;
5709 u64 values[4];
5710 int n = 0;
5711
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005712 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005713 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005714 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005715 atomic64_read(&event->child_total_time_enabled);
5716 }
5717 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005718 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005719 atomic64_read(&event->child_total_time_running);
5720 }
5721 if (read_format & PERF_FORMAT_ID)
5722 values[n++] = primary_event_id(event);
5723
Frederic Weisbecker76369132011-05-19 19:55:04 +02005724 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005725}
5726
5727/*
5728 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5729 */
5730static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005731 struct perf_event *event,
5732 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005733{
5734 struct perf_event *leader = event->group_leader, *sub;
5735 u64 read_format = event->attr.read_format;
5736 u64 values[5];
5737 int n = 0;
5738
5739 values[n++] = 1 + leader->nr_siblings;
5740
5741 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005742 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005743
5744 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005745 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005746
5747 if (leader != event)
5748 leader->pmu->read(leader);
5749
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005750 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005751 if (read_format & PERF_FORMAT_ID)
5752 values[n++] = primary_event_id(leader);
5753
Frederic Weisbecker76369132011-05-19 19:55:04 +02005754 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005755
5756 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5757 n = 0;
5758
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005759 if ((sub != event) &&
5760 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005761 sub->pmu->read(sub);
5762
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005763 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005764 if (read_format & PERF_FORMAT_ID)
5765 values[n++] = primary_event_id(sub);
5766
Frederic Weisbecker76369132011-05-19 19:55:04 +02005767 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005768 }
5769}
5770
Stephane Eranianeed01522010-10-26 16:08:01 +02005771#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5772 PERF_FORMAT_TOTAL_TIME_RUNNING)
5773
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005774static void perf_output_read(struct perf_output_handle *handle,
5775 struct perf_event *event)
5776{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005777 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005778 u64 read_format = event->attr.read_format;
5779
5780 /*
5781 * compute total_time_enabled, total_time_running
5782 * based on snapshot values taken when the event
5783 * was last scheduled in.
5784 *
5785 * we cannot simply called update_context_time()
5786 * because of locking issue as we are called in
5787 * NMI context
5788 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005789 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005790 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005791
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005792 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005793 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005795 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005796}
5797
5798void perf_output_sample(struct perf_output_handle *handle,
5799 struct perf_event_header *header,
5800 struct perf_sample_data *data,
5801 struct perf_event *event)
5802{
5803 u64 sample_type = data->type;
5804
5805 perf_output_put(handle, *header);
5806
Adrian Hunterff3d5272013-08-27 11:23:07 +03005807 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5808 perf_output_put(handle, data->id);
5809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005810 if (sample_type & PERF_SAMPLE_IP)
5811 perf_output_put(handle, data->ip);
5812
5813 if (sample_type & PERF_SAMPLE_TID)
5814 perf_output_put(handle, data->tid_entry);
5815
5816 if (sample_type & PERF_SAMPLE_TIME)
5817 perf_output_put(handle, data->time);
5818
5819 if (sample_type & PERF_SAMPLE_ADDR)
5820 perf_output_put(handle, data->addr);
5821
5822 if (sample_type & PERF_SAMPLE_ID)
5823 perf_output_put(handle, data->id);
5824
5825 if (sample_type & PERF_SAMPLE_STREAM_ID)
5826 perf_output_put(handle, data->stream_id);
5827
5828 if (sample_type & PERF_SAMPLE_CPU)
5829 perf_output_put(handle, data->cpu_entry);
5830
5831 if (sample_type & PERF_SAMPLE_PERIOD)
5832 perf_output_put(handle, data->period);
5833
5834 if (sample_type & PERF_SAMPLE_READ)
5835 perf_output_read(handle, event);
5836
5837 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5838 if (data->callchain) {
5839 int size = 1;
5840
5841 if (data->callchain)
5842 size += data->callchain->nr;
5843
5844 size *= sizeof(u64);
5845
Frederic Weisbecker76369132011-05-19 19:55:04 +02005846 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005847 } else {
5848 u64 nr = 0;
5849 perf_output_put(handle, nr);
5850 }
5851 }
5852
5853 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005854 struct perf_raw_record *raw = data->raw;
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005855
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005856 if (raw) {
5857 struct perf_raw_frag *frag = &raw->frag;
5858
5859 perf_output_put(handle, raw->size);
5860 do {
5861 if (frag->copy) {
5862 __output_custom(handle, frag->copy,
5863 frag->data, frag->size);
5864 } else {
5865 __output_copy(handle, frag->data,
5866 frag->size);
5867 }
5868 if (perf_raw_frag_last(frag))
5869 break;
5870 frag = frag->next;
5871 } while (1);
5872 if (frag->pad)
5873 __output_skip(handle, NULL, frag->pad);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005874 } else {
5875 struct {
5876 u32 size;
5877 u32 data;
5878 } raw = {
5879 .size = sizeof(u32),
5880 .data = 0,
5881 };
5882 perf_output_put(handle, raw);
5883 }
5884 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005885
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005886 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5887 if (data->br_stack) {
5888 size_t size;
5889
5890 size = data->br_stack->nr
5891 * sizeof(struct perf_branch_entry);
5892
5893 perf_output_put(handle, data->br_stack->nr);
5894 perf_output_copy(handle, data->br_stack->entries, size);
5895 } else {
5896 /*
5897 * we always store at least the value of nr
5898 */
5899 u64 nr = 0;
5900 perf_output_put(handle, nr);
5901 }
5902 }
Jiri Olsa40189942012-08-07 15:20:37 +02005903
5904 if (sample_type & PERF_SAMPLE_REGS_USER) {
5905 u64 abi = data->regs_user.abi;
5906
5907 /*
5908 * If there are no regs to dump, notice it through
5909 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5910 */
5911 perf_output_put(handle, abi);
5912
5913 if (abi) {
5914 u64 mask = event->attr.sample_regs_user;
5915 perf_output_sample_regs(handle,
5916 data->regs_user.regs,
5917 mask);
5918 }
5919 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005920
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005921 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005922 perf_output_sample_ustack(handle,
5923 data->stack_user_size,
5924 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005925 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005926
5927 if (sample_type & PERF_SAMPLE_WEIGHT)
5928 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005929
5930 if (sample_type & PERF_SAMPLE_DATA_SRC)
5931 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005932
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005933 if (sample_type & PERF_SAMPLE_TRANSACTION)
5934 perf_output_put(handle, data->txn);
5935
Stephane Eranian60e23642014-09-24 13:48:37 +02005936 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5937 u64 abi = data->regs_intr.abi;
5938 /*
5939 * If there are no regs to dump, notice it through
5940 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5941 */
5942 perf_output_put(handle, abi);
5943
5944 if (abi) {
5945 u64 mask = event->attr.sample_regs_intr;
5946
5947 perf_output_sample_regs(handle,
5948 data->regs_intr.regs,
5949 mask);
5950 }
5951 }
5952
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005953 if (!event->attr.watermark) {
5954 int wakeup_events = event->attr.wakeup_events;
5955
5956 if (wakeup_events) {
5957 struct ring_buffer *rb = handle->rb;
5958 int events = local_inc_return(&rb->events);
5959
5960 if (events >= wakeup_events) {
5961 local_sub(wakeup_events, &rb->events);
5962 local_inc(&rb->wakeup);
5963 }
5964 }
5965 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966}
5967
5968void perf_prepare_sample(struct perf_event_header *header,
5969 struct perf_sample_data *data,
5970 struct perf_event *event,
5971 struct pt_regs *regs)
5972{
5973 u64 sample_type = event->attr.sample_type;
5974
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005976 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005977
5978 header->misc = 0;
5979 header->misc |= perf_misc_flags(regs);
5980
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005981 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005982
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005983 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005984 data->ip = perf_instruction_pointer(regs);
5985
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005986 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5987 int size = 1;
5988
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005989 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005990
5991 if (data->callchain)
5992 size += data->callchain->nr;
5993
5994 header->size += size * sizeof(u64);
5995 }
5996
5997 if (sample_type & PERF_SAMPLE_RAW) {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02005998 struct perf_raw_record *raw = data->raw;
5999 int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006000
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006001 if (raw) {
6002 struct perf_raw_frag *frag = &raw->frag;
6003 u32 sum = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006004
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02006005 do {
6006 sum += frag->size;
6007 if (perf_raw_frag_last(frag))
6008 break;
6009 frag = frag->next;
6010 } while (1);
6011
6012 size = round_up(sum + sizeof(u32), sizeof(u64));
6013 raw->size = size - sizeof(u32);
6014 frag->pad = raw->size - sum;
6015 } else {
6016 size = sizeof(u64);
6017 }
6018
6019 header->size += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006020 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006021
6022 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6023 int size = sizeof(u64); /* nr */
6024 if (data->br_stack) {
6025 size += data->br_stack->nr
6026 * sizeof(struct perf_branch_entry);
6027 }
6028 header->size += size;
6029 }
Jiri Olsa40189942012-08-07 15:20:37 +02006030
Peter Zijlstra25657112014-09-24 13:48:42 +02006031 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08006032 perf_sample_regs_user(&data->regs_user, regs,
6033 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02006034
Jiri Olsa40189942012-08-07 15:20:37 +02006035 if (sample_type & PERF_SAMPLE_REGS_USER) {
6036 /* regs dump ABI info */
6037 int size = sizeof(u64);
6038
Jiri Olsa40189942012-08-07 15:20:37 +02006039 if (data->regs_user.regs) {
6040 u64 mask = event->attr.sample_regs_user;
6041 size += hweight64(mask) * sizeof(u64);
6042 }
6043
6044 header->size += size;
6045 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02006046
6047 if (sample_type & PERF_SAMPLE_STACK_USER) {
6048 /*
6049 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
6050 * processed as the last one or have additional check added
6051 * in case new sample type is added, because we could eat
6052 * up the rest of the sample size.
6053 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02006054 u16 stack_size = event->attr.sample_stack_user;
6055 u16 size = sizeof(u64);
6056
Jiri Olsac5ebced2012-08-07 15:20:40 +02006057 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02006058 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006059
6060 /*
6061 * If there is something to dump, add space for the dump
6062 * itself and for the field that tells the dynamic size,
6063 * which is how many have been actually dumped.
6064 */
6065 if (stack_size)
6066 size += sizeof(u64) + stack_size;
6067
6068 data->stack_user_size = stack_size;
6069 header->size += size;
6070 }
Stephane Eranian60e23642014-09-24 13:48:37 +02006071
6072 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6073 /* regs dump ABI info */
6074 int size = sizeof(u64);
6075
6076 perf_sample_regs_intr(&data->regs_intr, regs);
6077
6078 if (data->regs_intr.regs) {
6079 u64 mask = event->attr.sample_regs_intr;
6080
6081 size += hweight64(mask) * sizeof(u64);
6082 }
6083
6084 header->size += size;
6085 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086}
6087
Wang Nan9ecda412016-04-05 14:11:18 +00006088static void __always_inline
6089__perf_event_output(struct perf_event *event,
6090 struct perf_sample_data *data,
6091 struct pt_regs *regs,
6092 int (*output_begin)(struct perf_output_handle *,
6093 struct perf_event *,
6094 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006095{
6096 struct perf_output_handle handle;
6097 struct perf_event_header header;
6098
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006099 /* protect the callchain buffers */
6100 rcu_read_lock();
6101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006102 perf_prepare_sample(&header, data, event, regs);
6103
Wang Nan9ecda412016-04-05 14:11:18 +00006104 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006105 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006106
6107 perf_output_sample(&handle, &header, data, event);
6108
6109 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006110
6111exit:
6112 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006113}
6114
Wang Nan9ecda412016-04-05 14:11:18 +00006115void
6116perf_event_output_forward(struct perf_event *event,
6117 struct perf_sample_data *data,
6118 struct pt_regs *regs)
6119{
6120 __perf_event_output(event, data, regs, perf_output_begin_forward);
6121}
6122
6123void
6124perf_event_output_backward(struct perf_event *event,
6125 struct perf_sample_data *data,
6126 struct pt_regs *regs)
6127{
6128 __perf_event_output(event, data, regs, perf_output_begin_backward);
6129}
6130
6131void
6132perf_event_output(struct perf_event *event,
6133 struct perf_sample_data *data,
6134 struct pt_regs *regs)
6135{
6136 __perf_event_output(event, data, regs, perf_output_begin);
6137}
6138
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006139/*
6140 * read event_id
6141 */
6142
6143struct perf_read_event {
6144 struct perf_event_header header;
6145
6146 u32 pid;
6147 u32 tid;
6148};
6149
6150static void
6151perf_event_read_event(struct perf_event *event,
6152 struct task_struct *task)
6153{
6154 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006155 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006156 struct perf_read_event read_event = {
6157 .header = {
6158 .type = PERF_RECORD_READ,
6159 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006160 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006161 },
6162 .pid = perf_event_pid(event, task),
6163 .tid = perf_event_tid(event, task),
6164 };
6165 int ret;
6166
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006167 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006168 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006169 if (ret)
6170 return;
6171
6172 perf_output_put(&handle, read_event);
6173 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006174 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006175
6176 perf_output_end(&handle);
6177}
6178
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006179typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006180
6181static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006182perf_iterate_ctx(struct perf_event_context *ctx,
6183 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006184 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02006185{
6186 struct perf_event *event;
6187
6188 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006189 if (!all) {
6190 if (event->state < PERF_EVENT_STATE_INACTIVE)
6191 continue;
6192 if (!event_filter_match(event))
6193 continue;
6194 }
6195
Jiri Olsa67516842013-07-09 18:56:31 +02006196 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006197 }
6198}
6199
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006200static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07006201{
6202 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
6203 struct perf_event *event;
6204
6205 list_for_each_entry_rcu(event, &pel->list, sb_list) {
Peter Zijlstra0b8f1e22016-08-04 14:37:24 +02006206 /*
6207 * Skip events that are not fully formed yet; ensure that
6208 * if we observe event->ctx, both event and ctx will be
6209 * complete enough. See perf_install_in_context().
6210 */
6211 if (!smp_load_acquire(&event->ctx))
6212 continue;
6213
Kan Liangf2fb6be2016-03-23 11:24:37 -07006214 if (event->state < PERF_EVENT_STATE_INACTIVE)
6215 continue;
6216 if (!event_filter_match(event))
6217 continue;
6218 output(event, data);
6219 }
6220}
6221
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006222/*
6223 * Iterate all events that need to receive side-band events.
6224 *
6225 * For new callers; ensure that account_pmu_sb_event() includes
6226 * your event, otherwise it might not get delivered.
6227 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006228static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006229perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006230 struct perf_event_context *task_ctx)
6231{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006232 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02006233 int ctxn;
6234
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006235 rcu_read_lock();
6236 preempt_disable();
6237
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006238 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006239 * If we have task_ctx != NULL we only notify the task context itself.
6240 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006241 * context.
6242 */
6243 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006244 perf_iterate_ctx(task_ctx, output, data, false);
6245 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01006246 }
6247
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006248 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07006249
6250 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02006251 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6252 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006253 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02006254 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006255done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07006256 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02006257 rcu_read_unlock();
6258}
6259
Alexander Shishkin375637b2016-04-27 18:44:46 +03006260/*
6261 * Clear all file-based filters at exec, they'll have to be
6262 * re-instated when/if these objects are mmapped again.
6263 */
6264static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
6265{
6266 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6267 struct perf_addr_filter *filter;
6268 unsigned int restart = 0, count = 0;
6269 unsigned long flags;
6270
6271 if (!has_addr_filter(event))
6272 return;
6273
6274 raw_spin_lock_irqsave(&ifh->lock, flags);
6275 list_for_each_entry(filter, &ifh->list, entry) {
6276 if (filter->inode) {
6277 event->addr_filters_offs[count] = 0;
6278 restart++;
6279 }
6280
6281 count++;
6282 }
6283
6284 if (restart)
6285 event->addr_filters_gen++;
6286 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6287
6288 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006289 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006290}
6291
6292void perf_event_exec(void)
6293{
6294 struct perf_event_context *ctx;
6295 int ctxn;
6296
6297 rcu_read_lock();
6298 for_each_task_context_nr(ctxn) {
6299 ctx = current->perf_event_ctxp[ctxn];
6300 if (!ctx)
6301 continue;
6302
6303 perf_event_enable_on_exec(ctxn);
6304
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006305 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006306 true);
6307 }
6308 rcu_read_unlock();
6309}
6310
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006311struct remote_output {
6312 struct ring_buffer *rb;
6313 int err;
6314};
6315
6316static void __perf_event_output_stop(struct perf_event *event, void *data)
6317{
6318 struct perf_event *parent = event->parent;
6319 struct remote_output *ro = data;
6320 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006321 struct stop_event_data sd = {
6322 .event = event,
6323 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006324
6325 if (!has_aux(event))
6326 return;
6327
6328 if (!parent)
6329 parent = event;
6330
6331 /*
6332 * In case of inheritance, it will be the parent that links to the
Alexander Shishkin767ae082016-09-06 16:23:49 +03006333 * ring-buffer, but it will be the child that's actually using it.
6334 *
6335 * We are using event::rb to determine if the event should be stopped,
6336 * however this may race with ring_buffer_attach() (through set_output),
6337 * which will make us skip the event that actually needs to be stopped.
6338 * So ring_buffer_attach() has to stop an aux event before re-assigning
6339 * its rb pointer.
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006340 */
6341 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006342 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006343}
6344
6345static int __perf_pmu_output_stop(void *info)
6346{
6347 struct perf_event *event = info;
6348 struct pmu *pmu = event->pmu;
Will Deacon8b6a3fe2016-08-24 10:07:14 +01006349 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006350 struct remote_output ro = {
6351 .rb = event->rb,
6352 };
6353
6354 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006355 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006356 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006357 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006358 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006359 rcu_read_unlock();
6360
6361 return ro.err;
6362}
6363
6364static void perf_pmu_output_stop(struct perf_event *event)
6365{
6366 struct perf_event *iter;
6367 int err, cpu;
6368
6369restart:
6370 rcu_read_lock();
6371 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6372 /*
6373 * For per-CPU events, we need to make sure that neither they
6374 * nor their children are running; for cpu==-1 events it's
6375 * sufficient to stop the event itself if it's active, since
6376 * it can't have children.
6377 */
6378 cpu = iter->cpu;
6379 if (cpu == -1)
6380 cpu = READ_ONCE(iter->oncpu);
6381
6382 if (cpu == -1)
6383 continue;
6384
6385 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6386 if (err == -EAGAIN) {
6387 rcu_read_unlock();
6388 goto restart;
6389 }
6390 }
6391 rcu_read_unlock();
6392}
6393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006394/*
6395 * task tracking -- fork/exit
6396 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006397 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006398 */
6399
6400struct perf_task_event {
6401 struct task_struct *task;
6402 struct perf_event_context *task_ctx;
6403
6404 struct {
6405 struct perf_event_header header;
6406
6407 u32 pid;
6408 u32 ppid;
6409 u32 tid;
6410 u32 ptid;
6411 u64 time;
6412 } event_id;
6413};
6414
Jiri Olsa67516842013-07-09 18:56:31 +02006415static int perf_event_task_match(struct perf_event *event)
6416{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006417 return event->attr.comm || event->attr.mmap ||
6418 event->attr.mmap2 || event->attr.mmap_data ||
6419 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006420}
6421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006422static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006423 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006424{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006425 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006426 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006427 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006428 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006429 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006430
Jiri Olsa67516842013-07-09 18:56:31 +02006431 if (!perf_event_task_match(event))
6432 return;
6433
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006434 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006435
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006436 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006437 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006438 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006439 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006440
6441 task_event->event_id.pid = perf_event_pid(event, task);
6442 task_event->event_id.ppid = perf_event_pid(event, current);
6443
6444 task_event->event_id.tid = perf_event_tid(event, task);
6445 task_event->event_id.ptid = perf_event_tid(event, current);
6446
Peter Zijlstra34f43922015-02-20 14:05:38 +01006447 task_event->event_id.time = perf_event_clock(event);
6448
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006449 perf_output_put(&handle, task_event->event_id);
6450
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006451 perf_event__output_id_sample(event, &handle, &sample);
6452
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006453 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006454out:
6455 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006456}
6457
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006458static void perf_event_task(struct task_struct *task,
6459 struct perf_event_context *task_ctx,
6460 int new)
6461{
6462 struct perf_task_event task_event;
6463
6464 if (!atomic_read(&nr_comm_events) &&
6465 !atomic_read(&nr_mmap_events) &&
6466 !atomic_read(&nr_task_events))
6467 return;
6468
6469 task_event = (struct perf_task_event){
6470 .task = task,
6471 .task_ctx = task_ctx,
6472 .event_id = {
6473 .header = {
6474 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6475 .misc = 0,
6476 .size = sizeof(task_event.event_id),
6477 },
6478 /* .pid */
6479 /* .ppid */
6480 /* .tid */
6481 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006482 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006483 },
6484 };
6485
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006486 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006487 &task_event,
6488 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006489}
6490
6491void perf_event_fork(struct task_struct *task)
6492{
6493 perf_event_task(task, NULL, 1);
6494}
6495
6496/*
6497 * comm tracking
6498 */
6499
6500struct perf_comm_event {
6501 struct task_struct *task;
6502 char *comm;
6503 int comm_size;
6504
6505 struct {
6506 struct perf_event_header header;
6507
6508 u32 pid;
6509 u32 tid;
6510 } event_id;
6511};
6512
Jiri Olsa67516842013-07-09 18:56:31 +02006513static int perf_event_comm_match(struct perf_event *event)
6514{
6515 return event->attr.comm;
6516}
6517
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006518static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006519 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006520{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006521 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006522 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006523 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006524 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006525 int ret;
6526
Jiri Olsa67516842013-07-09 18:56:31 +02006527 if (!perf_event_comm_match(event))
6528 return;
6529
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006530 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6531 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006532 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006533
6534 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006535 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006536
6537 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6538 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6539
6540 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006541 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006542 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006543
6544 perf_event__output_id_sample(event, &handle, &sample);
6545
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006546 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006547out:
6548 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006549}
6550
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006551static void perf_event_comm_event(struct perf_comm_event *comm_event)
6552{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006553 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006554 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006555
6556 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006557 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006558 size = ALIGN(strlen(comm)+1, sizeof(u64));
6559
6560 comm_event->comm = comm;
6561 comm_event->comm_size = size;
6562
6563 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006564
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006565 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006566 comm_event,
6567 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006568}
6569
Adrian Hunter82b89772014-05-28 11:45:04 +03006570void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006571{
6572 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006573
6574 if (!atomic_read(&nr_comm_events))
6575 return;
6576
6577 comm_event = (struct perf_comm_event){
6578 .task = task,
6579 /* .comm */
6580 /* .comm_size */
6581 .event_id = {
6582 .header = {
6583 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006584 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006585 /* .size */
6586 },
6587 /* .pid */
6588 /* .tid */
6589 },
6590 };
6591
6592 perf_event_comm_event(&comm_event);
6593}
6594
6595/*
6596 * mmap tracking
6597 */
6598
6599struct perf_mmap_event {
6600 struct vm_area_struct *vma;
6601
6602 const char *file_name;
6603 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006604 int maj, min;
6605 u64 ino;
6606 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006607 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006608
6609 struct {
6610 struct perf_event_header header;
6611
6612 u32 pid;
6613 u32 tid;
6614 u64 start;
6615 u64 len;
6616 u64 pgoff;
6617 } event_id;
6618};
6619
Jiri Olsa67516842013-07-09 18:56:31 +02006620static int perf_event_mmap_match(struct perf_event *event,
6621 void *data)
6622{
6623 struct perf_mmap_event *mmap_event = data;
6624 struct vm_area_struct *vma = mmap_event->vma;
6625 int executable = vma->vm_flags & VM_EXEC;
6626
6627 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006628 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006629}
6630
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006631static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006632 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006633{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006634 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006635 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006636 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006637 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006638 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006639
Jiri Olsa67516842013-07-09 18:56:31 +02006640 if (!perf_event_mmap_match(event, data))
6641 return;
6642
Stephane Eranian13d7a242013-08-21 12:10:24 +02006643 if (event->attr.mmap2) {
6644 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6645 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6646 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6647 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006648 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006649 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6650 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006651 }
6652
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006653 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6654 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006655 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006656 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006657 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006658
6659 mmap_event->event_id.pid = perf_event_pid(event, current);
6660 mmap_event->event_id.tid = perf_event_tid(event, current);
6661
6662 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006663
6664 if (event->attr.mmap2) {
6665 perf_output_put(&handle, mmap_event->maj);
6666 perf_output_put(&handle, mmap_event->min);
6667 perf_output_put(&handle, mmap_event->ino);
6668 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006669 perf_output_put(&handle, mmap_event->prot);
6670 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006671 }
6672
Frederic Weisbecker76369132011-05-19 19:55:04 +02006673 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006674 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006675
6676 perf_event__output_id_sample(event, &handle, &sample);
6677
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006678 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006679out:
6680 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006681}
6682
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006683static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6684{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006685 struct vm_area_struct *vma = mmap_event->vma;
6686 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006687 int maj = 0, min = 0;
6688 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006689 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006690 unsigned int size;
6691 char tmp[16];
6692 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006693 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006694
Peter Zijlstra0b3589b2017-01-26 23:15:08 +01006695 if (vma->vm_flags & VM_READ)
6696 prot |= PROT_READ;
6697 if (vma->vm_flags & VM_WRITE)
6698 prot |= PROT_WRITE;
6699 if (vma->vm_flags & VM_EXEC)
6700 prot |= PROT_EXEC;
6701
6702 if (vma->vm_flags & VM_MAYSHARE)
6703 flags = MAP_SHARED;
6704 else
6705 flags = MAP_PRIVATE;
6706
6707 if (vma->vm_flags & VM_DENYWRITE)
6708 flags |= MAP_DENYWRITE;
6709 if (vma->vm_flags & VM_MAYEXEC)
6710 flags |= MAP_EXECUTABLE;
6711 if (vma->vm_flags & VM_LOCKED)
6712 flags |= MAP_LOCKED;
6713 if (vma->vm_flags & VM_HUGETLB)
6714 flags |= MAP_HUGETLB;
6715
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006716 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006717 struct inode *inode;
6718 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006719
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006720 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006721 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006722 name = "//enomem";
6723 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006724 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006725 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006726 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006727 * need to add enough zero bytes after the string to handle
6728 * the 64bit alignment we do later.
6729 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006730 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006731 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006732 name = "//toolong";
6733 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006734 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006735 inode = file_inode(vma->vm_file);
6736 dev = inode->i_sb->s_dev;
6737 ino = inode->i_ino;
6738 gen = inode->i_generation;
6739 maj = MAJOR(dev);
6740 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006741
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006742 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006743 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006744 if (vma->vm_ops && vma->vm_ops->name) {
6745 name = (char *) vma->vm_ops->name(vma);
6746 if (name)
6747 goto cpy_name;
6748 }
6749
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006750 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006751 if (name)
6752 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006753
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006754 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006755 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006756 name = "[heap]";
6757 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006758 }
6759 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006760 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006761 name = "[stack]";
6762 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006763 }
6764
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006765 name = "//anon";
6766 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006767 }
6768
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006769cpy_name:
6770 strlcpy(tmp, name, sizeof(tmp));
6771 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006772got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006773 /*
6774 * Since our buffer works in 8 byte units we need to align our string
6775 * size to a multiple of 8. However, we must guarantee the tail end is
6776 * zero'd out to avoid leaking random bits to userspace.
6777 */
6778 size = strlen(name)+1;
6779 while (!IS_ALIGNED(size, sizeof(u64)))
6780 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006781
6782 mmap_event->file_name = name;
6783 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006784 mmap_event->maj = maj;
6785 mmap_event->min = min;
6786 mmap_event->ino = ino;
6787 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006788 mmap_event->prot = prot;
6789 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006790
Stephane Eranian2fe85422013-01-24 16:10:39 +01006791 if (!(vma->vm_flags & VM_EXEC))
6792 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006794 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6795
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006796 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006797 mmap_event,
6798 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006799
6800 kfree(buf);
6801}
6802
Alexander Shishkin375637b2016-04-27 18:44:46 +03006803/*
Alexander Shishkin375637b2016-04-27 18:44:46 +03006804 * Check whether inode and address range match filter criteria.
6805 */
6806static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6807 struct file *file, unsigned long offset,
6808 unsigned long size)
6809{
Al Viro45063092016-12-04 18:24:56 -05006810 if (filter->inode != file_inode(file))
Alexander Shishkin375637b2016-04-27 18:44:46 +03006811 return false;
6812
6813 if (filter->offset > offset + size)
6814 return false;
6815
6816 if (filter->offset + filter->size < offset)
6817 return false;
6818
6819 return true;
6820}
6821
6822static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6823{
6824 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6825 struct vm_area_struct *vma = data;
6826 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6827 struct file *file = vma->vm_file;
6828 struct perf_addr_filter *filter;
6829 unsigned int restart = 0, count = 0;
6830
6831 if (!has_addr_filter(event))
6832 return;
6833
6834 if (!file)
6835 return;
6836
6837 raw_spin_lock_irqsave(&ifh->lock, flags);
6838 list_for_each_entry(filter, &ifh->list, entry) {
6839 if (perf_addr_filter_match(filter, file, off,
6840 vma->vm_end - vma->vm_start)) {
6841 event->addr_filters_offs[count] = vma->vm_start;
6842 restart++;
6843 }
6844
6845 count++;
6846 }
6847
6848 if (restart)
6849 event->addr_filters_gen++;
6850 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6851
6852 if (restart)
Alexander Shishkin767ae082016-09-06 16:23:49 +03006853 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006854}
6855
6856/*
6857 * Adjust all task's events' filters to the new vma
6858 */
6859static void perf_addr_filters_adjust(struct vm_area_struct *vma)
6860{
6861 struct perf_event_context *ctx;
6862 int ctxn;
6863
Mathieu Poirier12b40a22016-07-18 10:43:06 -06006864 /*
6865 * Data tracing isn't supported yet and as such there is no need
6866 * to keep track of anything that isn't related to executable code:
6867 */
6868 if (!(vma->vm_flags & VM_EXEC))
6869 return;
6870
Alexander Shishkin375637b2016-04-27 18:44:46 +03006871 rcu_read_lock();
6872 for_each_task_context_nr(ctxn) {
6873 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6874 if (!ctx)
6875 continue;
6876
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006877 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006878 }
6879 rcu_read_unlock();
6880}
6881
Eric B Munson3af9e852010-05-18 15:30:49 +01006882void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006883{
6884 struct perf_mmap_event mmap_event;
6885
6886 if (!atomic_read(&nr_mmap_events))
6887 return;
6888
6889 mmap_event = (struct perf_mmap_event){
6890 .vma = vma,
6891 /* .file_name */
6892 /* .file_size */
6893 .event_id = {
6894 .header = {
6895 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006896 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897 /* .size */
6898 },
6899 /* .pid */
6900 /* .tid */
6901 .start = vma->vm_start,
6902 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006903 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006904 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006905 /* .maj (attr_mmap2 only) */
6906 /* .min (attr_mmap2 only) */
6907 /* .ino (attr_mmap2 only) */
6908 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006909 /* .prot (attr_mmap2 only) */
6910 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006911 };
6912
Alexander Shishkin375637b2016-04-27 18:44:46 +03006913 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006914 perf_event_mmap_event(&mmap_event);
6915}
6916
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006917void perf_event_aux_event(struct perf_event *event, unsigned long head,
6918 unsigned long size, u64 flags)
6919{
6920 struct perf_output_handle handle;
6921 struct perf_sample_data sample;
6922 struct perf_aux_event {
6923 struct perf_event_header header;
6924 u64 offset;
6925 u64 size;
6926 u64 flags;
6927 } rec = {
6928 .header = {
6929 .type = PERF_RECORD_AUX,
6930 .misc = 0,
6931 .size = sizeof(rec),
6932 },
6933 .offset = head,
6934 .size = size,
6935 .flags = flags,
6936 };
6937 int ret;
6938
6939 perf_event_header__init_id(&rec.header, &sample, event);
6940 ret = perf_output_begin(&handle, event, rec.header.size);
6941
6942 if (ret)
6943 return;
6944
6945 perf_output_put(&handle, rec);
6946 perf_event__output_id_sample(event, &handle, &sample);
6947
6948 perf_output_end(&handle);
6949}
6950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006951/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006952 * Lost/dropped samples logging
6953 */
6954void perf_log_lost_samples(struct perf_event *event, u64 lost)
6955{
6956 struct perf_output_handle handle;
6957 struct perf_sample_data sample;
6958 int ret;
6959
6960 struct {
6961 struct perf_event_header header;
6962 u64 lost;
6963 } lost_samples_event = {
6964 .header = {
6965 .type = PERF_RECORD_LOST_SAMPLES,
6966 .misc = 0,
6967 .size = sizeof(lost_samples_event),
6968 },
6969 .lost = lost,
6970 };
6971
6972 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6973
6974 ret = perf_output_begin(&handle, event,
6975 lost_samples_event.header.size);
6976 if (ret)
6977 return;
6978
6979 perf_output_put(&handle, lost_samples_event);
6980 perf_event__output_id_sample(event, &handle, &sample);
6981 perf_output_end(&handle);
6982}
6983
6984/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006985 * context_switch tracking
6986 */
6987
6988struct perf_switch_event {
6989 struct task_struct *task;
6990 struct task_struct *next_prev;
6991
6992 struct {
6993 struct perf_event_header header;
6994 u32 next_prev_pid;
6995 u32 next_prev_tid;
6996 } event_id;
6997};
6998
6999static int perf_event_switch_match(struct perf_event *event)
7000{
7001 return event->attr.context_switch;
7002}
7003
7004static void perf_event_switch_output(struct perf_event *event, void *data)
7005{
7006 struct perf_switch_event *se = data;
7007 struct perf_output_handle handle;
7008 struct perf_sample_data sample;
7009 int ret;
7010
7011 if (!perf_event_switch_match(event))
7012 return;
7013
7014 /* Only CPU-wide events are allowed to see next/prev pid/tid */
7015 if (event->ctx->task) {
7016 se->event_id.header.type = PERF_RECORD_SWITCH;
7017 se->event_id.header.size = sizeof(se->event_id.header);
7018 } else {
7019 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
7020 se->event_id.header.size = sizeof(se->event_id);
7021 se->event_id.next_prev_pid =
7022 perf_event_pid(event, se->next_prev);
7023 se->event_id.next_prev_tid =
7024 perf_event_tid(event, se->next_prev);
7025 }
7026
7027 perf_event_header__init_id(&se->event_id.header, &sample, event);
7028
7029 ret = perf_output_begin(&handle, event, se->event_id.header.size);
7030 if (ret)
7031 return;
7032
7033 if (event->ctx->task)
7034 perf_output_put(&handle, se->event_id.header);
7035 else
7036 perf_output_put(&handle, se->event_id);
7037
7038 perf_event__output_id_sample(event, &handle, &sample);
7039
7040 perf_output_end(&handle);
7041}
7042
7043static void perf_event_switch(struct task_struct *task,
7044 struct task_struct *next_prev, bool sched_in)
7045{
7046 struct perf_switch_event switch_event;
7047
7048 /* N.B. caller checks nr_switch_events != 0 */
7049
7050 switch_event = (struct perf_switch_event){
7051 .task = task,
7052 .next_prev = next_prev,
7053 .event_id = {
7054 .header = {
7055 /* .type */
7056 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
7057 /* .size */
7058 },
7059 /* .next_prev_pid */
7060 /* .next_prev_tid */
7061 },
7062 };
7063
Peter Zijlstraaab5b712016-05-12 17:26:46 +02007064 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03007065 &switch_event,
7066 NULL);
7067}
7068
7069/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007070 * IRQ throttle logging
7071 */
7072
7073static void perf_log_throttle(struct perf_event *event, int enable)
7074{
7075 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007076 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007077 int ret;
7078
7079 struct {
7080 struct perf_event_header header;
7081 u64 time;
7082 u64 id;
7083 u64 stream_id;
7084 } throttle_event = {
7085 .header = {
7086 .type = PERF_RECORD_THROTTLE,
7087 .misc = 0,
7088 .size = sizeof(throttle_event),
7089 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01007090 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007091 .id = primary_event_id(event),
7092 .stream_id = event->id,
7093 };
7094
7095 if (enable)
7096 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
7097
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007098 perf_event_header__init_id(&throttle_event.header, &sample, event);
7099
7100 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02007101 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007102 if (ret)
7103 return;
7104
7105 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02007106 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007107 perf_output_end(&handle);
7108}
7109
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007110static void perf_log_itrace_start(struct perf_event *event)
7111{
7112 struct perf_output_handle handle;
7113 struct perf_sample_data sample;
7114 struct perf_aux_event {
7115 struct perf_event_header header;
7116 u32 pid;
7117 u32 tid;
7118 } rec;
7119 int ret;
7120
7121 if (event->parent)
7122 event = event->parent;
7123
7124 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
7125 event->hw.itrace_started)
7126 return;
7127
Alexander Shishkinec0d7722015-01-14 14:18:23 +02007128 rec.header.type = PERF_RECORD_ITRACE_START;
7129 rec.header.misc = 0;
7130 rec.header.size = sizeof(rec);
7131 rec.pid = perf_event_pid(event, current);
7132 rec.tid = perf_event_tid(event, current);
7133
7134 perf_event_header__init_id(&rec.header, &sample, event);
7135 ret = perf_output_begin(&handle, event, rec.header.size);
7136
7137 if (ret)
7138 return;
7139
7140 perf_output_put(&handle, rec);
7141 perf_event__output_id_sample(event, &handle, &sample);
7142
7143 perf_output_end(&handle);
7144}
7145
Jiri Olsa475113d2016-12-28 14:31:03 +01007146static int
7147__perf_event_account_interrupt(struct perf_event *event, int throttle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007148{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007149 struct hw_perf_event *hwc = &event->hw;
7150 int ret = 0;
Jiri Olsa475113d2016-12-28 14:31:03 +01007151 u64 seq;
Peter Zijlstra96398822010-11-24 18:55:29 +01007152
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007153 seq = __this_cpu_read(perf_throttled_seq);
7154 if (seq != hwc->interrupts_seq) {
7155 hwc->interrupts_seq = seq;
7156 hwc->interrupts = 1;
7157 } else {
7158 hwc->interrupts++;
7159 if (unlikely(throttle
7160 && hwc->interrupts >= max_samples_per_tick)) {
7161 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02007162 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01007163 hwc->interrupts = MAX_INTERRUPTS;
7164 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007165 ret = 1;
7166 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01007167 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168
7169 if (event->attr.freq) {
7170 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01007171 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172
Peter Zijlstraabd50712010-01-26 18:50:16 +01007173 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007174
Peter Zijlstraabd50712010-01-26 18:50:16 +01007175 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01007176 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007177 }
7178
Jiri Olsa475113d2016-12-28 14:31:03 +01007179 return ret;
7180}
7181
7182int perf_event_account_interrupt(struct perf_event *event)
7183{
7184 return __perf_event_account_interrupt(event, 1);
7185}
7186
7187/*
7188 * Generic event overflow handling, sampling.
7189 */
7190
7191static int __perf_event_overflow(struct perf_event *event,
7192 int throttle, struct perf_sample_data *data,
7193 struct pt_regs *regs)
7194{
7195 int events = atomic_read(&event->event_limit);
7196 int ret = 0;
7197
7198 /*
7199 * Non-sampling counters might still use the PMI to fold short
7200 * hardware counters, ignore those.
7201 */
7202 if (unlikely(!is_sampling_event(event)))
7203 return 0;
7204
7205 ret = __perf_event_account_interrupt(event, throttle);
7206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007207 /*
7208 * XXX event_limit might not quite work as expected on inherited
7209 * events
7210 */
7211
7212 event->pending_kill = POLL_IN;
7213 if (events && atomic_dec_and_test(&event->event_limit)) {
7214 ret = 1;
7215 event->pending_kill = POLL_HUP;
Jiri Olsa5aab90c2016-10-26 11:48:24 +02007216
7217 perf_event_disable_inatomic(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007218 }
7219
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007220 READ_ONCE(event->overflow_handler)(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01007221
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02007222 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007223 event->pending_wakeup = 1;
7224 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02007225 }
7226
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007227 return ret;
7228}
7229
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007230int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007231 struct perf_sample_data *data,
7232 struct pt_regs *regs)
7233{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007234 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007235}
7236
7237/*
7238 * Generic software event infrastructure
7239 */
7240
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007241struct swevent_htable {
7242 struct swevent_hlist *swevent_hlist;
7243 struct mutex hlist_mutex;
7244 int hlist_refcount;
7245
7246 /* Recursion avoidance in each contexts */
7247 int recursion[PERF_NR_CONTEXTS];
7248};
7249
7250static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
7251
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007252/*
7253 * We directly increment event->count and keep a second value in
7254 * event->hw.period_left to count intervals. This period event
7255 * is kept in the range [-sample_period, 0] so that we can use the
7256 * sign as trigger.
7257 */
7258
Jiri Olsaab573842013-05-01 17:25:44 +02007259u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007260{
7261 struct hw_perf_event *hwc = &event->hw;
7262 u64 period = hwc->last_period;
7263 u64 nr, offset;
7264 s64 old, val;
7265
7266 hwc->last_period = hwc->sample_period;
7267
7268again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02007269 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007270 if (val < 0)
7271 return 0;
7272
7273 nr = div64_u64(period + val, period);
7274 offset = nr * period;
7275 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02007276 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007277 goto again;
7278
7279 return nr;
7280}
7281
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007282static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007283 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007284 struct pt_regs *regs)
7285{
7286 struct hw_perf_event *hwc = &event->hw;
7287 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007288
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007289 if (!overflow)
7290 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007291
7292 if (hwc->interrupts == MAX_INTERRUPTS)
7293 return;
7294
7295 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007296 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007297 data, regs)) {
7298 /*
7299 * We inhibit the overflow from happening when
7300 * hwc->interrupts == MAX_INTERRUPTS.
7301 */
7302 break;
7303 }
7304 throttle = 1;
7305 }
7306}
7307
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007308static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007309 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007310 struct pt_regs *regs)
7311{
7312 struct hw_perf_event *hwc = &event->hw;
7313
Peter Zijlstrae7850592010-05-21 14:43:08 +02007314 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007315
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007316 if (!regs)
7317 return;
7318
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007319 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007320 return;
7321
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03007322 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
7323 data->period = nr;
7324 return perf_swevent_overflow(event, 1, data, regs);
7325 } else
7326 data->period = event->hw.last_period;
7327
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007328 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007329 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007330
Peter Zijlstrae7850592010-05-21 14:43:08 +02007331 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007332 return;
7333
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007334 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007335}
7336
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007337static int perf_exclude_event(struct perf_event *event,
7338 struct pt_regs *regs)
7339{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007340 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007341 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007342
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007343 if (regs) {
7344 if (event->attr.exclude_user && user_mode(regs))
7345 return 1;
7346
7347 if (event->attr.exclude_kernel && !user_mode(regs))
7348 return 1;
7349 }
7350
7351 return 0;
7352}
7353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007354static int perf_swevent_match(struct perf_event *event,
7355 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007356 u32 event_id,
7357 struct perf_sample_data *data,
7358 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007359{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007360 if (event->attr.type != type)
7361 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007362
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007363 if (event->attr.config != event_id)
7364 return 0;
7365
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007366 if (perf_exclude_event(event, regs))
7367 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007368
7369 return 1;
7370}
7371
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007372static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007373{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007374 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007375
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007376 return hash_64(val, SWEVENT_HLIST_BITS);
7377}
7378
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007379static inline struct hlist_head *
7380__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007381{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007382 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007383
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007384 return &hlist->heads[hash];
7385}
7386
7387/* For the read side: events when they trigger */
7388static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007389find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007390{
7391 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007392
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007393 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007394 if (!hlist)
7395 return NULL;
7396
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007397 return __find_swevent_head(hlist, type, event_id);
7398}
7399
7400/* For the event head insertion and removal in the hlist */
7401static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007402find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007403{
7404 struct swevent_hlist *hlist;
7405 u32 event_id = event->attr.config;
7406 u64 type = event->attr.type;
7407
7408 /*
7409 * Event scheduling is always serialized against hlist allocation
7410 * and release. Which makes the protected version suitable here.
7411 * The context lock guarantees that.
7412 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007413 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007414 lockdep_is_held(&event->ctx->lock));
7415 if (!hlist)
7416 return NULL;
7417
7418 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007419}
7420
7421static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007422 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007423 struct perf_sample_data *data,
7424 struct pt_regs *regs)
7425{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007426 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007427 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007428 struct hlist_head *head;
7429
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007430 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007431 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007432 if (!head)
7433 goto end;
7434
Sasha Levinb67bfe02013-02-27 17:06:00 -08007435 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007436 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007437 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007438 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007439end:
7440 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007441}
7442
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007443DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7444
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007445int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007446{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007447 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007448
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007449 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007450}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007451EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007452
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007453void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007454{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007455 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007456
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007457 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007458}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007459
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007460void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007461{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007462 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007463
7464 if (WARN_ON_ONCE(!regs))
7465 return;
7466
7467 perf_sample_data_init(&data, addr, 0);
7468 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7469}
7470
7471void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7472{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007473 int rctx;
7474
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007475 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007476 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007477 if (unlikely(rctx < 0))
7478 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007479
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007480 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007481
7482 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007483fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007484 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007485}
7486
7487static void perf_swevent_read(struct perf_event *event)
7488{
7489}
7490
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007491static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007492{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007493 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007494 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007495 struct hlist_head *head;
7496
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007497 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007498 hwc->last_period = hwc->sample_period;
7499 perf_swevent_set_period(event);
7500 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007501
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007502 hwc->state = !(flags & PERF_EF_START);
7503
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007504 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007505 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007506 return -EINVAL;
7507
7508 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007509 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007510
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007511 return 0;
7512}
7513
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007514static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007515{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007516 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007517}
7518
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007519static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007520{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007521 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007522}
7523
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007524static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007525{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007526 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007527}
7528
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007529/* Deref the hlist from the update side */
7530static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007531swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007532{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007533 return rcu_dereference_protected(swhash->swevent_hlist,
7534 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007535}
7536
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007537static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007538{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007539 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007540
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007541 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007542 return;
7543
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007544 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007545 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007546}
7547
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007548static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007549{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007550 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007551
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007552 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007553
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007554 if (!--swhash->hlist_refcount)
7555 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007556
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007557 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007558}
7559
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007560static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007561{
7562 int cpu;
7563
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007564 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007565 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007566}
7567
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007568static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007569{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007570 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007571 int err = 0;
7572
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007573 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007574 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007575 struct swevent_hlist *hlist;
7576
7577 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7578 if (!hlist) {
7579 err = -ENOMEM;
7580 goto exit;
7581 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007582 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007583 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007584 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007585exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007586 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007587
7588 return err;
7589}
7590
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007591static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007592{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007593 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007594
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007595 get_online_cpus();
7596 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007597 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007598 if (err) {
7599 failed_cpu = cpu;
7600 goto fail;
7601 }
7602 }
7603 put_online_cpus();
7604
7605 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007606fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007607 for_each_possible_cpu(cpu) {
7608 if (cpu == failed_cpu)
7609 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007610 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007611 }
7612
7613 put_online_cpus();
7614 return err;
7615}
7616
Ingo Molnarc5905af2012-02-24 08:31:31 +01007617struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007618
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007619static void sw_perf_event_destroy(struct perf_event *event)
7620{
7621 u64 event_id = event->attr.config;
7622
7623 WARN_ON(event->parent);
7624
Ingo Molnarc5905af2012-02-24 08:31:31 +01007625 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007626 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007627}
7628
7629static int perf_swevent_init(struct perf_event *event)
7630{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007631 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007632
7633 if (event->attr.type != PERF_TYPE_SOFTWARE)
7634 return -ENOENT;
7635
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007636 /*
7637 * no branch sampling for software events
7638 */
7639 if (has_branch_stack(event))
7640 return -EOPNOTSUPP;
7641
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007642 switch (event_id) {
7643 case PERF_COUNT_SW_CPU_CLOCK:
7644 case PERF_COUNT_SW_TASK_CLOCK:
7645 return -ENOENT;
7646
7647 default:
7648 break;
7649 }
7650
Dan Carpenterce677832010-10-24 21:50:42 +02007651 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007652 return -ENOENT;
7653
7654 if (!event->parent) {
7655 int err;
7656
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007657 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007658 if (err)
7659 return err;
7660
Ingo Molnarc5905af2012-02-24 08:31:31 +01007661 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007662 event->destroy = sw_perf_event_destroy;
7663 }
7664
7665 return 0;
7666}
7667
7668static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007669 .task_ctx_nr = perf_sw_context,
7670
Peter Zijlstra34f43922015-02-20 14:05:38 +01007671 .capabilities = PERF_PMU_CAP_NO_NMI,
7672
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007673 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007674 .add = perf_swevent_add,
7675 .del = perf_swevent_del,
7676 .start = perf_swevent_start,
7677 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007678 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007679};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007680
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007681#ifdef CONFIG_EVENT_TRACING
7682
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007683static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007684 struct perf_sample_data *data)
7685{
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007686 void *record = data->raw->frag.data;
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007687
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007688 /* only top level events have filters set */
7689 if (event->parent)
7690 event = event->parent;
7691
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007692 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7693 return 1;
7694 return 0;
7695}
7696
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007697static int perf_tp_event_match(struct perf_event *event,
7698 struct perf_sample_data *data,
7699 struct pt_regs *regs)
7700{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007701 if (event->hw.state & PERF_HES_STOPPED)
7702 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007703 /*
7704 * All tracepoints are from kernel-space.
7705 */
7706 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007707 return 0;
7708
7709 if (!perf_tp_filter_match(event, data))
7710 return 0;
7711
7712 return 1;
7713}
7714
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -07007715void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
7716 struct trace_event_call *call, u64 count,
7717 struct pt_regs *regs, struct hlist_head *head,
7718 struct task_struct *task)
7719{
7720 struct bpf_prog *prog = call->prog;
7721
7722 if (prog) {
7723 *(struct pt_regs **)raw_data = regs;
7724 if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) {
7725 perf_swevent_put_recursion_context(rctx);
7726 return;
7727 }
7728 }
7729 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
7730 rctx, task);
7731}
7732EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
7733
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007734void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007735 struct pt_regs *regs, struct hlist_head *head, int rctx,
7736 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007737{
7738 struct perf_sample_data data;
7739 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007740
7741 struct perf_raw_record raw = {
Daniel Borkmann7e3f9772016-07-14 18:08:03 +02007742 .frag = {
7743 .size = entry_size,
7744 .data = record,
7745 },
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007746 };
7747
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007748 perf_sample_data_init(&data, 0, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007749 data.raw = &raw;
7750
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07007751 perf_trace_buf_update(record, event_type);
7752
Sasha Levinb67bfe02013-02-27 17:06:00 -08007753 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007754 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007755 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007756 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007757
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007758 /*
7759 * If we got specified a target task, also iterate its context and
7760 * deliver this event there too.
7761 */
7762 if (task && task != current) {
7763 struct perf_event_context *ctx;
7764 struct trace_entry *entry = record;
7765
7766 rcu_read_lock();
7767 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7768 if (!ctx)
7769 goto unlock;
7770
7771 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7772 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7773 continue;
7774 if (event->attr.config != entry->type)
7775 continue;
7776 if (perf_tp_event_match(event, &data, regs))
7777 perf_swevent_event(event, count, &data, regs);
7778 }
7779unlock:
7780 rcu_read_unlock();
7781 }
7782
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007783 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007784}
7785EXPORT_SYMBOL_GPL(perf_tp_event);
7786
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007787static void tp_perf_event_destroy(struct perf_event *event)
7788{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007789 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007790}
7791
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007792static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007793{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007794 int err;
7795
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007796 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7797 return -ENOENT;
7798
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007799 /*
7800 * no branch sampling for tracepoint events
7801 */
7802 if (has_branch_stack(event))
7803 return -EOPNOTSUPP;
7804
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007805 err = perf_trace_init(event);
7806 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007807 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007808
7809 event->destroy = tp_perf_event_destroy;
7810
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007811 return 0;
7812}
7813
7814static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007815 .task_ctx_nr = perf_sw_context,
7816
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007817 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007818 .add = perf_trace_add,
7819 .del = perf_trace_del,
7820 .start = perf_swevent_start,
7821 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007822 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007823};
7824
7825static inline void perf_tp_register(void)
7826{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007827 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007828}
Li Zefan6fb29152009-10-15 11:21:42 +08007829
Li Zefan6fb29152009-10-15 11:21:42 +08007830static void perf_event_free_filter(struct perf_event *event)
7831{
7832 ftrace_profile_free_filter(event);
7833}
7834
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007835#ifdef CONFIG_BPF_SYSCALL
7836static void bpf_overflow_handler(struct perf_event *event,
7837 struct perf_sample_data *data,
7838 struct pt_regs *regs)
7839{
7840 struct bpf_perf_event_data_kern ctx = {
7841 .data = data,
7842 .regs = regs,
7843 };
7844 int ret = 0;
7845
7846 preempt_disable();
7847 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
7848 goto out;
7849 rcu_read_lock();
Daniel Borkmann88575192016-11-26 01:28:04 +01007850 ret = BPF_PROG_RUN(event->prog, &ctx);
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007851 rcu_read_unlock();
7852out:
7853 __this_cpu_dec(bpf_prog_active);
7854 preempt_enable();
7855 if (!ret)
7856 return;
7857
7858 event->orig_overflow_handler(event, data, regs);
7859}
7860
7861static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7862{
7863 struct bpf_prog *prog;
7864
7865 if (event->overflow_handler_context)
7866 /* hw breakpoint or kernel counter */
7867 return -EINVAL;
7868
7869 if (event->prog)
7870 return -EEXIST;
7871
7872 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
7873 if (IS_ERR(prog))
7874 return PTR_ERR(prog);
7875
7876 event->prog = prog;
7877 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
7878 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
7879 return 0;
7880}
7881
7882static void perf_event_free_bpf_handler(struct perf_event *event)
7883{
7884 struct bpf_prog *prog = event->prog;
7885
7886 if (!prog)
7887 return;
7888
7889 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
7890 event->prog = NULL;
7891 bpf_prog_put(prog);
7892}
7893#else
7894static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
7895{
7896 return -EOPNOTSUPP;
7897}
7898static void perf_event_free_bpf_handler(struct perf_event *event)
7899{
7900}
7901#endif
7902
Alexei Starovoitov25415172015-03-25 12:49:20 -07007903static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7904{
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007905 bool is_kprobe, is_tracepoint;
Alexei Starovoitov25415172015-03-25 12:49:20 -07007906 struct bpf_prog *prog;
7907
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007908 if (event->attr.type == PERF_TYPE_HARDWARE ||
7909 event->attr.type == PERF_TYPE_SOFTWARE)
7910 return perf_event_set_bpf_handler(event, prog_fd);
7911
Alexei Starovoitov25415172015-03-25 12:49:20 -07007912 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7913 return -EINVAL;
7914
7915 if (event->tp_event->prog)
7916 return -EEXIST;
7917
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007918 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
7919 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
7920 if (!is_kprobe && !is_tracepoint)
7921 /* bpf programs can only be attached to u/kprobe or tracepoint */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007922 return -EINVAL;
7923
7924 prog = bpf_prog_get(prog_fd);
7925 if (IS_ERR(prog))
7926 return PTR_ERR(prog);
7927
Alexei Starovoitov98b5c2c2016-04-06 18:43:25 -07007928 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
7929 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007930 /* valid fd, but invalid bpf program type */
7931 bpf_prog_put(prog);
7932 return -EINVAL;
7933 }
7934
Alexei Starovoitov32bbe002016-04-06 18:43:28 -07007935 if (is_tracepoint) {
7936 int off = trace_event_get_offsets(event->tp_event);
7937
7938 if (prog->aux->max_ctx_offset > off) {
7939 bpf_prog_put(prog);
7940 return -EACCES;
7941 }
7942 }
Alexei Starovoitov25415172015-03-25 12:49:20 -07007943 event->tp_event->prog = prog;
7944
7945 return 0;
7946}
7947
7948static void perf_event_free_bpf_prog(struct perf_event *event)
7949{
7950 struct bpf_prog *prog;
7951
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07007952 perf_event_free_bpf_handler(event);
7953
Alexei Starovoitov25415172015-03-25 12:49:20 -07007954 if (!event->tp_event)
7955 return;
7956
7957 prog = event->tp_event->prog;
7958 if (prog) {
7959 event->tp_event->prog = NULL;
Daniel Borkmann1aacde32016-06-30 17:24:43 +02007960 bpf_prog_put(prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07007961 }
7962}
7963
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007964#else
Li Zefan6fb29152009-10-15 11:21:42 +08007965
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007966static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007967{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007968}
Li Zefan6fb29152009-10-15 11:21:42 +08007969
Li Zefan6fb29152009-10-15 11:21:42 +08007970static void perf_event_free_filter(struct perf_event *event)
7971{
7972}
7973
Alexei Starovoitov25415172015-03-25 12:49:20 -07007974static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7975{
7976 return -ENOENT;
7977}
7978
7979static void perf_event_free_bpf_prog(struct perf_event *event)
7980{
7981}
Li Zefan07b139c2009-12-21 14:27:35 +08007982#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007983
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007984#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007985void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007986{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007987 struct perf_sample_data sample;
7988 struct pt_regs *regs = data;
7989
Robert Richterfd0d0002012-04-02 20:19:08 +02007990 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007991
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007992 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007993 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007994}
7995#endif
7996
Alexander Shishkin375637b2016-04-27 18:44:46 +03007997/*
7998 * Allocate a new address filter
7999 */
8000static struct perf_addr_filter *
8001perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
8002{
8003 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
8004 struct perf_addr_filter *filter;
8005
8006 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
8007 if (!filter)
8008 return NULL;
8009
8010 INIT_LIST_HEAD(&filter->entry);
8011 list_add_tail(&filter->entry, filters);
8012
8013 return filter;
8014}
8015
8016static void free_filters_list(struct list_head *filters)
8017{
8018 struct perf_addr_filter *filter, *iter;
8019
8020 list_for_each_entry_safe(filter, iter, filters, entry) {
8021 if (filter->inode)
8022 iput(filter->inode);
8023 list_del(&filter->entry);
8024 kfree(filter);
8025 }
8026}
8027
8028/*
8029 * Free existing address filters and optionally install new ones
8030 */
8031static void perf_addr_filters_splice(struct perf_event *event,
8032 struct list_head *head)
8033{
8034 unsigned long flags;
8035 LIST_HEAD(list);
8036
8037 if (!has_addr_filter(event))
8038 return;
8039
8040 /* don't bother with children, they don't have their own filters */
8041 if (event->parent)
8042 return;
8043
8044 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
8045
8046 list_splice_init(&event->addr_filters.list, &list);
8047 if (head)
8048 list_splice(head, &event->addr_filters.list);
8049
8050 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
8051
8052 free_filters_list(&list);
8053}
8054
8055/*
8056 * Scan through mm's vmas and see if one of them matches the
8057 * @filter; if so, adjust filter's address range.
8058 * Called with mm::mmap_sem down for reading.
8059 */
8060static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
8061 struct mm_struct *mm)
8062{
8063 struct vm_area_struct *vma;
8064
8065 for (vma = mm->mmap; vma; vma = vma->vm_next) {
8066 struct file *file = vma->vm_file;
8067 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8068 unsigned long vma_size = vma->vm_end - vma->vm_start;
8069
8070 if (!file)
8071 continue;
8072
8073 if (!perf_addr_filter_match(filter, file, off, vma_size))
8074 continue;
8075
8076 return vma->vm_start;
8077 }
8078
8079 return 0;
8080}
8081
8082/*
8083 * Update event's address range filters based on the
8084 * task's existing mappings, if any.
8085 */
8086static void perf_event_addr_filters_apply(struct perf_event *event)
8087{
8088 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8089 struct task_struct *task = READ_ONCE(event->ctx->task);
8090 struct perf_addr_filter *filter;
8091 struct mm_struct *mm = NULL;
8092 unsigned int count = 0;
8093 unsigned long flags;
8094
8095 /*
8096 * We may observe TASK_TOMBSTONE, which means that the event tear-down
8097 * will stop on the parent's child_mutex that our caller is also holding
8098 */
8099 if (task == TASK_TOMBSTONE)
8100 return;
8101
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008102 if (!ifh->nr_file_filters)
8103 return;
8104
Alexander Shishkin375637b2016-04-27 18:44:46 +03008105 mm = get_task_mm(event->ctx->task);
8106 if (!mm)
8107 goto restart;
8108
8109 down_read(&mm->mmap_sem);
8110
8111 raw_spin_lock_irqsave(&ifh->lock, flags);
8112 list_for_each_entry(filter, &ifh->list, entry) {
8113 event->addr_filters_offs[count] = 0;
8114
Mathieu Poirier99f5bc92016-07-18 10:43:07 -06008115 /*
8116 * Adjust base offset if the filter is associated to a binary
8117 * that needs to be mapped:
8118 */
8119 if (filter->inode)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008120 event->addr_filters_offs[count] =
8121 perf_addr_filter_apply(filter, mm);
8122
8123 count++;
8124 }
8125
8126 event->addr_filters_gen++;
8127 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8128
8129 up_read(&mm->mmap_sem);
8130
8131 mmput(mm);
8132
8133restart:
Alexander Shishkin767ae082016-09-06 16:23:49 +03008134 perf_event_stop(event, 1);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008135}
8136
8137/*
8138 * Address range filtering: limiting the data to certain
8139 * instruction address ranges. Filters are ioctl()ed to us from
8140 * userspace as ascii strings.
8141 *
8142 * Filter string format:
8143 *
8144 * ACTION RANGE_SPEC
8145 * where ACTION is one of the
8146 * * "filter": limit the trace to this region
8147 * * "start": start tracing from this address
8148 * * "stop": stop tracing at this address/region;
8149 * RANGE_SPEC is
8150 * * for kernel addresses: <start address>[/<size>]
8151 * * for object files: <start address>[/<size>]@</path/to/object/file>
8152 *
8153 * if <size> is not specified, the range is treated as a single address.
8154 */
8155enum {
Alexander Shishkine96271f2016-11-18 13:38:43 +02008156 IF_ACT_NONE = -1,
Alexander Shishkin375637b2016-04-27 18:44:46 +03008157 IF_ACT_FILTER,
8158 IF_ACT_START,
8159 IF_ACT_STOP,
8160 IF_SRC_FILE,
8161 IF_SRC_KERNEL,
8162 IF_SRC_FILEADDR,
8163 IF_SRC_KERNELADDR,
8164};
8165
8166enum {
8167 IF_STATE_ACTION = 0,
8168 IF_STATE_SOURCE,
8169 IF_STATE_END,
8170};
8171
8172static const match_table_t if_tokens = {
8173 { IF_ACT_FILTER, "filter" },
8174 { IF_ACT_START, "start" },
8175 { IF_ACT_STOP, "stop" },
8176 { IF_SRC_FILE, "%u/%u@%s" },
8177 { IF_SRC_KERNEL, "%u/%u" },
8178 { IF_SRC_FILEADDR, "%u@%s" },
8179 { IF_SRC_KERNELADDR, "%u" },
Alexander Shishkine96271f2016-11-18 13:38:43 +02008180 { IF_ACT_NONE, NULL },
Alexander Shishkin375637b2016-04-27 18:44:46 +03008181};
8182
8183/*
8184 * Address filter string parser
8185 */
8186static int
8187perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
8188 struct list_head *filters)
8189{
8190 struct perf_addr_filter *filter = NULL;
8191 char *start, *orig, *filename = NULL;
8192 struct path path;
8193 substring_t args[MAX_OPT_ARGS];
8194 int state = IF_STATE_ACTION, token;
8195 unsigned int kernel = 0;
8196 int ret = -EINVAL;
8197
8198 orig = fstr = kstrdup(fstr, GFP_KERNEL);
8199 if (!fstr)
8200 return -ENOMEM;
8201
8202 while ((start = strsep(&fstr, " ,\n")) != NULL) {
8203 ret = -EINVAL;
8204
8205 if (!*start)
8206 continue;
8207
8208 /* filter definition begins */
8209 if (state == IF_STATE_ACTION) {
8210 filter = perf_addr_filter_new(event, filters);
8211 if (!filter)
8212 goto fail;
8213 }
8214
8215 token = match_token(start, if_tokens, args);
8216 switch (token) {
8217 case IF_ACT_FILTER:
8218 case IF_ACT_START:
8219 filter->filter = 1;
8220
8221 case IF_ACT_STOP:
8222 if (state != IF_STATE_ACTION)
8223 goto fail;
8224
8225 state = IF_STATE_SOURCE;
8226 break;
8227
8228 case IF_SRC_KERNELADDR:
8229 case IF_SRC_KERNEL:
8230 kernel = 1;
8231
8232 case IF_SRC_FILEADDR:
8233 case IF_SRC_FILE:
8234 if (state != IF_STATE_SOURCE)
8235 goto fail;
8236
8237 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
8238 filter->range = 1;
8239
8240 *args[0].to = 0;
8241 ret = kstrtoul(args[0].from, 0, &filter->offset);
8242 if (ret)
8243 goto fail;
8244
8245 if (filter->range) {
8246 *args[1].to = 0;
8247 ret = kstrtoul(args[1].from, 0, &filter->size);
8248 if (ret)
8249 goto fail;
8250 }
8251
Mathieu Poirier4059ffd2016-07-18 10:43:05 -06008252 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
8253 int fpos = filter->range ? 2 : 1;
8254
8255 filename = match_strdup(&args[fpos]);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008256 if (!filename) {
8257 ret = -ENOMEM;
8258 goto fail;
8259 }
8260 }
8261
8262 state = IF_STATE_END;
8263 break;
8264
8265 default:
8266 goto fail;
8267 }
8268
8269 /*
8270 * Filter definition is fully parsed, validate and install it.
8271 * Make sure that it doesn't contradict itself or the event's
8272 * attribute.
8273 */
8274 if (state == IF_STATE_END) {
Alexander Shishkin9ccbfbb2017-01-26 11:40:56 +02008275 ret = -EINVAL;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008276 if (kernel && event->attr.exclude_kernel)
8277 goto fail;
8278
8279 if (!kernel) {
8280 if (!filename)
8281 goto fail;
8282
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008283 /*
8284 * For now, we only support file-based filters
8285 * in per-task events; doing so for CPU-wide
8286 * events requires additional context switching
8287 * trickery, since same object code will be
8288 * mapped at different virtual addresses in
8289 * different processes.
8290 */
8291 ret = -EOPNOTSUPP;
8292 if (!event->ctx->task)
8293 goto fail_free_name;
8294
Alexander Shishkin375637b2016-04-27 18:44:46 +03008295 /* look up the path and grab its inode */
8296 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
8297 if (ret)
8298 goto fail_free_name;
8299
8300 filter->inode = igrab(d_inode(path.dentry));
8301 path_put(&path);
8302 kfree(filename);
8303 filename = NULL;
8304
8305 ret = -EINVAL;
8306 if (!filter->inode ||
8307 !S_ISREG(filter->inode->i_mode))
8308 /* free_filters_list() will iput() */
8309 goto fail;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008310
8311 event->addr_filters.nr_file_filters++;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008312 }
8313
8314 /* ready to consume more filters */
8315 state = IF_STATE_ACTION;
8316 filter = NULL;
8317 }
8318 }
8319
8320 if (state != IF_STATE_ACTION)
8321 goto fail;
8322
8323 kfree(orig);
8324
8325 return 0;
8326
8327fail_free_name:
8328 kfree(filename);
8329fail:
8330 free_filters_list(filters);
8331 kfree(orig);
8332
8333 return ret;
8334}
8335
8336static int
8337perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
8338{
8339 LIST_HEAD(filters);
8340 int ret;
8341
8342 /*
8343 * Since this is called in perf_ioctl() path, we're already holding
8344 * ctx::mutex.
8345 */
8346 lockdep_assert_held(&event->ctx->mutex);
8347
8348 if (WARN_ON_ONCE(event->parent))
8349 return -EINVAL;
8350
Alexander Shishkin375637b2016-04-27 18:44:46 +03008351 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
8352 if (ret)
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008353 goto fail_clear_files;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008354
8355 ret = event->pmu->addr_filters_validate(&filters);
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008356 if (ret)
8357 goto fail_free_filters;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008358
8359 /* remove existing filters, if any */
8360 perf_addr_filters_splice(event, &filters);
8361
8362 /* install new filters */
8363 perf_event_for_each_child(event, perf_event_addr_filters_apply);
8364
8365 return ret;
Alexander Shishkin6ce77bf2017-01-26 11:40:57 +02008366
8367fail_free_filters:
8368 free_filters_list(&filters);
8369
8370fail_clear_files:
8371 event->addr_filters.nr_file_filters = 0;
8372
8373 return ret;
Alexander Shishkin375637b2016-04-27 18:44:46 +03008374}
8375
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008376static int perf_event_set_filter(struct perf_event *event, void __user *arg)
8377{
8378 char *filter_str;
8379 int ret = -EINVAL;
8380
Alexander Shishkin375637b2016-04-27 18:44:46 +03008381 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
8382 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
8383 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008384 return -EINVAL;
8385
8386 filter_str = strndup_user(arg, PAGE_SIZE);
8387 if (IS_ERR(filter_str))
8388 return PTR_ERR(filter_str);
8389
8390 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
8391 event->attr.type == PERF_TYPE_TRACEPOINT)
8392 ret = ftrace_profile_set_filter(event, event->attr.config,
8393 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008394 else if (has_addr_filter(event))
8395 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03008396
8397 kfree(filter_str);
8398 return ret;
8399}
8400
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008401/*
8402 * hrtimer based swevent callback
8403 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008404
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008405static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008406{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008407 enum hrtimer_restart ret = HRTIMER_RESTART;
8408 struct perf_sample_data data;
8409 struct pt_regs *regs;
8410 struct perf_event *event;
8411 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008412
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008413 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008414
8415 if (event->state != PERF_EVENT_STATE_ACTIVE)
8416 return HRTIMER_NORESTART;
8417
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008418 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008419
Robert Richterfd0d0002012-04-02 20:19:08 +02008420 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008421 regs = get_irq_regs();
8422
8423 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08008424 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02008425 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008426 ret = HRTIMER_NORESTART;
8427 }
8428
8429 period = max_t(u64, 10000, event->hw.sample_period);
8430 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
8431
8432 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008433}
8434
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008435static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008436{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008437 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008438 s64 period;
8439
8440 if (!is_sampling_event(event))
8441 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008442
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008443 period = local64_read(&hwc->period_left);
8444 if (period) {
8445 if (period < 0)
8446 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008447
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01008448 local64_set(&hwc->period_left, 0);
8449 } else {
8450 period = max_t(u64, 10000, hwc->sample_period);
8451 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00008452 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
8453 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008454}
8455
8456static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8457{
8458 struct hw_perf_event *hwc = &event->hw;
8459
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008460 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008461 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008462 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008463
8464 hrtimer_cancel(&hwc->hrtimer);
8465 }
8466}
8467
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008468static void perf_swevent_init_hrtimer(struct perf_event *event)
8469{
8470 struct hw_perf_event *hwc = &event->hw;
8471
8472 if (!is_sampling_event(event))
8473 return;
8474
8475 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8476 hwc->hrtimer.function = perf_swevent_hrtimer;
8477
8478 /*
8479 * Since hrtimers have a fixed rate, we can do a static freq->period
8480 * mapping and avoid the whole period adjust feedback stuff.
8481 */
8482 if (event->attr.freq) {
8483 long freq = event->attr.sample_freq;
8484
8485 event->attr.sample_period = NSEC_PER_SEC / freq;
8486 hwc->sample_period = event->attr.sample_period;
8487 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008488 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008489 event->attr.freq = 0;
8490 }
8491}
8492
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008493/*
8494 * Software event: cpu wall time clock
8495 */
8496
8497static void cpu_clock_event_update(struct perf_event *event)
8498{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008499 s64 prev;
8500 u64 now;
8501
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008502 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008503 prev = local64_xchg(&event->hw.prev_count, now);
8504 local64_add(now - prev, &event->count);
8505}
8506
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008507static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008508{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008509 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008510 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008511}
8512
8513static void cpu_clock_event_stop(struct perf_event *event, int flags)
8514{
8515 perf_swevent_cancel_hrtimer(event);
8516 cpu_clock_event_update(event);
8517}
8518
8519static int cpu_clock_event_add(struct perf_event *event, int flags)
8520{
8521 if (flags & PERF_EF_START)
8522 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008523 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008524
8525 return 0;
8526}
8527
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008528static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008529{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008530 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008531}
8532
8533static void cpu_clock_event_read(struct perf_event *event)
8534{
8535 cpu_clock_event_update(event);
8536}
8537
8538static int cpu_clock_event_init(struct perf_event *event)
8539{
8540 if (event->attr.type != PERF_TYPE_SOFTWARE)
8541 return -ENOENT;
8542
8543 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8544 return -ENOENT;
8545
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008546 /*
8547 * no branch sampling for software events
8548 */
8549 if (has_branch_stack(event))
8550 return -EOPNOTSUPP;
8551
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008552 perf_swevent_init_hrtimer(event);
8553
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008554 return 0;
8555}
8556
8557static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008558 .task_ctx_nr = perf_sw_context,
8559
Peter Zijlstra34f43922015-02-20 14:05:38 +01008560 .capabilities = PERF_PMU_CAP_NO_NMI,
8561
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008562 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008563 .add = cpu_clock_event_add,
8564 .del = cpu_clock_event_del,
8565 .start = cpu_clock_event_start,
8566 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008567 .read = cpu_clock_event_read,
8568};
8569
8570/*
8571 * Software event: task time clock
8572 */
8573
8574static void task_clock_event_update(struct perf_event *event, u64 now)
8575{
8576 u64 prev;
8577 s64 delta;
8578
8579 prev = local64_xchg(&event->hw.prev_count, now);
8580 delta = now - prev;
8581 local64_add(delta, &event->count);
8582}
8583
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008584static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008585{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008586 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008587 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008588}
8589
8590static void task_clock_event_stop(struct perf_event *event, int flags)
8591{
8592 perf_swevent_cancel_hrtimer(event);
8593 task_clock_event_update(event, event->ctx->time);
8594}
8595
8596static int task_clock_event_add(struct perf_event *event, int flags)
8597{
8598 if (flags & PERF_EF_START)
8599 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008600 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008601
8602 return 0;
8603}
8604
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008605static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008606{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008607 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008608}
8609
8610static void task_clock_event_read(struct perf_event *event)
8611{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008612 u64 now = perf_clock();
8613 u64 delta = now - event->ctx->timestamp;
8614 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008615
8616 task_clock_event_update(event, time);
8617}
8618
8619static int task_clock_event_init(struct perf_event *event)
8620{
8621 if (event->attr.type != PERF_TYPE_SOFTWARE)
8622 return -ENOENT;
8623
8624 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8625 return -ENOENT;
8626
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008627 /*
8628 * no branch sampling for software events
8629 */
8630 if (has_branch_stack(event))
8631 return -EOPNOTSUPP;
8632
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008633 perf_swevent_init_hrtimer(event);
8634
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008635 return 0;
8636}
8637
8638static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008639 .task_ctx_nr = perf_sw_context,
8640
Peter Zijlstra34f43922015-02-20 14:05:38 +01008641 .capabilities = PERF_PMU_CAP_NO_NMI,
8642
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008643 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008644 .add = task_clock_event_add,
8645 .del = task_clock_event_del,
8646 .start = task_clock_event_start,
8647 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008648 .read = task_clock_event_read,
8649};
8650
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008651static void perf_pmu_nop_void(struct pmu *pmu)
8652{
8653}
8654
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008655static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8656{
8657}
8658
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008659static int perf_pmu_nop_int(struct pmu *pmu)
8660{
8661 return 0;
8662}
8663
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008664static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008665
8666static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008667{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008668 __this_cpu_write(nop_txn_flags, flags);
8669
8670 if (flags & ~PERF_PMU_TXN_ADD)
8671 return;
8672
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008673 perf_pmu_disable(pmu);
8674}
8675
8676static int perf_pmu_commit_txn(struct pmu *pmu)
8677{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008678 unsigned int flags = __this_cpu_read(nop_txn_flags);
8679
8680 __this_cpu_write(nop_txn_flags, 0);
8681
8682 if (flags & ~PERF_PMU_TXN_ADD)
8683 return 0;
8684
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008685 perf_pmu_enable(pmu);
8686 return 0;
8687}
8688
8689static void perf_pmu_cancel_txn(struct pmu *pmu)
8690{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008691 unsigned int flags = __this_cpu_read(nop_txn_flags);
8692
8693 __this_cpu_write(nop_txn_flags, 0);
8694
8695 if (flags & ~PERF_PMU_TXN_ADD)
8696 return;
8697
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008698 perf_pmu_enable(pmu);
8699}
8700
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008701static int perf_event_idx_default(struct perf_event *event)
8702{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008703 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008704}
8705
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008706/*
8707 * Ensures all contexts with the same task_ctx_nr have the same
8708 * pmu_cpu_context too.
8709 */
Mark Rutland9e317042014-02-10 17:44:18 +00008710static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008711{
8712 struct pmu *pmu;
8713
8714 if (ctxn < 0)
8715 return NULL;
8716
8717 list_for_each_entry(pmu, &pmus, entry) {
8718 if (pmu->task_ctx_nr == ctxn)
8719 return pmu->pmu_cpu_context;
8720 }
8721
8722 return NULL;
8723}
8724
Peter Zijlstra51676952010-12-07 14:18:20 +01008725static void free_pmu_context(struct pmu *pmu)
8726{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008727 mutex_lock(&pmus_lock);
Peter Zijlstra51676952010-12-07 14:18:20 +01008728 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008729 mutex_unlock(&pmus_lock);
8730}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008731
8732/*
8733 * Let userspace know that this PMU supports address range filtering:
8734 */
8735static ssize_t nr_addr_filters_show(struct device *dev,
8736 struct device_attribute *attr,
8737 char *page)
8738{
8739 struct pmu *pmu = dev_get_drvdata(dev);
8740
8741 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8742}
8743DEVICE_ATTR_RO(nr_addr_filters);
8744
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008745static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008746
Peter Zijlstraabe43402010-11-17 23:17:37 +01008747static ssize_t
8748type_show(struct device *dev, struct device_attribute *attr, char *page)
8749{
8750 struct pmu *pmu = dev_get_drvdata(dev);
8751
8752 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8753}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008754static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008755
Stephane Eranian62b85632013-04-03 14:21:34 +02008756static ssize_t
8757perf_event_mux_interval_ms_show(struct device *dev,
8758 struct device_attribute *attr,
8759 char *page)
8760{
8761 struct pmu *pmu = dev_get_drvdata(dev);
8762
8763 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8764}
8765
Peter Zijlstra272325c2015-04-15 11:41:58 +02008766static DEFINE_MUTEX(mux_interval_mutex);
8767
Stephane Eranian62b85632013-04-03 14:21:34 +02008768static ssize_t
8769perf_event_mux_interval_ms_store(struct device *dev,
8770 struct device_attribute *attr,
8771 const char *buf, size_t count)
8772{
8773 struct pmu *pmu = dev_get_drvdata(dev);
8774 int timer, cpu, ret;
8775
8776 ret = kstrtoint(buf, 0, &timer);
8777 if (ret)
8778 return ret;
8779
8780 if (timer < 1)
8781 return -EINVAL;
8782
8783 /* same value, noting to do */
8784 if (timer == pmu->hrtimer_interval_ms)
8785 return count;
8786
Peter Zijlstra272325c2015-04-15 11:41:58 +02008787 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008788 pmu->hrtimer_interval_ms = timer;
8789
8790 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02008791 get_online_cpus();
8792 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008793 struct perf_cpu_context *cpuctx;
8794 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8795 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8796
Peter Zijlstra272325c2015-04-15 11:41:58 +02008797 cpu_function_call(cpu,
8798 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02008799 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02008800 put_online_cpus();
8801 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008802
8803 return count;
8804}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008805static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02008806
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008807static struct attribute *pmu_dev_attrs[] = {
8808 &dev_attr_type.attr,
8809 &dev_attr_perf_event_mux_interval_ms.attr,
8810 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008811};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008812ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008813
8814static int pmu_bus_running;
8815static struct bus_type pmu_bus = {
8816 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008817 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008818};
8819
8820static void pmu_dev_release(struct device *dev)
8821{
8822 kfree(dev);
8823}
8824
8825static int pmu_dev_alloc(struct pmu *pmu)
8826{
8827 int ret = -ENOMEM;
8828
8829 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
8830 if (!pmu->dev)
8831 goto out;
8832
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01008833 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01008834 device_initialize(pmu->dev);
8835 ret = dev_set_name(pmu->dev, "%s", pmu->name);
8836 if (ret)
8837 goto free_dev;
8838
8839 dev_set_drvdata(pmu->dev, pmu);
8840 pmu->dev->bus = &pmu_bus;
8841 pmu->dev->release = pmu_dev_release;
8842 ret = device_add(pmu->dev);
8843 if (ret)
8844 goto free_dev;
8845
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008846 /* For PMUs with address filters, throw in an extra attribute: */
8847 if (pmu->nr_addr_filters)
8848 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
8849
8850 if (ret)
8851 goto del_dev;
8852
Peter Zijlstraabe43402010-11-17 23:17:37 +01008853out:
8854 return ret;
8855
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008856del_dev:
8857 device_del(pmu->dev);
8858
Peter Zijlstraabe43402010-11-17 23:17:37 +01008859free_dev:
8860 put_device(pmu->dev);
8861 goto out;
8862}
8863
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008864static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008865static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008866
Mischa Jonker03d8e802013-06-04 11:45:48 +02008867int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008868{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008869 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008870
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008871 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008872 ret = -ENOMEM;
8873 pmu->pmu_disable_count = alloc_percpu(int);
8874 if (!pmu->pmu_disable_count)
8875 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008876
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008877 pmu->type = -1;
8878 if (!name)
8879 goto skip_type;
8880 pmu->name = name;
8881
8882 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08008883 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
8884 if (type < 0) {
8885 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008886 goto free_pdc;
8887 }
8888 }
8889 pmu->type = type;
8890
Peter Zijlstraabe43402010-11-17 23:17:37 +01008891 if (pmu_bus_running) {
8892 ret = pmu_dev_alloc(pmu);
8893 if (ret)
8894 goto free_idr;
8895 }
8896
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008897skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01008898 if (pmu->task_ctx_nr == perf_hw_context) {
8899 static int hw_context_taken = 0;
8900
Mark Rutland5101ef22016-04-26 11:33:46 +01008901 /*
8902 * Other than systems with heterogeneous CPUs, it never makes
8903 * sense for two PMUs to share perf_hw_context. PMUs which are
8904 * uncore must use perf_invalid_context.
8905 */
8906 if (WARN_ON_ONCE(hw_context_taken &&
8907 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01008908 pmu->task_ctx_nr = perf_invalid_context;
8909
8910 hw_context_taken = 1;
8911 }
8912
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008913 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
8914 if (pmu->pmu_cpu_context)
8915 goto got_cpu_context;
8916
Wei Yongjunc4814202013-04-12 11:05:54 +08008917 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008918 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
8919 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01008920 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008921
8922 for_each_possible_cpu(cpu) {
8923 struct perf_cpu_context *cpuctx;
8924
8925 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02008926 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008927 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008928 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008929 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02008930
Peter Zijlstra272325c2015-04-15 11:41:58 +02008931 __perf_mux_hrtimer_init(cpuctx, cpu);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008932 }
8933
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008934got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008935 if (!pmu->start_txn) {
8936 if (pmu->pmu_enable) {
8937 /*
8938 * If we have pmu_enable/pmu_disable calls, install
8939 * transaction stubs that use that to try and batch
8940 * hardware accesses.
8941 */
8942 pmu->start_txn = perf_pmu_start_txn;
8943 pmu->commit_txn = perf_pmu_commit_txn;
8944 pmu->cancel_txn = perf_pmu_cancel_txn;
8945 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008946 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008947 pmu->commit_txn = perf_pmu_nop_int;
8948 pmu->cancel_txn = perf_pmu_nop_void;
8949 }
8950 }
8951
8952 if (!pmu->pmu_enable) {
8953 pmu->pmu_enable = perf_pmu_nop_void;
8954 pmu->pmu_disable = perf_pmu_nop_void;
8955 }
8956
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008957 if (!pmu->event_idx)
8958 pmu->event_idx = perf_event_idx_default;
8959
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008960 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008961 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008962 ret = 0;
8963unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008964 mutex_unlock(&pmus_lock);
8965
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008966 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008967
Peter Zijlstraabe43402010-11-17 23:17:37 +01008968free_dev:
8969 device_del(pmu->dev);
8970 put_device(pmu->dev);
8971
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008972free_idr:
8973 if (pmu->type >= PERF_TYPE_MAX)
8974 idr_remove(&pmu_idr, pmu->type);
8975
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008976free_pdc:
8977 free_percpu(pmu->pmu_disable_count);
8978 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008979}
Yan, Zhengc464c762014-03-18 16:56:41 +08008980EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008981
8982void perf_pmu_unregister(struct pmu *pmu)
8983{
Jiri Olsa09338402016-10-20 13:10:11 +02008984 int remove_device;
8985
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008986 mutex_lock(&pmus_lock);
Jiri Olsa09338402016-10-20 13:10:11 +02008987 remove_device = pmu_bus_running;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008988 list_del_rcu(&pmu->entry);
8989 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008990
8991 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02008992 * We dereference the pmu list under both SRCU and regular RCU, so
8993 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008994 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008995 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02008996 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008997
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008998 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008999 if (pmu->type >= PERF_TYPE_MAX)
9000 idr_remove(&pmu_idr, pmu->type);
Jiri Olsa09338402016-10-20 13:10:11 +02009001 if (remove_device) {
9002 if (pmu->nr_addr_filters)
9003 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
9004 device_del(pmu->dev);
9005 put_device(pmu->dev);
9006 }
Peter Zijlstra51676952010-12-07 14:18:20 +01009007 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009008}
Yan, Zhengc464c762014-03-18 16:56:41 +08009009EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009010
Mark Rutlandcc34b982015-01-07 14:56:51 +00009011static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
9012{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009013 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00009014 int ret;
9015
9016 if (!try_module_get(pmu->module))
9017 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009018
9019 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02009020 /*
9021 * This ctx->mutex can nest when we're called through
9022 * inheritance. See the perf_event_ctx_lock_nested() comment.
9023 */
9024 ctx = perf_event_ctx_lock_nested(event->group_leader,
9025 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009026 BUG_ON(!ctx);
9027 }
9028
Mark Rutlandcc34b982015-01-07 14:56:51 +00009029 event->pmu = pmu;
9030 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01009031
9032 if (ctx)
9033 perf_event_ctx_unlock(event->group_leader, ctx);
9034
Mark Rutlandcc34b982015-01-07 14:56:51 +00009035 if (ret)
9036 module_put(pmu->module);
9037
9038 return ret;
9039}
9040
Geliang Tang18ab2cd2015-09-27 23:25:50 +08009041static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009042{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009043 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009044 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08009045 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009046
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009047 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009048
Kan Liang40999312017-01-18 08:21:01 -05009049 /* Try parent's PMU first: */
9050 if (event->parent && event->parent->pmu) {
9051 pmu = event->parent->pmu;
9052 ret = perf_try_init_event(pmu, event);
9053 if (!ret)
9054 goto unlock;
9055 }
9056
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009057 rcu_read_lock();
9058 pmu = idr_find(&pmu_idr, event->attr.type);
9059 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08009060 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009061 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08009062 if (ret)
9063 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009064 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08009065 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009066
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009067 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00009068 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009069 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009070 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009071
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009072 if (ret != -ENOENT) {
9073 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009074 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009075 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009076 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02009077 pmu = ERR_PTR(-ENOENT);
9078unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009079 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009080
9081 return pmu;
9082}
9083
Kan Liangf2fb6be2016-03-23 11:24:37 -07009084static void attach_sb_event(struct perf_event *event)
9085{
9086 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
9087
9088 raw_spin_lock(&pel->lock);
9089 list_add_rcu(&event->sb_list, &pel->list);
9090 raw_spin_unlock(&pel->lock);
9091}
9092
Peter Zijlstraaab5b712016-05-12 17:26:46 +02009093/*
9094 * We keep a list of all !task (and therefore per-cpu) events
9095 * that need to receive side-band records.
9096 *
9097 * This avoids having to scan all the various PMU per-cpu contexts
9098 * looking for them.
9099 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07009100static void account_pmu_sb_event(struct perf_event *event)
9101{
David Carrillo-Cisnerosa4f144e2016-06-01 12:33:05 -07009102 if (is_sb_event(event))
Kan Liangf2fb6be2016-03-23 11:24:37 -07009103 attach_sb_event(event);
9104}
9105
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009106static void account_event_cpu(struct perf_event *event, int cpu)
9107{
9108 if (event->parent)
9109 return;
9110
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009111 if (is_cgroup_event(event))
9112 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
9113}
9114
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009115/* Freq events need the tick to stay alive (see perf_event_task_tick). */
9116static void account_freq_event_nohz(void)
9117{
9118#ifdef CONFIG_NO_HZ_FULL
9119 /* Lock so we don't race with concurrent unaccount */
9120 spin_lock(&nr_freq_lock);
9121 if (atomic_inc_return(&nr_freq_events) == 1)
9122 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
9123 spin_unlock(&nr_freq_lock);
9124#endif
9125}
9126
9127static void account_freq_event(void)
9128{
9129 if (tick_nohz_full_enabled())
9130 account_freq_event_nohz();
9131 else
9132 atomic_inc(&nr_freq_events);
9133}
9134
9135
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009136static void account_event(struct perf_event *event)
9137{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009138 bool inc = false;
9139
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009140 if (event->parent)
9141 return;
9142
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009143 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009144 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009145 if (event->attr.mmap || event->attr.mmap_data)
9146 atomic_inc(&nr_mmap_events);
9147 if (event->attr.comm)
9148 atomic_inc(&nr_comm_events);
9149 if (event->attr.task)
9150 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02009151 if (event->attr.freq)
9152 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03009153 if (event->attr.context_switch) {
9154 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009155 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03009156 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009157 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009158 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009159 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01009160 inc = true;
9161
Peter Zijlstra9107c892016-02-24 18:45:45 +01009162 if (inc) {
9163 if (atomic_inc_not_zero(&perf_sched_count))
9164 goto enabled;
9165
9166 mutex_lock(&perf_sched_mutex);
9167 if (!atomic_read(&perf_sched_count)) {
9168 static_branch_enable(&perf_sched_events);
9169 /*
9170 * Guarantee that all CPUs observe they key change and
9171 * call the perf scheduling hooks before proceeding to
9172 * install events that need them.
9173 */
9174 synchronize_sched();
9175 }
9176 /*
9177 * Now that we have waited for the sync_sched(), allow further
9178 * increments to by-pass the mutex.
9179 */
9180 atomic_inc(&perf_sched_count);
9181 mutex_unlock(&perf_sched_mutex);
9182 }
9183enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009184
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02009185 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07009186
9187 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02009188}
9189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009190/*
9191 * Allocate and initialize a event structure
9192 */
9193static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009194perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009195 struct task_struct *task,
9196 struct perf_event *group_leader,
9197 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009198 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00009199 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009200{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02009201 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009202 struct perf_event *event;
9203 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009204 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009205
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009206 if ((unsigned)cpu >= nr_cpu_ids) {
9207 if (!task || cpu != -1)
9208 return ERR_PTR(-EINVAL);
9209 }
9210
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009211 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009212 if (!event)
9213 return ERR_PTR(-ENOMEM);
9214
9215 /*
9216 * Single events are their own group leaders, with an
9217 * empty sibling list:
9218 */
9219 if (!group_leader)
9220 group_leader = event;
9221
9222 mutex_init(&event->child_mutex);
9223 INIT_LIST_HEAD(&event->child_list);
9224
9225 INIT_LIST_HEAD(&event->group_entry);
9226 INIT_LIST_HEAD(&event->event_entry);
9227 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009228 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01009229 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009230 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01009231 INIT_HLIST_NODE(&event->hlist_entry);
9232
Peter Zijlstra10c6db12011-11-26 02:47:31 +01009233
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009234 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08009235 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009236
9237 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03009238 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009239
Al Viroa6fa9412012-08-20 14:59:25 +01009240 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009241 event->cpu = cpu;
9242 event->attr = *attr;
9243 event->group_leader = group_leader;
9244 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009245 event->oncpu = -1;
9246
9247 event->parent = parent_event;
9248
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08009249 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009250 event->id = atomic64_inc_return(&perf_event_id);
9251
9252 event->state = PERF_EVENT_STATE_INACTIVE;
9253
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009254 if (task) {
9255 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009256 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009257 * XXX pmu::event_init needs to know what task to account to
9258 * and we cannot use the ctx information because we need the
9259 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009260 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01009261 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02009262 }
9263
Peter Zijlstra34f43922015-02-20 14:05:38 +01009264 event->clock = &local_clock;
9265 if (parent_event)
9266 event->clock = parent_event->clock;
9267
Avi Kivity4dc0da82011-06-29 18:42:35 +03009268 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01009269 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009270 context = parent_event->overflow_handler_context;
Arnd Bergmannf1e4ba52016-09-06 15:10:22 +02009271#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -07009272 if (overflow_handler == bpf_overflow_handler) {
9273 struct bpf_prog *prog = bpf_prog_inc(parent_event->prog);
9274
9275 if (IS_ERR(prog)) {
9276 err = PTR_ERR(prog);
9277 goto err_ns;
9278 }
9279 event->prog = prog;
9280 event->orig_overflow_handler =
9281 parent_event->orig_overflow_handler;
9282 }
9283#endif
Avi Kivity4dc0da82011-06-29 18:42:35 +03009284 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01009285
Wang Nan18794452016-03-28 06:41:30 +00009286 if (overflow_handler) {
9287 event->overflow_handler = overflow_handler;
9288 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00009289 } else if (is_write_backward(event)){
9290 event->overflow_handler = perf_event_output_backward;
9291 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00009292 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00009293 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00009294 event->overflow_handler_context = NULL;
9295 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02009296
Jiri Olsa0231bb52013-02-01 11:23:45 +01009297 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009298
9299 pmu = NULL;
9300
9301 hwc = &event->hw;
9302 hwc->sample_period = attr->sample_period;
9303 if (attr->freq && attr->sample_freq)
9304 hwc->sample_period = 1;
9305 hwc->last_period = hwc->sample_period;
9306
Peter Zijlstrae7850592010-05-21 14:43:08 +02009307 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009308
9309 /*
9310 * we currently do not support PERF_FORMAT_GROUP on inherited events
9311 */
9312 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009313 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009314
Yan, Zhenga46a2302014-11-04 21:56:06 -05009315 if (!has_branch_stack(event))
9316 event->attr.branch_sample_type = 0;
9317
Matt Fleming79dff512015-01-23 18:45:42 +00009318 if (cgroup_fd != -1) {
9319 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
9320 if (err)
9321 goto err_ns;
9322 }
9323
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009324 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009325 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009326 goto err_ns;
9327 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009328 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009329 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009330 }
9331
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009332 err = exclusive_event_init(event);
9333 if (err)
9334 goto err_pmu;
9335
Alexander Shishkin375637b2016-04-27 18:44:46 +03009336 if (has_addr_filter(event)) {
9337 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
9338 sizeof(unsigned long),
9339 GFP_KERNEL);
9340 if (!event->addr_filters_offs)
9341 goto err_per_task;
9342
9343 /* force hw sync on the address filters */
9344 event->addr_filters_gen = 1;
9345 }
9346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009347 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02009348 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009349 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009350 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03009351 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01009352 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009353 }
9354
Alexander Shishkin927a5572016-03-02 13:24:14 +02009355 /* symmetric to unaccount_event() in _free_event() */
9356 account_event(event);
9357
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009358 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009359
Alexander Shishkin375637b2016-04-27 18:44:46 +03009360err_addr_filters:
9361 kfree(event->addr_filters_offs);
9362
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009363err_per_task:
9364 exclusive_event_destroy(event);
9365
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009366err_pmu:
9367 if (event->destroy)
9368 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08009369 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009370err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00009371 if (is_cgroup_event(event))
9372 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02009373 if (event->ns)
9374 put_pid_ns(event->ns);
9375 kfree(event);
9376
9377 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009378}
9379
9380static int perf_copy_attr(struct perf_event_attr __user *uattr,
9381 struct perf_event_attr *attr)
9382{
9383 u32 size;
9384 int ret;
9385
9386 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
9387 return -EFAULT;
9388
9389 /*
9390 * zero the full structure, so that a short copy will be nice.
9391 */
9392 memset(attr, 0, sizeof(*attr));
9393
9394 ret = get_user(size, &uattr->size);
9395 if (ret)
9396 return ret;
9397
9398 if (size > PAGE_SIZE) /* silly large */
9399 goto err_size;
9400
9401 if (!size) /* abi compat */
9402 size = PERF_ATTR_SIZE_VER0;
9403
9404 if (size < PERF_ATTR_SIZE_VER0)
9405 goto err_size;
9406
9407 /*
9408 * If we're handed a bigger struct than we know of,
9409 * ensure all the unknown bits are 0 - i.e. new
9410 * user-space does not rely on any kernel feature
9411 * extensions we dont know about yet.
9412 */
9413 if (size > sizeof(*attr)) {
9414 unsigned char __user *addr;
9415 unsigned char __user *end;
9416 unsigned char val;
9417
9418 addr = (void __user *)uattr + sizeof(*attr);
9419 end = (void __user *)uattr + size;
9420
9421 for (; addr < end; addr++) {
9422 ret = get_user(val, addr);
9423 if (ret)
9424 return ret;
9425 if (val)
9426 goto err_size;
9427 }
9428 size = sizeof(*attr);
9429 }
9430
9431 ret = copy_from_user(attr, uattr, size);
9432 if (ret)
9433 return -EFAULT;
9434
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05309435 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009436 return -EINVAL;
9437
9438 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
9439 return -EINVAL;
9440
9441 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9442 return -EINVAL;
9443
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009444 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9445 u64 mask = attr->branch_sample_type;
9446
9447 /* only using defined bits */
9448 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9449 return -EINVAL;
9450
9451 /* at least one branch bit must be set */
9452 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9453 return -EINVAL;
9454
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009455 /* propagate priv level, when not set for branch */
9456 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9457
9458 /* exclude_kernel checked on syscall entry */
9459 if (!attr->exclude_kernel)
9460 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9461
9462 if (!attr->exclude_user)
9463 mask |= PERF_SAMPLE_BRANCH_USER;
9464
9465 if (!attr->exclude_hv)
9466 mask |= PERF_SAMPLE_BRANCH_HV;
9467 /*
9468 * adjust user setting (for HW filter setup)
9469 */
9470 attr->branch_sample_type = mask;
9471 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009472 /* privileged levels capture (kernel, hv): check permissions */
9473 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009474 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9475 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009476 }
Jiri Olsa40189942012-08-07 15:20:37 +02009477
Jiri Olsac5ebced2012-08-07 15:20:40 +02009478 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009479 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009480 if (ret)
9481 return ret;
9482 }
9483
9484 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9485 if (!arch_perf_have_user_stack_dump())
9486 return -ENOSYS;
9487
9488 /*
9489 * We have __u32 type for the size, but so far
9490 * we can only use __u16 as maximum due to the
9491 * __u16 sample size limit.
9492 */
9493 if (attr->sample_stack_user >= USHRT_MAX)
9494 ret = -EINVAL;
9495 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9496 ret = -EINVAL;
9497 }
Jiri Olsa40189942012-08-07 15:20:37 +02009498
Stephane Eranian60e23642014-09-24 13:48:37 +02009499 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9500 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009501out:
9502 return ret;
9503
9504err_size:
9505 put_user(sizeof(*attr), &uattr->size);
9506 ret = -E2BIG;
9507 goto out;
9508}
9509
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009510static int
9511perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009512{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009513 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009514 int ret = -EINVAL;
9515
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009516 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009517 goto set;
9518
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009519 /* don't allow circular references */
9520 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009521 goto out;
9522
Peter Zijlstra0f139302010-05-20 14:35:15 +02009523 /*
9524 * Don't allow cross-cpu buffers
9525 */
9526 if (output_event->cpu != event->cpu)
9527 goto out;
9528
9529 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009530 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009531 */
9532 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9533 goto out;
9534
Peter Zijlstra34f43922015-02-20 14:05:38 +01009535 /*
9536 * Mixing clocks in the same buffer is trouble you don't need.
9537 */
9538 if (output_event->clock != event->clock)
9539 goto out;
9540
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009541 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009542 * Either writing ring buffer from beginning or from end.
9543 * Mixing is not allowed.
9544 */
9545 if (is_write_backward(output_event) != is_write_backward(event))
9546 goto out;
9547
9548 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009549 * If both events generate aux data, they must be on the same PMU
9550 */
9551 if (has_aux(event) && has_aux(output_event) &&
9552 event->pmu != output_event->pmu)
9553 goto out;
9554
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009555set:
9556 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009557 /* Can't redirect output if we've got an active mmap() */
9558 if (atomic_read(&event->mmap_count))
9559 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009560
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009561 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009562 /* get the rb we want to redirect to */
9563 rb = ring_buffer_get(output_event);
9564 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009565 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009566 }
9567
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009568 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009569
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009570 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009571unlock:
9572 mutex_unlock(&event->mmap_mutex);
9573
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009574out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009575 return ret;
9576}
9577
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009578static void mutex_lock_double(struct mutex *a, struct mutex *b)
9579{
9580 if (b < a)
9581 swap(a, b);
9582
9583 mutex_lock(a);
9584 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9585}
9586
Peter Zijlstra34f43922015-02-20 14:05:38 +01009587static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9588{
9589 bool nmi_safe = false;
9590
9591 switch (clk_id) {
9592 case CLOCK_MONOTONIC:
9593 event->clock = &ktime_get_mono_fast_ns;
9594 nmi_safe = true;
9595 break;
9596
9597 case CLOCK_MONOTONIC_RAW:
9598 event->clock = &ktime_get_raw_fast_ns;
9599 nmi_safe = true;
9600 break;
9601
9602 case CLOCK_REALTIME:
9603 event->clock = &ktime_get_real_ns;
9604 break;
9605
9606 case CLOCK_BOOTTIME:
9607 event->clock = &ktime_get_boot_ns;
9608 break;
9609
9610 case CLOCK_TAI:
9611 event->clock = &ktime_get_tai_ns;
9612 break;
9613
9614 default:
9615 return -EINVAL;
9616 }
9617
9618 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9619 return -EINVAL;
9620
9621 return 0;
9622}
9623
Peter Zijlstra321027c2017-01-11 21:09:50 +01009624/*
9625 * Variation on perf_event_ctx_lock_nested(), except we take two context
9626 * mutexes.
9627 */
9628static struct perf_event_context *
9629__perf_event_ctx_lock_double(struct perf_event *group_leader,
9630 struct perf_event_context *ctx)
9631{
9632 struct perf_event_context *gctx;
9633
9634again:
9635 rcu_read_lock();
9636 gctx = READ_ONCE(group_leader->ctx);
9637 if (!atomic_inc_not_zero(&gctx->refcount)) {
9638 rcu_read_unlock();
9639 goto again;
9640 }
9641 rcu_read_unlock();
9642
9643 mutex_lock_double(&gctx->mutex, &ctx->mutex);
9644
9645 if (group_leader->ctx != gctx) {
9646 mutex_unlock(&ctx->mutex);
9647 mutex_unlock(&gctx->mutex);
9648 put_ctx(gctx);
9649 goto again;
9650 }
9651
9652 return gctx;
9653}
9654
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009655/**
9656 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9657 *
9658 * @attr_uptr: event_id type attributes for monitoring/sampling
9659 * @pid: target pid
9660 * @cpu: target cpu
9661 * @group_fd: group leader event fd
9662 */
9663SYSCALL_DEFINE5(perf_event_open,
9664 struct perf_event_attr __user *, attr_uptr,
9665 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9666{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009667 struct perf_event *group_leader = NULL, *output_event = NULL;
9668 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009669 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009670 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009671 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009672 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009673 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009674 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009675 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009676 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009677 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009678 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009679 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009680
9681 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009682 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009683 return -EINVAL;
9684
9685 err = perf_copy_attr(attr_uptr, &attr);
9686 if (err)
9687 return err;
9688
9689 if (!attr.exclude_kernel) {
9690 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9691 return -EACCES;
9692 }
9693
9694 if (attr.freq) {
9695 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9696 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009697 } else {
9698 if (attr.sample_period & (1ULL << 63))
9699 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009700 }
9701
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009702 if (!attr.sample_max_stack)
9703 attr.sample_max_stack = sysctl_perf_event_max_stack;
9704
Stephane Eraniane5d13672011-02-14 11:20:01 +02009705 /*
9706 * In cgroup mode, the pid argument is used to pass the fd
9707 * opened to the cgroup directory in cgroupfs. The cpu argument
9708 * designates the cpu on which to monitor threads from that
9709 * cgroup.
9710 */
9711 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9712 return -EINVAL;
9713
Yann Droneauda21b0b32014-01-05 21:36:33 +01009714 if (flags & PERF_FLAG_FD_CLOEXEC)
9715 f_flags |= O_CLOEXEC;
9716
9717 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009718 if (event_fd < 0)
9719 return event_fd;
9720
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009721 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009722 err = perf_fget_light(group_fd, &group);
9723 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009724 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009725 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009726 if (flags & PERF_FLAG_FD_OUTPUT)
9727 output_event = group_leader;
9728 if (flags & PERF_FLAG_FD_NO_GROUP)
9729 group_leader = NULL;
9730 }
9731
Stephane Eraniane5d13672011-02-14 11:20:01 +02009732 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009733 task = find_lively_task_by_vpid(pid);
9734 if (IS_ERR(task)) {
9735 err = PTR_ERR(task);
9736 goto err_group_fd;
9737 }
9738 }
9739
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009740 if (task && group_leader &&
9741 group_leader->attr.inherit != attr.inherit) {
9742 err = -EINVAL;
9743 goto err_task;
9744 }
9745
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009746 get_online_cpus();
9747
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009748 if (task) {
9749 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9750 if (err)
9751 goto err_cpus;
9752
9753 /*
9754 * Reuse ptrace permission checks for now.
9755 *
9756 * We must hold cred_guard_mutex across this and any potential
9757 * perf_install_in_context() call for this new event to
9758 * serialize against exec() altering our credentials (and the
9759 * perf_event_exit_task() that could imply).
9760 */
9761 err = -EACCES;
9762 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9763 goto err_cred;
9764 }
9765
Matt Fleming79dff512015-01-23 18:45:42 +00009766 if (flags & PERF_FLAG_PID_CGROUP)
9767 cgroup_fd = pid;
9768
Avi Kivity4dc0da82011-06-29 18:42:35 +03009769 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009770 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009771 if (IS_ERR(event)) {
9772 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009773 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009774 }
9775
Vince Weaver53b25332014-05-16 17:12:12 -04009776 if (is_sampling_event(event)) {
9777 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
Vineet Guptaa1396552016-05-09 15:07:40 +05309778 err = -EOPNOTSUPP;
Vince Weaver53b25332014-05-16 17:12:12 -04009779 goto err_alloc;
9780 }
9781 }
9782
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009783 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009784 * Special case software events and allow them to be part of
9785 * any hardware group.
9786 */
9787 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009788
Peter Zijlstra34f43922015-02-20 14:05:38 +01009789 if (attr.use_clockid) {
9790 err = perf_event_set_clock(event, attr.clockid);
9791 if (err)
9792 goto err_alloc;
9793 }
9794
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009795 if (pmu->task_ctx_nr == perf_sw_context)
9796 event->event_caps |= PERF_EV_CAP_SOFTWARE;
9797
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009798 if (group_leader &&
9799 (is_software_event(event) != is_software_event(group_leader))) {
9800 if (is_software_event(event)) {
9801 /*
9802 * If event and group_leader are not both a software
9803 * event, and event is, then group leader is not.
9804 *
9805 * Allow the addition of software events to !software
9806 * groups, this is safe because software events never
9807 * fail to schedule.
9808 */
9809 pmu = group_leader->pmu;
9810 } else if (is_software_event(group_leader) &&
David Carrillo-Cisneros4ff6a8d2016-08-17 13:55:05 -07009811 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009812 /*
9813 * In case the group is a pure software group, and we
9814 * try to add a hardware event, move the whole group to
9815 * the hardware context.
9816 */
9817 move_group = 1;
9818 }
9819 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009820
9821 /*
9822 * Get the target context (task or percpu):
9823 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009824 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009825 if (IS_ERR(ctx)) {
9826 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009827 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009828 }
9829
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009830 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
9831 err = -EBUSY;
9832 goto err_context;
9833 }
9834
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009835 /*
9836 * Look up the group leader (we will attach this event to it):
9837 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009838 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009839 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009840
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009841 /*
9842 * Do not allow a recursive hierarchy (this new sibling
9843 * becoming part of another group-sibling):
9844 */
9845 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009846 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01009847
9848 /* All events in a group should have the same clock */
9849 if (group_leader->clock != event->clock)
9850 goto err_context;
9851
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009852 /*
9853 * Do not allow to attach to a group in a different
9854 * task or CPU context:
9855 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009856 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01009857 /*
9858 * Make sure we're both on the same task, or both
9859 * per-cpu events.
9860 */
9861 if (group_leader->ctx->task != ctx->task)
9862 goto err_context;
9863
9864 /*
9865 * Make sure we're both events for the same CPU;
9866 * grouping events for different CPUs is broken; since
9867 * you can never concurrently schedule them anyhow.
9868 */
9869 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009870 goto err_context;
9871 } else {
9872 if (group_leader->ctx != ctx)
9873 goto err_context;
9874 }
9875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009876 /*
9877 * Only a group leader can be exclusive or pinned
9878 */
9879 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009880 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009881 }
9882
9883 if (output_event) {
9884 err = perf_event_set_output(event, output_event);
9885 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009886 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009887 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009888
Yann Droneauda21b0b32014-01-05 21:36:33 +01009889 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
9890 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009891 if (IS_ERR(event_file)) {
9892 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +02009893 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009894 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04009895 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009896
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009897 if (move_group) {
Peter Zijlstra321027c2017-01-11 21:09:50 +01009898 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
9899
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009900 if (gctx->task == TASK_TOMBSTONE) {
9901 err = -ESRCH;
9902 goto err_locked;
9903 }
Peter Zijlstra321027c2017-01-11 21:09:50 +01009904
9905 /*
9906 * Check if we raced against another sys_perf_event_open() call
9907 * moving the software group underneath us.
9908 */
9909 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
9910 /*
9911 * If someone moved the group out from under us, check
9912 * if this new event wound up on the same ctx, if so
9913 * its the regular !move_group case, otherwise fail.
9914 */
9915 if (gctx != ctx) {
9916 err = -EINVAL;
9917 goto err_locked;
9918 } else {
9919 perf_event_ctx_unlock(group_leader, gctx);
9920 move_group = 0;
9921 }
9922 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009923 } else {
9924 mutex_lock(&ctx->mutex);
9925 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009926
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009927 if (ctx->task == TASK_TOMBSTONE) {
9928 err = -ESRCH;
9929 goto err_locked;
9930 }
9931
Peter Zijlstraa7239682015-09-09 19:06:33 +02009932 if (!perf_event_validate_size(event)) {
9933 err = -E2BIG;
9934 goto err_locked;
9935 }
9936
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009937 /*
9938 * Must be under the same ctx::mutex as perf_install_in_context(),
9939 * because we need to serialize with concurrent event creation.
9940 */
9941 if (!exclusive_event_installable(event, ctx)) {
9942 /* exclusive and group stuff are assumed mutually exclusive */
9943 WARN_ON_ONCE(move_group);
9944
9945 err = -EBUSY;
9946 goto err_locked;
9947 }
9948
9949 WARN_ON_ONCE(ctx->parent_ctx);
9950
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009951 /*
9952 * This is the point on no return; we cannot fail hereafter. This is
9953 * where we start modifying current state.
9954 */
9955
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009956 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009957 /*
9958 * See perf_event_ctx_lock() for comments on the details
9959 * of swizzling perf_event::ctx.
9960 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009961 perf_remove_from_context(group_leader, 0);
Peter Zijlstra279b5162017-02-16 10:28:37 +01009962 put_ctx(gctx);
Jiri Olsa0231bb52013-02-01 11:23:45 +01009963
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009964 list_for_each_entry(sibling, &group_leader->sibling_list,
9965 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009966 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009967 put_ctx(gctx);
9968 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009969
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009970 /*
9971 * Wait for everybody to stop referencing the events through
9972 * the old lists, before installing it on new lists.
9973 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009974 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009975
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009976 /*
9977 * Install the group siblings before the group leader.
9978 *
9979 * Because a group leader will try and install the entire group
9980 * (through the sibling list, which is still in-tact), we can
9981 * end up with siblings installed in the wrong context.
9982 *
9983 * By installing siblings first we NO-OP because they're not
9984 * reachable through the group lists.
9985 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009986 list_for_each_entry(sibling, &group_leader->sibling_list,
9987 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009988 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01009989 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009990 get_ctx(ctx);
9991 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009992
9993 /*
9994 * Removing from the context ends up with disabled
9995 * event. What we want here is event in the initial
9996 * startup state, ready to be add into new context.
9997 */
9998 perf_event__state_init(group_leader);
9999 perf_install_in_context(ctx, group_leader, group_leader->cpu);
10000 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +020010001 }
10002
Peter Zijlstraf73e22a2015-09-09 20:48:22 +020010003 /*
10004 * Precalculate sample_data sizes; do while holding ctx::mutex such
10005 * that we're serialized against further additions and before
10006 * perf_install_in_context() which is the point the event is active and
10007 * can use these values.
10008 */
10009 perf_event__header_size(event);
10010 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010011
Peter Zijlstra78cd2c72016-01-25 14:08:45 +010010012 event->owner = current;
10013
Yan, Zhenge2d37cd2012-06-15 14:31:32 +080010014 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010015 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010016
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010017 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010018 perf_event_ctx_unlock(group_leader, gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010019 mutex_unlock(&ctx->mutex);
10020
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010021 if (task) {
10022 mutex_unlock(&task->signal->cred_guard_mutex);
10023 put_task_struct(task);
10024 }
10025
Yan, Zhengfbfc6232012-06-15 14:31:31 +080010026 put_online_cpus();
10027
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010028 mutex_lock(&current->perf_event_mutex);
10029 list_add_tail(&event->owner_entry, &current->perf_event_list);
10030 mutex_unlock(&current->perf_event_mutex);
10031
Peter Zijlstra8a495422010-05-27 15:47:49 +020010032 /*
10033 * Drop the reference on the group_event after placing the
10034 * new event on the sibling_list. This ensures destruction
10035 * of the group leader will find the pointer to itself in
10036 * perf_group_detach().
10037 */
Al Viro2903ff02012-08-28 12:52:22 -040010038 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010039 fd_install(event_fd, event_file);
10040 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010041
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010042err_locked:
10043 if (move_group)
Peter Zijlstra321027c2017-01-11 21:09:50 +010010044 perf_event_ctx_unlock(group_leader, gctx);
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +020010045 mutex_unlock(&ctx->mutex);
10046/* err_file: */
10047 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010048err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010049 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -040010050 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +020010051err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +010010052 /*
10053 * If event_file is set, the fput() above will have called ->release()
10054 * and that will take care of freeing the event.
10055 */
10056 if (!event_file)
10057 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010058err_cred:
10059 if (task)
10060 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010061err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +080010062 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +020010063err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +020010064 if (task)
10065 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +020010066err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -040010067 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -040010068err_fd:
10069 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010070 return err;
10071}
10072
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010073/**
10074 * perf_event_create_kernel_counter
10075 *
10076 * @attr: attributes of the counter to create
10077 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -070010078 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010079 */
10080struct perf_event *
10081perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -070010082 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +030010083 perf_overflow_handler_t overflow_handler,
10084 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010085{
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010086 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010087 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010088 int err;
10089
10090 /*
10091 * Get the target context (task or percpu):
10092 */
10093
Avi Kivity4dc0da82011-06-29 18:42:35 +030010094 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +000010095 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010096 if (IS_ERR(event)) {
10097 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010098 goto err;
10099 }
10100
Jiri Olsaf8697762014-08-01 14:33:01 +020010101 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010102 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +020010103
Yan, Zheng4af57ef2014-11-04 21:56:01 -050010104 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010105 if (IS_ERR(ctx)) {
10106 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010107 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010108 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010109
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010110 WARN_ON_ONCE(ctx->parent_ctx);
10111 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010112 if (ctx->task == TASK_TOMBSTONE) {
10113 err = -ESRCH;
10114 goto err_unlock;
10115 }
10116
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010117 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010118 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010119 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +020010120 }
10121
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010122 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010123 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010124 mutex_unlock(&ctx->mutex);
10125
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010126 return event;
10127
Peter Zijlstra84c4e622016-02-24 18:45:40 +010010128err_unlock:
10129 mutex_unlock(&ctx->mutex);
10130 perf_unpin_context(ctx);
10131 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +020010132err_free:
10133 free_event(event);
10134err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +010010135 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +020010136}
10137EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
10138
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010139void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
10140{
10141 struct perf_event_context *src_ctx;
10142 struct perf_event_context *dst_ctx;
10143 struct perf_event *event, *tmp;
10144 LIST_HEAD(events);
10145
10146 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
10147 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
10148
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010149 /*
10150 * See perf_event_ctx_lock() for comments on the details
10151 * of swizzling perf_event::ctx.
10152 */
10153 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010154 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
10155 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010156 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010157 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010158 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +020010159 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010160 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010161
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010162 /*
10163 * Wait for the events to quiesce before re-instating them.
10164 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010165 synchronize_rcu();
10166
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +010010167 /*
10168 * Re-instate events in 2 passes.
10169 *
10170 * Skip over group leaders and only install siblings on this first
10171 * pass, siblings will not get enabled without a leader, however a
10172 * leader will enable its siblings, even if those are still on the old
10173 * context.
10174 */
10175 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10176 if (event->group_leader == event)
10177 continue;
10178
10179 list_del(&event->migrate_entry);
10180 if (event->state >= PERF_EVENT_STATE_OFF)
10181 event->state = PERF_EVENT_STATE_INACTIVE;
10182 account_event_cpu(event, dst_cpu);
10183 perf_install_in_context(dst_ctx, event, dst_cpu);
10184 get_ctx(dst_ctx);
10185 }
10186
10187 /*
10188 * Once all the siblings are setup properly, install the group leaders
10189 * to make it go.
10190 */
Peter Zijlstra98861672013-10-03 16:02:23 +020010191 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
10192 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010193 if (event->state >= PERF_EVENT_STATE_OFF)
10194 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +020010195 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010196 perf_install_in_context(dst_ctx, event, dst_cpu);
10197 get_ctx(dst_ctx);
10198 }
10199 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +010010200 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +080010201}
10202EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
10203
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010204static void sync_child_event(struct perf_event *child_event,
10205 struct task_struct *child)
10206{
10207 struct perf_event *parent_event = child_event->parent;
10208 u64 child_val;
10209
10210 if (child_event->attr.inherit_stat)
10211 perf_event_read_event(child_event, child);
10212
Peter Zijlstrab5e58792010-05-21 14:43:12 +020010213 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010214
10215 /*
10216 * Add back the child's count to the parent's count:
10217 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +020010218 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010219 atomic64_add(child_event->total_time_enabled,
10220 &parent_event->child_total_time_enabled);
10221 atomic64_add(child_event->total_time_running,
10222 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010223}
10224
10225static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010226perf_event_exit_event(struct perf_event *child_event,
10227 struct perf_event_context *child_ctx,
10228 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010229{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010230 struct perf_event *parent_event = child_event->parent;
10231
Peter Zijlstra1903d502014-07-15 17:27:27 +020010232 /*
10233 * Do not destroy the 'original' grouping; because of the context
10234 * switch optimization the original events could've ended up in a
10235 * random child task.
10236 *
10237 * If we were to destroy the original group, all group related
10238 * operations would cease to function properly after this random
10239 * child dies.
10240 *
10241 * Do destroy all inherited groups, we don't care about those
10242 * and being thorough is better.
10243 */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010244 raw_spin_lock_irq(&child_ctx->lock);
10245 WARN_ON_ONCE(child_ctx->is_active);
10246
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010247 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +010010248 perf_group_detach(child_event);
10249 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +010010250 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +010010251 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010252
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010253 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010254 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010255 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010256 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -040010257 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010258 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010259 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010260 /*
10261 * Child events can be cleaned up.
10262 */
10263
10264 sync_child_event(child_event, child);
10265
10266 /*
10267 * Remove this event from the parent's list
10268 */
10269 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
10270 mutex_lock(&parent_event->child_mutex);
10271 list_del_init(&child_event->child_list);
10272 mutex_unlock(&parent_event->child_mutex);
10273
10274 /*
10275 * Kick perf_poll() for is_event_hup().
10276 */
10277 perf_event_wakeup(parent_event);
10278 free_event(child_event);
10279 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010280}
10281
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010282static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010283{
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010284 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010285 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010286
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010287 WARN_ON_ONCE(child != current);
10288
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010289 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010290 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010291 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010292
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010293 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010294 * In order to reduce the amount of tricky in ctx tear-down, we hold
10295 * ctx::mutex over the entire thing. This serializes against almost
10296 * everything that wants to access the ctx.
10297 *
10298 * The exception is sys_perf_event_open() /
10299 * perf_event_create_kernel_count() which does find_get_context()
10300 * without ctx::mutex (it cannot because of the move_group double mutex
10301 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010302 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010303 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010304
10305 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010306 * In a single ctx::lock section, de-schedule the events and detach the
10307 * context from the task such that we cannot ever get it scheduled back
10308 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010309 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010310 raw_spin_lock_irq(&child_ctx->lock);
Alexander Shishkin487f05e2017-01-19 18:43:30 +020010311 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010312
10313 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010314 * Now that the context is inactive, destroy the task <-> ctx relation
10315 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010316 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +010010317 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
10318 put_ctx(child_ctx); /* cannot be last */
10319 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
10320 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010321
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010322 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +010010323 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010324
Peter Zijlstra211de6e2014-09-30 19:23:08 +020010325 if (clone_ctx)
10326 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +020010327
10328 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010329 * Report the task dead after unscheduling the events so that we
10330 * won't get any samples after PERF_RECORD_EXIT. We can however still
10331 * get a few PERF_RECORD_READ events.
10332 */
10333 perf_event_task(child, child_ctx, 0);
10334
Peter Zijlstraebf905f2014-05-29 19:00:24 +020010335 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +010010336 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010337
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010338 mutex_unlock(&child_ctx->mutex);
10339
10340 put_ctx(child_ctx);
10341}
10342
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010343/*
10344 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +020010345 *
10346 * Can be called with cred_guard_mutex held when called from
10347 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010348 */
10349void perf_event_exit_task(struct task_struct *child)
10350{
Peter Zijlstra88821352010-11-09 19:01:43 +010010351 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010352 int ctxn;
10353
Peter Zijlstra88821352010-11-09 19:01:43 +010010354 mutex_lock(&child->perf_event_mutex);
10355 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
10356 owner_entry) {
10357 list_del_init(&event->owner_entry);
10358
10359 /*
10360 * Ensure the list deletion is visible before we clear
10361 * the owner, closes a race against perf_release() where
10362 * we need to serialize on the owner->perf_event_mutex.
10363 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +010010364 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +010010365 }
10366 mutex_unlock(&child->perf_event_mutex);
10367
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010368 for_each_task_context_nr(ctxn)
10369 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +010010370
10371 /*
10372 * The perf_event_exit_task_context calls perf_event_task
10373 * with child's task_ctx, which generates EXIT events for
10374 * child contexts and sets child->perf_event_ctxp[] to NULL.
10375 * At this point we need to send EXIT events to cpu contexts.
10376 */
10377 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010378}
10379
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010380static void perf_free_event(struct perf_event *event,
10381 struct perf_event_context *ctx)
10382{
10383 struct perf_event *parent = event->parent;
10384
10385 if (WARN_ON_ONCE(!parent))
10386 return;
10387
10388 mutex_lock(&parent->child_mutex);
10389 list_del_init(&event->child_list);
10390 mutex_unlock(&parent->child_mutex);
10391
Al Viroa6fa9412012-08-20 14:59:25 +010010392 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010393
Peter Zijlstra652884f2015-01-23 11:20:10 +010010394 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +020010395 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010396 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +010010397 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010398 free_event(event);
10399}
10400
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010401/*
Peter Zijlstra652884f2015-01-23 11:20:10 +010010402 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010403 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +010010404 *
10405 * Not all locks are strictly required, but take them anyway to be nice and
10406 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010407 */
10408void perf_event_free_task(struct task_struct *task)
10409{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010410 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010411 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010412 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010413
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010414 for_each_task_context_nr(ctxn) {
10415 ctx = task->perf_event_ctxp[ctxn];
10416 if (!ctx)
10417 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010418
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010419 mutex_lock(&ctx->mutex);
Peter Zijlstrae552a832017-03-16 13:47:48 +010010420 raw_spin_lock_irq(&ctx->lock);
10421 /*
10422 * Destroy the task <-> ctx relation and mark the context dead.
10423 *
10424 * This is important because even though the task hasn't been
10425 * exposed yet the context has been (through child_list).
10426 */
10427 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
10428 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
10429 put_task_struct(task); /* cannot be last */
10430 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010431
Peter Zijlstra15121c72017-03-16 13:47:50 +010010432 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010433 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010434
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010435 mutex_unlock(&ctx->mutex);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010436 put_ctx(ctx);
10437 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010438}
10439
Peter Zijlstra4e231c72010-09-09 21:01:59 +020010440void perf_event_delayed_put(struct task_struct *task)
10441{
10442 int ctxn;
10443
10444 for_each_task_context_nr(ctxn)
10445 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
10446}
10447
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010448struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +000010449{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010450 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010451
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010452 file = fget_raw(fd);
10453 if (!file)
10454 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +000010455
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010456 if (file->f_op != &perf_fops) {
10457 fput(file);
10458 return ERR_PTR(-EBADF);
10459 }
Kaixu Xiaffe86902015-08-06 07:02:32 +000010460
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -080010461 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +000010462}
10463
10464const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
10465{
10466 if (!event)
10467 return ERR_PTR(-EINVAL);
10468
10469 return &event->attr;
10470}
10471
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010472/*
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010473 * Inherit a event from parent task to child task.
10474 *
10475 * Returns:
10476 * - valid pointer on success
10477 * - NULL for orphaned events
10478 * - IS_ERR() on error
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010479 */
10480static struct perf_event *
10481inherit_event(struct perf_event *parent_event,
10482 struct task_struct *parent,
10483 struct perf_event_context *parent_ctx,
10484 struct task_struct *child,
10485 struct perf_event *group_leader,
10486 struct perf_event_context *child_ctx)
10487{
Jiri Olsa1929def2014-09-12 13:18:27 +020010488 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010489 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +020010490 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010491
10492 /*
10493 * Instead of creating recursive hierarchies of events,
10494 * we link inherited events back to the original parent,
10495 * which has a filp for sure, which we use as the reference
10496 * count:
10497 */
10498 if (parent_event->parent)
10499 parent_event = parent_event->parent;
10500
10501 child_event = perf_event_alloc(&parent_event->attr,
10502 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010503 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010504 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010505 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010506 if (IS_ERR(child_event))
10507 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010508
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010509 /*
10510 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10511 * must be under the same lock in order to serialize against
10512 * perf_event_release_kernel(), such that either we must observe
10513 * is_orphaned_event() or they will observe us on the child_list.
10514 */
10515 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010516 if (is_orphaned_event(parent_event) ||
10517 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010518 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010519 free_event(child_event);
10520 return NULL;
10521 }
10522
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010523 get_ctx(child_ctx);
10524
10525 /*
10526 * Make the child state follow the state of the parent event,
10527 * not its attr.disabled bit. We hold the parent's mutex,
10528 * so we won't race with perf_event_{en, dis}able_family.
10529 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010530 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010531 child_event->state = PERF_EVENT_STATE_INACTIVE;
10532 else
10533 child_event->state = PERF_EVENT_STATE_OFF;
10534
10535 if (parent_event->attr.freq) {
10536 u64 sample_period = parent_event->hw.sample_period;
10537 struct hw_perf_event *hwc = &child_event->hw;
10538
10539 hwc->sample_period = sample_period;
10540 hwc->last_period = sample_period;
10541
10542 local64_set(&hwc->period_left, sample_period);
10543 }
10544
10545 child_event->ctx = child_ctx;
10546 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010547 child_event->overflow_handler_context
10548 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010549
10550 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010551 * Precalculate sample_data sizes
10552 */
10553 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010554 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010555
10556 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010557 * Link it up in the child's context:
10558 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010559 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010560 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010561 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010562
10563 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010564 * Link this into the parent event's child list
10565 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010566 list_add_tail(&child_event->child_list, &parent_event->child_list);
10567 mutex_unlock(&parent_event->child_mutex);
10568
10569 return child_event;
10570}
10571
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010572/*
10573 * Inherits an event group.
10574 *
10575 * This will quietly suppress orphaned events; !inherit_event() is not an error.
10576 * This matches with perf_event_release_kernel() removing all child events.
10577 *
10578 * Returns:
10579 * - 0 on success
10580 * - <0 on error
10581 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010582static int inherit_group(struct perf_event *parent_event,
10583 struct task_struct *parent,
10584 struct perf_event_context *parent_ctx,
10585 struct task_struct *child,
10586 struct perf_event_context *child_ctx)
10587{
10588 struct perf_event *leader;
10589 struct perf_event *sub;
10590 struct perf_event *child_ctr;
10591
10592 leader = inherit_event(parent_event, parent, parent_ctx,
10593 child, NULL, child_ctx);
10594 if (IS_ERR(leader))
10595 return PTR_ERR(leader);
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010596 /*
10597 * @leader can be NULL here because of is_orphaned_event(). In this
10598 * case inherit_event() will create individual events, similar to what
10599 * perf_group_detach() would do anyway.
10600 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010601 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10602 child_ctr = inherit_event(sub, parent, parent_ctx,
10603 child, leader, child_ctx);
10604 if (IS_ERR(child_ctr))
10605 return PTR_ERR(child_ctr);
10606 }
10607 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010608}
10609
Peter Zijlstrad8a8cfc2017-03-16 13:47:51 +010010610/*
10611 * Creates the child task context and tries to inherit the event-group.
10612 *
10613 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
10614 * inherited_all set when we 'fail' to inherit an orphaned event; this is
10615 * consistent with perf_event_release_kernel() removing all child events.
10616 *
10617 * Returns:
10618 * - 0 on success
10619 * - <0 on error
10620 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010621static int
10622inherit_task_group(struct perf_event *event, struct task_struct *parent,
10623 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010624 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010625 int *inherited_all)
10626{
10627 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010628 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010629
10630 if (!event->attr.inherit) {
10631 *inherited_all = 0;
10632 return 0;
10633 }
10634
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010635 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010636 if (!child_ctx) {
10637 /*
10638 * This is executed from the parent task context, so
10639 * inherit events that have been marked for cloning.
10640 * First allocate and initialize a context for the
10641 * child.
10642 */
Jiri Olsa734df5a2013-07-09 17:44:10 +020010643 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010644 if (!child_ctx)
10645 return -ENOMEM;
10646
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010647 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010648 }
10649
10650 ret = inherit_group(event, parent, parent_ctx,
10651 child, child_ctx);
10652
10653 if (ret)
10654 *inherited_all = 0;
10655
10656 return ret;
10657}
10658
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010659/*
10660 * Initialize the perf_event context in task_struct
10661 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010662static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010663{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010664 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010665 struct perf_event_context *cloned_ctx;
10666 struct perf_event *event;
10667 struct task_struct *parent = current;
10668 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010669 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010670 int ret = 0;
10671
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010672 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010673 return 0;
10674
10675 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010676 * If the parent's context is a clone, pin it so it won't get
10677 * swapped under us.
10678 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010679 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010680 if (!parent_ctx)
10681 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010682
10683 /*
10684 * No need to check if parent_ctx != NULL here; since we saw
10685 * it non-NULL earlier, the only reason for it to become NULL
10686 * is if we exit, and since we're currently in the middle of
10687 * a fork we can't be exiting at the same time.
10688 */
10689
10690 /*
10691 * Lock the parent list. No need to lock the child - not PID
10692 * hashed yet and not running, so nobody can access it.
10693 */
10694 mutex_lock(&parent_ctx->mutex);
10695
10696 /*
10697 * We dont have to disable NMIs - we are only looking at
10698 * the list, not manipulating it:
10699 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010700 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010701 ret = inherit_task_group(event, parent, parent_ctx,
10702 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010703 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010010704 goto out_unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010705 }
10706
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010707 /*
10708 * We can't hold ctx->lock when iterating the ->flexible_group list due
10709 * to allocations, but we need to prevent rotation because
10710 * rotate_ctx() will change the list from interrupt context.
10711 */
10712 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10713 parent_ctx->rotate_disable = 1;
10714 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10715
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010716 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010717 ret = inherit_task_group(event, parent, parent_ctx,
10718 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010719 if (ret)
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010010720 goto out_unlock;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010721 }
10722
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010723 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10724 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010725
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010726 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010727
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010728 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010729 /*
10730 * Mark the child context as a clone of the parent
10731 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010732 *
10733 * Note that if the parent is a clone, the holding of
10734 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010735 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010736 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010737 if (cloned_ctx) {
10738 child_ctx->parent_ctx = cloned_ctx;
10739 child_ctx->parent_gen = parent_ctx->parent_gen;
10740 } else {
10741 child_ctx->parent_ctx = parent_ctx;
10742 child_ctx->parent_gen = parent_ctx->generation;
10743 }
10744 get_ctx(child_ctx->parent_ctx);
10745 }
10746
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010747 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Peter Zijlstrae7cc4862017-03-16 13:47:49 +010010748out_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010749 mutex_unlock(&parent_ctx->mutex);
10750
10751 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010752 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010753
10754 return ret;
10755}
10756
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010757/*
10758 * Initialize the perf_event context in task_struct
10759 */
10760int perf_event_init_task(struct task_struct *child)
10761{
10762 int ctxn, ret;
10763
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010010764 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
10765 mutex_init(&child->perf_event_mutex);
10766 INIT_LIST_HEAD(&child->perf_event_list);
10767
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010768 for_each_task_context_nr(ctxn) {
10769 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010770 if (ret) {
10771 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010772 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010773 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010774 }
10775
10776 return 0;
10777}
10778
Paul Mackerras220b1402010-03-10 20:45:52 +110010779static void __init perf_event_init_all_cpus(void)
10780{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010781 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110010782 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110010783
10784 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010785 swhash = &per_cpu(swevent_htable, cpu);
10786 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000010787 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070010788
10789 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
10790 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010791
David Carrillo-Cisneros058fe1c2017-01-18 11:24:53 -080010792#ifdef CONFIG_CGROUP_PERF
10793 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
10794#endif
Peter Zijlstrae48c1782016-07-06 09:18:30 +020010795 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110010796 }
10797}
10798
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010799int perf_event_init_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010800{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010801 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010802
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010803 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000010804 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010805 struct swevent_hlist *hlist;
10806
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010807 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
10808 WARN_ON(!hlist);
10809 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010810 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010811 mutex_unlock(&swhash->hlist_mutex);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010812 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010813}
10814
Dave Young2965faa2015-09-09 15:38:55 -070010815#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010816static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010817{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010818 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010819 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
10820 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010821
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010822 raw_spin_lock(&ctx->lock);
10823 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010824 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010825 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010826}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010827
10828static void perf_event_exit_cpu_context(int cpu)
10829{
10830 struct perf_event_context *ctx;
10831 struct pmu *pmu;
10832 int idx;
10833
10834 idx = srcu_read_lock(&pmus_srcu);
10835 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +020010836 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010837
10838 mutex_lock(&ctx->mutex);
10839 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
10840 mutex_unlock(&ctx->mutex);
10841 }
10842 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010843}
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010844#else
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010845
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010846static void perf_event_exit_cpu_context(int cpu) { }
10847
10848#endif
10849
10850int perf_event_exit_cpu(unsigned int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010851{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010010852 perf_event_exit_cpu_context(cpu);
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010853 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010854}
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010855
Peter Zijlstrac2774432010-12-08 15:29:02 +010010856static int
10857perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
10858{
10859 int cpu;
10860
10861 for_each_online_cpu(cpu)
10862 perf_event_exit_cpu(cpu);
10863
10864 return NOTIFY_OK;
10865}
10866
10867/*
10868 * Run the perf reboot notifier at the very last possible moment so that
10869 * the generic watchdog code runs as long as possible.
10870 */
10871static struct notifier_block perf_reboot_notifier = {
10872 .notifier_call = perf_reboot,
10873 .priority = INT_MIN,
10874};
10875
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010876void __init perf_event_init(void)
10877{
Jason Wessel3c502e72010-11-04 17:33:01 -050010878 int ret;
10879
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010880 idr_init(&pmu_idr);
10881
Paul Mackerras220b1402010-03-10 20:45:52 +110010882 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010883 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010884 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
10885 perf_pmu_register(&perf_cpu_clock, NULL, -1);
10886 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010887 perf_tp_register();
Thomas Gleixner00e16c32016-07-13 17:16:09 +000010888 perf_event_init_cpu(smp_processor_id());
Peter Zijlstrac2774432010-12-08 15:29:02 +010010889 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050010890
10891 ret = init_hw_breakpoint();
10892 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020010893
Jiri Olsab01c3a02012-03-23 15:41:20 +010010894 /*
10895 * Build time assertion that we keep the data_head at the intended
10896 * location. IOW, validation we got the __reserved[] size right.
10897 */
10898 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
10899 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010900}
Peter Zijlstraabe43402010-11-17 23:17:37 +010010901
Cody P Schaferfd979c02015-01-30 13:45:57 -080010902ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
10903 char *page)
10904{
10905 struct perf_pmu_events_attr *pmu_attr =
10906 container_of(attr, struct perf_pmu_events_attr, attr);
10907
10908 if (pmu_attr->event_str)
10909 return sprintf(page, "%s\n", pmu_attr->event_str);
10910
10911 return 0;
10912}
Thomas Gleixner675965b2016-02-22 22:19:27 +000010913EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080010914
Peter Zijlstraabe43402010-11-17 23:17:37 +010010915static int __init perf_event_sysfs_init(void)
10916{
10917 struct pmu *pmu;
10918 int ret;
10919
10920 mutex_lock(&pmus_lock);
10921
10922 ret = bus_register(&pmu_bus);
10923 if (ret)
10924 goto unlock;
10925
10926 list_for_each_entry(pmu, &pmus, entry) {
10927 if (!pmu->name || pmu->type < 0)
10928 continue;
10929
10930 ret = pmu_dev_alloc(pmu);
10931 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
10932 }
10933 pmu_bus_running = 1;
10934 ret = 0;
10935
10936unlock:
10937 mutex_unlock(&pmus_lock);
10938
10939 return ret;
10940}
10941device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010942
10943#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040010944static struct cgroup_subsys_state *
10945perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010946{
10947 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020010948
Li Zefan1b15d052011-03-03 14:26:06 +080010949 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010950 if (!jc)
10951 return ERR_PTR(-ENOMEM);
10952
Stephane Eraniane5d13672011-02-14 11:20:01 +020010953 jc->info = alloc_percpu(struct perf_cgroup_info);
10954 if (!jc->info) {
10955 kfree(jc);
10956 return ERR_PTR(-ENOMEM);
10957 }
10958
Stephane Eraniane5d13672011-02-14 11:20:01 +020010959 return &jc->css;
10960}
10961
Tejun Heoeb954192013-08-08 20:11:23 -040010962static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010963{
Tejun Heoeb954192013-08-08 20:11:23 -040010964 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
10965
Stephane Eraniane5d13672011-02-14 11:20:01 +020010966 free_percpu(jc->info);
10967 kfree(jc);
10968}
10969
10970static int __perf_cgroup_move(void *info)
10971{
10972 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010973 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010974 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010975 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010976 return 0;
10977}
10978
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010979static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010980{
Tejun Heobb9d97b2011-12-12 18:12:21 -080010981 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010982 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080010983
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010984 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080010985 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010986}
10987
Tejun Heo073219e2014-02-08 10:36:58 -050010988struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080010989 .css_alloc = perf_cgroup_css_alloc,
10990 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080010991 .attach = perf_cgroup_attach,
Tejun Heo968ebff2017-01-29 14:35:20 -050010992 /*
10993 * Implicitly enable on dfl hierarchy so that perf events can
10994 * always be filtered by cgroup2 path as long as perf_event
10995 * controller is not mounted on a legacy hierarchy.
10996 */
10997 .implicit_on_dfl = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +020010998};
10999#endif /* CONFIG_CGROUP_PERF */