blob: f54454ea5f3120f91b9d0dec16e07bed546a6435 [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 Molnarcdd6c482009-09-21 12:02:48 +020049
Frederic Weisbecker76369132011-05-19 19:55:04 +020050#include "internal.h"
51
Ingo Molnarcdd6c482009-09-21 12:02:48 +020052#include <asm/irq_regs.h>
53
Peter Zijlstra272325c2015-04-15 11:41:58 +020054typedef int (*remote_function_f)(void *);
55
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010056struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020057 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020058 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020059 void *info;
60 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010061};
62
63static void remote_function(void *data)
64{
65 struct remote_function_call *tfc = data;
66 struct task_struct *p = tfc->p;
67
68 if (p) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +010069 /* -EAGAIN */
70 if (task_cpu(p) != smp_processor_id())
71 return;
72
73 /*
74 * Now that we're on right CPU with IRQs disabled, we can test
75 * if we hit the right task without races.
76 */
77
78 tfc->ret = -ESRCH; /* No such (running) process */
79 if (p != current)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010080 return;
81 }
82
83 tfc->ret = tfc->func(tfc->info);
84}
85
86/**
87 * task_function_call - call a function on the cpu on which a task runs
88 * @p: the task to evaluate
89 * @func: the function to be called
90 * @info: the function call argument
91 *
92 * Calls the function @func when the task is currently running. This might
93 * be on the current CPU, which just calls the function directly
94 *
95 * returns: @func return value, or
96 * -ESRCH - when the process isn't running
97 * -EAGAIN - when the process moved away
98 */
99static int
Peter Zijlstra272325c2015-04-15 11:41:58 +0200100task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100101{
102 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200103 .p = p,
104 .func = func,
105 .info = info,
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100106 .ret = -EAGAIN,
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100107 };
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100108 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100109
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100110 do {
111 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
112 if (!ret)
113 ret = data.ret;
114 } while (ret == -EAGAIN);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100115
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100116 return ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100117}
118
119/**
120 * cpu_function_call - call a function on the cpu
121 * @func: the function to be called
122 * @info: the function call argument
123 *
124 * Calls the function @func on the remote cpu.
125 *
126 * returns: @func return value or -ENXIO when the cpu is offline
127 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200128static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100129{
130 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200131 .p = NULL,
132 .func = func,
133 .info = info,
134 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100135 };
136
137 smp_call_function_single(cpu, remote_function, &data, 1);
138
139 return data.ret;
140}
141
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100142static inline struct perf_cpu_context *
143__get_cpu_context(struct perf_event_context *ctx)
144{
145 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
146}
147
148static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
149 struct perf_event_context *ctx)
150{
151 raw_spin_lock(&cpuctx->ctx.lock);
152 if (ctx)
153 raw_spin_lock(&ctx->lock);
154}
155
156static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
157 struct perf_event_context *ctx)
158{
159 if (ctx)
160 raw_spin_unlock(&ctx->lock);
161 raw_spin_unlock(&cpuctx->ctx.lock);
162}
163
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100164#define TASK_TOMBSTONE ((void *)-1L)
165
166static bool is_kernel_event(struct perf_event *event)
167{
Peter Zijlstraf47c02c2016-01-26 12:30:14 +0100168 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100169}
170
Peter Zijlstra39a43642016-01-11 12:46:35 +0100171/*
172 * On task ctx scheduling...
173 *
174 * When !ctx->nr_events a task context will not be scheduled. This means
175 * we can disable the scheduler hooks (for performance) without leaving
176 * pending task ctx state.
177 *
178 * This however results in two special cases:
179 *
180 * - removing the last event from a task ctx; this is relatively straight
181 * forward and is done in __perf_remove_from_context.
182 *
183 * - adding the first event to a task ctx; this is tricky because we cannot
184 * rely on ctx->is_active and therefore cannot use event_function_call().
185 * See perf_install_in_context().
186 *
Peter Zijlstra39a43642016-01-11 12:46:35 +0100187 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
188 */
189
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100190typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
191 struct perf_event_context *, void *);
192
193struct event_function_struct {
194 struct perf_event *event;
195 event_f func;
196 void *data;
197};
198
199static int event_function(void *info)
200{
201 struct event_function_struct *efs = info;
202 struct perf_event *event = efs->event;
203 struct perf_event_context *ctx = event->ctx;
204 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
205 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100206 int ret = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100207
208 WARN_ON_ONCE(!irqs_disabled());
209
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100210 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100211 /*
212 * Since we do the IPI call without holding ctx->lock things can have
213 * changed, double check we hit the task we set out to hit.
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100214 */
215 if (ctx->task) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100216 if (ctx->task != current) {
Peter Zijlstra0da4cf32016-02-24 18:45:51 +0100217 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100218 goto unlock;
219 }
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100220
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100221 /*
222 * We only use event_function_call() on established contexts,
223 * and event_function() is only ever called when active (or
224 * rather, we'll have bailed in task_function_call() or the
225 * above ctx->task != current test), therefore we must have
226 * ctx->is_active here.
227 */
228 WARN_ON_ONCE(!ctx->is_active);
229 /*
230 * And since we have ctx->is_active, cpuctx->task_ctx must
231 * match.
232 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100233 WARN_ON_ONCE(task_ctx != ctx);
234 } else {
235 WARN_ON_ONCE(&cpuctx->ctx != ctx);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100236 }
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100237
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100238 efs->func(event, cpuctx, ctx, efs->data);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100239unlock:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100240 perf_ctx_unlock(cpuctx, task_ctx);
241
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100242 return ret;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100243}
244
245static void event_function_local(struct perf_event *event, event_f func, void *data)
246{
247 struct event_function_struct efs = {
248 .event = event,
249 .func = func,
250 .data = data,
251 };
252
253 int ret = event_function(&efs);
254 WARN_ON_ONCE(ret);
255}
256
257static void event_function_call(struct perf_event *event, event_f func, void *data)
Peter Zijlstra00179602015-11-30 16:26:35 +0100258{
259 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100260 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100261 struct event_function_struct efs = {
262 .event = event,
263 .func = func,
264 .data = data,
265 };
Peter Zijlstra00179602015-11-30 16:26:35 +0100266
Peter Zijlstrac97f4732016-01-14 10:51:03 +0100267 if (!event->parent) {
268 /*
269 * If this is a !child event, we must hold ctx::mutex to
270 * stabilize the the event->ctx relation. See
271 * perf_event_ctx_lock().
272 */
273 lockdep_assert_held(&ctx->mutex);
274 }
Peter Zijlstra00179602015-11-30 16:26:35 +0100275
276 if (!task) {
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100277 cpu_function_call(event->cpu, event_function, &efs);
Peter Zijlstra00179602015-11-30 16:26:35 +0100278 return;
279 }
280
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100281 if (task == TASK_TOMBSTONE)
282 return;
283
Peter Zijlstraa0963092016-02-24 18:45:50 +0100284again:
Peter Zijlstrafae3fde2016-01-11 15:00:50 +0100285 if (!task_function_call(task, event_function, &efs))
Peter Zijlstra00179602015-11-30 16:26:35 +0100286 return;
287
288 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +0100289 /*
290 * Reload the task pointer, it might have been changed by
291 * a concurrent perf_event_context_sched_out().
292 */
293 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +0100294 if (task == TASK_TOMBSTONE) {
295 raw_spin_unlock_irq(&ctx->lock);
296 return;
Peter Zijlstra00179602015-11-30 16:26:35 +0100297 }
Peter Zijlstraa0963092016-02-24 18:45:50 +0100298 if (ctx->is_active) {
299 raw_spin_unlock_irq(&ctx->lock);
300 goto again;
301 }
302 func(event, NULL, ctx, data);
Peter Zijlstra00179602015-11-30 16:26:35 +0100303 raw_spin_unlock_irq(&ctx->lock);
304}
305
Stephane Eraniane5d13672011-02-14 11:20:01 +0200306#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
307 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100308 PERF_FLAG_PID_CGROUP |\
309 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200310
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100311/*
312 * branch priv levels that need permission checks
313 */
314#define PERF_SAMPLE_BRANCH_PERM_PLM \
315 (PERF_SAMPLE_BRANCH_KERNEL |\
316 PERF_SAMPLE_BRANCH_HV)
317
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200318enum event_type_t {
319 EVENT_FLEXIBLE = 0x1,
320 EVENT_PINNED = 0x2,
Peter Zijlstra3cbaa592016-02-24 18:45:47 +0100321 EVENT_TIME = 0x4,
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200322 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
323};
324
Stephane Eraniane5d13672011-02-14 11:20:01 +0200325/*
326 * perf_sched_events : >0 events exist
327 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
328 */
Peter Zijlstra9107c892016-02-24 18:45:45 +0100329
330static void perf_sched_delayed(struct work_struct *work);
331DEFINE_STATIC_KEY_FALSE(perf_sched_events);
332static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
333static DEFINE_MUTEX(perf_sched_mutex);
334static atomic_t perf_sched_count;
335
Stephane Eraniane5d13672011-02-14 11:20:01 +0200336static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500337static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Kan Liangf2fb6be2016-03-23 11:24:37 -0700338static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200339
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200340static atomic_t nr_mmap_events __read_mostly;
341static atomic_t nr_comm_events __read_mostly;
342static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200343static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300344static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200345
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200346static LIST_HEAD(pmus);
347static DEFINE_MUTEX(pmus_lock);
348static struct srcu_struct pmus_srcu;
349
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200350/*
351 * perf event paranoia level:
352 * -1 - not paranoid at all
353 * 0 - disallow raw tracepoint access for unpriv
354 * 1 - disallow cpu events for unpriv
355 * 2 - disallow kernel profiling for unpriv
356 */
Andy Lutomirski01610282016-05-09 15:48:51 -0700357int sysctl_perf_event_paranoid __read_mostly = 2;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200358
Frederic Weisbecker20443382011-03-31 03:33:29 +0200359/* Minimum for 512 kiB + 1 user control page */
360int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200361
362/*
363 * max perf event sample rate
364 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700365#define DEFAULT_MAX_SAMPLE_RATE 100000
366#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
367#define DEFAULT_CPU_TIME_MAX_PERCENT 25
368
369int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
370
371static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
372static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
373
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200374static int perf_sample_allowed_ns __read_mostly =
375 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700376
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800377static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700378{
379 u64 tmp = perf_sample_period_ns;
380
381 tmp *= sysctl_perf_cpu_time_max_percent;
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100382 tmp = div_u64(tmp, 100);
383 if (!tmp)
384 tmp = 1;
385
386 WRITE_ONCE(perf_sample_allowed_ns, tmp);
Dave Hansen14c63f12013-06-21 08:51:36 -0700387}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100388
Stephane Eranian9e630202013-04-03 14:21:33 +0200389static int perf_rotate_context(struct perf_cpu_context *cpuctx);
390
Peter Zijlstra163ec432011-02-16 11:22:34 +0100391int perf_proc_update_handler(struct ctl_table *table, int write,
392 void __user *buffer, size_t *lenp,
393 loff_t *ppos)
394{
Knut Petersen723478c2013-09-25 14:29:37 +0200395 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100396
397 if (ret || !write)
398 return ret;
399
400 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700401 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
402 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100403
404 return 0;
405}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200406
Dave Hansen14c63f12013-06-21 08:51:36 -0700407int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
408
409int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
410 void __user *buffer, size_t *lenp,
411 loff_t *ppos)
412{
413 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
414
415 if (ret || !write)
416 return ret;
417
Peter Zijlstrab303e7c2016-04-04 09:57:40 +0200418 if (sysctl_perf_cpu_time_max_percent == 100 ||
419 sysctl_perf_cpu_time_max_percent == 0) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100420 printk(KERN_WARNING
421 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
422 WRITE_ONCE(perf_sample_allowed_ns, 0);
423 } else {
424 update_perf_cpu_limits();
425 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700426
427 return 0;
428}
429
430/*
431 * perf samples are done in some very critical code paths (NMIs).
432 * If they take too much CPU time, the system can lock up and not
433 * get any real work done. This will drop the sample rate when
434 * we detect that events are taking too long.
435 */
436#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200437static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700438
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100439static u64 __report_avg;
440static u64 __report_allowed;
441
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100442static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700443{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100444 printk_ratelimited(KERN_WARNING
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100445 "perf: interrupt took too long (%lld > %lld), lowering "
446 "kernel.perf_event_max_sample_rate to %d\n",
447 __report_avg, __report_allowed,
448 sysctl_perf_event_sample_rate);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100449}
450
451static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
452
453void perf_sample_event_took(u64 sample_len_ns)
454{
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100455 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
456 u64 running_len;
457 u64 avg_len;
458 u32 max;
Dave Hansen14c63f12013-06-21 08:51:36 -0700459
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100460 if (max_len == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700461 return;
462
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100463 /* Decay the counter by 1 average sample. */
464 running_len = __this_cpu_read(running_sample_length);
465 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
466 running_len += sample_len_ns;
467 __this_cpu_write(running_sample_length, running_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700468
469 /*
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100470 * Note: this will be biased artifically low until we have
471 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
Dave Hansen14c63f12013-06-21 08:51:36 -0700472 * from having to maintain a count.
473 */
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100474 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
475 if (avg_len <= max_len)
Dave Hansen14c63f12013-06-21 08:51:36 -0700476 return;
477
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100478 __report_avg = avg_len;
479 __report_allowed = max_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700480
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100481 /*
482 * Compute a throttle threshold 25% below the current duration.
483 */
484 avg_len += avg_len / 4;
485 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
486 if (avg_len < max)
487 max /= (u32)avg_len;
488 else
489 max = 1;
490
491 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
492 WRITE_ONCE(max_samples_per_tick, max);
493
494 sysctl_perf_event_sample_rate = max * HZ;
Dave Hansen14c63f12013-06-21 08:51:36 -0700495 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
496
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100497 if (!irq_work_queue(&perf_duration_work)) {
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100498 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100499 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstra91a612e2016-03-17 15:17:35 +0100500 __report_avg, __report_allowed,
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100501 sysctl_perf_event_sample_rate);
502 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700503}
504
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200505static atomic64_t perf_event_id;
506
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200507static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
508 enum event_type_t event_type);
509
510static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200511 enum event_type_t event_type,
512 struct task_struct *task);
513
514static void update_context_time(struct perf_event_context *ctx);
515static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200516
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200517void __weak perf_event_print_debug(void) { }
518
Matt Fleming84c79912010-10-03 21:41:13 +0100519extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200520{
Matt Fleming84c79912010-10-03 21:41:13 +0100521 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200522}
523
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200524static inline u64 perf_clock(void)
525{
526 return local_clock();
527}
528
Peter Zijlstra34f43922015-02-20 14:05:38 +0100529static inline u64 perf_event_clock(struct perf_event *event)
530{
531 return event->clock();
532}
533
Stephane Eraniane5d13672011-02-14 11:20:01 +0200534#ifdef CONFIG_CGROUP_PERF
535
Stephane Eraniane5d13672011-02-14 11:20:01 +0200536static inline bool
537perf_cgroup_match(struct perf_event *event)
538{
539 struct perf_event_context *ctx = event->ctx;
540 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
541
Tejun Heoef824fa2013-04-08 19:00:38 -0700542 /* @event doesn't care about cgroup */
543 if (!event->cgrp)
544 return true;
545
546 /* wants specific cgroup scope but @cpuctx isn't associated with any */
547 if (!cpuctx->cgrp)
548 return false;
549
550 /*
551 * Cgroup scoping is recursive. An event enabled for a cgroup is
552 * also enabled for all its descendant cgroups. If @cpuctx's
553 * cgroup is a descendant of @event's (the test covers identity
554 * case), it's a match.
555 */
556 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
557 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200558}
559
Stephane Eraniane5d13672011-02-14 11:20:01 +0200560static inline void perf_detach_cgroup(struct perf_event *event)
561{
Zefan Li4e2ba652014-09-19 16:53:14 +0800562 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200563 event->cgrp = NULL;
564}
565
566static inline int is_cgroup_event(struct perf_event *event)
567{
568 return event->cgrp != NULL;
569}
570
571static inline u64 perf_cgroup_event_time(struct perf_event *event)
572{
573 struct perf_cgroup_info *t;
574
575 t = per_cpu_ptr(event->cgrp->info, event->cpu);
576 return t->time;
577}
578
579static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
580{
581 struct perf_cgroup_info *info;
582 u64 now;
583
584 now = perf_clock();
585
586 info = this_cpu_ptr(cgrp->info);
587
588 info->time += now - info->timestamp;
589 info->timestamp = now;
590}
591
592static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
593{
594 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
595 if (cgrp_out)
596 __update_cgrp_time(cgrp_out);
597}
598
599static inline void update_cgrp_time_from_event(struct perf_event *event)
600{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200601 struct perf_cgroup *cgrp;
602
Stephane Eraniane5d13672011-02-14 11:20:01 +0200603 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200604 * ensure we access cgroup data only when needed and
605 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200606 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200607 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200608 return;
609
Stephane Eranian614e4c42015-11-12 11:00:04 +0100610 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200611 /*
612 * Do not update time when cgroup is not active
613 */
614 if (cgrp == event->cgrp)
615 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200616}
617
618static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200619perf_cgroup_set_timestamp(struct task_struct *task,
620 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200621{
622 struct perf_cgroup *cgrp;
623 struct perf_cgroup_info *info;
624
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200625 /*
626 * ctx->lock held by caller
627 * ensure we do not access cgroup data
628 * unless we have the cgroup pinned (css_get)
629 */
630 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200631 return;
632
Stephane Eranian614e4c42015-11-12 11:00:04 +0100633 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200634 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200635 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200636}
637
638#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
639#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
640
641/*
642 * reschedule events based on the cgroup constraint of task.
643 *
644 * mode SWOUT : schedule out everything
645 * mode SWIN : schedule in based on cgroup for next
646 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800647static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200648{
649 struct perf_cpu_context *cpuctx;
650 struct pmu *pmu;
651 unsigned long flags;
652
653 /*
654 * disable interrupts to avoid geting nr_cgroup
655 * changes via __perf_event_disable(). Also
656 * avoids preemption.
657 */
658 local_irq_save(flags);
659
660 /*
661 * we reschedule only in the presence of cgroup
662 * constrained events.
663 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200664
665 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200666 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200667 if (cpuctx->unique_pmu != pmu)
668 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200669
Stephane Eraniane5d13672011-02-14 11:20:01 +0200670 /*
671 * perf_cgroup_events says at least one
672 * context on this CPU has cgroup events.
673 *
674 * ctx->nr_cgroups reports the number of cgroup
675 * events for a context.
676 */
677 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200678 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
679 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200680
681 if (mode & PERF_CGROUP_SWOUT) {
682 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
683 /*
684 * must not be done before ctxswout due
685 * to event_filter_match() in event_sched_out()
686 */
687 cpuctx->cgrp = NULL;
688 }
689
690 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200691 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200692 /*
693 * set cgrp before ctxsw in to allow
694 * event_filter_match() to not have to pass
695 * task around
Stephane Eranian614e4c42015-11-12 11:00:04 +0100696 * we pass the cpuctx->ctx to perf_cgroup_from_task()
697 * because cgorup events are only per-cpu
Stephane Eraniane5d13672011-02-14 11:20:01 +0200698 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100699 cpuctx->cgrp = perf_cgroup_from_task(task, &cpuctx->ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200700 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
701 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200702 perf_pmu_enable(cpuctx->ctx.pmu);
703 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200704 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200705 }
706
Stephane Eraniane5d13672011-02-14 11:20:01 +0200707 local_irq_restore(flags);
708}
709
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200710static inline void perf_cgroup_sched_out(struct task_struct *task,
711 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200712{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200713 struct perf_cgroup *cgrp1;
714 struct perf_cgroup *cgrp2 = NULL;
715
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100716 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200717 /*
718 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100719 * we do not need to pass the ctx here because we know
720 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200721 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100722 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100723 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200724
725 /*
726 * only schedule out current cgroup events if we know
727 * that we are switching to a different cgroup. Otherwise,
728 * do no touch the cgroup events.
729 */
730 if (cgrp1 != cgrp2)
731 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100732
733 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200734}
735
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200736static inline void perf_cgroup_sched_in(struct task_struct *prev,
737 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200738{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200739 struct perf_cgroup *cgrp1;
740 struct perf_cgroup *cgrp2 = NULL;
741
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100742 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200743 /*
744 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100745 * we do not need to pass the ctx here because we know
746 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200747 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100748 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100749 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200750
751 /*
752 * only need to schedule in cgroup events if we are changing
753 * cgroup during ctxsw. Cgroup events were not scheduled
754 * out of ctxsw out if that was not the case.
755 */
756 if (cgrp1 != cgrp2)
757 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100758
759 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200760}
761
762static inline int perf_cgroup_connect(int fd, struct perf_event *event,
763 struct perf_event_attr *attr,
764 struct perf_event *group_leader)
765{
766 struct perf_cgroup *cgrp;
767 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400768 struct fd f = fdget(fd);
769 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200770
Al Viro2903ff02012-08-28 12:52:22 -0400771 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200772 return -EBADF;
773
Al Virob5830432014-10-31 01:22:04 -0400774 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400775 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800776 if (IS_ERR(css)) {
777 ret = PTR_ERR(css);
778 goto out;
779 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200780
781 cgrp = container_of(css, struct perf_cgroup, css);
782 event->cgrp = cgrp;
783
784 /*
785 * all events in a group must monitor
786 * the same cgroup because a task belongs
787 * to only one perf cgroup at a time
788 */
789 if (group_leader && group_leader->cgrp != cgrp) {
790 perf_detach_cgroup(event);
791 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200792 }
Li Zefan3db272c2011-03-03 14:25:37 +0800793out:
Al Viro2903ff02012-08-28 12:52:22 -0400794 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200795 return ret;
796}
797
798static inline void
799perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
800{
801 struct perf_cgroup_info *t;
802 t = per_cpu_ptr(event->cgrp->info, event->cpu);
803 event->shadow_ctx_time = now - t->timestamp;
804}
805
806static inline void
807perf_cgroup_defer_enabled(struct perf_event *event)
808{
809 /*
810 * when the current task's perf cgroup does not match
811 * the event's, we need to remember to call the
812 * perf_mark_enable() function the first time a task with
813 * a matching perf cgroup is scheduled in.
814 */
815 if (is_cgroup_event(event) && !perf_cgroup_match(event))
816 event->cgrp_defer_enabled = 1;
817}
818
819static inline void
820perf_cgroup_mark_enabled(struct perf_event *event,
821 struct perf_event_context *ctx)
822{
823 struct perf_event *sub;
824 u64 tstamp = perf_event_time(event);
825
826 if (!event->cgrp_defer_enabled)
827 return;
828
829 event->cgrp_defer_enabled = 0;
830
831 event->tstamp_enabled = tstamp - event->total_time_enabled;
832 list_for_each_entry(sub, &event->sibling_list, group_entry) {
833 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
834 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
835 sub->cgrp_defer_enabled = 0;
836 }
837 }
838}
839#else /* !CONFIG_CGROUP_PERF */
840
841static inline bool
842perf_cgroup_match(struct perf_event *event)
843{
844 return true;
845}
846
847static inline void perf_detach_cgroup(struct perf_event *event)
848{}
849
850static inline int is_cgroup_event(struct perf_event *event)
851{
852 return 0;
853}
854
855static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
856{
857 return 0;
858}
859
860static inline void update_cgrp_time_from_event(struct perf_event *event)
861{
862}
863
864static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
865{
866}
867
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200868static inline void perf_cgroup_sched_out(struct task_struct *task,
869 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200870{
871}
872
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200873static inline void perf_cgroup_sched_in(struct task_struct *prev,
874 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200875{
876}
877
878static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
879 struct perf_event_attr *attr,
880 struct perf_event *group_leader)
881{
882 return -EINVAL;
883}
884
885static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200886perf_cgroup_set_timestamp(struct task_struct *task,
887 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200888{
889}
890
891void
892perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
893{
894}
895
896static inline void
897perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
898{
899}
900
901static inline u64 perf_cgroup_event_time(struct perf_event *event)
902{
903 return 0;
904}
905
906static inline void
907perf_cgroup_defer_enabled(struct perf_event *event)
908{
909}
910
911static inline void
912perf_cgroup_mark_enabled(struct perf_event *event,
913 struct perf_event_context *ctx)
914{
915}
916#endif
917
Stephane Eranian9e630202013-04-03 14:21:33 +0200918/*
919 * set default to be dependent on timer tick just
920 * like original code
921 */
922#define PERF_CPU_HRTIMER (1000 / HZ)
923/*
924 * function must be called with interrupts disbled
925 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200926static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +0200927{
928 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +0200929 int rotations = 0;
930
931 WARN_ON(!irqs_disabled());
932
933 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200934 rotations = perf_rotate_context(cpuctx);
935
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200936 raw_spin_lock(&cpuctx->hrtimer_lock);
937 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +0200938 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200939 else
940 cpuctx->hrtimer_active = 0;
941 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +0200942
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200943 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +0200944}
945
Peter Zijlstra272325c2015-04-15 11:41:58 +0200946static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +0200947{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200948 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200949 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +0200950 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +0200951
952 /* no multiplexing needed for SW PMU */
953 if (pmu->task_ctx_nr == perf_sw_context)
954 return;
955
Stephane Eranian62b85632013-04-03 14:21:34 +0200956 /*
957 * check default is sane, if not set then force to
958 * default interval (1/tick)
959 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200960 interval = pmu->hrtimer_interval_ms;
961 if (interval < 1)
962 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +0200963
Peter Zijlstra272325c2015-04-15 11:41:58 +0200964 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +0200965
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200966 raw_spin_lock_init(&cpuctx->hrtimer_lock);
967 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +0200968 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +0200969}
970
Peter Zijlstra272325c2015-04-15 11:41:58 +0200971static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +0200972{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200973 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200974 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200975 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +0200976
977 /* not for SW PMU */
978 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +0200979 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200980
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200981 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
982 if (!cpuctx->hrtimer_active) {
983 cpuctx->hrtimer_active = 1;
984 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
985 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
986 }
987 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +0200988
Peter Zijlstra272325c2015-04-15 11:41:58 +0200989 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200990}
991
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200992void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200993{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200994 int *count = this_cpu_ptr(pmu->pmu_disable_count);
995 if (!(*count)++)
996 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200997}
998
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200999void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001000{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001001 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1002 if (!--(*count))
1003 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001004}
1005
Mark Rutland2fde4f92015-01-07 15:01:54 +00001006static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001007
1008/*
Mark Rutland2fde4f92015-01-07 15:01:54 +00001009 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1010 * perf_event_task_tick() are fully serialized because they're strictly cpu
1011 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1012 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001013 */
Mark Rutland2fde4f92015-01-07 15:01:54 +00001014static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001015{
Mark Rutland2fde4f92015-01-07 15:01:54 +00001016 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001017
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001018 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001019
Mark Rutland2fde4f92015-01-07 15:01:54 +00001020 WARN_ON(!list_empty(&ctx->active_ctx_list));
1021
1022 list_add(&ctx->active_ctx_list, head);
1023}
1024
1025static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1026{
1027 WARN_ON(!irqs_disabled());
1028
1029 WARN_ON(list_empty(&ctx->active_ctx_list));
1030
1031 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001032}
1033
1034static void get_ctx(struct perf_event_context *ctx)
1035{
1036 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
1037}
1038
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001039static void free_ctx(struct rcu_head *head)
1040{
1041 struct perf_event_context *ctx;
1042
1043 ctx = container_of(head, struct perf_event_context, rcu_head);
1044 kfree(ctx->task_ctx_data);
1045 kfree(ctx);
1046}
1047
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001048static void put_ctx(struct perf_event_context *ctx)
1049{
1050 if (atomic_dec_and_test(&ctx->refcount)) {
1051 if (ctx->parent_ctx)
1052 put_ctx(ctx->parent_ctx);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001053 if (ctx->task && ctx->task != TASK_TOMBSTONE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001054 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -05001055 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001056 }
1057}
1058
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001059/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001060 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1061 * perf_pmu_migrate_context() we need some magic.
1062 *
1063 * Those places that change perf_event::ctx will hold both
1064 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1065 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001066 * Lock ordering is by mutex address. There are two other sites where
1067 * perf_event_context::mutex nests and those are:
1068 *
1069 * - perf_event_exit_task_context() [ child , 0 ]
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001070 * perf_event_exit_event()
1071 * put_event() [ parent, 1 ]
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02001072 *
1073 * - perf_event_init_context() [ parent, 0 ]
1074 * inherit_task_group()
1075 * inherit_group()
1076 * inherit_event()
1077 * perf_event_alloc()
1078 * perf_init_event()
1079 * perf_try_init_event() [ child , 1 ]
1080 *
1081 * While it appears there is an obvious deadlock here -- the parent and child
1082 * nesting levels are inverted between the two. This is in fact safe because
1083 * life-time rules separate them. That is an exiting task cannot fork, and a
1084 * spawning task cannot (yet) exit.
1085 *
1086 * But remember that that these are parent<->child context relations, and
1087 * migration does not affect children, therefore these two orderings should not
1088 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001089 *
1090 * The change in perf_event::ctx does not affect children (as claimed above)
1091 * because the sys_perf_event_open() case will install a new event and break
1092 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1093 * concerned with cpuctx and that doesn't have children.
1094 *
1095 * The places that change perf_event::ctx will issue:
1096 *
1097 * perf_remove_from_context();
1098 * synchronize_rcu();
1099 * perf_install_in_context();
1100 *
1101 * to affect the change. The remove_from_context() + synchronize_rcu() should
1102 * quiesce the event, after which we can install it in the new location. This
1103 * means that only external vectors (perf_fops, prctl) can perturb the event
1104 * while in transit. Therefore all such accessors should also acquire
1105 * perf_event_context::mutex to serialize against this.
1106 *
1107 * However; because event->ctx can change while we're waiting to acquire
1108 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1109 * function.
1110 *
1111 * Lock order:
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02001112 * cred_guard_mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001113 * task_struct::perf_event_mutex
1114 * perf_event_context::mutex
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001115 * perf_event::child_mutex;
Peter Zijlstra07c4a772016-01-26 12:15:37 +01001116 * perf_event_context::lock
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001117 * perf_event::mmap_mutex
1118 * mmap_sem
1119 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001120static struct perf_event_context *
1121perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001122{
1123 struct perf_event_context *ctx;
1124
1125again:
1126 rcu_read_lock();
1127 ctx = ACCESS_ONCE(event->ctx);
1128 if (!atomic_inc_not_zero(&ctx->refcount)) {
1129 rcu_read_unlock();
1130 goto again;
1131 }
1132 rcu_read_unlock();
1133
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001134 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001135 if (event->ctx != ctx) {
1136 mutex_unlock(&ctx->mutex);
1137 put_ctx(ctx);
1138 goto again;
1139 }
1140
1141 return ctx;
1142}
1143
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001144static inline struct perf_event_context *
1145perf_event_ctx_lock(struct perf_event *event)
1146{
1147 return perf_event_ctx_lock_nested(event, 0);
1148}
1149
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001150static void perf_event_ctx_unlock(struct perf_event *event,
1151 struct perf_event_context *ctx)
1152{
1153 mutex_unlock(&ctx->mutex);
1154 put_ctx(ctx);
1155}
1156
1157/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001158 * This must be done under the ctx->lock, such as to serialize against
1159 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1160 * calling scheduler related locks and ctx->lock nests inside those.
1161 */
1162static __must_check struct perf_event_context *
1163unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001164{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001165 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1166
1167 lockdep_assert_held(&ctx->lock);
1168
1169 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001170 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001171 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001172
1173 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001174}
1175
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001176static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1177{
1178 /*
1179 * only top level events have the pid namespace they were created in
1180 */
1181 if (event->parent)
1182 event = event->parent;
1183
1184 return task_tgid_nr_ns(p, event->ns);
1185}
1186
1187static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1188{
1189 /*
1190 * only top level events have the pid namespace they were created in
1191 */
1192 if (event->parent)
1193 event = event->parent;
1194
1195 return task_pid_nr_ns(p, event->ns);
1196}
1197
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001198/*
1199 * If we inherit events we want to return the parent event id
1200 * to userspace.
1201 */
1202static u64 primary_event_id(struct perf_event *event)
1203{
1204 u64 id = event->id;
1205
1206 if (event->parent)
1207 id = event->parent->id;
1208
1209 return id;
1210}
1211
1212/*
1213 * Get the perf_event_context for a task and lock it.
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001214 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001215 * This has to cope with with the fact that until it is locked,
1216 * the context could get moved to another task.
1217 */
1218static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001219perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001220{
1221 struct perf_event_context *ctx;
1222
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001223retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001224 /*
1225 * One of the few rules of preemptible RCU is that one cannot do
1226 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001227 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001228 * rcu_read_unlock_special().
1229 *
1230 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001231 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001232 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001233 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001234 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001235 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001236 if (ctx) {
1237 /*
1238 * If this context is a clone of another, it might
1239 * get swapped for another underneath us by
1240 * perf_event_task_sched_out, though the
1241 * rcu_read_lock() protects us from any context
1242 * getting freed. Lock the context and check if it
1243 * got swapped before we could get the lock, and retry
1244 * if so. If we locked the right context, then it
1245 * can't get swapped on us any more.
1246 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001247 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001248 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001249 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001250 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001251 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001252 goto retry;
1253 }
1254
Peter Zijlstra63b6da32016-01-14 16:05:37 +01001255 if (ctx->task == TASK_TOMBSTONE ||
1256 !atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001257 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001258 ctx = NULL;
Peter Zijlstra828b6f02016-01-27 21:59:04 +01001259 } else {
1260 WARN_ON_ONCE(ctx->task != task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001261 }
1262 }
1263 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001264 if (!ctx)
1265 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266 return ctx;
1267}
1268
1269/*
1270 * Get the context for a task and increment its pin_count so it
1271 * can't get swapped to another task. This also increments its
1272 * reference count so that the context can't get freed.
1273 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001274static struct perf_event_context *
1275perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001276{
1277 struct perf_event_context *ctx;
1278 unsigned long flags;
1279
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001280 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001281 if (ctx) {
1282 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001283 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001284 }
1285 return ctx;
1286}
1287
1288static void perf_unpin_context(struct perf_event_context *ctx)
1289{
1290 unsigned long flags;
1291
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001292 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001293 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001294 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001295}
1296
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001297/*
1298 * Update the record of the current time in a context.
1299 */
1300static void update_context_time(struct perf_event_context *ctx)
1301{
1302 u64 now = perf_clock();
1303
1304 ctx->time += now - ctx->timestamp;
1305 ctx->timestamp = now;
1306}
1307
Stephane Eranian41587552011-01-03 18:20:01 +02001308static u64 perf_event_time(struct perf_event *event)
1309{
1310 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001311
1312 if (is_cgroup_event(event))
1313 return perf_cgroup_event_time(event);
1314
Stephane Eranian41587552011-01-03 18:20:01 +02001315 return ctx ? ctx->time : 0;
1316}
1317
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001318/*
1319 * Update the total_time_enabled and total_time_running fields for a event.
1320 */
1321static void update_event_times(struct perf_event *event)
1322{
1323 struct perf_event_context *ctx = event->ctx;
1324 u64 run_end;
1325
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001326 lockdep_assert_held(&ctx->lock);
1327
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001328 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1329 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1330 return;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01001331
Stephane Eraniane5d13672011-02-14 11:20:01 +02001332 /*
1333 * in cgroup mode, time_enabled represents
1334 * the time the event was enabled AND active
1335 * tasks were in the monitored cgroup. This is
1336 * independent of the activity of the context as
1337 * there may be a mix of cgroup and non-cgroup events.
1338 *
1339 * That is why we treat cgroup events differently
1340 * here.
1341 */
1342 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001343 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001344 else if (ctx->is_active)
1345 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001346 else
1347 run_end = event->tstamp_stopped;
1348
1349 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001350
1351 if (event->state == PERF_EVENT_STATE_INACTIVE)
1352 run_end = event->tstamp_stopped;
1353 else
Stephane Eranian41587552011-01-03 18:20:01 +02001354 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001355
1356 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001357
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001358}
1359
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001360/*
1361 * Update total_time_enabled and total_time_running for all events in a group.
1362 */
1363static void update_group_times(struct perf_event *leader)
1364{
1365 struct perf_event *event;
1366
1367 update_event_times(leader);
1368 list_for_each_entry(event, &leader->sibling_list, group_entry)
1369 update_event_times(event);
1370}
1371
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001372static struct list_head *
1373ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1374{
1375 if (event->attr.pinned)
1376 return &ctx->pinned_groups;
1377 else
1378 return &ctx->flexible_groups;
1379}
1380
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001381/*
1382 * Add a event from the lists for its context.
1383 * Must be called with ctx->mutex and ctx->lock held.
1384 */
1385static void
1386list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1387{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001388 lockdep_assert_held(&ctx->lock);
1389
Peter Zijlstra8a495422010-05-27 15:47:49 +02001390 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1391 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001392
1393 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001394 * If we're a stand alone event or group leader, we go to the context
1395 * list, group events are kept attached to the group so that
1396 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001397 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001398 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001399 struct list_head *list;
1400
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001401 if (is_software_event(event))
1402 event->group_flags |= PERF_GROUP_SOFTWARE;
1403
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001404 list = ctx_group_list(event, ctx);
1405 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001406 }
1407
Peter Zijlstra08309372011-03-03 11:31:20 +01001408 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001409 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001411 list_add_rcu(&event->event_entry, &ctx->event_list);
1412 ctx->nr_events++;
1413 if (event->attr.inherit_stat)
1414 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001415
1416 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001417}
1418
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001419/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001420 * Initialize event state based on the perf_event_attr::disabled.
1421 */
1422static inline void perf_event__state_init(struct perf_event *event)
1423{
1424 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1425 PERF_EVENT_STATE_INACTIVE;
1426}
1427
Peter Zijlstraa7239682015-09-09 19:06:33 +02001428static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001429{
1430 int entry = sizeof(u64); /* value */
1431 int size = 0;
1432 int nr = 1;
1433
1434 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1435 size += sizeof(u64);
1436
1437 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1438 size += sizeof(u64);
1439
1440 if (event->attr.read_format & PERF_FORMAT_ID)
1441 entry += sizeof(u64);
1442
1443 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001444 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001445 size += sizeof(u64);
1446 }
1447
1448 size += entry * nr;
1449 event->read_size = size;
1450}
1451
Peter Zijlstraa7239682015-09-09 19:06:33 +02001452static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001453{
1454 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001455 u16 size = 0;
1456
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001457 if (sample_type & PERF_SAMPLE_IP)
1458 size += sizeof(data->ip);
1459
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001460 if (sample_type & PERF_SAMPLE_ADDR)
1461 size += sizeof(data->addr);
1462
1463 if (sample_type & PERF_SAMPLE_PERIOD)
1464 size += sizeof(data->period);
1465
Andi Kleenc3feedf2013-01-24 16:10:28 +01001466 if (sample_type & PERF_SAMPLE_WEIGHT)
1467 size += sizeof(data->weight);
1468
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001469 if (sample_type & PERF_SAMPLE_READ)
1470 size += event->read_size;
1471
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001472 if (sample_type & PERF_SAMPLE_DATA_SRC)
1473 size += sizeof(data->data_src.val);
1474
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001475 if (sample_type & PERF_SAMPLE_TRANSACTION)
1476 size += sizeof(data->txn);
1477
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001478 event->header_size = size;
1479}
1480
Peter Zijlstraa7239682015-09-09 19:06:33 +02001481/*
1482 * Called at perf_event creation and when events are attached/detached from a
1483 * group.
1484 */
1485static void perf_event__header_size(struct perf_event *event)
1486{
1487 __perf_event_read_size(event,
1488 event->group_leader->nr_siblings);
1489 __perf_event_header_size(event, event->attr.sample_type);
1490}
1491
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001492static void perf_event__id_header_size(struct perf_event *event)
1493{
1494 struct perf_sample_data *data;
1495 u64 sample_type = event->attr.sample_type;
1496 u16 size = 0;
1497
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001498 if (sample_type & PERF_SAMPLE_TID)
1499 size += sizeof(data->tid_entry);
1500
1501 if (sample_type & PERF_SAMPLE_TIME)
1502 size += sizeof(data->time);
1503
Adrian Hunterff3d5272013-08-27 11:23:07 +03001504 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1505 size += sizeof(data->id);
1506
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001507 if (sample_type & PERF_SAMPLE_ID)
1508 size += sizeof(data->id);
1509
1510 if (sample_type & PERF_SAMPLE_STREAM_ID)
1511 size += sizeof(data->stream_id);
1512
1513 if (sample_type & PERF_SAMPLE_CPU)
1514 size += sizeof(data->cpu_entry);
1515
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001516 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001517}
1518
Peter Zijlstraa7239682015-09-09 19:06:33 +02001519static bool perf_event_validate_size(struct perf_event *event)
1520{
1521 /*
1522 * The values computed here will be over-written when we actually
1523 * attach the event.
1524 */
1525 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1526 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1527 perf_event__id_header_size(event);
1528
1529 /*
1530 * Sum the lot; should not exceed the 64k limit we have on records.
1531 * Conservative limit to allow for callchains and other variable fields.
1532 */
1533 if (event->read_size + event->header_size +
1534 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1535 return false;
1536
1537 return true;
1538}
1539
Peter Zijlstra8a495422010-05-27 15:47:49 +02001540static void perf_group_attach(struct perf_event *event)
1541{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001542 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001543
Peter Zijlstra74c33372010-10-15 11:40:29 +02001544 /*
1545 * We can have double attach due to group movement in perf_event_open.
1546 */
1547 if (event->attach_state & PERF_ATTACH_GROUP)
1548 return;
1549
Peter Zijlstra8a495422010-05-27 15:47:49 +02001550 event->attach_state |= PERF_ATTACH_GROUP;
1551
1552 if (group_leader == event)
1553 return;
1554
Peter Zijlstra652884f2015-01-23 11:20:10 +01001555 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1556
Peter Zijlstra8a495422010-05-27 15:47:49 +02001557 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1558 !is_software_event(event))
1559 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1560
1561 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1562 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001563
1564 perf_event__header_size(group_leader);
1565
1566 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1567 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001568}
1569
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001570/*
1571 * Remove a event from the lists for its context.
1572 * Must be called with ctx->mutex and ctx->lock held.
1573 */
1574static void
1575list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1576{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001577 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001578
1579 WARN_ON_ONCE(event->ctx != ctx);
1580 lockdep_assert_held(&ctx->lock);
1581
Peter Zijlstra8a495422010-05-27 15:47:49 +02001582 /*
1583 * We can have double detach due to exit/hot-unplug + close.
1584 */
1585 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001586 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001587
1588 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1589
Stephane Eranian68cacd22011-03-23 16:03:06 +01001590 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001591 ctx->nr_cgroups--;
Peter Zijlstra70a01652016-01-08 09:29:16 +01001592 /*
1593 * Because cgroup events are always per-cpu events, this will
1594 * always be called from the right CPU.
1595 */
Stephane Eranian68cacd22011-03-23 16:03:06 +01001596 cpuctx = __get_cpu_context(ctx);
1597 /*
Peter Zijlstra70a01652016-01-08 09:29:16 +01001598 * If there are no more cgroup events then clear cgrp to avoid
1599 * stale pointer in update_cgrp_time_from_cpuctx().
Stephane Eranian68cacd22011-03-23 16:03:06 +01001600 */
1601 if (!ctx->nr_cgroups)
1602 cpuctx->cgrp = NULL;
1603 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001604
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001605 ctx->nr_events--;
1606 if (event->attr.inherit_stat)
1607 ctx->nr_stat--;
1608
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001609 list_del_rcu(&event->event_entry);
1610
Peter Zijlstra8a495422010-05-27 15:47:49 +02001611 if (event->group_leader == event)
1612 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001613
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001614 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001615
1616 /*
1617 * If event was in error state, then keep it
1618 * that way, otherwise bogus counts will be
1619 * returned on read(). The only way to get out
1620 * of error state is by explicit re-enabling
1621 * of the event
1622 */
1623 if (event->state > PERF_EVENT_STATE_OFF)
1624 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001625
1626 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001627}
1628
Peter Zijlstra8a495422010-05-27 15:47:49 +02001629static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001630{
1631 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001632 struct list_head *list = NULL;
1633
1634 /*
1635 * We can have double detach due to exit/hot-unplug + close.
1636 */
1637 if (!(event->attach_state & PERF_ATTACH_GROUP))
1638 return;
1639
1640 event->attach_state &= ~PERF_ATTACH_GROUP;
1641
1642 /*
1643 * If this is a sibling, remove it from its group.
1644 */
1645 if (event->group_leader != event) {
1646 list_del_init(&event->group_entry);
1647 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001648 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001649 }
1650
1651 if (!list_empty(&event->group_entry))
1652 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001653
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001654 /*
1655 * If this was a group event with sibling events then
1656 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001657 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001658 */
1659 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001660 if (list)
1661 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001662 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001663
1664 /* Inherit group flags from the previous leader */
1665 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001666
1667 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001668 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001669
1670out:
1671 perf_event__header_size(event->group_leader);
1672
1673 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1674 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001675}
1676
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001677static bool is_orphaned_event(struct perf_event *event)
1678{
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01001679 return event->state == PERF_EVENT_STATE_DEAD;
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001680}
1681
Mark Rutland66eb5792015-05-13 17:12:23 +01001682static inline int pmu_filter_match(struct perf_event *event)
1683{
1684 struct pmu *pmu = event->pmu;
1685 return pmu->filter_match ? pmu->filter_match(event) : 1;
1686}
1687
Stephane Eranianfa66f072010-08-26 16:40:01 +02001688static inline int
1689event_filter_match(struct perf_event *event)
1690{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001691 return (event->cpu == -1 || event->cpu == smp_processor_id())
Mark Rutland66eb5792015-05-13 17:12:23 +01001692 && perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001693}
1694
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001695static void
1696event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001697 struct perf_cpu_context *cpuctx,
1698 struct perf_event_context *ctx)
1699{
Stephane Eranian41587552011-01-03 18:20:01 +02001700 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001701 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001702
1703 WARN_ON_ONCE(event->ctx != ctx);
1704 lockdep_assert_held(&ctx->lock);
1705
Stephane Eranianfa66f072010-08-26 16:40:01 +02001706 /*
1707 * An event which could not be activated because of
1708 * filter mismatch still needs to have its timings
1709 * maintained, otherwise bogus information is return
1710 * via read() for time_enabled, time_running:
1711 */
1712 if (event->state == PERF_EVENT_STATE_INACTIVE
1713 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001714 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001715 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001716 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001717 }
1718
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001719 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001720 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001721
Alexander Shishkin44377272013-12-16 14:17:36 +02001722 perf_pmu_disable(event->pmu);
1723
Peter Zijlstra28a967c2016-02-24 18:45:46 +01001724 event->tstamp_stopped = tstamp;
1725 event->pmu->del(event, 0);
1726 event->oncpu = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001727 event->state = PERF_EVENT_STATE_INACTIVE;
1728 if (event->pending_disable) {
1729 event->pending_disable = 0;
1730 event->state = PERF_EVENT_STATE_OFF;
1731 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001732
1733 if (!is_software_event(event))
1734 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001735 if (!--ctx->nr_active)
1736 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001737 if (event->attr.freq && event->attr.sample_freq)
1738 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001739 if (event->attr.exclusive || !cpuctx->active_oncpu)
1740 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001741
1742 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743}
1744
1745static void
1746group_sched_out(struct perf_event *group_event,
1747 struct perf_cpu_context *cpuctx,
1748 struct perf_event_context *ctx)
1749{
1750 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001751 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001752
1753 event_sched_out(group_event, cpuctx, ctx);
1754
1755 /*
1756 * Schedule out siblings (if any):
1757 */
1758 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1759 event_sched_out(event, cpuctx, ctx);
1760
Stephane Eranianfa66f072010-08-26 16:40:01 +02001761 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001762 cpuctx->exclusive = 0;
1763}
1764
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001765#define DETACH_GROUP 0x01UL
Peter Zijlstra00179602015-11-30 16:26:35 +01001766
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001767/*
1768 * Cross CPU call to remove a performance event
1769 *
1770 * We disable the event on the hardware level first. After that we
1771 * remove it from the context list.
1772 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001773static void
1774__perf_remove_from_context(struct perf_event *event,
1775 struct perf_cpu_context *cpuctx,
1776 struct perf_event_context *ctx,
1777 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001778{
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001779 unsigned long flags = (unsigned long)info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001780
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001781 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001782 if (flags & DETACH_GROUP)
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001783 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001784 list_del_event(event, ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001785
Peter Zijlstra39a43642016-01-11 12:46:35 +01001786 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001787 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001788 if (ctx->task) {
1789 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1790 cpuctx->task_ctx = NULL;
1791 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001792 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001793}
1794
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001795/*
1796 * Remove the event from a task's (or a CPU's) list of events.
1797 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001798 * If event->ctx is a cloned context, callers must make sure that
1799 * every task struct that event->ctx->task could possibly point to
1800 * remains valid. This is OK when called from perf_release since
1801 * that only calls us on the top-level context, which can't be a clone.
1802 * When called from perf_event_exit_task, it's OK because the
1803 * context has been detached from its task.
1804 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001805static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001807 lockdep_assert_held(&event->ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001808
Peter Zijlstra45a0e072016-01-26 13:09:48 +01001809 event_function_call(event, __perf_remove_from_context, (void *)flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001810}
1811
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001812/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001813 * Cross CPU call to disable a performance event
1814 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001815static void __perf_event_disable(struct perf_event *event,
1816 struct perf_cpu_context *cpuctx,
1817 struct perf_event_context *ctx,
1818 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001819{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001820 if (event->state < PERF_EVENT_STATE_INACTIVE)
1821 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001822
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001823 update_context_time(ctx);
1824 update_cgrp_time_from_event(event);
1825 update_group_times(event);
1826 if (event == event->group_leader)
1827 group_sched_out(event, cpuctx, ctx);
1828 else
1829 event_sched_out(event, cpuctx, ctx);
1830 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra7b648012015-12-03 18:35:21 +01001831}
1832
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001833/*
1834 * Disable a event.
1835 *
1836 * If event->ctx is a cloned context, callers must make sure that
1837 * every task struct that event->ctx->task could possibly point to
1838 * remains valid. This condition is satisifed when called through
1839 * perf_event_for_each_child or perf_event_for_each because they
1840 * hold the top-level event's child_mutex, so any descendant that
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01001841 * goes to exit will block in perf_event_exit_event().
1842 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001843 * When called from perf_pending_event it's OK because event->ctx
1844 * is the current context on this CPU and preemption is disabled,
1845 * hence we can't get into perf_event_task_sched_out for this context.
1846 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001847static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001848{
1849 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001851 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001852 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001853 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001854 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001855 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001856 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001857
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01001858 event_function_call(event, __perf_event_disable, NULL);
1859}
1860
1861void perf_event_disable_local(struct perf_event *event)
1862{
1863 event_function_local(event, __perf_event_disable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001865
1866/*
1867 * Strictly speaking kernel users cannot create groups and therefore this
1868 * interface does not need the perf_event_ctx_lock() magic.
1869 */
1870void perf_event_disable(struct perf_event *event)
1871{
1872 struct perf_event_context *ctx;
1873
1874 ctx = perf_event_ctx_lock(event);
1875 _perf_event_disable(event);
1876 perf_event_ctx_unlock(event, ctx);
1877}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001878EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001879
Stephane Eraniane5d13672011-02-14 11:20:01 +02001880static void perf_set_shadow_time(struct perf_event *event,
1881 struct perf_event_context *ctx,
1882 u64 tstamp)
1883{
1884 /*
1885 * use the correct time source for the time snapshot
1886 *
1887 * We could get by without this by leveraging the
1888 * fact that to get to this function, the caller
1889 * has most likely already called update_context_time()
1890 * and update_cgrp_time_xx() and thus both timestamp
1891 * are identical (or very close). Given that tstamp is,
1892 * already adjusted for cgroup, we could say that:
1893 * tstamp - ctx->timestamp
1894 * is equivalent to
1895 * tstamp - cgrp->timestamp.
1896 *
1897 * Then, in perf_output_read(), the calculation would
1898 * work with no changes because:
1899 * - event is guaranteed scheduled in
1900 * - no scheduled out in between
1901 * - thus the timestamp would be the same
1902 *
1903 * But this is a bit hairy.
1904 *
1905 * So instead, we have an explicit cgroup call to remain
1906 * within the time time source all along. We believe it
1907 * is cleaner and simpler to understand.
1908 */
1909 if (is_cgroup_event(event))
1910 perf_cgroup_set_shadow_time(event, tstamp);
1911 else
1912 event->shadow_ctx_time = tstamp - ctx->timestamp;
1913}
1914
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001915#define MAX_INTERRUPTS (~0ULL)
1916
1917static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001918static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001921event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001922 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001923 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001924{
Stephane Eranian41587552011-01-03 18:20:01 +02001925 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001926 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001927
Peter Zijlstra63342412014-05-05 11:49:16 +02001928 lockdep_assert_held(&ctx->lock);
1929
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001930 if (event->state <= PERF_EVENT_STATE_OFF)
1931 return 0;
1932
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02001933 WRITE_ONCE(event->oncpu, smp_processor_id());
1934 /*
1935 * Order event::oncpu write to happen before the ACTIVE state
1936 * is visible.
1937 */
1938 smp_wmb();
1939 WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001940
1941 /*
1942 * Unthrottle events, since we scheduled we might have missed several
1943 * ticks already, also for a heavily scheduling task there is little
1944 * guarantee it'll get a tick in a timely manner.
1945 */
1946 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1947 perf_log_throttle(event, 1);
1948 event->hw.interrupts = 0;
1949 }
1950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001951 /*
1952 * The new state must be visible before we turn it on in the hardware:
1953 */
1954 smp_wmb();
1955
Alexander Shishkin44377272013-12-16 14:17:36 +02001956 perf_pmu_disable(event->pmu);
1957
Shaohua Li72f669c2015-02-05 15:55:31 -08001958 perf_set_shadow_time(event, ctx, tstamp);
1959
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001960 perf_log_itrace_start(event);
1961
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001962 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001963 event->state = PERF_EVENT_STATE_INACTIVE;
1964 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001965 ret = -EAGAIN;
1966 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001967 }
1968
Peter Zijlstra00a29162015-07-27 10:35:07 +02001969 event->tstamp_running += tstamp - event->tstamp_stopped;
1970
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001971 if (!is_software_event(event))
1972 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001973 if (!ctx->nr_active++)
1974 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001975 if (event->attr.freq && event->attr.sample_freq)
1976 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001977
1978 if (event->attr.exclusive)
1979 cpuctx->exclusive = 1;
1980
Alexander Shishkin44377272013-12-16 14:17:36 +02001981out:
1982 perf_pmu_enable(event->pmu);
1983
1984 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985}
1986
1987static int
1988group_sched_in(struct perf_event *group_event,
1989 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001990 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001991{
Lin Ming6bde9b62010-04-23 13:56:00 +08001992 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001993 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001994 u64 now = ctx->time;
1995 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001996
1997 if (group_event->state == PERF_EVENT_STATE_OFF)
1998 return 0;
1999
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07002000 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08002001
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002002 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002003 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002004 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002005 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02002006 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007
2008 /*
2009 * Schedule in siblings as one group (if any):
2010 */
2011 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002012 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002013 partial_group = event;
2014 goto group_error;
2015 }
2016 }
2017
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002018 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10002019 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002020
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002021group_error:
2022 /*
2023 * Groups can be scheduled in as one unit only, so undo any
2024 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002025 * The events up to the failed event are scheduled out normally,
2026 * tstamp_stopped will be updated.
2027 *
2028 * The failed events and the remaining siblings need to have
2029 * their timings updated as if they had gone thru event_sched_in()
2030 * and event_sched_out(). This is required to get consistent timings
2031 * across the group. This also takes care of the case where the group
2032 * could never be scheduled by ensuring tstamp_stopped is set to mark
2033 * the time the event was actually stopped, such that time delta
2034 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002035 */
2036 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2037 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002038 simulate = true;
2039
2040 if (simulate) {
2041 event->tstamp_running += now - event->tstamp_stopped;
2042 event->tstamp_stopped = now;
2043 } else {
2044 event_sched_out(event, cpuctx, ctx);
2045 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002046 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002047 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002048
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002049 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002050
Peter Zijlstra272325c2015-04-15 11:41:58 +02002051 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002053 return -EAGAIN;
2054}
2055
2056/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002057 * Work out whether we can put this event group on the CPU now.
2058 */
2059static int group_can_go_on(struct perf_event *event,
2060 struct perf_cpu_context *cpuctx,
2061 int can_add_hw)
2062{
2063 /*
2064 * Groups consisting entirely of software events can always go on.
2065 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002066 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002067 return 1;
2068 /*
2069 * If an exclusive group is already on, no other hardware
2070 * events can go on.
2071 */
2072 if (cpuctx->exclusive)
2073 return 0;
2074 /*
2075 * If this group is exclusive and there are already
2076 * events on the CPU, it can't go on.
2077 */
2078 if (event->attr.exclusive && cpuctx->active_oncpu)
2079 return 0;
2080 /*
2081 * Otherwise, try to add it if all previous groups were able
2082 * to go on.
2083 */
2084 return can_add_hw;
2085}
2086
2087static void add_event_to_ctx(struct perf_event *event,
2088 struct perf_event_context *ctx)
2089{
Stephane Eranian41587552011-01-03 18:20:01 +02002090 u64 tstamp = perf_event_time(event);
2091
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002093 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002094 event->tstamp_enabled = tstamp;
2095 event->tstamp_running = tstamp;
2096 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002097}
2098
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002099static void ctx_sched_out(struct perf_event_context *ctx,
2100 struct perf_cpu_context *cpuctx,
2101 enum event_type_t event_type);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002102static void
2103ctx_sched_in(struct perf_event_context *ctx,
2104 struct perf_cpu_context *cpuctx,
2105 enum event_type_t event_type,
2106 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002107
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002108static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2109 struct perf_event_context *ctx)
2110{
2111 if (!cpuctx->task_ctx)
2112 return;
2113
2114 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2115 return;
2116
2117 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2118}
2119
Peter Zijlstradce58552011-04-09 21:17:46 +02002120static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2121 struct perf_event_context *ctx,
2122 struct task_struct *task)
2123{
2124 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2125 if (ctx)
2126 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2127 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2128 if (ctx)
2129 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2130}
2131
Peter Zijlstra3e349502016-01-08 10:01:18 +01002132static void ctx_resched(struct perf_cpu_context *cpuctx,
2133 struct perf_event_context *task_ctx)
Peter Zijlstra00179602015-11-30 16:26:35 +01002134{
Peter Zijlstra3e349502016-01-08 10:01:18 +01002135 perf_pmu_disable(cpuctx->ctx.pmu);
2136 if (task_ctx)
2137 task_ctx_sched_out(cpuctx, task_ctx);
2138 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2139 perf_event_sched_in(cpuctx, task_ctx, current);
2140 perf_pmu_enable(cpuctx->ctx.pmu);
Peter Zijlstra00179602015-11-30 16:26:35 +01002141}
2142
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143/*
2144 * Cross CPU call to install and enable a performance event
2145 *
Peter Zijlstraa0963092016-02-24 18:45:50 +01002146 * Very similar to remote_function() + event_function() but cannot assume that
2147 * things like ctx->is_active and cpuctx->task_ctx are set.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002149static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002151 struct perf_event *event = info;
2152 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002153 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002154 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002155 bool activate = true;
2156 int ret = 0;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002157
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002158 raw_spin_lock(&cpuctx->ctx.lock);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002159 if (ctx->task) {
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002160 raw_spin_lock(&ctx->lock);
2161 task_ctx = ctx;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002162
2163 /* If we're on the wrong CPU, try again */
2164 if (task_cpu(ctx->task) != smp_processor_id()) {
2165 ret = -ESRCH;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002166 goto unlock;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002167 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002168
Peter Zijlstra39a43642016-01-11 12:46:35 +01002169 /*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002170 * If we're on the right CPU, see if the task we target is
2171 * current, if not we don't have to activate the ctx, a future
2172 * context switch will do that for us.
Peter Zijlstra39a43642016-01-11 12:46:35 +01002173 */
Peter Zijlstraa0963092016-02-24 18:45:50 +01002174 if (ctx->task != current)
2175 activate = false;
2176 else
2177 WARN_ON_ONCE(cpuctx->task_ctx && cpuctx->task_ctx != ctx);
2178
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002179 } else if (task_ctx) {
2180 raw_spin_lock(&task_ctx->lock);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002181 }
2182
Peter Zijlstraa0963092016-02-24 18:45:50 +01002183 if (activate) {
2184 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2185 add_event_to_ctx(event, ctx);
2186 ctx_resched(cpuctx, task_ctx);
2187 } else {
2188 add_event_to_ctx(event, ctx);
2189 }
2190
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002191unlock:
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002192 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002193
Peter Zijlstraa0963092016-02-24 18:45:50 +01002194 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002195}
2196
2197/*
Peter Zijlstraa0963092016-02-24 18:45:50 +01002198 * Attach a performance event to a context.
2199 *
2200 * Very similar to event_function_call, see comment there.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002201 */
2202static void
2203perf_install_in_context(struct perf_event_context *ctx,
2204 struct perf_event *event,
2205 int cpu)
2206{
Peter Zijlstraa0963092016-02-24 18:45:50 +01002207 struct task_struct *task = READ_ONCE(ctx->task);
Peter Zijlstra39a43642016-01-11 12:46:35 +01002208
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002209 lockdep_assert_held(&ctx->mutex);
2210
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002211 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002212 if (event->cpu != -1)
2213 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002214
Peter Zijlstraa0963092016-02-24 18:45:50 +01002215 if (!task) {
2216 cpu_function_call(cpu, __perf_install_in_context, event);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002217 return;
2218 }
Peter Zijlstra6f932e52016-02-24 18:45:43 +01002219
Peter Zijlstraa0963092016-02-24 18:45:50 +01002220 /*
2221 * Should not happen, we validate the ctx is still alive before calling.
2222 */
2223 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2224 return;
2225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002226 /*
2227 * Installing events is tricky because we cannot rely on ctx->is_active
2228 * to be set in case this is the nr_events 0 -> 1 transition.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002229 */
Peter Zijlstraa0963092016-02-24 18:45:50 +01002230again:
2231 /*
2232 * Cannot use task_function_call() because we need to run on the task's
2233 * CPU regardless of whether its current or not.
2234 */
2235 if (!cpu_function_call(task_cpu(task), __perf_install_in_context, event))
2236 return;
2237
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238 raw_spin_lock_irq(&ctx->lock);
2239 task = ctx->task;
Peter Zijlstraa0963092016-02-24 18:45:50 +01002240 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
2241 /*
2242 * Cannot happen because we already checked above (which also
2243 * cannot happen), and we hold ctx->mutex, which serializes us
2244 * against perf_event_exit_task_context().
2245 */
Peter Zijlstra39a43642016-01-11 12:46:35 +01002246 raw_spin_unlock_irq(&ctx->lock);
2247 return;
2248 }
Peter Zijlstra39a43642016-01-11 12:46:35 +01002249 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstraa0963092016-02-24 18:45:50 +01002250 /*
2251 * Since !ctx->is_active doesn't mean anything, we must IPI
2252 * unconditionally.
2253 */
2254 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255}
2256
2257/*
2258 * Put a event into inactive state and update time fields.
2259 * Enabling the leader of a group effectively enables all
2260 * the group members that aren't explicitly disabled, so we
2261 * have to update their ->tstamp_enabled also.
2262 * Note: this works for group members as well as group leaders
2263 * since the non-leader members' sibling_lists will be empty.
2264 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002265static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002266{
2267 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002268 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002269
2270 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002271 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002272 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002273 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2274 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002275 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002276}
2277
2278/*
2279 * Cross CPU call to enable a performance event
2280 */
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002281static void __perf_event_enable(struct perf_event *event,
2282 struct perf_cpu_context *cpuctx,
2283 struct perf_event_context *ctx,
2284 void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002285{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002286 struct perf_event *leader = event->group_leader;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002287 struct perf_event_context *task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002288
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002289 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2290 event->state <= PERF_EVENT_STATE_ERROR)
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002291 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002292
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002293 if (ctx->is_active)
2294 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2295
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002296 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002297
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002298 if (!ctx->is_active)
2299 return;
2300
Stephane Eraniane5d13672011-02-14 11:20:01 +02002301 if (!event_filter_match(event)) {
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002302 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02002303 perf_cgroup_defer_enabled(event);
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002304 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002305 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002306 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002307
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002308 /*
2309 * If the event is in a group and isn't the group leader,
2310 * then don't put it on unless the group is on.
2311 */
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002312 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2313 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002314 return;
Peter Zijlstrabd2afa42016-02-24 18:45:49 +01002315 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002316
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002317 task_ctx = cpuctx->task_ctx;
2318 if (ctx->task)
2319 WARN_ON_ONCE(task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002320
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002321 ctx_resched(cpuctx, task_ctx);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002322}
2323
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002324/*
2325 * Enable a event.
2326 *
2327 * If event->ctx is a cloned context, callers must make sure that
2328 * every task struct that event->ctx->task could possibly point to
2329 * remains valid. This condition is satisfied when called through
2330 * perf_event_for_each_child or perf_event_for_each as described
2331 * for perf_event_disable.
2332 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002333static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002334{
2335 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002336
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002337 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra6e801e012016-01-26 12:17:08 +01002338 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2339 event->state < PERF_EVENT_STATE_ERROR) {
Peter Zijlstra7b648012015-12-03 18:35:21 +01002340 raw_spin_unlock_irq(&ctx->lock);
2341 return;
2342 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002343
2344 /*
2345 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002346 *
2347 * That way, if we see the event in error state below, we know that it
2348 * has gone back into error state, as distinct from the task having
2349 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350 */
2351 if (event->state == PERF_EVENT_STATE_ERROR)
2352 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002353 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002354
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01002355 event_function_call(event, __perf_event_enable, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002356}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002357
2358/*
2359 * See perf_event_disable();
2360 */
2361void perf_event_enable(struct perf_event *event)
2362{
2363 struct perf_event_context *ctx;
2364
2365 ctx = perf_event_ctx_lock(event);
2366 _perf_event_enable(event);
2367 perf_event_ctx_unlock(event, ctx);
2368}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002369EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002370
Alexander Shishkin375637b2016-04-27 18:44:46 +03002371struct stop_event_data {
2372 struct perf_event *event;
2373 unsigned int restart;
2374};
2375
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002376static int __perf_event_stop(void *info)
2377{
Alexander Shishkin375637b2016-04-27 18:44:46 +03002378 struct stop_event_data *sd = info;
2379 struct perf_event *event = sd->event;
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002380
Alexander Shishkin375637b2016-04-27 18:44:46 +03002381 /* if it's already INACTIVE, do nothing */
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002382 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2383 return 0;
2384
2385 /* matches smp_wmb() in event_sched_in() */
2386 smp_rmb();
2387
2388 /*
2389 * There is a window with interrupts enabled before we get here,
2390 * so we need to check again lest we try to stop another CPU's event.
2391 */
2392 if (READ_ONCE(event->oncpu) != smp_processor_id())
2393 return -EAGAIN;
2394
2395 event->pmu->stop(event, PERF_EF_UPDATE);
2396
Alexander Shishkin375637b2016-04-27 18:44:46 +03002397 /*
2398 * May race with the actual stop (through perf_pmu_output_stop()),
2399 * but it is only used for events with AUX ring buffer, and such
2400 * events will refuse to restart because of rb::aux_mmap_count==0,
2401 * see comments in perf_aux_output_begin().
2402 *
2403 * Since this is happening on a event-local CPU, no trace is lost
2404 * while restarting.
2405 */
2406 if (sd->restart)
2407 event->pmu->start(event, PERF_EF_START);
2408
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02002409 return 0;
2410}
2411
Alexander Shishkin375637b2016-04-27 18:44:46 +03002412static int perf_event_restart(struct perf_event *event)
2413{
2414 struct stop_event_data sd = {
2415 .event = event,
2416 .restart = 1,
2417 };
2418 int ret = 0;
2419
2420 do {
2421 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2422 return 0;
2423
2424 /* matches smp_wmb() in event_sched_in() */
2425 smp_rmb();
2426
2427 /*
2428 * We only want to restart ACTIVE events, so if the event goes
2429 * inactive here (event->oncpu==-1), there's nothing more to do;
2430 * fall through with ret==-ENXIO.
2431 */
2432 ret = cpu_function_call(READ_ONCE(event->oncpu),
2433 __perf_event_stop, &sd);
2434 } while (ret == -EAGAIN);
2435
2436 return ret;
2437}
2438
2439/*
2440 * In order to contain the amount of racy and tricky in the address filter
2441 * configuration management, it is a two part process:
2442 *
2443 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
2444 * we update the addresses of corresponding vmas in
2445 * event::addr_filters_offs array and bump the event::addr_filters_gen;
2446 * (p2) when an event is scheduled in (pmu::add), it calls
2447 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
2448 * if the generation has changed since the previous call.
2449 *
2450 * If (p1) happens while the event is active, we restart it to force (p2).
2451 *
2452 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
2453 * pre-existing mappings, called once when new filters arrive via SET_FILTER
2454 * ioctl;
2455 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
2456 * registered mapping, called for every new mmap(), with mm::mmap_sem down
2457 * for reading;
2458 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
2459 * of exec.
2460 */
2461void perf_event_addr_filters_sync(struct perf_event *event)
2462{
2463 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
2464
2465 if (!has_addr_filter(event))
2466 return;
2467
2468 raw_spin_lock(&ifh->lock);
2469 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
2470 event->pmu->addr_filters_sync(event);
2471 event->hw.addr_filters_gen = event->addr_filters_gen;
2472 }
2473 raw_spin_unlock(&ifh->lock);
2474}
2475EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
2476
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002477static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478{
2479 /*
2480 * not supported on inherited events
2481 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002482 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483 return -EINVAL;
2484
2485 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002486 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487
2488 return 0;
2489}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002490
2491/*
2492 * See perf_event_disable()
2493 */
2494int perf_event_refresh(struct perf_event *event, int refresh)
2495{
2496 struct perf_event_context *ctx;
2497 int ret;
2498
2499 ctx = perf_event_ctx_lock(event);
2500 ret = _perf_event_refresh(event, refresh);
2501 perf_event_ctx_unlock(event, ctx);
2502
2503 return ret;
2504}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002505EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002506
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002507static void ctx_sched_out(struct perf_event_context *ctx,
2508 struct perf_cpu_context *cpuctx,
2509 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002510{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002511 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002512 struct perf_event *event;
2513
2514 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515
Peter Zijlstra39a43642016-01-11 12:46:35 +01002516 if (likely(!ctx->nr_events)) {
2517 /*
2518 * See __perf_remove_from_context().
2519 */
2520 WARN_ON_ONCE(ctx->is_active);
2521 if (ctx->task)
2522 WARN_ON_ONCE(cpuctx->task_ctx);
2523 return;
2524 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002525
Peter Zijlstradb24d332011-04-09 21:17:45 +02002526 ctx->is_active &= ~event_type;
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002527 if (!(ctx->is_active & EVENT_ALL))
2528 ctx->is_active = 0;
2529
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002530 if (ctx->task) {
2531 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2532 if (!ctx->is_active)
2533 cpuctx->task_ctx = NULL;
2534 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002535
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002536 /*
2537 * Always update time if it was set; not only when it changes.
2538 * Otherwise we can 'forget' to update time for any but the last
2539 * context we sched out. For example:
2540 *
2541 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
2542 * ctx_sched_out(.event_type = EVENT_PINNED)
2543 *
2544 * would only update time for the pinned events.
2545 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002546 if (is_active & EVENT_TIME) {
2547 /* update (and stop) ctx time */
2548 update_context_time(ctx);
2549 update_cgrp_time_from_cpuctx(cpuctx);
2550 }
2551
Peter Zijlstra8fdc6532016-03-29 09:26:44 +02002552 is_active ^= ctx->is_active; /* changed bits */
2553
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002554 if (!ctx->nr_active || !(is_active & EVENT_ALL))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002555 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002556
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002557 perf_pmu_disable(ctx->pmu);
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002558 if (is_active & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002559 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2560 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002561 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002562
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002563 if (is_active & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002564 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002565 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002566 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002567 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568}
2569
2570/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002571 * Test whether two contexts are equivalent, i.e. whether they have both been
2572 * cloned from the same version of the same context.
2573 *
2574 * Equivalence is measured using a generation number in the context that is
2575 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2576 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002577 */
2578static int context_equiv(struct perf_event_context *ctx1,
2579 struct perf_event_context *ctx2)
2580{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002581 lockdep_assert_held(&ctx1->lock);
2582 lockdep_assert_held(&ctx2->lock);
2583
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002584 /* Pinning disables the swap optimization */
2585 if (ctx1->pin_count || ctx2->pin_count)
2586 return 0;
2587
2588 /* If ctx1 is the parent of ctx2 */
2589 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2590 return 1;
2591
2592 /* If ctx2 is the parent of ctx1 */
2593 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2594 return 1;
2595
2596 /*
2597 * If ctx1 and ctx2 have the same parent; we flatten the parent
2598 * hierarchy, see perf_event_init_context().
2599 */
2600 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2601 ctx1->parent_gen == ctx2->parent_gen)
2602 return 1;
2603
2604 /* Unmatched */
2605 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002606}
2607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002608static void __perf_event_sync_stat(struct perf_event *event,
2609 struct perf_event *next_event)
2610{
2611 u64 value;
2612
2613 if (!event->attr.inherit_stat)
2614 return;
2615
2616 /*
2617 * Update the event value, we cannot use perf_event_read()
2618 * because we're in the middle of a context switch and have IRQs
2619 * disabled, which upsets smp_call_function_single(), however
2620 * we know the event must be on the current CPU, therefore we
2621 * don't need to use it.
2622 */
2623 switch (event->state) {
2624 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002625 event->pmu->read(event);
2626 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002627
2628 case PERF_EVENT_STATE_INACTIVE:
2629 update_event_times(event);
2630 break;
2631
2632 default:
2633 break;
2634 }
2635
2636 /*
2637 * In order to keep per-task stats reliable we need to flip the event
2638 * values when we flip the contexts.
2639 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002640 value = local64_read(&next_event->count);
2641 value = local64_xchg(&event->count, value);
2642 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002643
2644 swap(event->total_time_enabled, next_event->total_time_enabled);
2645 swap(event->total_time_running, next_event->total_time_running);
2646
2647 /*
2648 * Since we swizzled the values, update the user visible data too.
2649 */
2650 perf_event_update_userpage(event);
2651 perf_event_update_userpage(next_event);
2652}
2653
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002654static void perf_event_sync_stat(struct perf_event_context *ctx,
2655 struct perf_event_context *next_ctx)
2656{
2657 struct perf_event *event, *next_event;
2658
2659 if (!ctx->nr_stat)
2660 return;
2661
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002662 update_context_time(ctx);
2663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002664 event = list_first_entry(&ctx->event_list,
2665 struct perf_event, event_entry);
2666
2667 next_event = list_first_entry(&next_ctx->event_list,
2668 struct perf_event, event_entry);
2669
2670 while (&event->event_entry != &ctx->event_list &&
2671 &next_event->event_entry != &next_ctx->event_list) {
2672
2673 __perf_event_sync_stat(event, next_event);
2674
2675 event = list_next_entry(event, event_entry);
2676 next_event = list_next_entry(next_event, event_entry);
2677 }
2678}
2679
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002680static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2681 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002682{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002683 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002684 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002685 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002686 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002687 int do_switch = 1;
2688
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002689 if (likely(!ctx))
2690 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002691
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002692 cpuctx = __get_cpu_context(ctx);
2693 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002694 return;
2695
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002696 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002697 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002698 if (!next_ctx)
2699 goto unlock;
2700
2701 parent = rcu_dereference(ctx->parent_ctx);
2702 next_parent = rcu_dereference(next_ctx->parent_ctx);
2703
2704 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002705 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002706 goto unlock;
2707
2708 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002709 /*
2710 * Looks like the two contexts are clones, so we might be
2711 * able to optimize the context switch. We lock both
2712 * contexts and check that they are clones under the
2713 * lock (including re-checking that neither has been
2714 * uncloned in the meantime). It doesn't matter which
2715 * order we take the locks because no other cpu could
2716 * be trying to lock both of these tasks.
2717 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002718 raw_spin_lock(&ctx->lock);
2719 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002721 WRITE_ONCE(ctx->task, next);
2722 WRITE_ONCE(next_ctx->task, task);
Yan, Zheng5a158c32014-11-04 21:56:02 -05002723
2724 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2725
Peter Zijlstra63b6da32016-01-14 16:05:37 +01002726 /*
2727 * RCU_INIT_POINTER here is safe because we've not
2728 * modified the ctx and the above modification of
2729 * ctx->task and ctx->task_ctx_data are immaterial
2730 * since those values are always verified under
2731 * ctx->lock which we're now holding.
2732 */
2733 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
2734 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
2735
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002736 do_switch = 0;
2737
2738 perf_event_sync_stat(ctx, next_ctx);
2739 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002740 raw_spin_unlock(&next_ctx->lock);
2741 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002742 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002743unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002744 rcu_read_unlock();
2745
2746 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002747 raw_spin_lock(&ctx->lock);
Peter Zijlstra8833d0e2016-01-08 10:02:37 +01002748 task_ctx_sched_out(cpuctx, ctx);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002749 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002750 }
2751}
2752
Yan, Zhengba532502014-11-04 21:55:58 -05002753void perf_sched_cb_dec(struct pmu *pmu)
2754{
2755 this_cpu_dec(perf_sched_cb_usages);
2756}
2757
2758void perf_sched_cb_inc(struct pmu *pmu)
2759{
2760 this_cpu_inc(perf_sched_cb_usages);
2761}
2762
2763/*
2764 * This function provides the context switch callback to the lower code
2765 * layer. It is invoked ONLY when the context switch callback is enabled.
2766 */
2767static void perf_pmu_sched_task(struct task_struct *prev,
2768 struct task_struct *next,
2769 bool sched_in)
2770{
2771 struct perf_cpu_context *cpuctx;
2772 struct pmu *pmu;
2773 unsigned long flags;
2774
2775 if (prev == next)
2776 return;
2777
2778 local_irq_save(flags);
2779
2780 rcu_read_lock();
2781
2782 list_for_each_entry_rcu(pmu, &pmus, entry) {
2783 if (pmu->sched_task) {
2784 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2785
2786 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2787
2788 perf_pmu_disable(pmu);
2789
2790 pmu->sched_task(cpuctx->task_ctx, sched_in);
2791
2792 perf_pmu_enable(pmu);
2793
2794 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2795 }
2796 }
2797
2798 rcu_read_unlock();
2799
2800 local_irq_restore(flags);
2801}
2802
Adrian Hunter45ac1402015-07-21 12:44:02 +03002803static void perf_event_switch(struct task_struct *task,
2804 struct task_struct *next_prev, bool sched_in);
2805
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002806#define for_each_task_context_nr(ctxn) \
2807 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2808
2809/*
2810 * Called from scheduler to remove the events of the current task,
2811 * with interrupts disabled.
2812 *
2813 * We stop each event and update the event value in event->count.
2814 *
2815 * This does not protect us against NMI, but disable()
2816 * sets the disabled bit in the control field of event _before_
2817 * accessing the event control register. If a NMI hits, then it will
2818 * not restart the event.
2819 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002820void __perf_event_task_sched_out(struct task_struct *task,
2821 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002822{
2823 int ctxn;
2824
Yan, Zhengba532502014-11-04 21:55:58 -05002825 if (__this_cpu_read(perf_sched_cb_usages))
2826 perf_pmu_sched_task(task, next, false);
2827
Adrian Hunter45ac1402015-07-21 12:44:02 +03002828 if (atomic_read(&nr_switch_events))
2829 perf_event_switch(task, next, false);
2830
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002831 for_each_task_context_nr(ctxn)
2832 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002833
2834 /*
2835 * if cgroup events exist on this CPU, then we need
2836 * to check if we have to switch out PMU state.
2837 * cgroup event are system-wide mode only
2838 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002839 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002840 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002841}
2842
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002843/*
2844 * Called with IRQs disabled
2845 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002846static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2847 enum event_type_t event_type)
2848{
2849 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002850}
2851
2852static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002853ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002854 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002855{
2856 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002857
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002858 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2859 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002860 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002861 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002862 continue;
2863
Stephane Eraniane5d13672011-02-14 11:20:01 +02002864 /* may need to reset tstamp_enabled */
2865 if (is_cgroup_event(event))
2866 perf_cgroup_mark_enabled(event, ctx);
2867
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002868 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002869 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002870
2871 /*
2872 * If this pinned group hasn't been scheduled,
2873 * put it in error state.
2874 */
2875 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2876 update_group_times(event);
2877 event->state = PERF_EVENT_STATE_ERROR;
2878 }
2879 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002880}
2881
2882static void
2883ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002884 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002885{
2886 struct perf_event *event;
2887 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002888
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002889 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2890 /* Ignore events in OFF or ERROR state */
2891 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002892 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002893 /*
2894 * Listen to the 'cpu' scheduling filter constraint
2895 * of events:
2896 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002897 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898 continue;
2899
Stephane Eraniane5d13672011-02-14 11:20:01 +02002900 /* may need to reset tstamp_enabled */
2901 if (is_cgroup_event(event))
2902 perf_cgroup_mark_enabled(event, ctx);
2903
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002904 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002905 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002906 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002907 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002908 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002909}
2910
2911static void
2912ctx_sched_in(struct perf_event_context *ctx,
2913 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002914 enum event_type_t event_type,
2915 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002916{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002917 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002918 u64 now;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002919
Peter Zijlstrac994d612016-01-08 09:20:23 +01002920 lockdep_assert_held(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002921
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002922 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002923 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002924
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002925 ctx->is_active |= (event_type | EVENT_TIME);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002926 if (ctx->task) {
2927 if (!is_active)
2928 cpuctx->task_ctx = ctx;
2929 else
2930 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2931 }
2932
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002933 is_active ^= ctx->is_active; /* changed bits */
2934
2935 if (is_active & EVENT_TIME) {
2936 /* start ctx time */
2937 now = perf_clock();
2938 ctx->timestamp = now;
2939 perf_cgroup_set_timestamp(task, ctx);
2940 }
2941
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002942 /*
2943 * First go through the list and put on any pinned groups
2944 * in order to give them the best chance of going on.
2945 */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002946 if (is_active & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002947 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002948
2949 /* Then walk through the lower prio flexible groups */
Peter Zijlstra3cbaa592016-02-24 18:45:47 +01002950 if (is_active & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002951 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002952}
2953
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002954static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002955 enum event_type_t event_type,
2956 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002957{
2958 struct perf_event_context *ctx = &cpuctx->ctx;
2959
Stephane Eraniane5d13672011-02-14 11:20:01 +02002960 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002961}
2962
Stephane Eraniane5d13672011-02-14 11:20:01 +02002963static void perf_event_context_sched_in(struct perf_event_context *ctx,
2964 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002965{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002966 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002967
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002968 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002969 if (cpuctx->task_ctx == ctx)
2970 return;
2971
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002972 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002973 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002974 /*
2975 * We want to keep the following priority order:
2976 * cpu pinned (that don't need to move), task pinned,
2977 * cpu flexible, task flexible.
2978 */
2979 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002980 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002981 perf_pmu_enable(ctx->pmu);
2982 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002983}
2984
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002985/*
2986 * Called from scheduler to add the events of the current task
2987 * with interrupts disabled.
2988 *
2989 * We restore the event value and then enable it.
2990 *
2991 * This does not protect us against NMI, but enable()
2992 * sets the enabled bit in the control field of event _before_
2993 * accessing the event control register. If a NMI hits, then it will
2994 * keep the event running.
2995 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002996void __perf_event_task_sched_in(struct task_struct *prev,
2997 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002998{
2999 struct perf_event_context *ctx;
3000 int ctxn;
3001
Peter Zijlstra7e41d172016-01-08 09:21:40 +01003002 /*
3003 * If cgroup events exist on this CPU, then we need to check if we have
3004 * to switch in PMU state; cgroup event are system-wide mode only.
3005 *
3006 * Since cgroup events are CPU events, we must schedule these in before
3007 * we schedule in the task events.
3008 */
3009 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3010 perf_cgroup_sched_in(prev, task);
3011
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003012 for_each_task_context_nr(ctxn) {
3013 ctx = task->perf_event_ctxp[ctxn];
3014 if (likely(!ctx))
3015 continue;
3016
Stephane Eraniane5d13672011-02-14 11:20:01 +02003017 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003018 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003019
Adrian Hunter45ac1402015-07-21 12:44:02 +03003020 if (atomic_read(&nr_switch_events))
3021 perf_event_switch(task, prev, true);
3022
Yan, Zhengba532502014-11-04 21:55:58 -05003023 if (__this_cpu_read(perf_sched_cb_usages))
3024 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025}
3026
Peter Zijlstraabd50712010-01-26 18:50:16 +01003027static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3028{
3029 u64 frequency = event->attr.sample_freq;
3030 u64 sec = NSEC_PER_SEC;
3031 u64 divisor, dividend;
3032
3033 int count_fls, nsec_fls, frequency_fls, sec_fls;
3034
3035 count_fls = fls64(count);
3036 nsec_fls = fls64(nsec);
3037 frequency_fls = fls64(frequency);
3038 sec_fls = 30;
3039
3040 /*
3041 * We got @count in @nsec, with a target of sample_freq HZ
3042 * the target period becomes:
3043 *
3044 * @count * 10^9
3045 * period = -------------------
3046 * @nsec * sample_freq
3047 *
3048 */
3049
3050 /*
3051 * Reduce accuracy by one bit such that @a and @b converge
3052 * to a similar magnitude.
3053 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003054#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01003055do { \
3056 if (a##_fls > b##_fls) { \
3057 a >>= 1; \
3058 a##_fls--; \
3059 } else { \
3060 b >>= 1; \
3061 b##_fls--; \
3062 } \
3063} while (0)
3064
3065 /*
3066 * Reduce accuracy until either term fits in a u64, then proceed with
3067 * the other, so that finally we can do a u64/u64 division.
3068 */
3069 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3070 REDUCE_FLS(nsec, frequency);
3071 REDUCE_FLS(sec, count);
3072 }
3073
3074 if (count_fls + sec_fls > 64) {
3075 divisor = nsec * frequency;
3076
3077 while (count_fls + sec_fls > 64) {
3078 REDUCE_FLS(count, sec);
3079 divisor >>= 1;
3080 }
3081
3082 dividend = count * sec;
3083 } else {
3084 dividend = count * sec;
3085
3086 while (nsec_fls + frequency_fls > 64) {
3087 REDUCE_FLS(nsec, frequency);
3088 dividend >>= 1;
3089 }
3090
3091 divisor = nsec * frequency;
3092 }
3093
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003094 if (!divisor)
3095 return dividend;
3096
Peter Zijlstraabd50712010-01-26 18:50:16 +01003097 return div64_u64(dividend, divisor);
3098}
3099
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003100static DEFINE_PER_CPU(int, perf_throttled_count);
3101static DEFINE_PER_CPU(u64, perf_throttled_seq);
3102
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003103static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003104{
3105 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02003106 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003107 s64 delta;
3108
Peter Zijlstraabd50712010-01-26 18:50:16 +01003109 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003110
3111 delta = (s64)(period - hwc->sample_period);
3112 delta = (delta + 7) / 8; /* low pass filter */
3113
3114 sample_period = hwc->sample_period + delta;
3115
3116 if (!sample_period)
3117 sample_period = 1;
3118
3119 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003120
Peter Zijlstrae7850592010-05-21 14:43:08 +02003121 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003122 if (disable)
3123 event->pmu->stop(event, PERF_EF_UPDATE);
3124
Peter Zijlstrae7850592010-05-21 14:43:08 +02003125 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003126
3127 if (disable)
3128 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003129 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003130}
3131
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003132/*
3133 * combine freq adjustment with unthrottling to avoid two passes over the
3134 * events. At the same time, make sure, having freq events does not change
3135 * the rate of unthrottling as that would introduce bias.
3136 */
3137static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3138 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003139{
3140 struct perf_event *event;
3141 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003142 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01003143 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003144
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003145 /*
3146 * only need to iterate over all events iff:
3147 * - context have events in frequency mode (needs freq adjust)
3148 * - there are events to unthrottle on this cpu
3149 */
3150 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003151 return;
3152
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003153 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003154 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003155
Paul Mackerras03541f82009-10-14 16:58:03 +11003156 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003157 if (event->state != PERF_EVENT_STATE_ACTIVE)
3158 continue;
3159
Stephane Eranian5632ab12011-01-03 18:20:01 +02003160 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003161 continue;
3162
Alexander Shishkin44377272013-12-16 14:17:36 +02003163 perf_pmu_disable(event->pmu);
3164
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003165 hwc = &event->hw;
3166
Jiri Olsaae23bff2013-08-24 16:45:54 +02003167 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003168 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003170 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003171 }
3172
3173 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003174 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003175
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003176 /*
3177 * stop the event and update event->count
3178 */
3179 event->pmu->stop(event, PERF_EF_UPDATE);
3180
Peter Zijlstrae7850592010-05-21 14:43:08 +02003181 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003182 delta = now - hwc->freq_count_stamp;
3183 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003184
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003185 /*
3186 * restart the event
3187 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003188 * we have stopped the event so tell that
3189 * to perf_adjust_period() to avoid stopping it
3190 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003191 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003192 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003193 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003194
3195 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003196 next:
3197 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003198 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003199
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003200 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003201 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003202}
3203
3204/*
3205 * Round-robin a context's events:
3206 */
3207static void rotate_ctx(struct perf_event_context *ctx)
3208{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003209 /*
3210 * Rotate the first entry last of non-pinned groups. Rotation might be
3211 * disabled by the inheritance code.
3212 */
3213 if (!ctx->rotate_disable)
3214 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003215}
3216
Stephane Eranian9e630202013-04-03 14:21:33 +02003217static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003218{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003219 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003220 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003221
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003222 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003223 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3224 rotate = 1;
3225 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003226
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003227 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003228 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003229 if (ctx->nr_events != ctx->nr_active)
3230 rotate = 1;
3231 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003232
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003233 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003234 goto done;
3235
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003236 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003237 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003238
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003239 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3240 if (ctx)
3241 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003242
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003243 rotate_ctx(&cpuctx->ctx);
3244 if (ctx)
3245 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003246
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003247 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003248
3249 perf_pmu_enable(cpuctx->ctx.pmu);
3250 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003251done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003252
3253 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003254}
3255
3256void perf_event_task_tick(void)
3257{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003258 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3259 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003260 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003261
3262 WARN_ON(!irqs_disabled());
3263
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003264 __this_cpu_inc(perf_throttled_seq);
3265 throttled = __this_cpu_xchg(perf_throttled_count, 0);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003266 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003267
Mark Rutland2fde4f92015-01-07 15:01:54 +00003268 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003269 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003270}
3271
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003272static int event_enable_on_exec(struct perf_event *event,
3273 struct perf_event_context *ctx)
3274{
3275 if (!event->attr.enable_on_exec)
3276 return 0;
3277
3278 event->attr.enable_on_exec = 0;
3279 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3280 return 0;
3281
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003282 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003283
3284 return 1;
3285}
3286
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003287/*
3288 * Enable all of a task's events that have been marked enable-on-exec.
3289 * This expects task == current.
3290 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003291static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003292{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003293 struct perf_event_context *ctx, *clone_ctx = NULL;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003294 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003295 struct perf_event *event;
3296 unsigned long flags;
3297 int enabled = 0;
3298
3299 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003300 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003301 if (!ctx || !ctx->nr_events)
3302 goto out;
3303
Peter Zijlstra3e349502016-01-08 10:01:18 +01003304 cpuctx = __get_cpu_context(ctx);
3305 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra7fce2502016-02-24 18:45:48 +01003306 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003307 list_for_each_entry(event, &ctx->event_list, event_entry)
3308 enabled |= event_enable_on_exec(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003309
3310 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003311 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003312 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003313 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003314 clone_ctx = unclone_ctx(ctx);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003315 ctx_resched(cpuctx, ctx);
3316 }
3317 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003318
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003319out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003320 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003321
3322 if (clone_ctx)
3323 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003324}
3325
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003326struct perf_read_data {
3327 struct perf_event *event;
3328 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003329 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003330};
3331
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003332/*
3333 * Cross CPU call to read the hardware event
3334 */
3335static void __perf_event_read(void *info)
3336{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003337 struct perf_read_data *data = info;
3338 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003339 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003340 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003341 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003342
3343 /*
3344 * If this is a task context, we need to check whether it is
3345 * the current task context of this cpu. If not it has been
3346 * scheduled out before the smp call arrived. In that case
3347 * event->count would have been updated to a recent sample
3348 * when the event was scheduled out.
3349 */
3350 if (ctx->task && cpuctx->task_ctx != ctx)
3351 return;
3352
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003353 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003354 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003355 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003356 update_cgrp_time_from_event(event);
3357 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003358
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003359 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003360 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003361 goto unlock;
3362
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003363 if (!data->group) {
3364 pmu->read(event);
3365 data->ret = 0;
3366 goto unlock;
3367 }
3368
3369 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3370
3371 pmu->read(event);
3372
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003373 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3374 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003375 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3376 /*
3377 * Use sibling's PMU rather than @event's since
3378 * sibling could be on different (eg: software) PMU.
3379 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003380 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003381 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003382 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003383
3384 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003385
3386unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003387 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003388}
3389
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003390static inline u64 perf_event_count(struct perf_event *event)
3391{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003392 if (event->pmu->count)
3393 return event->pmu->count(event);
3394
3395 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003396}
3397
Kaixu Xiaffe86902015-08-06 07:02:32 +00003398/*
3399 * NMI-safe method to read a local event, that is an event that
3400 * is:
3401 * - either for the current task, or for this CPU
3402 * - does not have inherit set, for inherited task events
3403 * will not be local and we cannot read them atomically
3404 * - must not have a pmu::count method
3405 */
3406u64 perf_event_read_local(struct perf_event *event)
3407{
3408 unsigned long flags;
3409 u64 val;
3410
3411 /*
3412 * Disabling interrupts avoids all counter scheduling (context
3413 * switches, timer based rotation and IPIs).
3414 */
3415 local_irq_save(flags);
3416
3417 /* If this is a per-task event, it must be for current */
3418 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3419 event->hw.target != current);
3420
3421 /* If this is a per-CPU event, it must be for this CPU */
3422 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3423 event->cpu != smp_processor_id());
3424
3425 /*
3426 * It must not be an event with inherit set, we cannot read
3427 * all child counters from atomic context.
3428 */
3429 WARN_ON_ONCE(event->attr.inherit);
3430
3431 /*
3432 * It must not have a pmu::count method, those are not
3433 * NMI safe.
3434 */
3435 WARN_ON_ONCE(event->pmu->count);
3436
3437 /*
3438 * If the event is currently on this CPU, its either a per-task event,
3439 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3440 * oncpu == -1).
3441 */
3442 if (event->oncpu == smp_processor_id())
3443 event->pmu->read(event);
3444
3445 val = local64_read(&event->count);
3446 local_irq_restore(flags);
3447
3448 return val;
3449}
3450
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003451static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003452{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003453 int ret = 0;
3454
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455 /*
3456 * If event is enabled and currently active on a CPU, update the
3457 * value in the event structure:
3458 */
3459 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003460 struct perf_read_data data = {
3461 .event = event,
3462 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003463 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003464 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003465 smp_call_function_single(event->oncpu,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003466 __perf_event_read, &data, 1);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003467 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003468 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003469 struct perf_event_context *ctx = event->ctx;
3470 unsigned long flags;
3471
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003472 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003473 /*
3474 * may read while context is not active
3475 * (e.g., thread is blocked), in that case
3476 * we cannot update context time
3477 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003478 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003479 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003480 update_cgrp_time_from_event(event);
3481 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003482 if (group)
3483 update_group_times(event);
3484 else
3485 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003486 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003487 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003488
3489 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003490}
3491
3492/*
3493 * Initialize the perf_event context in a task_struct:
3494 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003495static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003496{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003497 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003498 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003499 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003500 INIT_LIST_HEAD(&ctx->pinned_groups);
3501 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003502 INIT_LIST_HEAD(&ctx->event_list);
3503 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003504}
3505
Peter Zijlstraeb184472010-09-07 15:55:13 +02003506static struct perf_event_context *
3507alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003508{
3509 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003510
3511 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3512 if (!ctx)
3513 return NULL;
3514
3515 __perf_event_init_context(ctx);
3516 if (task) {
3517 ctx->task = task;
3518 get_task_struct(task);
3519 }
3520 ctx->pmu = pmu;
3521
3522 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003523}
3524
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003525static struct task_struct *
3526find_lively_task_by_vpid(pid_t vpid)
3527{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003528 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003529
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003530 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003531 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003532 task = current;
3533 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003534 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003535 if (task)
3536 get_task_struct(task);
3537 rcu_read_unlock();
3538
3539 if (!task)
3540 return ERR_PTR(-ESRCH);
3541
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003542 return task;
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003543}
3544
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003545/*
3546 * Returns a matching context with refcount and pincount.
3547 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003548static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003549find_get_context(struct pmu *pmu, struct task_struct *task,
3550 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003551{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003552 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003553 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003554 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003555 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003556 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003557 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003558
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003559 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003560 /* Must be root to operate on a CPU event: */
3561 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3562 return ERR_PTR(-EACCES);
3563
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003564 /*
3565 * We could be clever and allow to attach a event to an
3566 * offline CPU and activate it when the CPU comes up, but
3567 * that's for later.
3568 */
3569 if (!cpu_online(cpu))
3570 return ERR_PTR(-ENODEV);
3571
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003572 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003573 ctx = &cpuctx->ctx;
3574 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003575 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003576
3577 return ctx;
3578 }
3579
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003580 err = -EINVAL;
3581 ctxn = pmu->task_ctx_nr;
3582 if (ctxn < 0)
3583 goto errout;
3584
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003585 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3586 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3587 if (!task_ctx_data) {
3588 err = -ENOMEM;
3589 goto errout;
3590 }
3591 }
3592
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003593retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003594 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003595 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003596 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003597 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003598
3599 if (task_ctx_data && !ctx->task_ctx_data) {
3600 ctx->task_ctx_data = task_ctx_data;
3601 task_ctx_data = NULL;
3602 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003603 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003604
3605 if (clone_ctx)
3606 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003607 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003608 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003609 err = -ENOMEM;
3610 if (!ctx)
3611 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003612
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003613 if (task_ctx_data) {
3614 ctx->task_ctx_data = task_ctx_data;
3615 task_ctx_data = NULL;
3616 }
3617
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003618 err = 0;
3619 mutex_lock(&task->perf_event_mutex);
3620 /*
3621 * If it has already passed perf_event_exit_task().
3622 * we must see PF_EXITING, it takes this mutex too.
3623 */
3624 if (task->flags & PF_EXITING)
3625 err = -ESRCH;
3626 else if (task->perf_event_ctxp[ctxn])
3627 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003628 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003629 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003630 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003631 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003632 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003633 mutex_unlock(&task->perf_event_mutex);
3634
3635 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003636 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003637
3638 if (err == -EAGAIN)
3639 goto retry;
3640 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003641 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003642 }
3643
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003644 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003645 return ctx;
3646
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003647errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003648 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003649 return ERR_PTR(err);
3650}
3651
Li Zefan6fb29152009-10-15 11:21:42 +08003652static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003653static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003654
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003655static void free_event_rcu(struct rcu_head *head)
3656{
3657 struct perf_event *event;
3658
3659 event = container_of(head, struct perf_event, rcu_head);
3660 if (event->ns)
3661 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003662 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003663 kfree(event);
3664}
3665
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003666static void ring_buffer_attach(struct perf_event *event,
3667 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003668
Kan Liangf2fb6be2016-03-23 11:24:37 -07003669static void detach_sb_event(struct perf_event *event)
3670{
3671 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
3672
3673 raw_spin_lock(&pel->lock);
3674 list_del_rcu(&event->sb_list);
3675 raw_spin_unlock(&pel->lock);
3676}
3677
3678static void unaccount_pmu_sb_event(struct perf_event *event)
3679{
3680 if (event->parent)
3681 return;
3682
3683 if (event->attach_state & PERF_ATTACH_TASK)
3684 return;
3685
3686 detach_sb_event(event);
3687}
3688
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003689static void unaccount_event_cpu(struct perf_event *event, int cpu)
3690{
3691 if (event->parent)
3692 return;
3693
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003694 if (is_cgroup_event(event))
3695 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3696}
3697
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003698#ifdef CONFIG_NO_HZ_FULL
3699static DEFINE_SPINLOCK(nr_freq_lock);
3700#endif
3701
3702static void unaccount_freq_event_nohz(void)
3703{
3704#ifdef CONFIG_NO_HZ_FULL
3705 spin_lock(&nr_freq_lock);
3706 if (atomic_dec_and_test(&nr_freq_events))
3707 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
3708 spin_unlock(&nr_freq_lock);
3709#endif
3710}
3711
3712static void unaccount_freq_event(void)
3713{
3714 if (tick_nohz_full_enabled())
3715 unaccount_freq_event_nohz();
3716 else
3717 atomic_dec(&nr_freq_events);
3718}
3719
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003720static void unaccount_event(struct perf_event *event)
3721{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003722 bool dec = false;
3723
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003724 if (event->parent)
3725 return;
3726
3727 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003728 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003729 if (event->attr.mmap || event->attr.mmap_data)
3730 atomic_dec(&nr_mmap_events);
3731 if (event->attr.comm)
3732 atomic_dec(&nr_comm_events);
3733 if (event->attr.task)
3734 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003735 if (event->attr.freq)
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02003736 unaccount_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03003737 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003738 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003739 atomic_dec(&nr_switch_events);
3740 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003741 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003742 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003743 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003744 dec = true;
3745
Peter Zijlstra9107c892016-02-24 18:45:45 +01003746 if (dec) {
3747 if (!atomic_add_unless(&perf_sched_count, -1, 1))
3748 schedule_delayed_work(&perf_sched_work, HZ);
3749 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003750
3751 unaccount_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07003752
3753 unaccount_pmu_sb_event(event);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003754}
3755
Peter Zijlstra9107c892016-02-24 18:45:45 +01003756static void perf_sched_delayed(struct work_struct *work)
3757{
3758 mutex_lock(&perf_sched_mutex);
3759 if (atomic_dec_and_test(&perf_sched_count))
3760 static_branch_disable(&perf_sched_events);
3761 mutex_unlock(&perf_sched_mutex);
3762}
3763
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003764/*
3765 * The following implement mutual exclusion of events on "exclusive" pmus
3766 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3767 * at a time, so we disallow creating events that might conflict, namely:
3768 *
3769 * 1) cpu-wide events in the presence of per-task events,
3770 * 2) per-task events in the presence of cpu-wide events,
3771 * 3) two matching events on the same context.
3772 *
3773 * The former two cases are handled in the allocation path (perf_event_alloc(),
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003774 * _free_event()), the latter -- before the first perf_install_in_context().
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003775 */
3776static int exclusive_event_init(struct perf_event *event)
3777{
3778 struct pmu *pmu = event->pmu;
3779
3780 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3781 return 0;
3782
3783 /*
3784 * Prevent co-existence of per-task and cpu-wide events on the
3785 * same exclusive pmu.
3786 *
3787 * Negative pmu::exclusive_cnt means there are cpu-wide
3788 * events on this "exclusive" pmu, positive means there are
3789 * per-task events.
3790 *
3791 * Since this is called in perf_event_alloc() path, event::ctx
3792 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3793 * to mean "per-task event", because unlike other attach states it
3794 * never gets cleared.
3795 */
3796 if (event->attach_state & PERF_ATTACH_TASK) {
3797 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3798 return -EBUSY;
3799 } else {
3800 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3801 return -EBUSY;
3802 }
3803
3804 return 0;
3805}
3806
3807static void exclusive_event_destroy(struct perf_event *event)
3808{
3809 struct pmu *pmu = event->pmu;
3810
3811 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3812 return;
3813
3814 /* see comment in exclusive_event_init() */
3815 if (event->attach_state & PERF_ATTACH_TASK)
3816 atomic_dec(&pmu->exclusive_cnt);
3817 else
3818 atomic_inc(&pmu->exclusive_cnt);
3819}
3820
3821static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3822{
3823 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3824 (e1->cpu == e2->cpu ||
3825 e1->cpu == -1 ||
3826 e2->cpu == -1))
3827 return true;
3828 return false;
3829}
3830
3831/* Called under the same ctx::mutex as perf_install_in_context() */
3832static bool exclusive_event_installable(struct perf_event *event,
3833 struct perf_event_context *ctx)
3834{
3835 struct perf_event *iter_event;
3836 struct pmu *pmu = event->pmu;
3837
3838 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3839 return true;
3840
3841 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3842 if (exclusive_event_match(iter_event, event))
3843 return false;
3844 }
3845
3846 return true;
3847}
3848
Alexander Shishkin375637b2016-04-27 18:44:46 +03003849static void perf_addr_filters_splice(struct perf_event *event,
3850 struct list_head *head);
3851
Peter Zijlstra683ede42014-05-05 12:11:24 +02003852static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003853{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003854 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003855
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003856 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003857
Frederic Weisbecker76369132011-05-19 19:55:04 +02003858 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003859 /*
3860 * Can happen when we close an event with re-directed output.
3861 *
3862 * Since we have a 0 refcount, perf_mmap_close() will skip
3863 * over us; possibly making our ring_buffer_put() the last.
3864 */
3865 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003866 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003867 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003868 }
3869
Stephane Eraniane5d13672011-02-14 11:20:01 +02003870 if (is_cgroup_event(event))
3871 perf_detach_cgroup(event);
3872
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003873 if (!event->parent) {
3874 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3875 put_callchain_buffers();
3876 }
3877
3878 perf_event_free_bpf_prog(event);
Alexander Shishkin375637b2016-04-27 18:44:46 +03003879 perf_addr_filters_splice(event, NULL);
3880 kfree(event->addr_filters_offs);
Peter Zijlstraa0733e62016-01-26 12:14:40 +01003881
3882 if (event->destroy)
3883 event->destroy(event);
3884
3885 if (event->ctx)
3886 put_ctx(event->ctx);
3887
3888 if (event->pmu) {
3889 exclusive_event_destroy(event);
3890 module_put(event->pmu->module);
3891 }
3892
3893 call_rcu(&event->rcu_head, free_event_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003894}
3895
Peter Zijlstra683ede42014-05-05 12:11:24 +02003896/*
3897 * Used to free events which have a known refcount of 1, such as in error paths
3898 * where the event isn't exposed yet and inherited events.
3899 */
3900static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003901{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003902 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3903 "unexpected event refcount: %ld; ptr=%p\n",
3904 atomic_long_read(&event->refcount), event)) {
3905 /* leak to avoid use-after-free */
3906 return;
3907 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003908
Peter Zijlstra683ede42014-05-05 12:11:24 +02003909 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003910}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003911
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003912/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003913 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003914 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003915static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003916{
Peter Zijlstra88821352010-11-09 19:01:43 +01003917 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003918
Peter Zijlstra88821352010-11-09 19:01:43 +01003919 rcu_read_lock();
Peter Zijlstra88821352010-11-09 19:01:43 +01003920 /*
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01003921 * Matches the smp_store_release() in perf_event_exit_task(). If we
3922 * observe !owner it means the list deletion is complete and we can
3923 * indeed free this event, otherwise we need to serialize on
Peter Zijlstra88821352010-11-09 19:01:43 +01003924 * owner->perf_event_mutex.
3925 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01003926 owner = lockless_dereference(event->owner);
Peter Zijlstra88821352010-11-09 19:01:43 +01003927 if (owner) {
3928 /*
3929 * Since delayed_put_task_struct() also drops the last
3930 * task reference we can safely take a new reference
3931 * while holding the rcu_read_lock().
3932 */
3933 get_task_struct(owner);
3934 }
3935 rcu_read_unlock();
3936
3937 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003938 /*
3939 * If we're here through perf_event_exit_task() we're already
3940 * holding ctx->mutex which would be an inversion wrt. the
3941 * normal lock order.
3942 *
3943 * However we can safely take this lock because its the child
3944 * ctx->mutex.
3945 */
3946 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3947
Peter Zijlstra88821352010-11-09 19:01:43 +01003948 /*
3949 * We have to re-check the event->owner field, if it is cleared
3950 * we raced with perf_event_exit_task(), acquiring the mutex
3951 * ensured they're done, and we can proceed with freeing the
3952 * event.
3953 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01003954 if (event->owner) {
Peter Zijlstra88821352010-11-09 19:01:43 +01003955 list_del_init(&event->owner_entry);
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01003956 smp_store_release(&event->owner, NULL);
3957 }
Peter Zijlstra88821352010-11-09 19:01:43 +01003958 mutex_unlock(&owner->perf_event_mutex);
3959 put_task_struct(owner);
3960 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003961}
3962
Jiri Olsaf8697762014-08-01 14:33:01 +02003963static void put_event(struct perf_event *event)
3964{
Jiri Olsaf8697762014-08-01 14:33:01 +02003965 if (!atomic_long_dec_and_test(&event->refcount))
3966 return;
3967
Peter Zijlstra683ede42014-05-05 12:11:24 +02003968 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003969}
3970
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02003971/*
3972 * Kill an event dead; while event:refcount will preserve the event
3973 * object, it will not preserve its functionality. Once the last 'user'
3974 * gives up the object, we'll destroy the thing.
3975 */
Peter Zijlstra683ede42014-05-05 12:11:24 +02003976int perf_event_release_kernel(struct perf_event *event)
3977{
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01003978 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02003979 struct perf_event *child, *tmp;
3980
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01003981 /*
3982 * If we got here through err_file: fput(event_file); we will not have
3983 * attached to a context yet.
3984 */
3985 if (!ctx) {
3986 WARN_ON_ONCE(event->attach_state &
3987 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
3988 goto no_ctx;
3989 }
3990
Peter Zijlstra88821352010-11-09 19:01:43 +01003991 if (!is_kernel_event(event))
3992 perf_remove_from_owner(event);
3993
Peter Zijlstra5fa7c8e2016-01-26 15:25:15 +01003994 ctx = perf_event_ctx_lock(event);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003995 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01003996 perf_remove_from_context(event, DETACH_GROUP);
Peter Zijlstra88821352010-11-09 19:01:43 +01003997
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01003998 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra60beda82016-01-26 14:55:02 +01003999 /*
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004000 * Mark this even as STATE_DEAD, there is no external reference to it
4001 * anymore.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004002 *
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004003 * Anybody acquiring event->child_mutex after the below loop _must_
4004 * also see this, most importantly inherit_event() which will avoid
4005 * placing more children on the list.
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004006 *
4007 * Thus this guarantees that we will in fact observe and kill _ALL_
4008 * child events.
Peter Zijlstra60beda82016-01-26 14:55:02 +01004009 */
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004010 event->state = PERF_EVENT_STATE_DEAD;
4011 raw_spin_unlock_irq(&ctx->lock);
4012
4013 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra60beda82016-01-26 14:55:02 +01004014
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004015again:
4016 mutex_lock(&event->child_mutex);
4017 list_for_each_entry(child, &event->child_list, child_list) {
Al Viroa6fa9412012-08-20 14:59:25 +01004018
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004019 /*
4020 * Cannot change, child events are not migrated, see the
4021 * comment with perf_event_ctx_lock_nested().
4022 */
4023 ctx = lockless_dereference(child->ctx);
4024 /*
4025 * Since child_mutex nests inside ctx::mutex, we must jump
4026 * through hoops. We start by grabbing a reference on the ctx.
4027 *
4028 * Since the event cannot get freed while we hold the
4029 * child_mutex, the context must also exist and have a !0
4030 * reference count.
4031 */
4032 get_ctx(ctx);
4033
4034 /*
4035 * Now that we have a ctx ref, we can drop child_mutex, and
4036 * acquire ctx::mutex without fear of it going away. Then we
4037 * can re-acquire child_mutex.
4038 */
4039 mutex_unlock(&event->child_mutex);
4040 mutex_lock(&ctx->mutex);
4041 mutex_lock(&event->child_mutex);
4042
4043 /*
4044 * Now that we hold ctx::mutex and child_mutex, revalidate our
4045 * state, if child is still the first entry, it didn't get freed
4046 * and we can continue doing so.
4047 */
4048 tmp = list_first_entry_or_null(&event->child_list,
4049 struct perf_event, child_list);
4050 if (tmp == child) {
4051 perf_remove_from_context(child, DETACH_GROUP);
4052 list_del(&child->child_list);
4053 free_event(child);
4054 /*
4055 * This matches the refcount bump in inherit_event();
4056 * this can't be the last reference.
4057 */
4058 put_event(event);
4059 }
4060
4061 mutex_unlock(&event->child_mutex);
4062 mutex_unlock(&ctx->mutex);
4063 put_ctx(ctx);
4064 goto again;
4065 }
4066 mutex_unlock(&event->child_mutex);
4067
Peter Zijlstraa4f4bb62016-02-24 18:45:42 +01004068no_ctx:
4069 put_event(event); /* Must be the 'last' reference */
Peter Zijlstra683ede42014-05-05 12:11:24 +02004070 return 0;
4071}
4072EXPORT_SYMBOL_GPL(perf_event_release_kernel);
4073
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02004074/*
4075 * Called when the last reference to the file is gone.
4076 */
Al Viroa6fa9412012-08-20 14:59:25 +01004077static int perf_release(struct inode *inode, struct file *file)
4078{
Peter Zijlstrac6e5b732016-01-15 16:07:41 +02004079 perf_event_release_kernel(file->private_data);
Al Viroa6fa9412012-08-20 14:59:25 +01004080 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01004081}
4082
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004083u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004084{
4085 struct perf_event *child;
4086 u64 total = 0;
4087
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004088 *enabled = 0;
4089 *running = 0;
4090
Peter Zijlstra6f105812009-11-20 22:19:56 +01004091 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004092
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004093 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004094 total += perf_event_count(event);
4095
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004096 *enabled += event->total_time_enabled +
4097 atomic64_read(&event->child_total_time_enabled);
4098 *running += event->total_time_running +
4099 atomic64_read(&event->child_total_time_running);
4100
4101 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004102 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07004103 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004104 *enabled += child->total_time_enabled;
4105 *running += child->total_time_running;
4106 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01004107 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004108
4109 return total;
4110}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02004111EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004112
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004113static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004114 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004115{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004116 struct perf_event *sub;
4117 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004118 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01004119
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004120 ret = perf_event_read(leader, true);
4121 if (ret)
4122 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004123
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004124 /*
4125 * Since we co-schedule groups, {enabled,running} times of siblings
4126 * will be identical to those of the leader, so we only publish one
4127 * set.
4128 */
4129 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
4130 values[n++] += leader->total_time_enabled +
4131 atomic64_read(&leader->child_total_time_enabled);
4132 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004133
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004134 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
4135 values[n++] += leader->total_time_running +
4136 atomic64_read(&leader->child_total_time_running);
4137 }
4138
4139 /*
4140 * Write {count,id} tuples for every sibling.
4141 */
4142 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004143 if (read_format & PERF_FORMAT_ID)
4144 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004145
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004146 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004147 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004148 if (read_format & PERF_FORMAT_ID)
4149 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004150 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004151
4152 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004153}
4154
4155static int perf_read_group(struct perf_event *event,
4156 u64 read_format, char __user *buf)
4157{
4158 struct perf_event *leader = event->group_leader, *child;
4159 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004160 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004161 u64 *values;
4162
4163 lockdep_assert_held(&ctx->mutex);
4164
4165 values = kzalloc(event->read_size, GFP_KERNEL);
4166 if (!values)
4167 return -ENOMEM;
4168
4169 values[0] = 1 + leader->nr_siblings;
4170
4171 /*
4172 * By locking the child_mutex of the leader we effectively
4173 * lock the child list of all siblings.. XXX explain how.
4174 */
4175 mutex_lock(&leader->child_mutex);
4176
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004177 ret = __perf_read_group_add(leader, read_format, values);
4178 if (ret)
4179 goto unlock;
4180
4181 list_for_each_entry(child, &leader->child_list, child_list) {
4182 ret = __perf_read_group_add(child, read_format, values);
4183 if (ret)
4184 goto unlock;
4185 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004186
4187 mutex_unlock(&leader->child_mutex);
4188
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004189 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004190 if (copy_to_user(buf, values, event->read_size))
4191 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004192 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004193
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004194unlock:
4195 mutex_unlock(&leader->child_mutex);
4196out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07004197 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01004198 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004199}
4200
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004201static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004202 u64 read_format, char __user *buf)
4203{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004204 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004205 u64 values[4];
4206 int n = 0;
4207
Peter Zijlstra59ed4462009-11-20 22:19:55 +01004208 values[n++] = perf_event_read_value(event, &enabled, &running);
4209 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4210 values[n++] = enabled;
4211 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4212 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004213 if (read_format & PERF_FORMAT_ID)
4214 values[n++] = primary_event_id(event);
4215
4216 if (copy_to_user(buf, values, n * sizeof(u64)))
4217 return -EFAULT;
4218
4219 return n * sizeof(u64);
4220}
4221
Jiri Olsadc633982014-09-12 13:18:26 +02004222static bool is_event_hup(struct perf_event *event)
4223{
4224 bool no_children;
4225
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01004226 if (event->state > PERF_EVENT_STATE_EXIT)
Jiri Olsadc633982014-09-12 13:18:26 +02004227 return false;
4228
4229 mutex_lock(&event->child_mutex);
4230 no_children = list_empty(&event->child_list);
4231 mutex_unlock(&event->child_mutex);
4232 return no_children;
4233}
4234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004235/*
4236 * Read the performance event - simple non blocking version for now
4237 */
4238static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004239__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004240{
4241 u64 read_format = event->attr.read_format;
4242 int ret;
4243
4244 /*
4245 * Return end-of-file for a read on a event that is in
4246 * error state (i.e. because it was pinned but it couldn't be
4247 * scheduled on to the CPU at some point).
4248 */
4249 if (event->state == PERF_EVENT_STATE_ERROR)
4250 return 0;
4251
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004252 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004253 return -ENOSPC;
4254
4255 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004256 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004257 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004258 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004259 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004260
4261 return ret;
4262}
4263
4264static ssize_t
4265perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4266{
4267 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004268 struct perf_event_context *ctx;
4269 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004270
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004271 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004272 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004273 perf_event_ctx_unlock(event, ctx);
4274
4275 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004276}
4277
4278static unsigned int perf_poll(struct file *file, poll_table *wait)
4279{
4280 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004281 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004282 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004283
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004284 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004285
Jiri Olsadc633982014-09-12 13:18:26 +02004286 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004287 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004288
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004289 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004290 * Pin the event->rb by taking event->mmap_mutex; otherwise
4291 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004292 */
4293 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004294 rb = event->rb;
4295 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004296 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004297 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004298 return events;
4299}
4300
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004301static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004302{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004303 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004304 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004305 perf_event_update_userpage(event);
4306}
4307
4308/*
4309 * Holding the top-level event's child_mutex means that any
4310 * descendant process that has inherited this event will block
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01004311 * in perf_event_exit_event() if it goes to exit, thus satisfying the
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004312 * task existence requirements of perf_event_enable/disable.
4313 */
4314static void perf_event_for_each_child(struct perf_event *event,
4315 void (*func)(struct perf_event *))
4316{
4317 struct perf_event *child;
4318
4319 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004320
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004321 mutex_lock(&event->child_mutex);
4322 func(event);
4323 list_for_each_entry(child, &event->child_list, child_list)
4324 func(child);
4325 mutex_unlock(&event->child_mutex);
4326}
4327
4328static void perf_event_for_each(struct perf_event *event,
4329 void (*func)(struct perf_event *))
4330{
4331 struct perf_event_context *ctx = event->ctx;
4332 struct perf_event *sibling;
4333
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004334 lockdep_assert_held(&ctx->mutex);
4335
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004336 event = event->group_leader;
4337
4338 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004339 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004340 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004341}
4342
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004343static void __perf_event_period(struct perf_event *event,
4344 struct perf_cpu_context *cpuctx,
4345 struct perf_event_context *ctx,
4346 void *info)
Peter Zijlstra00179602015-11-30 16:26:35 +01004347{
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004348 u64 value = *((u64 *)info);
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004349 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004351 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004352 event->attr.sample_freq = value;
4353 } else {
4354 event->attr.sample_period = value;
4355 event->hw.sample_period = value;
4356 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004357
4358 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4359 if (active) {
4360 perf_pmu_disable(ctx->pmu);
Peter Zijlstra1e02cd42016-03-10 15:39:24 +01004361 /*
4362 * We could be throttled; unthrottle now to avoid the tick
4363 * trying to unthrottle while we already re-started the event.
4364 */
4365 if (event->hw.interrupts == MAX_INTERRUPTS) {
4366 event->hw.interrupts = 0;
4367 perf_log_throttle(event, 1);
4368 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004369 event->pmu->stop(event, PERF_EF_UPDATE);
4370 }
4371
4372 local64_set(&event->hw.period_left, 0);
4373
4374 if (active) {
4375 event->pmu->start(event, PERF_EF_RELOAD);
4376 perf_pmu_enable(ctx->pmu);
4377 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004378}
4379
4380static int perf_event_period(struct perf_event *event, u64 __user *arg)
4381{
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004382 u64 value;
4383
4384 if (!is_sampling_event(event))
4385 return -EINVAL;
4386
4387 if (copy_from_user(&value, arg, sizeof(value)))
4388 return -EFAULT;
4389
4390 if (!value)
4391 return -EINVAL;
4392
4393 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4394 return -EINVAL;
4395
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01004396 event_function_call(event, __perf_event_period, &value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004397
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004398 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004399}
4400
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004401static const struct file_operations perf_fops;
4402
Al Viro2903ff02012-08-28 12:52:22 -04004403static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004404{
Al Viro2903ff02012-08-28 12:52:22 -04004405 struct fd f = fdget(fd);
4406 if (!f.file)
4407 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004408
Al Viro2903ff02012-08-28 12:52:22 -04004409 if (f.file->f_op != &perf_fops) {
4410 fdput(f);
4411 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004412 }
Al Viro2903ff02012-08-28 12:52:22 -04004413 *p = f;
4414 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004415}
4416
4417static int perf_event_set_output(struct perf_event *event,
4418 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004419static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004420static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004421
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004422static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004423{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004424 void (*func)(struct perf_event *);
4425 u32 flags = arg;
4426
4427 switch (cmd) {
4428 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004429 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004430 break;
4431 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004432 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004433 break;
4434 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004435 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004436 break;
4437
4438 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004439 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004440
4441 case PERF_EVENT_IOC_PERIOD:
4442 return perf_event_period(event, (u64 __user *)arg);
4443
Jiri Olsacf4957f2012-10-24 13:37:58 +02004444 case PERF_EVENT_IOC_ID:
4445 {
4446 u64 id = primary_event_id(event);
4447
4448 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4449 return -EFAULT;
4450 return 0;
4451 }
4452
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004453 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004454 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004455 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004456 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004457 struct perf_event *output_event;
4458 struct fd output;
4459 ret = perf_fget_light(arg, &output);
4460 if (ret)
4461 return ret;
4462 output_event = output.file->private_data;
4463 ret = perf_event_set_output(event, output_event);
4464 fdput(output);
4465 } else {
4466 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004467 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004468 return ret;
4469 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004470
Li Zefan6fb29152009-10-15 11:21:42 +08004471 case PERF_EVENT_IOC_SET_FILTER:
4472 return perf_event_set_filter(event, (void __user *)arg);
4473
Alexei Starovoitov25415172015-03-25 12:49:20 -07004474 case PERF_EVENT_IOC_SET_BPF:
4475 return perf_event_set_bpf_prog(event, arg);
4476
Wang Nan86e79722016-03-28 06:41:29 +00004477 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
4478 struct ring_buffer *rb;
4479
4480 rcu_read_lock();
4481 rb = rcu_dereference(event->rb);
4482 if (!rb || !rb->nr_pages) {
4483 rcu_read_unlock();
4484 return -EINVAL;
4485 }
4486 rb_toggle_paused(rb, !!arg);
4487 rcu_read_unlock();
4488 return 0;
4489 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004490 default:
4491 return -ENOTTY;
4492 }
4493
4494 if (flags & PERF_IOC_FLAG_GROUP)
4495 perf_event_for_each(event, func);
4496 else
4497 perf_event_for_each_child(event, func);
4498
4499 return 0;
4500}
4501
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004502static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4503{
4504 struct perf_event *event = file->private_data;
4505 struct perf_event_context *ctx;
4506 long ret;
4507
4508 ctx = perf_event_ctx_lock(event);
4509 ret = _perf_ioctl(event, cmd, arg);
4510 perf_event_ctx_unlock(event, ctx);
4511
4512 return ret;
4513}
4514
Pawel Mollb3f20782014-06-13 16:03:32 +01004515#ifdef CONFIG_COMPAT
4516static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4517 unsigned long arg)
4518{
4519 switch (_IOC_NR(cmd)) {
4520 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4521 case _IOC_NR(PERF_EVENT_IOC_ID):
4522 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4523 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4524 cmd &= ~IOCSIZE_MASK;
4525 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4526 }
4527 break;
4528 }
4529 return perf_ioctl(file, cmd, arg);
4530}
4531#else
4532# define perf_compat_ioctl NULL
4533#endif
4534
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535int perf_event_task_enable(void)
4536{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004537 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004538 struct perf_event *event;
4539
4540 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004541 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4542 ctx = perf_event_ctx_lock(event);
4543 perf_event_for_each_child(event, _perf_event_enable);
4544 perf_event_ctx_unlock(event, ctx);
4545 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004546 mutex_unlock(&current->perf_event_mutex);
4547
4548 return 0;
4549}
4550
4551int perf_event_task_disable(void)
4552{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004553 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004554 struct perf_event *event;
4555
4556 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004557 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4558 ctx = perf_event_ctx_lock(event);
4559 perf_event_for_each_child(event, _perf_event_disable);
4560 perf_event_ctx_unlock(event, ctx);
4561 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004562 mutex_unlock(&current->perf_event_mutex);
4563
4564 return 0;
4565}
4566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004567static int perf_event_index(struct perf_event *event)
4568{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004569 if (event->hw.state & PERF_HES_STOPPED)
4570 return 0;
4571
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004572 if (event->state != PERF_EVENT_STATE_ACTIVE)
4573 return 0;
4574
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004575 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004576}
4577
Eric B Munsonc4794292011-06-23 16:34:38 -04004578static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004579 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004580 u64 *enabled,
4581 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004582{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004583 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004584
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004585 *now = perf_clock();
4586 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004587 *enabled = ctx_time - event->tstamp_enabled;
4588 *running = ctx_time - event->tstamp_running;
4589}
4590
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004591static void perf_event_init_userpage(struct perf_event *event)
4592{
4593 struct perf_event_mmap_page *userpg;
4594 struct ring_buffer *rb;
4595
4596 rcu_read_lock();
4597 rb = rcu_dereference(event->rb);
4598 if (!rb)
4599 goto unlock;
4600
4601 userpg = rb->user_page;
4602
4603 /* Allow new userspace to detect that bit 0 is deprecated */
4604 userpg->cap_bit0_is_deprecated = 1;
4605 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004606 userpg->data_offset = PAGE_SIZE;
4607 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004608
4609unlock:
4610 rcu_read_unlock();
4611}
4612
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004613void __weak arch_perf_update_userpage(
4614 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004615{
4616}
4617
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004618/*
4619 * Callers need to ensure there can be no nesting of this function, otherwise
4620 * the seqlock logic goes bad. We can not serialize this because the arch
4621 * code calls this from NMI context.
4622 */
4623void perf_event_update_userpage(struct perf_event *event)
4624{
4625 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004626 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004627 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004628
4629 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004630 rb = rcu_dereference(event->rb);
4631 if (!rb)
4632 goto unlock;
4633
Eric B Munson0d641202011-06-24 12:26:26 -04004634 /*
4635 * compute total_time_enabled, total_time_running
4636 * based on snapshot values taken when the event
4637 * was last scheduled in.
4638 *
4639 * we cannot simply called update_context_time()
4640 * because of locking issue as we can be called in
4641 * NMI context
4642 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004643 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004644
Frederic Weisbecker76369132011-05-19 19:55:04 +02004645 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004646 /*
4647 * Disable preemption so as to not let the corresponding user-space
4648 * spin too long if we get preempted.
4649 */
4650 preempt_disable();
4651 ++userpg->lock;
4652 barrier();
4653 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004654 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004655 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004656 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004657
Eric B Munson0d641202011-06-24 12:26:26 -04004658 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659 atomic64_read(&event->child_total_time_enabled);
4660
Eric B Munson0d641202011-06-24 12:26:26 -04004661 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004662 atomic64_read(&event->child_total_time_running);
4663
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004664 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004665
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004666 barrier();
4667 ++userpg->lock;
4668 preempt_enable();
4669unlock:
4670 rcu_read_unlock();
4671}
4672
Peter Zijlstra906010b2009-09-21 16:08:49 +02004673static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4674{
4675 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004676 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004677 int ret = VM_FAULT_SIGBUS;
4678
4679 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4680 if (vmf->pgoff == 0)
4681 ret = 0;
4682 return ret;
4683 }
4684
4685 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004686 rb = rcu_dereference(event->rb);
4687 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004688 goto unlock;
4689
4690 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4691 goto unlock;
4692
Frederic Weisbecker76369132011-05-19 19:55:04 +02004693 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004694 if (!vmf->page)
4695 goto unlock;
4696
4697 get_page(vmf->page);
4698 vmf->page->mapping = vma->vm_file->f_mapping;
4699 vmf->page->index = vmf->pgoff;
4700
4701 ret = 0;
4702unlock:
4703 rcu_read_unlock();
4704
4705 return ret;
4706}
4707
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004708static void ring_buffer_attach(struct perf_event *event,
4709 struct ring_buffer *rb)
4710{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004711 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004712 unsigned long flags;
4713
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004714 if (event->rb) {
4715 /*
4716 * Should be impossible, we set this when removing
4717 * event->rb_entry and wait/clear when adding event->rb_entry.
4718 */
4719 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004720
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004721 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004722 spin_lock_irqsave(&old_rb->event_lock, flags);
4723 list_del_rcu(&event->rb_entry);
4724 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004725
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004726 event->rcu_batches = get_state_synchronize_rcu();
4727 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004728 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004729
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004730 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004731 if (event->rcu_pending) {
4732 cond_synchronize_rcu(event->rcu_batches);
4733 event->rcu_pending = 0;
4734 }
4735
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004736 spin_lock_irqsave(&rb->event_lock, flags);
4737 list_add_rcu(&event->rb_entry, &rb->event_list);
4738 spin_unlock_irqrestore(&rb->event_lock, flags);
4739 }
4740
4741 rcu_assign_pointer(event->rb, rb);
4742
4743 if (old_rb) {
4744 ring_buffer_put(old_rb);
4745 /*
4746 * Since we detached before setting the new rb, so that we
4747 * could attach the new rb, we could have missed a wakeup.
4748 * Provide it now.
4749 */
4750 wake_up_all(&event->waitq);
4751 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004752}
4753
4754static void ring_buffer_wakeup(struct perf_event *event)
4755{
4756 struct ring_buffer *rb;
4757
4758 rcu_read_lock();
4759 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004760 if (rb) {
4761 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4762 wake_up_all(&event->waitq);
4763 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004764 rcu_read_unlock();
4765}
4766
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004767struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004768{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004769 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004770
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004771 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004772 rb = rcu_dereference(event->rb);
4773 if (rb) {
4774 if (!atomic_inc_not_zero(&rb->refcount))
4775 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004776 }
4777 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004778
Frederic Weisbecker76369132011-05-19 19:55:04 +02004779 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004780}
4781
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004782void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004783{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004784 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004785 return;
4786
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004787 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004788
Frederic Weisbecker76369132011-05-19 19:55:04 +02004789 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004790}
4791
4792static void perf_mmap_open(struct vm_area_struct *vma)
4793{
4794 struct perf_event *event = vma->vm_file->private_data;
4795
4796 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004797 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004798
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004799 if (vma->vm_pgoff)
4800 atomic_inc(&event->rb->aux_mmap_count);
4801
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004802 if (event->pmu->event_mapped)
4803 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004804}
4805
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004806static void perf_pmu_output_stop(struct perf_event *event);
4807
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004808/*
4809 * A buffer can be mmap()ed multiple times; either directly through the same
4810 * event, or through other events by use of perf_event_set_output().
4811 *
4812 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4813 * the buffer here, where we still have a VM context. This means we need
4814 * to detach all events redirecting to us.
4815 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004816static void perf_mmap_close(struct vm_area_struct *vma)
4817{
4818 struct perf_event *event = vma->vm_file->private_data;
4819
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004820 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004821 struct user_struct *mmap_user = rb->mmap_user;
4822 int mmap_locked = rb->mmap_locked;
4823 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004825 if (event->pmu->event_unmapped)
4826 event->pmu->event_unmapped(event);
4827
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004828 /*
4829 * rb->aux_mmap_count will always drop before rb->mmap_count and
4830 * event->mmap_count, so it is ok to use event->mmap_mutex to
4831 * serialize with perf_mmap here.
4832 */
4833 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4834 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004835 /*
4836 * Stop all AUX events that are writing to this buffer,
4837 * so that we can free its AUX pages and corresponding PMU
4838 * data. Note that after rb::aux_mmap_count dropped to zero,
4839 * they won't start any more (see perf_aux_output_begin()).
4840 */
4841 perf_pmu_output_stop(event);
4842
4843 /* now it's safe to free the pages */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004844 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4845 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4846
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004847 /* this has to be the last one */
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004848 rb_free_aux(rb);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02004849 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
4850
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004851 mutex_unlock(&event->mmap_mutex);
4852 }
4853
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004854 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004855
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004856 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004857 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004858
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004859 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004860 mutex_unlock(&event->mmap_mutex);
4861
4862 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004863 if (atomic_read(&rb->mmap_count))
4864 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004865
4866 /*
4867 * No other mmap()s, detach from all other events that might redirect
4868 * into the now unreachable buffer. Somewhat complicated by the
4869 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4870 */
4871again:
4872 rcu_read_lock();
4873 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4874 if (!atomic_long_inc_not_zero(&event->refcount)) {
4875 /*
4876 * This event is en-route to free_event() which will
4877 * detach it and remove it from the list.
4878 */
4879 continue;
4880 }
4881 rcu_read_unlock();
4882
4883 mutex_lock(&event->mmap_mutex);
4884 /*
4885 * Check we didn't race with perf_event_set_output() which can
4886 * swizzle the rb from under us while we were waiting to
4887 * acquire mmap_mutex.
4888 *
4889 * If we find a different rb; ignore this event, a next
4890 * iteration will no longer find it on the list. We have to
4891 * still restart the iteration to make sure we're not now
4892 * iterating the wrong list.
4893 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004894 if (event->rb == rb)
4895 ring_buffer_attach(event, NULL);
4896
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004897 mutex_unlock(&event->mmap_mutex);
4898 put_event(event);
4899
4900 /*
4901 * Restart the iteration; either we're on the wrong list or
4902 * destroyed its integrity by doing a deletion.
4903 */
4904 goto again;
4905 }
4906 rcu_read_unlock();
4907
4908 /*
4909 * It could be there's still a few 0-ref events on the list; they'll
4910 * get cleaned up by free_event() -- they'll also still have their
4911 * ref on the rb and will free it whenever they are done with it.
4912 *
4913 * Aside from that, this buffer is 'fully' detached and unmapped,
4914 * undo the VM accounting.
4915 */
4916
4917 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4918 vma->vm_mm->pinned_vm -= mmap_locked;
4919 free_uid(mmap_user);
4920
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004921out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004922 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004923}
4924
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004925static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004927 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004928 .fault = perf_mmap_fault,
4929 .page_mkwrite = perf_mmap_fault,
4930};
4931
4932static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4933{
4934 struct perf_event *event = file->private_data;
4935 unsigned long user_locked, user_lock_limit;
4936 struct user_struct *user = current_user();
4937 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004938 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004939 unsigned long vma_size;
4940 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004941 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004942 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004943
Peter Zijlstrac7920612010-05-18 10:33:24 +02004944 /*
4945 * Don't allow mmap() of inherited per-task counters. This would
4946 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004947 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004948 */
4949 if (event->cpu == -1 && event->attr.inherit)
4950 return -EINVAL;
4951
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004952 if (!(vma->vm_flags & VM_SHARED))
4953 return -EINVAL;
4954
4955 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004956
4957 if (vma->vm_pgoff == 0) {
4958 nr_pages = (vma_size / PAGE_SIZE) - 1;
4959 } else {
4960 /*
4961 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
4962 * mapped, all subsequent mappings should have the same size
4963 * and offset. Must be above the normal perf buffer.
4964 */
4965 u64 aux_offset, aux_size;
4966
4967 if (!event->rb)
4968 return -EINVAL;
4969
4970 nr_pages = vma_size / PAGE_SIZE;
4971
4972 mutex_lock(&event->mmap_mutex);
4973 ret = -EINVAL;
4974
4975 rb = event->rb;
4976 if (!rb)
4977 goto aux_unlock;
4978
4979 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
4980 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
4981
4982 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
4983 goto aux_unlock;
4984
4985 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
4986 goto aux_unlock;
4987
4988 /* already mapped with a different offset */
4989 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
4990 goto aux_unlock;
4991
4992 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
4993 goto aux_unlock;
4994
4995 /* already mapped with a different size */
4996 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
4997 goto aux_unlock;
4998
4999 if (!is_power_of_2(nr_pages))
5000 goto aux_unlock;
5001
5002 if (!atomic_inc_not_zero(&rb->mmap_count))
5003 goto aux_unlock;
5004
5005 if (rb_has_aux(rb)) {
5006 atomic_inc(&rb->aux_mmap_count);
5007 ret = 0;
5008 goto unlock;
5009 }
5010
5011 atomic_set(&rb->aux_mmap_count, 1);
5012 user_extra = nr_pages;
5013
5014 goto accounting;
5015 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005016
5017 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005018 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005019 * can do bitmasks instead of modulo.
5020 */
Kan Liang2ed11312015-03-02 02:14:26 -05005021 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005022 return -EINVAL;
5023
5024 if (vma_size != PAGE_SIZE * (1 + nr_pages))
5025 return -EINVAL;
5026
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005027 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005028again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005029 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005030 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005031 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005032 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005033 goto unlock;
5034 }
5035
5036 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
5037 /*
5038 * Raced against perf_mmap_close() through
5039 * perf_event_set_output(). Try again, hope for better
5040 * luck.
5041 */
5042 mutex_unlock(&event->mmap_mutex);
5043 goto again;
5044 }
5045
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005046 goto unlock;
5047 }
5048
5049 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005050
5051accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005052 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
5053
5054 /*
5055 * Increase the limit linearly with more CPUs:
5056 */
5057 user_lock_limit *= num_online_cpus();
5058
5059 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
5060
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005061 if (user_locked > user_lock_limit)
5062 extra = user_locked - user_lock_limit;
5063
Jiri Slaby78d7d402010-03-05 13:42:54 -08005064 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005065 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07005066 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005067
5068 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
5069 !capable(CAP_IPC_LOCK)) {
5070 ret = -EPERM;
5071 goto unlock;
5072 }
5073
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005074 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02005075
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005076 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02005077 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02005078
Frederic Weisbecker76369132011-05-19 19:55:04 +02005079 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005080 rb = rb_alloc(nr_pages,
5081 event->attr.watermark ? event->attr.wakeup_watermark : 0,
5082 event->cpu, flags);
5083
5084 if (!rb) {
5085 ret = -ENOMEM;
5086 goto unlock;
5087 }
5088
5089 atomic_set(&rb->mmap_count, 1);
5090 rb->mmap_user = get_current_user();
5091 rb->mmap_locked = extra;
5092
5093 ring_buffer_attach(event, rb);
5094
5095 perf_event_init_userpage(event);
5096 perf_event_update_userpage(event);
5097 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02005098 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
5099 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005100 if (!ret)
5101 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005102 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005103
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005104unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005105 if (!ret) {
5106 atomic_long_add(user_extra, &user->locked_vm);
5107 vma->vm_mm->pinned_vm += extra;
5108
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005109 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02005110 } else if (rb) {
5111 atomic_dec(&rb->mmap_count);
5112 }
5113aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005114 mutex_unlock(&event->mmap_mutex);
5115
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02005116 /*
5117 * Since pinned accounting is per vm we cannot allow fork() to copy our
5118 * vma.
5119 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02005120 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005121 vma->vm_ops = &perf_mmap_vmops;
5122
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07005123 if (event->pmu->event_mapped)
5124 event->pmu->event_mapped(event);
5125
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005126 return ret;
5127}
5128
5129static int perf_fasync(int fd, struct file *filp, int on)
5130{
Al Viro496ad9a2013-01-23 17:07:38 -05005131 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005132 struct perf_event *event = filp->private_data;
5133 int retval;
5134
Al Viro59551022016-01-22 15:40:57 -05005135 inode_lock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005136 retval = fasync_helper(fd, filp, on, &event->fasync);
Al Viro59551022016-01-22 15:40:57 -05005137 inode_unlock(inode);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005138
5139 if (retval < 0)
5140 return retval;
5141
5142 return 0;
5143}
5144
5145static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01005146 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005147 .release = perf_release,
5148 .read = perf_read,
5149 .poll = perf_poll,
5150 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01005151 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152 .mmap = perf_mmap,
5153 .fasync = perf_fasync,
5154};
5155
5156/*
5157 * Perf event wakeup
5158 *
5159 * If there's data, ensure we set the poll() state and publish everything
5160 * to user-space before waking everybody up.
5161 */
5162
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005163static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5164{
5165 /* only the parent has fasync state */
5166 if (event->parent)
5167 event = event->parent;
5168 return &event->fasync;
5169}
5170
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005171void perf_event_wakeup(struct perf_event *event)
5172{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01005173 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005174
5175 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02005176 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005177 event->pending_kill = 0;
5178 }
5179}
5180
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005181static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005182{
5183 struct perf_event *event = container_of(entry,
5184 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01005185 int rctx;
5186
5187 rctx = perf_swevent_get_recursion_context();
5188 /*
5189 * If we 'fail' here, that's OK, it means recursion is already disabled
5190 * and we won't recurse 'further'.
5191 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005192
5193 if (event->pending_disable) {
5194 event->pending_disable = 0;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +01005195 perf_event_disable_local(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005196 }
5197
5198 if (event->pending_wakeup) {
5199 event->pending_wakeup = 0;
5200 perf_event_wakeup(event);
5201 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01005202
5203 if (rctx >= 0)
5204 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005205}
5206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005207/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005208 * We assume there is only KVM supporting the callbacks.
5209 * Later on, we might change it to a list if there is
5210 * another virtualization implementation supporting the callbacks.
5211 */
5212struct perf_guest_info_callbacks *perf_guest_cbs;
5213
5214int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5215{
5216 perf_guest_cbs = cbs;
5217 return 0;
5218}
5219EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5220
5221int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5222{
5223 perf_guest_cbs = NULL;
5224 return 0;
5225}
5226EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5227
Jiri Olsa40189942012-08-07 15:20:37 +02005228static void
5229perf_output_sample_regs(struct perf_output_handle *handle,
5230 struct pt_regs *regs, u64 mask)
5231{
5232 int bit;
5233
5234 for_each_set_bit(bit, (const unsigned long *) &mask,
5235 sizeof(mask) * BITS_PER_BYTE) {
5236 u64 val;
5237
5238 val = perf_reg_value(regs, bit);
5239 perf_output_put(handle, val);
5240 }
5241}
5242
Stephane Eranian60e23642014-09-24 13:48:37 +02005243static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005244 struct pt_regs *regs,
5245 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02005246{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005247 if (user_mode(regs)) {
5248 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02005249 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005250 } else if (current->mm) {
5251 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005252 } else {
5253 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5254 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005255 }
5256}
5257
Stephane Eranian60e23642014-09-24 13:48:37 +02005258static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5259 struct pt_regs *regs)
5260{
5261 regs_intr->regs = regs;
5262 regs_intr->abi = perf_reg_abi(current);
5263}
5264
5265
Jiri Olsac5ebced2012-08-07 15:20:40 +02005266/*
5267 * Get remaining task size from user stack pointer.
5268 *
5269 * It'd be better to take stack vma map and limit this more
5270 * precisly, but there's no way to get it safely under interrupt,
5271 * so using TASK_SIZE as limit.
5272 */
5273static u64 perf_ustack_task_size(struct pt_regs *regs)
5274{
5275 unsigned long addr = perf_user_stack_pointer(regs);
5276
5277 if (!addr || addr >= TASK_SIZE)
5278 return 0;
5279
5280 return TASK_SIZE - addr;
5281}
5282
5283static u16
5284perf_sample_ustack_size(u16 stack_size, u16 header_size,
5285 struct pt_regs *regs)
5286{
5287 u64 task_size;
5288
5289 /* No regs, no stack pointer, no dump. */
5290 if (!regs)
5291 return 0;
5292
5293 /*
5294 * Check if we fit in with the requested stack size into the:
5295 * - TASK_SIZE
5296 * If we don't, we limit the size to the TASK_SIZE.
5297 *
5298 * - remaining sample size
5299 * If we don't, we customize the stack size to
5300 * fit in to the remaining sample size.
5301 */
5302
5303 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5304 stack_size = min(stack_size, (u16) task_size);
5305
5306 /* Current header size plus static size and dynamic size. */
5307 header_size += 2 * sizeof(u64);
5308
5309 /* Do we fit in with the current stack dump size? */
5310 if ((u16) (header_size + stack_size) < header_size) {
5311 /*
5312 * If we overflow the maximum size for the sample,
5313 * we customize the stack dump size to fit in.
5314 */
5315 stack_size = USHRT_MAX - header_size - sizeof(u64);
5316 stack_size = round_up(stack_size, sizeof(u64));
5317 }
5318
5319 return stack_size;
5320}
5321
5322static void
5323perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5324 struct pt_regs *regs)
5325{
5326 /* Case of a kernel thread, nothing to dump */
5327 if (!regs) {
5328 u64 size = 0;
5329 perf_output_put(handle, size);
5330 } else {
5331 unsigned long sp;
5332 unsigned int rem;
5333 u64 dyn_size;
5334
5335 /*
5336 * We dump:
5337 * static size
5338 * - the size requested by user or the best one we can fit
5339 * in to the sample max size
5340 * data
5341 * - user stack dump data
5342 * dynamic size
5343 * - the actual dumped size
5344 */
5345
5346 /* Static size. */
5347 perf_output_put(handle, dump_size);
5348
5349 /* Data. */
5350 sp = perf_user_stack_pointer(regs);
5351 rem = __output_copy_user(handle, (void *) sp, dump_size);
5352 dyn_size = dump_size - rem;
5353
5354 perf_output_skip(handle, rem);
5355
5356 /* Dynamic size. */
5357 perf_output_put(handle, dyn_size);
5358 }
5359}
5360
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005361static void __perf_event_header__init_id(struct perf_event_header *header,
5362 struct perf_sample_data *data,
5363 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005364{
5365 u64 sample_type = event->attr.sample_type;
5366
5367 data->type = sample_type;
5368 header->size += event->id_header_size;
5369
5370 if (sample_type & PERF_SAMPLE_TID) {
5371 /* namespace issues */
5372 data->tid_entry.pid = perf_event_pid(event, current);
5373 data->tid_entry.tid = perf_event_tid(event, current);
5374 }
5375
5376 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005377 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005378
Adrian Hunterff3d5272013-08-27 11:23:07 +03005379 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005380 data->id = primary_event_id(event);
5381
5382 if (sample_type & PERF_SAMPLE_STREAM_ID)
5383 data->stream_id = event->id;
5384
5385 if (sample_type & PERF_SAMPLE_CPU) {
5386 data->cpu_entry.cpu = raw_smp_processor_id();
5387 data->cpu_entry.reserved = 0;
5388 }
5389}
5390
Frederic Weisbecker76369132011-05-19 19:55:04 +02005391void perf_event_header__init_id(struct perf_event_header *header,
5392 struct perf_sample_data *data,
5393 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005394{
5395 if (event->attr.sample_id_all)
5396 __perf_event_header__init_id(header, data, event);
5397}
5398
5399static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5400 struct perf_sample_data *data)
5401{
5402 u64 sample_type = data->type;
5403
5404 if (sample_type & PERF_SAMPLE_TID)
5405 perf_output_put(handle, data->tid_entry);
5406
5407 if (sample_type & PERF_SAMPLE_TIME)
5408 perf_output_put(handle, data->time);
5409
5410 if (sample_type & PERF_SAMPLE_ID)
5411 perf_output_put(handle, data->id);
5412
5413 if (sample_type & PERF_SAMPLE_STREAM_ID)
5414 perf_output_put(handle, data->stream_id);
5415
5416 if (sample_type & PERF_SAMPLE_CPU)
5417 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005418
5419 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5420 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005421}
5422
Frederic Weisbecker76369132011-05-19 19:55:04 +02005423void perf_event__output_id_sample(struct perf_event *event,
5424 struct perf_output_handle *handle,
5425 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005426{
5427 if (event->attr.sample_id_all)
5428 __perf_event__output_id_sample(handle, sample);
5429}
5430
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005431static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005432 struct perf_event *event,
5433 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005434{
5435 u64 read_format = event->attr.read_format;
5436 u64 values[4];
5437 int n = 0;
5438
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005439 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005440 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005441 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005442 atomic64_read(&event->child_total_time_enabled);
5443 }
5444 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005445 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005446 atomic64_read(&event->child_total_time_running);
5447 }
5448 if (read_format & PERF_FORMAT_ID)
5449 values[n++] = primary_event_id(event);
5450
Frederic Weisbecker76369132011-05-19 19:55:04 +02005451 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452}
5453
5454/*
5455 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5456 */
5457static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005458 struct perf_event *event,
5459 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005460{
5461 struct perf_event *leader = event->group_leader, *sub;
5462 u64 read_format = event->attr.read_format;
5463 u64 values[5];
5464 int n = 0;
5465
5466 values[n++] = 1 + leader->nr_siblings;
5467
5468 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005469 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005470
5471 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005472 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005473
5474 if (leader != event)
5475 leader->pmu->read(leader);
5476
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005477 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005478 if (read_format & PERF_FORMAT_ID)
5479 values[n++] = primary_event_id(leader);
5480
Frederic Weisbecker76369132011-05-19 19:55:04 +02005481 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005482
5483 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5484 n = 0;
5485
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005486 if ((sub != event) &&
5487 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005488 sub->pmu->read(sub);
5489
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005490 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005491 if (read_format & PERF_FORMAT_ID)
5492 values[n++] = primary_event_id(sub);
5493
Frederic Weisbecker76369132011-05-19 19:55:04 +02005494 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005495 }
5496}
5497
Stephane Eranianeed01522010-10-26 16:08:01 +02005498#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5499 PERF_FORMAT_TOTAL_TIME_RUNNING)
5500
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005501static void perf_output_read(struct perf_output_handle *handle,
5502 struct perf_event *event)
5503{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005504 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005505 u64 read_format = event->attr.read_format;
5506
5507 /*
5508 * compute total_time_enabled, total_time_running
5509 * based on snapshot values taken when the event
5510 * was last scheduled in.
5511 *
5512 * we cannot simply called update_context_time()
5513 * because of locking issue as we are called in
5514 * NMI context
5515 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005516 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005517 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005518
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005519 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005520 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005521 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005522 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005523}
5524
5525void perf_output_sample(struct perf_output_handle *handle,
5526 struct perf_event_header *header,
5527 struct perf_sample_data *data,
5528 struct perf_event *event)
5529{
5530 u64 sample_type = data->type;
5531
5532 perf_output_put(handle, *header);
5533
Adrian Hunterff3d5272013-08-27 11:23:07 +03005534 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5535 perf_output_put(handle, data->id);
5536
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005537 if (sample_type & PERF_SAMPLE_IP)
5538 perf_output_put(handle, data->ip);
5539
5540 if (sample_type & PERF_SAMPLE_TID)
5541 perf_output_put(handle, data->tid_entry);
5542
5543 if (sample_type & PERF_SAMPLE_TIME)
5544 perf_output_put(handle, data->time);
5545
5546 if (sample_type & PERF_SAMPLE_ADDR)
5547 perf_output_put(handle, data->addr);
5548
5549 if (sample_type & PERF_SAMPLE_ID)
5550 perf_output_put(handle, data->id);
5551
5552 if (sample_type & PERF_SAMPLE_STREAM_ID)
5553 perf_output_put(handle, data->stream_id);
5554
5555 if (sample_type & PERF_SAMPLE_CPU)
5556 perf_output_put(handle, data->cpu_entry);
5557
5558 if (sample_type & PERF_SAMPLE_PERIOD)
5559 perf_output_put(handle, data->period);
5560
5561 if (sample_type & PERF_SAMPLE_READ)
5562 perf_output_read(handle, event);
5563
5564 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5565 if (data->callchain) {
5566 int size = 1;
5567
5568 if (data->callchain)
5569 size += data->callchain->nr;
5570
5571 size *= sizeof(u64);
5572
Frederic Weisbecker76369132011-05-19 19:55:04 +02005573 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005574 } else {
5575 u64 nr = 0;
5576 perf_output_put(handle, nr);
5577 }
5578 }
5579
5580 if (sample_type & PERF_SAMPLE_RAW) {
5581 if (data->raw) {
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005582 u32 raw_size = data->raw->size;
5583 u32 real_size = round_up(raw_size + sizeof(u32),
5584 sizeof(u64)) - sizeof(u32);
5585 u64 zero = 0;
5586
5587 perf_output_put(handle, real_size);
5588 __output_copy(handle, data->raw->data, raw_size);
5589 if (real_size - raw_size)
5590 __output_copy(handle, &zero, real_size - raw_size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005591 } else {
5592 struct {
5593 u32 size;
5594 u32 data;
5595 } raw = {
5596 .size = sizeof(u32),
5597 .data = 0,
5598 };
5599 perf_output_put(handle, raw);
5600 }
5601 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005602
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005603 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5604 if (data->br_stack) {
5605 size_t size;
5606
5607 size = data->br_stack->nr
5608 * sizeof(struct perf_branch_entry);
5609
5610 perf_output_put(handle, data->br_stack->nr);
5611 perf_output_copy(handle, data->br_stack->entries, size);
5612 } else {
5613 /*
5614 * we always store at least the value of nr
5615 */
5616 u64 nr = 0;
5617 perf_output_put(handle, nr);
5618 }
5619 }
Jiri Olsa40189942012-08-07 15:20:37 +02005620
5621 if (sample_type & PERF_SAMPLE_REGS_USER) {
5622 u64 abi = data->regs_user.abi;
5623
5624 /*
5625 * If there are no regs to dump, notice it through
5626 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5627 */
5628 perf_output_put(handle, abi);
5629
5630 if (abi) {
5631 u64 mask = event->attr.sample_regs_user;
5632 perf_output_sample_regs(handle,
5633 data->regs_user.regs,
5634 mask);
5635 }
5636 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005637
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005638 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005639 perf_output_sample_ustack(handle,
5640 data->stack_user_size,
5641 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005642 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005643
5644 if (sample_type & PERF_SAMPLE_WEIGHT)
5645 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005646
5647 if (sample_type & PERF_SAMPLE_DATA_SRC)
5648 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005649
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005650 if (sample_type & PERF_SAMPLE_TRANSACTION)
5651 perf_output_put(handle, data->txn);
5652
Stephane Eranian60e23642014-09-24 13:48:37 +02005653 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5654 u64 abi = data->regs_intr.abi;
5655 /*
5656 * If there are no regs to dump, notice it through
5657 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5658 */
5659 perf_output_put(handle, abi);
5660
5661 if (abi) {
5662 u64 mask = event->attr.sample_regs_intr;
5663
5664 perf_output_sample_regs(handle,
5665 data->regs_intr.regs,
5666 mask);
5667 }
5668 }
5669
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005670 if (!event->attr.watermark) {
5671 int wakeup_events = event->attr.wakeup_events;
5672
5673 if (wakeup_events) {
5674 struct ring_buffer *rb = handle->rb;
5675 int events = local_inc_return(&rb->events);
5676
5677 if (events >= wakeup_events) {
5678 local_sub(wakeup_events, &rb->events);
5679 local_inc(&rb->wakeup);
5680 }
5681 }
5682 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005683}
5684
5685void perf_prepare_sample(struct perf_event_header *header,
5686 struct perf_sample_data *data,
5687 struct perf_event *event,
5688 struct pt_regs *regs)
5689{
5690 u64 sample_type = event->attr.sample_type;
5691
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005692 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005693 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005694
5695 header->misc = 0;
5696 header->misc |= perf_misc_flags(regs);
5697
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005698 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005699
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005700 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005701 data->ip = perf_instruction_pointer(regs);
5702
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005703 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5704 int size = 1;
5705
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005706 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707
5708 if (data->callchain)
5709 size += data->callchain->nr;
5710
5711 header->size += size * sizeof(u64);
5712 }
5713
5714 if (sample_type & PERF_SAMPLE_RAW) {
5715 int size = sizeof(u32);
5716
5717 if (data->raw)
5718 size += data->raw->size;
5719 else
5720 size += sizeof(u32);
5721
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005722 header->size += round_up(size, sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005723 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005724
5725 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5726 int size = sizeof(u64); /* nr */
5727 if (data->br_stack) {
5728 size += data->br_stack->nr
5729 * sizeof(struct perf_branch_entry);
5730 }
5731 header->size += size;
5732 }
Jiri Olsa40189942012-08-07 15:20:37 +02005733
Peter Zijlstra25657112014-09-24 13:48:42 +02005734 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005735 perf_sample_regs_user(&data->regs_user, regs,
5736 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005737
Jiri Olsa40189942012-08-07 15:20:37 +02005738 if (sample_type & PERF_SAMPLE_REGS_USER) {
5739 /* regs dump ABI info */
5740 int size = sizeof(u64);
5741
Jiri Olsa40189942012-08-07 15:20:37 +02005742 if (data->regs_user.regs) {
5743 u64 mask = event->attr.sample_regs_user;
5744 size += hweight64(mask) * sizeof(u64);
5745 }
5746
5747 header->size += size;
5748 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005749
5750 if (sample_type & PERF_SAMPLE_STACK_USER) {
5751 /*
5752 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5753 * processed as the last one or have additional check added
5754 * in case new sample type is added, because we could eat
5755 * up the rest of the sample size.
5756 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005757 u16 stack_size = event->attr.sample_stack_user;
5758 u16 size = sizeof(u64);
5759
Jiri Olsac5ebced2012-08-07 15:20:40 +02005760 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005761 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005762
5763 /*
5764 * If there is something to dump, add space for the dump
5765 * itself and for the field that tells the dynamic size,
5766 * which is how many have been actually dumped.
5767 */
5768 if (stack_size)
5769 size += sizeof(u64) + stack_size;
5770
5771 data->stack_user_size = stack_size;
5772 header->size += size;
5773 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005774
5775 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5776 /* regs dump ABI info */
5777 int size = sizeof(u64);
5778
5779 perf_sample_regs_intr(&data->regs_intr, regs);
5780
5781 if (data->regs_intr.regs) {
5782 u64 mask = event->attr.sample_regs_intr;
5783
5784 size += hweight64(mask) * sizeof(u64);
5785 }
5786
5787 header->size += size;
5788 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005789}
5790
Wang Nan9ecda412016-04-05 14:11:18 +00005791static void __always_inline
5792__perf_event_output(struct perf_event *event,
5793 struct perf_sample_data *data,
5794 struct pt_regs *regs,
5795 int (*output_begin)(struct perf_output_handle *,
5796 struct perf_event *,
5797 unsigned int))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005798{
5799 struct perf_output_handle handle;
5800 struct perf_event_header header;
5801
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005802 /* protect the callchain buffers */
5803 rcu_read_lock();
5804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005805 perf_prepare_sample(&header, data, event, regs);
5806
Wang Nan9ecda412016-04-05 14:11:18 +00005807 if (output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005808 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005809
5810 perf_output_sample(&handle, &header, data, event);
5811
5812 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005813
5814exit:
5815 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005816}
5817
Wang Nan9ecda412016-04-05 14:11:18 +00005818void
5819perf_event_output_forward(struct perf_event *event,
5820 struct perf_sample_data *data,
5821 struct pt_regs *regs)
5822{
5823 __perf_event_output(event, data, regs, perf_output_begin_forward);
5824}
5825
5826void
5827perf_event_output_backward(struct perf_event *event,
5828 struct perf_sample_data *data,
5829 struct pt_regs *regs)
5830{
5831 __perf_event_output(event, data, regs, perf_output_begin_backward);
5832}
5833
5834void
5835perf_event_output(struct perf_event *event,
5836 struct perf_sample_data *data,
5837 struct pt_regs *regs)
5838{
5839 __perf_event_output(event, data, regs, perf_output_begin);
5840}
5841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005842/*
5843 * read event_id
5844 */
5845
5846struct perf_read_event {
5847 struct perf_event_header header;
5848
5849 u32 pid;
5850 u32 tid;
5851};
5852
5853static void
5854perf_event_read_event(struct perf_event *event,
5855 struct task_struct *task)
5856{
5857 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005858 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005859 struct perf_read_event read_event = {
5860 .header = {
5861 .type = PERF_RECORD_READ,
5862 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005863 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005864 },
5865 .pid = perf_event_pid(event, task),
5866 .tid = perf_event_tid(event, task),
5867 };
5868 int ret;
5869
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005870 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005871 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005872 if (ret)
5873 return;
5874
5875 perf_output_put(&handle, read_event);
5876 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005877 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005878
5879 perf_output_end(&handle);
5880}
5881
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005882typedef void (perf_iterate_f)(struct perf_event *event, void *data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005883
5884static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005885perf_iterate_ctx(struct perf_event_context *ctx,
5886 perf_iterate_f output,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03005887 void *data, bool all)
Jiri Olsa52d857a2013-05-06 18:27:18 +02005888{
5889 struct perf_event *event;
5890
5891 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03005892 if (!all) {
5893 if (event->state < PERF_EVENT_STATE_INACTIVE)
5894 continue;
5895 if (!event_filter_match(event))
5896 continue;
5897 }
5898
Jiri Olsa67516842013-07-09 18:56:31 +02005899 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005900 }
5901}
5902
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005903static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
Kan Liangf2fb6be2016-03-23 11:24:37 -07005904{
5905 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
5906 struct perf_event *event;
5907
5908 list_for_each_entry_rcu(event, &pel->list, sb_list) {
5909 if (event->state < PERF_EVENT_STATE_INACTIVE)
5910 continue;
5911 if (!event_filter_match(event))
5912 continue;
5913 output(event, data);
5914 }
5915}
5916
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005917/*
5918 * Iterate all events that need to receive side-band events.
5919 *
5920 * For new callers; ensure that account_pmu_sb_event() includes
5921 * your event, otherwise it might not get delivered.
5922 */
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005923static void
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005924perf_iterate_sb(perf_iterate_f output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005925 struct perf_event_context *task_ctx)
5926{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005927 struct perf_event_context *ctx;
Jiri Olsa52d857a2013-05-06 18:27:18 +02005928 int ctxn;
5929
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005930 rcu_read_lock();
5931 preempt_disable();
5932
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005933 /*
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005934 * If we have task_ctx != NULL we only notify the task context itself.
5935 * The task_ctx is set only for EXIT events before releasing task
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005936 * context.
5937 */
5938 if (task_ctx) {
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005939 perf_iterate_ctx(task_ctx, output, data, false);
5940 goto done;
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005941 }
5942
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005943 perf_iterate_sb_cpu(output, data);
Kan Liangf2fb6be2016-03-23 11:24:37 -07005944
5945 for_each_task_context_nr(ctxn) {
Jiri Olsa52d857a2013-05-06 18:27:18 +02005946 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5947 if (ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005948 perf_iterate_ctx(ctx, output, data, false);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005949 }
Peter Zijlstraaab5b712016-05-12 17:26:46 +02005950done:
Kan Liangf2fb6be2016-03-23 11:24:37 -07005951 preempt_enable();
Jiri Olsa52d857a2013-05-06 18:27:18 +02005952 rcu_read_unlock();
5953}
5954
Alexander Shishkin375637b2016-04-27 18:44:46 +03005955/*
5956 * Clear all file-based filters at exec, they'll have to be
5957 * re-instated when/if these objects are mmapped again.
5958 */
5959static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
5960{
5961 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
5962 struct perf_addr_filter *filter;
5963 unsigned int restart = 0, count = 0;
5964 unsigned long flags;
5965
5966 if (!has_addr_filter(event))
5967 return;
5968
5969 raw_spin_lock_irqsave(&ifh->lock, flags);
5970 list_for_each_entry(filter, &ifh->list, entry) {
5971 if (filter->inode) {
5972 event->addr_filters_offs[count] = 0;
5973 restart++;
5974 }
5975
5976 count++;
5977 }
5978
5979 if (restart)
5980 event->addr_filters_gen++;
5981 raw_spin_unlock_irqrestore(&ifh->lock, flags);
5982
5983 if (restart)
5984 perf_event_restart(event);
5985}
5986
5987void perf_event_exec(void)
5988{
5989 struct perf_event_context *ctx;
5990 int ctxn;
5991
5992 rcu_read_lock();
5993 for_each_task_context_nr(ctxn) {
5994 ctx = current->perf_event_ctxp[ctxn];
5995 if (!ctx)
5996 continue;
5997
5998 perf_event_enable_on_exec(ctxn);
5999
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006000 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
Alexander Shishkin375637b2016-04-27 18:44:46 +03006001 true);
6002 }
6003 rcu_read_unlock();
6004}
6005
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006006struct remote_output {
6007 struct ring_buffer *rb;
6008 int err;
6009};
6010
6011static void __perf_event_output_stop(struct perf_event *event, void *data)
6012{
6013 struct perf_event *parent = event->parent;
6014 struct remote_output *ro = data;
6015 struct ring_buffer *rb = ro->rb;
Alexander Shishkin375637b2016-04-27 18:44:46 +03006016 struct stop_event_data sd = {
6017 .event = event,
6018 };
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006019
6020 if (!has_aux(event))
6021 return;
6022
6023 if (!parent)
6024 parent = event;
6025
6026 /*
6027 * In case of inheritance, it will be the parent that links to the
6028 * ring-buffer, but it will be the child that's actually using it:
6029 */
6030 if (rcu_dereference(parent->rb) == rb)
Alexander Shishkin375637b2016-04-27 18:44:46 +03006031 ro->err = __perf_event_stop(&sd);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006032}
6033
6034static int __perf_pmu_output_stop(void *info)
6035{
6036 struct perf_event *event = info;
6037 struct pmu *pmu = event->pmu;
6038 struct perf_cpu_context *cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
6039 struct remote_output ro = {
6040 .rb = event->rb,
6041 };
6042
6043 rcu_read_lock();
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006044 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006045 if (cpuctx->task_ctx)
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006046 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
Alexander Shishkinb73e4fe2016-04-27 18:44:45 +03006047 &ro, false);
Alexander Shishkin95ff4ca2015-12-02 18:41:11 +02006048 rcu_read_unlock();
6049
6050 return ro.err;
6051}
6052
6053static void perf_pmu_output_stop(struct perf_event *event)
6054{
6055 struct perf_event *iter;
6056 int err, cpu;
6057
6058restart:
6059 rcu_read_lock();
6060 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
6061 /*
6062 * For per-CPU events, we need to make sure that neither they
6063 * nor their children are running; for cpu==-1 events it's
6064 * sufficient to stop the event itself if it's active, since
6065 * it can't have children.
6066 */
6067 cpu = iter->cpu;
6068 if (cpu == -1)
6069 cpu = READ_ONCE(iter->oncpu);
6070
6071 if (cpu == -1)
6072 continue;
6073
6074 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
6075 if (err == -EAGAIN) {
6076 rcu_read_unlock();
6077 goto restart;
6078 }
6079 }
6080 rcu_read_unlock();
6081}
6082
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006083/*
6084 * task tracking -- fork/exit
6085 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02006086 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006087 */
6088
6089struct perf_task_event {
6090 struct task_struct *task;
6091 struct perf_event_context *task_ctx;
6092
6093 struct {
6094 struct perf_event_header header;
6095
6096 u32 pid;
6097 u32 ppid;
6098 u32 tid;
6099 u32 ptid;
6100 u64 time;
6101 } event_id;
6102};
6103
Jiri Olsa67516842013-07-09 18:56:31 +02006104static int perf_event_task_match(struct perf_event *event)
6105{
Stephane Eranian13d7a242013-08-21 12:10:24 +02006106 return event->attr.comm || event->attr.mmap ||
6107 event->attr.mmap2 || event->attr.mmap_data ||
6108 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02006109}
6110
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006111static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006112 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006113{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006114 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006115 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006116 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006117 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006118 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01006119
Jiri Olsa67516842013-07-09 18:56:31 +02006120 if (!perf_event_task_match(event))
6121 return;
6122
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006123 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006124
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006125 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006126 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02006127 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006128 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006129
6130 task_event->event_id.pid = perf_event_pid(event, task);
6131 task_event->event_id.ppid = perf_event_pid(event, current);
6132
6133 task_event->event_id.tid = perf_event_tid(event, task);
6134 task_event->event_id.ptid = perf_event_tid(event, current);
6135
Peter Zijlstra34f43922015-02-20 14:05:38 +01006136 task_event->event_id.time = perf_event_clock(event);
6137
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006138 perf_output_put(&handle, task_event->event_id);
6139
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006140 perf_event__output_id_sample(event, &handle, &sample);
6141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006142 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006143out:
6144 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006145}
6146
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006147static void perf_event_task(struct task_struct *task,
6148 struct perf_event_context *task_ctx,
6149 int new)
6150{
6151 struct perf_task_event task_event;
6152
6153 if (!atomic_read(&nr_comm_events) &&
6154 !atomic_read(&nr_mmap_events) &&
6155 !atomic_read(&nr_task_events))
6156 return;
6157
6158 task_event = (struct perf_task_event){
6159 .task = task,
6160 .task_ctx = task_ctx,
6161 .event_id = {
6162 .header = {
6163 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
6164 .misc = 0,
6165 .size = sizeof(task_event.event_id),
6166 },
6167 /* .pid */
6168 /* .ppid */
6169 /* .tid */
6170 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01006171 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006172 },
6173 };
6174
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006175 perf_iterate_sb(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006176 &task_event,
6177 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006178}
6179
6180void perf_event_fork(struct task_struct *task)
6181{
6182 perf_event_task(task, NULL, 1);
6183}
6184
6185/*
6186 * comm tracking
6187 */
6188
6189struct perf_comm_event {
6190 struct task_struct *task;
6191 char *comm;
6192 int comm_size;
6193
6194 struct {
6195 struct perf_event_header header;
6196
6197 u32 pid;
6198 u32 tid;
6199 } event_id;
6200};
6201
Jiri Olsa67516842013-07-09 18:56:31 +02006202static int perf_event_comm_match(struct perf_event *event)
6203{
6204 return event->attr.comm;
6205}
6206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006207static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006208 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006209{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006210 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006211 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006212 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006213 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006214 int ret;
6215
Jiri Olsa67516842013-07-09 18:56:31 +02006216 if (!perf_event_comm_match(event))
6217 return;
6218
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006219 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
6220 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006221 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006222
6223 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006224 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006225
6226 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
6227 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
6228
6229 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02006230 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006231 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006232
6233 perf_event__output_id_sample(event, &handle, &sample);
6234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006235 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006236out:
6237 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006238}
6239
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006240static void perf_event_comm_event(struct perf_comm_event *comm_event)
6241{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006242 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006243 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006244
6245 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01006246 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006247 size = ALIGN(strlen(comm)+1, sizeof(u64));
6248
6249 comm_event->comm = comm;
6250 comm_event->comm_size = size;
6251
6252 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006253
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006254 perf_iterate_sb(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006255 comm_event,
6256 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006257}
6258
Adrian Hunter82b89772014-05-28 11:45:04 +03006259void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006260{
6261 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006262
6263 if (!atomic_read(&nr_comm_events))
6264 return;
6265
6266 comm_event = (struct perf_comm_event){
6267 .task = task,
6268 /* .comm */
6269 /* .comm_size */
6270 .event_id = {
6271 .header = {
6272 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03006273 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006274 /* .size */
6275 },
6276 /* .pid */
6277 /* .tid */
6278 },
6279 };
6280
6281 perf_event_comm_event(&comm_event);
6282}
6283
6284/*
6285 * mmap tracking
6286 */
6287
6288struct perf_mmap_event {
6289 struct vm_area_struct *vma;
6290
6291 const char *file_name;
6292 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006293 int maj, min;
6294 u64 ino;
6295 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006296 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006297
6298 struct {
6299 struct perf_event_header header;
6300
6301 u32 pid;
6302 u32 tid;
6303 u64 start;
6304 u64 len;
6305 u64 pgoff;
6306 } event_id;
6307};
6308
Jiri Olsa67516842013-07-09 18:56:31 +02006309static int perf_event_mmap_match(struct perf_event *event,
6310 void *data)
6311{
6312 struct perf_mmap_event *mmap_event = data;
6313 struct vm_area_struct *vma = mmap_event->vma;
6314 int executable = vma->vm_flags & VM_EXEC;
6315
6316 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02006317 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02006318}
6319
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006320static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006321 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006322{
Jiri Olsa52d857a2013-05-06 18:27:18 +02006323 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006324 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006325 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006326 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006327 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006328
Jiri Olsa67516842013-07-09 18:56:31 +02006329 if (!perf_event_mmap_match(event, data))
6330 return;
6331
Stephane Eranian13d7a242013-08-21 12:10:24 +02006332 if (event->attr.mmap2) {
6333 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6334 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6335 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6336 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03006337 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006338 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6339 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006340 }
6341
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006342 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6343 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006344 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006345 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006346 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006347
6348 mmap_event->event_id.pid = perf_event_pid(event, current);
6349 mmap_event->event_id.tid = perf_event_tid(event, current);
6350
6351 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006352
6353 if (event->attr.mmap2) {
6354 perf_output_put(&handle, mmap_event->maj);
6355 perf_output_put(&handle, mmap_event->min);
6356 perf_output_put(&handle, mmap_event->ino);
6357 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006358 perf_output_put(&handle, mmap_event->prot);
6359 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02006360 }
6361
Frederic Weisbecker76369132011-05-19 19:55:04 +02006362 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006363 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006364
6365 perf_event__output_id_sample(event, &handle, &sample);
6366
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006367 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006368out:
6369 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006370}
6371
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006372static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6373{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006374 struct vm_area_struct *vma = mmap_event->vma;
6375 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006376 int maj = 0, min = 0;
6377 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006378 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006379 unsigned int size;
6380 char tmp[16];
6381 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006382 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006383
6384 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02006385 struct inode *inode;
6386 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006387
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006388 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006389 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006390 name = "//enomem";
6391 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006393 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02006394 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006395 * need to add enough zero bytes after the string to handle
6396 * the 64bit alignment we do later.
6397 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02006398 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006399 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006400 name = "//toolong";
6401 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006402 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02006403 inode = file_inode(vma->vm_file);
6404 dev = inode->i_sb->s_dev;
6405 ino = inode->i_ino;
6406 gen = inode->i_generation;
6407 maj = MAJOR(dev);
6408 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006409
6410 if (vma->vm_flags & VM_READ)
6411 prot |= PROT_READ;
6412 if (vma->vm_flags & VM_WRITE)
6413 prot |= PROT_WRITE;
6414 if (vma->vm_flags & VM_EXEC)
6415 prot |= PROT_EXEC;
6416
6417 if (vma->vm_flags & VM_MAYSHARE)
6418 flags = MAP_SHARED;
6419 else
6420 flags = MAP_PRIVATE;
6421
6422 if (vma->vm_flags & VM_DENYWRITE)
6423 flags |= MAP_DENYWRITE;
6424 if (vma->vm_flags & VM_MAYEXEC)
6425 flags |= MAP_EXECUTABLE;
6426 if (vma->vm_flags & VM_LOCKED)
6427 flags |= MAP_LOCKED;
6428 if (vma->vm_flags & VM_HUGETLB)
6429 flags |= MAP_HUGETLB;
6430
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006431 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006432 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006433 if (vma->vm_ops && vma->vm_ops->name) {
6434 name = (char *) vma->vm_ops->name(vma);
6435 if (name)
6436 goto cpy_name;
6437 }
6438
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006439 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006440 if (name)
6441 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006442
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006443 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006444 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006445 name = "[heap]";
6446 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006447 }
6448 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006449 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006450 name = "[stack]";
6451 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006452 }
6453
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006454 name = "//anon";
6455 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006456 }
6457
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006458cpy_name:
6459 strlcpy(tmp, name, sizeof(tmp));
6460 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006461got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006462 /*
6463 * Since our buffer works in 8 byte units we need to align our string
6464 * size to a multiple of 8. However, we must guarantee the tail end is
6465 * zero'd out to avoid leaking random bits to userspace.
6466 */
6467 size = strlen(name)+1;
6468 while (!IS_ALIGNED(size, sizeof(u64)))
6469 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006470
6471 mmap_event->file_name = name;
6472 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006473 mmap_event->maj = maj;
6474 mmap_event->min = min;
6475 mmap_event->ino = ino;
6476 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006477 mmap_event->prot = prot;
6478 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006479
Stephane Eranian2fe85422013-01-24 16:10:39 +01006480 if (!(vma->vm_flags & VM_EXEC))
6481 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6482
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006483 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6484
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006485 perf_iterate_sb(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006486 mmap_event,
6487 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006488
6489 kfree(buf);
6490}
6491
Alexander Shishkin375637b2016-04-27 18:44:46 +03006492/*
6493 * Whether this @filter depends on a dynamic object which is not loaded
6494 * yet or its load addresses are not known.
6495 */
6496static bool perf_addr_filter_needs_mmap(struct perf_addr_filter *filter)
6497{
6498 return filter->filter && filter->inode;
6499}
6500
6501/*
6502 * Check whether inode and address range match filter criteria.
6503 */
6504static bool perf_addr_filter_match(struct perf_addr_filter *filter,
6505 struct file *file, unsigned long offset,
6506 unsigned long size)
6507{
6508 if (filter->inode != file->f_inode)
6509 return false;
6510
6511 if (filter->offset > offset + size)
6512 return false;
6513
6514 if (filter->offset + filter->size < offset)
6515 return false;
6516
6517 return true;
6518}
6519
6520static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
6521{
6522 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
6523 struct vm_area_struct *vma = data;
6524 unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags;
6525 struct file *file = vma->vm_file;
6526 struct perf_addr_filter *filter;
6527 unsigned int restart = 0, count = 0;
6528
6529 if (!has_addr_filter(event))
6530 return;
6531
6532 if (!file)
6533 return;
6534
6535 raw_spin_lock_irqsave(&ifh->lock, flags);
6536 list_for_each_entry(filter, &ifh->list, entry) {
6537 if (perf_addr_filter_match(filter, file, off,
6538 vma->vm_end - vma->vm_start)) {
6539 event->addr_filters_offs[count] = vma->vm_start;
6540 restart++;
6541 }
6542
6543 count++;
6544 }
6545
6546 if (restart)
6547 event->addr_filters_gen++;
6548 raw_spin_unlock_irqrestore(&ifh->lock, flags);
6549
6550 if (restart)
6551 perf_event_restart(event);
6552}
6553
6554/*
6555 * Adjust all task's events' filters to the new vma
6556 */
6557static void perf_addr_filters_adjust(struct vm_area_struct *vma)
6558{
6559 struct perf_event_context *ctx;
6560 int ctxn;
6561
6562 rcu_read_lock();
6563 for_each_task_context_nr(ctxn) {
6564 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
6565 if (!ctx)
6566 continue;
6567
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006568 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
Alexander Shishkin375637b2016-04-27 18:44:46 +03006569 }
6570 rcu_read_unlock();
6571}
6572
Eric B Munson3af9e852010-05-18 15:30:49 +01006573void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006574{
6575 struct perf_mmap_event mmap_event;
6576
6577 if (!atomic_read(&nr_mmap_events))
6578 return;
6579
6580 mmap_event = (struct perf_mmap_event){
6581 .vma = vma,
6582 /* .file_name */
6583 /* .file_size */
6584 .event_id = {
6585 .header = {
6586 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006587 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006588 /* .size */
6589 },
6590 /* .pid */
6591 /* .tid */
6592 .start = vma->vm_start,
6593 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006594 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006596 /* .maj (attr_mmap2 only) */
6597 /* .min (attr_mmap2 only) */
6598 /* .ino (attr_mmap2 only) */
6599 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006600 /* .prot (attr_mmap2 only) */
6601 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006602 };
6603
Alexander Shishkin375637b2016-04-27 18:44:46 +03006604 perf_addr_filters_adjust(vma);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006605 perf_event_mmap_event(&mmap_event);
6606}
6607
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006608void perf_event_aux_event(struct perf_event *event, unsigned long head,
6609 unsigned long size, u64 flags)
6610{
6611 struct perf_output_handle handle;
6612 struct perf_sample_data sample;
6613 struct perf_aux_event {
6614 struct perf_event_header header;
6615 u64 offset;
6616 u64 size;
6617 u64 flags;
6618 } rec = {
6619 .header = {
6620 .type = PERF_RECORD_AUX,
6621 .misc = 0,
6622 .size = sizeof(rec),
6623 },
6624 .offset = head,
6625 .size = size,
6626 .flags = flags,
6627 };
6628 int ret;
6629
6630 perf_event_header__init_id(&rec.header, &sample, event);
6631 ret = perf_output_begin(&handle, event, rec.header.size);
6632
6633 if (ret)
6634 return;
6635
6636 perf_output_put(&handle, rec);
6637 perf_event__output_id_sample(event, &handle, &sample);
6638
6639 perf_output_end(&handle);
6640}
6641
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006642/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006643 * Lost/dropped samples logging
6644 */
6645void perf_log_lost_samples(struct perf_event *event, u64 lost)
6646{
6647 struct perf_output_handle handle;
6648 struct perf_sample_data sample;
6649 int ret;
6650
6651 struct {
6652 struct perf_event_header header;
6653 u64 lost;
6654 } lost_samples_event = {
6655 .header = {
6656 .type = PERF_RECORD_LOST_SAMPLES,
6657 .misc = 0,
6658 .size = sizeof(lost_samples_event),
6659 },
6660 .lost = lost,
6661 };
6662
6663 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6664
6665 ret = perf_output_begin(&handle, event,
6666 lost_samples_event.header.size);
6667 if (ret)
6668 return;
6669
6670 perf_output_put(&handle, lost_samples_event);
6671 perf_event__output_id_sample(event, &handle, &sample);
6672 perf_output_end(&handle);
6673}
6674
6675/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006676 * context_switch tracking
6677 */
6678
6679struct perf_switch_event {
6680 struct task_struct *task;
6681 struct task_struct *next_prev;
6682
6683 struct {
6684 struct perf_event_header header;
6685 u32 next_prev_pid;
6686 u32 next_prev_tid;
6687 } event_id;
6688};
6689
6690static int perf_event_switch_match(struct perf_event *event)
6691{
6692 return event->attr.context_switch;
6693}
6694
6695static void perf_event_switch_output(struct perf_event *event, void *data)
6696{
6697 struct perf_switch_event *se = data;
6698 struct perf_output_handle handle;
6699 struct perf_sample_data sample;
6700 int ret;
6701
6702 if (!perf_event_switch_match(event))
6703 return;
6704
6705 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6706 if (event->ctx->task) {
6707 se->event_id.header.type = PERF_RECORD_SWITCH;
6708 se->event_id.header.size = sizeof(se->event_id.header);
6709 } else {
6710 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6711 se->event_id.header.size = sizeof(se->event_id);
6712 se->event_id.next_prev_pid =
6713 perf_event_pid(event, se->next_prev);
6714 se->event_id.next_prev_tid =
6715 perf_event_tid(event, se->next_prev);
6716 }
6717
6718 perf_event_header__init_id(&se->event_id.header, &sample, event);
6719
6720 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6721 if (ret)
6722 return;
6723
6724 if (event->ctx->task)
6725 perf_output_put(&handle, se->event_id.header);
6726 else
6727 perf_output_put(&handle, se->event_id);
6728
6729 perf_event__output_id_sample(event, &handle, &sample);
6730
6731 perf_output_end(&handle);
6732}
6733
6734static void perf_event_switch(struct task_struct *task,
6735 struct task_struct *next_prev, bool sched_in)
6736{
6737 struct perf_switch_event switch_event;
6738
6739 /* N.B. caller checks nr_switch_events != 0 */
6740
6741 switch_event = (struct perf_switch_event){
6742 .task = task,
6743 .next_prev = next_prev,
6744 .event_id = {
6745 .header = {
6746 /* .type */
6747 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6748 /* .size */
6749 },
6750 /* .next_prev_pid */
6751 /* .next_prev_tid */
6752 },
6753 };
6754
Peter Zijlstraaab5b712016-05-12 17:26:46 +02006755 perf_iterate_sb(perf_event_switch_output,
Adrian Hunter45ac1402015-07-21 12:44:02 +03006756 &switch_event,
6757 NULL);
6758}
6759
6760/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006761 * IRQ throttle logging
6762 */
6763
6764static void perf_log_throttle(struct perf_event *event, int enable)
6765{
6766 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006767 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006768 int ret;
6769
6770 struct {
6771 struct perf_event_header header;
6772 u64 time;
6773 u64 id;
6774 u64 stream_id;
6775 } throttle_event = {
6776 .header = {
6777 .type = PERF_RECORD_THROTTLE,
6778 .misc = 0,
6779 .size = sizeof(throttle_event),
6780 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006781 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006782 .id = primary_event_id(event),
6783 .stream_id = event->id,
6784 };
6785
6786 if (enable)
6787 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6788
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006789 perf_event_header__init_id(&throttle_event.header, &sample, event);
6790
6791 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006792 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006793 if (ret)
6794 return;
6795
6796 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006797 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006798 perf_output_end(&handle);
6799}
6800
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006801static void perf_log_itrace_start(struct perf_event *event)
6802{
6803 struct perf_output_handle handle;
6804 struct perf_sample_data sample;
6805 struct perf_aux_event {
6806 struct perf_event_header header;
6807 u32 pid;
6808 u32 tid;
6809 } rec;
6810 int ret;
6811
6812 if (event->parent)
6813 event = event->parent;
6814
6815 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6816 event->hw.itrace_started)
6817 return;
6818
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006819 rec.header.type = PERF_RECORD_ITRACE_START;
6820 rec.header.misc = 0;
6821 rec.header.size = sizeof(rec);
6822 rec.pid = perf_event_pid(event, current);
6823 rec.tid = perf_event_tid(event, current);
6824
6825 perf_event_header__init_id(&rec.header, &sample, event);
6826 ret = perf_output_begin(&handle, event, rec.header.size);
6827
6828 if (ret)
6829 return;
6830
6831 perf_output_put(&handle, rec);
6832 perf_event__output_id_sample(event, &handle, &sample);
6833
6834 perf_output_end(&handle);
6835}
6836
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006837/*
6838 * Generic event overflow handling, sampling.
6839 */
6840
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006841static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006842 int throttle, struct perf_sample_data *data,
6843 struct pt_regs *regs)
6844{
6845 int events = atomic_read(&event->event_limit);
6846 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006847 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006848 int ret = 0;
6849
Peter Zijlstra96398822010-11-24 18:55:29 +01006850 /*
6851 * Non-sampling counters might still use the PMI to fold short
6852 * hardware counters, ignore those.
6853 */
6854 if (unlikely(!is_sampling_event(event)))
6855 return 0;
6856
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006857 seq = __this_cpu_read(perf_throttled_seq);
6858 if (seq != hwc->interrupts_seq) {
6859 hwc->interrupts_seq = seq;
6860 hwc->interrupts = 1;
6861 } else {
6862 hwc->interrupts++;
6863 if (unlikely(throttle
6864 && hwc->interrupts >= max_samples_per_tick)) {
6865 __this_cpu_inc(perf_throttled_count);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02006866 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
Peter Zijlstra163ec432011-02-16 11:22:34 +01006867 hwc->interrupts = MAX_INTERRUPTS;
6868 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006869 ret = 1;
6870 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006871 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006872
6873 if (event->attr.freq) {
6874 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01006875 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006876
Peter Zijlstraabd50712010-01-26 18:50:16 +01006877 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006878
Peter Zijlstraabd50712010-01-26 18:50:16 +01006879 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01006880 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006881 }
6882
6883 /*
6884 * XXX event_limit might not quite work as expected on inherited
6885 * events
6886 */
6887
6888 event->pending_kill = POLL_IN;
6889 if (events && atomic_dec_and_test(&event->event_limit)) {
6890 ret = 1;
6891 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006892 event->pending_disable = 1;
6893 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006894 }
6895
Wang Nan18794452016-03-28 06:41:30 +00006896 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006897
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006898 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006899 event->pending_wakeup = 1;
6900 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02006901 }
6902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903 return ret;
6904}
6905
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006906int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006907 struct perf_sample_data *data,
6908 struct pt_regs *regs)
6909{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006910 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006911}
6912
6913/*
6914 * Generic software event infrastructure
6915 */
6916
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006917struct swevent_htable {
6918 struct swevent_hlist *swevent_hlist;
6919 struct mutex hlist_mutex;
6920 int hlist_refcount;
6921
6922 /* Recursion avoidance in each contexts */
6923 int recursion[PERF_NR_CONTEXTS];
6924};
6925
6926static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6927
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006928/*
6929 * We directly increment event->count and keep a second value in
6930 * event->hw.period_left to count intervals. This period event
6931 * is kept in the range [-sample_period, 0] so that we can use the
6932 * sign as trigger.
6933 */
6934
Jiri Olsaab573842013-05-01 17:25:44 +02006935u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006936{
6937 struct hw_perf_event *hwc = &event->hw;
6938 u64 period = hwc->last_period;
6939 u64 nr, offset;
6940 s64 old, val;
6941
6942 hwc->last_period = hwc->sample_period;
6943
6944again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02006945 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006946 if (val < 0)
6947 return 0;
6948
6949 nr = div64_u64(period + val, period);
6950 offset = nr * period;
6951 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02006952 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006953 goto again;
6954
6955 return nr;
6956}
6957
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006958static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006959 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006960 struct pt_regs *regs)
6961{
6962 struct hw_perf_event *hwc = &event->hw;
6963 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006964
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006965 if (!overflow)
6966 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006967
6968 if (hwc->interrupts == MAX_INTERRUPTS)
6969 return;
6970
6971 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006972 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006973 data, regs)) {
6974 /*
6975 * We inhibit the overflow from happening when
6976 * hwc->interrupts == MAX_INTERRUPTS.
6977 */
6978 break;
6979 }
6980 throttle = 1;
6981 }
6982}
6983
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006984static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006985 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986 struct pt_regs *regs)
6987{
6988 struct hw_perf_event *hwc = &event->hw;
6989
Peter Zijlstrae7850592010-05-21 14:43:08 +02006990 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006991
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006992 if (!regs)
6993 return;
6994
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006995 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006996 return;
6997
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03006998 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6999 data->period = nr;
7000 return perf_swevent_overflow(event, 1, data, regs);
7001 } else
7002 data->period = event->hw.last_period;
7003
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007004 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007005 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007006
Peter Zijlstrae7850592010-05-21 14:43:08 +02007007 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01007008 return;
7009
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007010 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007011}
7012
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007013static int perf_exclude_event(struct perf_event *event,
7014 struct pt_regs *regs)
7015{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007016 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01007017 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007018
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007019 if (regs) {
7020 if (event->attr.exclude_user && user_mode(regs))
7021 return 1;
7022
7023 if (event->attr.exclude_kernel && !user_mode(regs))
7024 return 1;
7025 }
7026
7027 return 0;
7028}
7029
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007030static int perf_swevent_match(struct perf_event *event,
7031 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08007032 u32 event_id,
7033 struct perf_sample_data *data,
7034 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007035{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007036 if (event->attr.type != type)
7037 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007038
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007039 if (event->attr.config != event_id)
7040 return 0;
7041
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007042 if (perf_exclude_event(event, regs))
7043 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044
7045 return 1;
7046}
7047
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007048static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007049{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007050 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007051
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007052 return hash_64(val, SWEVENT_HLIST_BITS);
7053}
7054
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007055static inline struct hlist_head *
7056__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007057{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007058 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007059
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007060 return &hlist->heads[hash];
7061}
7062
7063/* For the read side: events when they trigger */
7064static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007065find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007066{
7067 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007068
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007069 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007070 if (!hlist)
7071 return NULL;
7072
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007073 return __find_swevent_head(hlist, type, event_id);
7074}
7075
7076/* For the event head insertion and removal in the hlist */
7077static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007078find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007079{
7080 struct swevent_hlist *hlist;
7081 u32 event_id = event->attr.config;
7082 u64 type = event->attr.type;
7083
7084 /*
7085 * Event scheduling is always serialized against hlist allocation
7086 * and release. Which makes the protected version suitable here.
7087 * The context lock guarantees that.
7088 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007089 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007090 lockdep_is_held(&event->ctx->lock));
7091 if (!hlist)
7092 return NULL;
7093
7094 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007095}
7096
7097static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007098 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007099 struct perf_sample_data *data,
7100 struct pt_regs *regs)
7101{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007102 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007103 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007104 struct hlist_head *head;
7105
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007106 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007107 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007108 if (!head)
7109 goto end;
7110
Sasha Levinb67bfe02013-02-27 17:06:00 -08007111 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08007112 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007113 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007114 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007115end:
7116 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007117}
7118
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007119DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
7120
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007121int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007122{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007123 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007124
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007125 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007126}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01007127EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007128
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01007129inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007130{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007131 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007132
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007133 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01007134}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007135
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007136void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007137{
Ingo Molnara4234bf2009-11-23 10:57:59 +01007138 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007139
7140 if (WARN_ON_ONCE(!regs))
7141 return;
7142
7143 perf_sample_data_init(&data, addr, 0);
7144 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
7145}
7146
7147void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
7148{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007149 int rctx;
7150
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007151 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007152 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007153 if (unlikely(rctx < 0))
7154 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007155
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007156 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01007157
7158 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01007159fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007160 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007161}
7162
7163static void perf_swevent_read(struct perf_event *event)
7164{
7165}
7166
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007167static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05007169 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007170 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007171 struct hlist_head *head;
7172
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007173 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007174 hwc->last_period = hwc->sample_period;
7175 perf_swevent_set_period(event);
7176 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007177
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007178 hwc->state = !(flags & PERF_EF_START);
7179
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007180 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01007181 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007182 return -EINVAL;
7183
7184 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08007185 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007186
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007187 return 0;
7188}
7189
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007190static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007191{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007192 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007193}
7194
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007195static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007196{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007197 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007198}
7199
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007200static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007201{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007202 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02007203}
7204
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007205/* Deref the hlist from the update side */
7206static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007207swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007208{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007209 return rcu_dereference_protected(swhash->swevent_hlist,
7210 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007211}
7212
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007213static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007214{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007215 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007216
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02007217 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007218 return;
7219
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03007220 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08007221 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007222}
7223
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007224static void swevent_hlist_put_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007225{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007226 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007227
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007228 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007229
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007230 if (!--swhash->hlist_refcount)
7231 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007232
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007233 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007234}
7235
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007236static void swevent_hlist_put(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007237{
7238 int cpu;
7239
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007240 for_each_possible_cpu(cpu)
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007241 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007242}
7243
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007244static int swevent_hlist_get_cpu(int cpu)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007245{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007246 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007247 int err = 0;
7248
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007249 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007250 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007251 struct swevent_hlist *hlist;
7252
7253 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
7254 if (!hlist) {
7255 err = -ENOMEM;
7256 goto exit;
7257 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007258 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007259 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007260 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007261exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007262 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007263
7264 return err;
7265}
7266
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007267static int swevent_hlist_get(void)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007268{
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007269 int err, cpu, failed_cpu;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007270
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007271 get_online_cpus();
7272 for_each_possible_cpu(cpu) {
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007273 err = swevent_hlist_get_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007274 if (err) {
7275 failed_cpu = cpu;
7276 goto fail;
7277 }
7278 }
7279 put_online_cpus();
7280
7281 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02007282fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007283 for_each_possible_cpu(cpu) {
7284 if (cpu == failed_cpu)
7285 break;
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007286 swevent_hlist_put_cpu(cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007287 }
7288
7289 put_online_cpus();
7290 return err;
7291}
7292
Ingo Molnarc5905af2012-02-24 08:31:31 +01007293struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007294
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007295static void sw_perf_event_destroy(struct perf_event *event)
7296{
7297 u64 event_id = event->attr.config;
7298
7299 WARN_ON(event->parent);
7300
Ingo Molnarc5905af2012-02-24 08:31:31 +01007301 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007302 swevent_hlist_put();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007303}
7304
7305static int perf_swevent_init(struct perf_event *event)
7306{
Tommi Rantala8176cce2013-04-13 22:49:14 +03007307 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007308
7309 if (event->attr.type != PERF_TYPE_SOFTWARE)
7310 return -ENOENT;
7311
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007312 /*
7313 * no branch sampling for software events
7314 */
7315 if (has_branch_stack(event))
7316 return -EOPNOTSUPP;
7317
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007318 switch (event_id) {
7319 case PERF_COUNT_SW_CPU_CLOCK:
7320 case PERF_COUNT_SW_TASK_CLOCK:
7321 return -ENOENT;
7322
7323 default:
7324 break;
7325 }
7326
Dan Carpenterce677832010-10-24 21:50:42 +02007327 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007328 return -ENOENT;
7329
7330 if (!event->parent) {
7331 int err;
7332
Thomas Gleixner3b364d72016-02-09 20:11:40 +00007333 err = swevent_hlist_get();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007334 if (err)
7335 return err;
7336
Ingo Molnarc5905af2012-02-24 08:31:31 +01007337 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007338 event->destroy = sw_perf_event_destroy;
7339 }
7340
7341 return 0;
7342}
7343
7344static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007345 .task_ctx_nr = perf_sw_context,
7346
Peter Zijlstra34f43922015-02-20 14:05:38 +01007347 .capabilities = PERF_PMU_CAP_NO_NMI,
7348
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007349 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007350 .add = perf_swevent_add,
7351 .del = perf_swevent_del,
7352 .start = perf_swevent_start,
7353 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007354 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007355};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007356
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007357#ifdef CONFIG_EVENT_TRACING
7358
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007359static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007360 struct perf_sample_data *data)
7361{
7362 void *record = data->raw->data;
7363
Peter Zijlstrab71b4372015-11-02 10:50:51 +01007364 /* only top level events have filters set */
7365 if (event->parent)
7366 event = event->parent;
7367
Frederic Weisbecker95476b62010-04-14 23:42:18 +02007368 if (likely(!event->filter) || filter_match_preds(event->filter, record))
7369 return 1;
7370 return 0;
7371}
7372
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007373static int perf_tp_event_match(struct perf_event *event,
7374 struct perf_sample_data *data,
7375 struct pt_regs *regs)
7376{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01007377 if (event->hw.state & PERF_HES_STOPPED)
7378 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02007379 /*
7380 * All tracepoints are from kernel-space.
7381 */
7382 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007383 return 0;
7384
7385 if (!perf_tp_filter_match(event, data))
7386 return 0;
7387
7388 return 1;
7389}
7390
7391void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007392 struct pt_regs *regs, struct hlist_head *head, int rctx,
7393 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007394{
7395 struct perf_sample_data data;
7396 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007397
7398 struct perf_raw_record raw = {
7399 .size = entry_size,
7400 .data = record,
7401 };
7402
Robert Richterfd0d0002012-04-02 20:19:08 +02007403 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007404 data.raw = &raw;
7405
Sasha Levinb67bfe02013-02-27 17:06:00 -08007406 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007407 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007408 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007409 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007410
Andrew Vagine6dab5f2012-07-11 18:14:58 +04007411 /*
7412 * If we got specified a target task, also iterate its context and
7413 * deliver this event there too.
7414 */
7415 if (task && task != current) {
7416 struct perf_event_context *ctx;
7417 struct trace_entry *entry = record;
7418
7419 rcu_read_lock();
7420 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7421 if (!ctx)
7422 goto unlock;
7423
7424 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7425 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7426 continue;
7427 if (event->attr.config != entry->type)
7428 continue;
7429 if (perf_tp_event_match(event, &data, regs))
7430 perf_swevent_event(event, count, &data, regs);
7431 }
7432unlock:
7433 rcu_read_unlock();
7434 }
7435
Peter Zijlstraecc55f82010-05-21 15:11:34 +02007436 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007437}
7438EXPORT_SYMBOL_GPL(perf_tp_event);
7439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007440static void tp_perf_event_destroy(struct perf_event *event)
7441{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007442 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007443}
7444
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007445static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007446{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007447 int err;
7448
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007449 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7450 return -ENOENT;
7451
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007452 /*
7453 * no branch sampling for tracepoint events
7454 */
7455 if (has_branch_stack(event))
7456 return -EOPNOTSUPP;
7457
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02007458 err = perf_trace_init(event);
7459 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007460 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007461
7462 event->destroy = tp_perf_event_destroy;
7463
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007464 return 0;
7465}
7466
7467static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007468 .task_ctx_nr = perf_sw_context,
7469
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007470 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007471 .add = perf_trace_add,
7472 .del = perf_trace_del,
7473 .start = perf_swevent_start,
7474 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007475 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007476};
7477
7478static inline void perf_tp_register(void)
7479{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007480 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007481}
Li Zefan6fb29152009-10-15 11:21:42 +08007482
Li Zefan6fb29152009-10-15 11:21:42 +08007483static void perf_event_free_filter(struct perf_event *event)
7484{
7485 ftrace_profile_free_filter(event);
7486}
7487
Alexei Starovoitov25415172015-03-25 12:49:20 -07007488static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7489{
7490 struct bpf_prog *prog;
7491
7492 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7493 return -EINVAL;
7494
7495 if (event->tp_event->prog)
7496 return -EEXIST;
7497
Wang Nan04a22fa2015-07-01 02:13:50 +00007498 if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
7499 /* bpf programs can only be attached to u/kprobes */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007500 return -EINVAL;
7501
7502 prog = bpf_prog_get(prog_fd);
7503 if (IS_ERR(prog))
7504 return PTR_ERR(prog);
7505
Linus Torvalds6c373ca2015-04-15 09:00:47 -07007506 if (prog->type != BPF_PROG_TYPE_KPROBE) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007507 /* valid fd, but invalid bpf program type */
7508 bpf_prog_put(prog);
7509 return -EINVAL;
7510 }
7511
7512 event->tp_event->prog = prog;
7513
7514 return 0;
7515}
7516
7517static void perf_event_free_bpf_prog(struct perf_event *event)
7518{
7519 struct bpf_prog *prog;
7520
7521 if (!event->tp_event)
7522 return;
7523
7524 prog = event->tp_event->prog;
7525 if (prog) {
7526 event->tp_event->prog = NULL;
7527 bpf_prog_put(prog);
7528 }
7529}
7530
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007531#else
Li Zefan6fb29152009-10-15 11:21:42 +08007532
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007533static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007534{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007535}
Li Zefan6fb29152009-10-15 11:21:42 +08007536
Li Zefan6fb29152009-10-15 11:21:42 +08007537static void perf_event_free_filter(struct perf_event *event)
7538{
7539}
7540
Alexei Starovoitov25415172015-03-25 12:49:20 -07007541static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7542{
7543 return -ENOENT;
7544}
7545
7546static void perf_event_free_bpf_prog(struct perf_event *event)
7547{
7548}
Li Zefan07b139c2009-12-21 14:27:35 +08007549#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007550
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007551#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007552void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007553{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007554 struct perf_sample_data sample;
7555 struct pt_regs *regs = data;
7556
Robert Richterfd0d0002012-04-02 20:19:08 +02007557 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007558
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007559 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007560 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007561}
7562#endif
7563
Alexander Shishkin375637b2016-04-27 18:44:46 +03007564/*
7565 * Allocate a new address filter
7566 */
7567static struct perf_addr_filter *
7568perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
7569{
7570 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
7571 struct perf_addr_filter *filter;
7572
7573 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
7574 if (!filter)
7575 return NULL;
7576
7577 INIT_LIST_HEAD(&filter->entry);
7578 list_add_tail(&filter->entry, filters);
7579
7580 return filter;
7581}
7582
7583static void free_filters_list(struct list_head *filters)
7584{
7585 struct perf_addr_filter *filter, *iter;
7586
7587 list_for_each_entry_safe(filter, iter, filters, entry) {
7588 if (filter->inode)
7589 iput(filter->inode);
7590 list_del(&filter->entry);
7591 kfree(filter);
7592 }
7593}
7594
7595/*
7596 * Free existing address filters and optionally install new ones
7597 */
7598static void perf_addr_filters_splice(struct perf_event *event,
7599 struct list_head *head)
7600{
7601 unsigned long flags;
7602 LIST_HEAD(list);
7603
7604 if (!has_addr_filter(event))
7605 return;
7606
7607 /* don't bother with children, they don't have their own filters */
7608 if (event->parent)
7609 return;
7610
7611 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
7612
7613 list_splice_init(&event->addr_filters.list, &list);
7614 if (head)
7615 list_splice(head, &event->addr_filters.list);
7616
7617 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
7618
7619 free_filters_list(&list);
7620}
7621
7622/*
7623 * Scan through mm's vmas and see if one of them matches the
7624 * @filter; if so, adjust filter's address range.
7625 * Called with mm::mmap_sem down for reading.
7626 */
7627static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter,
7628 struct mm_struct *mm)
7629{
7630 struct vm_area_struct *vma;
7631
7632 for (vma = mm->mmap; vma; vma = vma->vm_next) {
7633 struct file *file = vma->vm_file;
7634 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
7635 unsigned long vma_size = vma->vm_end - vma->vm_start;
7636
7637 if (!file)
7638 continue;
7639
7640 if (!perf_addr_filter_match(filter, file, off, vma_size))
7641 continue;
7642
7643 return vma->vm_start;
7644 }
7645
7646 return 0;
7647}
7648
7649/*
7650 * Update event's address range filters based on the
7651 * task's existing mappings, if any.
7652 */
7653static void perf_event_addr_filters_apply(struct perf_event *event)
7654{
7655 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7656 struct task_struct *task = READ_ONCE(event->ctx->task);
7657 struct perf_addr_filter *filter;
7658 struct mm_struct *mm = NULL;
7659 unsigned int count = 0;
7660 unsigned long flags;
7661
7662 /*
7663 * We may observe TASK_TOMBSTONE, which means that the event tear-down
7664 * will stop on the parent's child_mutex that our caller is also holding
7665 */
7666 if (task == TASK_TOMBSTONE)
7667 return;
7668
7669 mm = get_task_mm(event->ctx->task);
7670 if (!mm)
7671 goto restart;
7672
7673 down_read(&mm->mmap_sem);
7674
7675 raw_spin_lock_irqsave(&ifh->lock, flags);
7676 list_for_each_entry(filter, &ifh->list, entry) {
7677 event->addr_filters_offs[count] = 0;
7678
7679 if (perf_addr_filter_needs_mmap(filter))
7680 event->addr_filters_offs[count] =
7681 perf_addr_filter_apply(filter, mm);
7682
7683 count++;
7684 }
7685
7686 event->addr_filters_gen++;
7687 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7688
7689 up_read(&mm->mmap_sem);
7690
7691 mmput(mm);
7692
7693restart:
7694 perf_event_restart(event);
7695}
7696
7697/*
7698 * Address range filtering: limiting the data to certain
7699 * instruction address ranges. Filters are ioctl()ed to us from
7700 * userspace as ascii strings.
7701 *
7702 * Filter string format:
7703 *
7704 * ACTION RANGE_SPEC
7705 * where ACTION is one of the
7706 * * "filter": limit the trace to this region
7707 * * "start": start tracing from this address
7708 * * "stop": stop tracing at this address/region;
7709 * RANGE_SPEC is
7710 * * for kernel addresses: <start address>[/<size>]
7711 * * for object files: <start address>[/<size>]@</path/to/object/file>
7712 *
7713 * if <size> is not specified, the range is treated as a single address.
7714 */
7715enum {
7716 IF_ACT_FILTER,
7717 IF_ACT_START,
7718 IF_ACT_STOP,
7719 IF_SRC_FILE,
7720 IF_SRC_KERNEL,
7721 IF_SRC_FILEADDR,
7722 IF_SRC_KERNELADDR,
7723};
7724
7725enum {
7726 IF_STATE_ACTION = 0,
7727 IF_STATE_SOURCE,
7728 IF_STATE_END,
7729};
7730
7731static const match_table_t if_tokens = {
7732 { IF_ACT_FILTER, "filter" },
7733 { IF_ACT_START, "start" },
7734 { IF_ACT_STOP, "stop" },
7735 { IF_SRC_FILE, "%u/%u@%s" },
7736 { IF_SRC_KERNEL, "%u/%u" },
7737 { IF_SRC_FILEADDR, "%u@%s" },
7738 { IF_SRC_KERNELADDR, "%u" },
7739};
7740
7741/*
7742 * Address filter string parser
7743 */
7744static int
7745perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
7746 struct list_head *filters)
7747{
7748 struct perf_addr_filter *filter = NULL;
7749 char *start, *orig, *filename = NULL;
7750 struct path path;
7751 substring_t args[MAX_OPT_ARGS];
7752 int state = IF_STATE_ACTION, token;
7753 unsigned int kernel = 0;
7754 int ret = -EINVAL;
7755
7756 orig = fstr = kstrdup(fstr, GFP_KERNEL);
7757 if (!fstr)
7758 return -ENOMEM;
7759
7760 while ((start = strsep(&fstr, " ,\n")) != NULL) {
7761 ret = -EINVAL;
7762
7763 if (!*start)
7764 continue;
7765
7766 /* filter definition begins */
7767 if (state == IF_STATE_ACTION) {
7768 filter = perf_addr_filter_new(event, filters);
7769 if (!filter)
7770 goto fail;
7771 }
7772
7773 token = match_token(start, if_tokens, args);
7774 switch (token) {
7775 case IF_ACT_FILTER:
7776 case IF_ACT_START:
7777 filter->filter = 1;
7778
7779 case IF_ACT_STOP:
7780 if (state != IF_STATE_ACTION)
7781 goto fail;
7782
7783 state = IF_STATE_SOURCE;
7784 break;
7785
7786 case IF_SRC_KERNELADDR:
7787 case IF_SRC_KERNEL:
7788 kernel = 1;
7789
7790 case IF_SRC_FILEADDR:
7791 case IF_SRC_FILE:
7792 if (state != IF_STATE_SOURCE)
7793 goto fail;
7794
7795 if (token == IF_SRC_FILE || token == IF_SRC_KERNEL)
7796 filter->range = 1;
7797
7798 *args[0].to = 0;
7799 ret = kstrtoul(args[0].from, 0, &filter->offset);
7800 if (ret)
7801 goto fail;
7802
7803 if (filter->range) {
7804 *args[1].to = 0;
7805 ret = kstrtoul(args[1].from, 0, &filter->size);
7806 if (ret)
7807 goto fail;
7808 }
7809
7810 if (token == IF_SRC_FILE) {
7811 filename = match_strdup(&args[2]);
7812 if (!filename) {
7813 ret = -ENOMEM;
7814 goto fail;
7815 }
7816 }
7817
7818 state = IF_STATE_END;
7819 break;
7820
7821 default:
7822 goto fail;
7823 }
7824
7825 /*
7826 * Filter definition is fully parsed, validate and install it.
7827 * Make sure that it doesn't contradict itself or the event's
7828 * attribute.
7829 */
7830 if (state == IF_STATE_END) {
7831 if (kernel && event->attr.exclude_kernel)
7832 goto fail;
7833
7834 if (!kernel) {
7835 if (!filename)
7836 goto fail;
7837
7838 /* look up the path and grab its inode */
7839 ret = kern_path(filename, LOOKUP_FOLLOW, &path);
7840 if (ret)
7841 goto fail_free_name;
7842
7843 filter->inode = igrab(d_inode(path.dentry));
7844 path_put(&path);
7845 kfree(filename);
7846 filename = NULL;
7847
7848 ret = -EINVAL;
7849 if (!filter->inode ||
7850 !S_ISREG(filter->inode->i_mode))
7851 /* free_filters_list() will iput() */
7852 goto fail;
7853 }
7854
7855 /* ready to consume more filters */
7856 state = IF_STATE_ACTION;
7857 filter = NULL;
7858 }
7859 }
7860
7861 if (state != IF_STATE_ACTION)
7862 goto fail;
7863
7864 kfree(orig);
7865
7866 return 0;
7867
7868fail_free_name:
7869 kfree(filename);
7870fail:
7871 free_filters_list(filters);
7872 kfree(orig);
7873
7874 return ret;
7875}
7876
7877static int
7878perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
7879{
7880 LIST_HEAD(filters);
7881 int ret;
7882
7883 /*
7884 * Since this is called in perf_ioctl() path, we're already holding
7885 * ctx::mutex.
7886 */
7887 lockdep_assert_held(&event->ctx->mutex);
7888
7889 if (WARN_ON_ONCE(event->parent))
7890 return -EINVAL;
7891
7892 /*
7893 * For now, we only support filtering in per-task events; doing so
7894 * for CPU-wide events requires additional context switching trickery,
7895 * since same object code will be mapped at different virtual
7896 * addresses in different processes.
7897 */
7898 if (!event->ctx->task)
7899 return -EOPNOTSUPP;
7900
7901 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
7902 if (ret)
7903 return ret;
7904
7905 ret = event->pmu->addr_filters_validate(&filters);
7906 if (ret) {
7907 free_filters_list(&filters);
7908 return ret;
7909 }
7910
7911 /* remove existing filters, if any */
7912 perf_addr_filters_splice(event, &filters);
7913
7914 /* install new filters */
7915 perf_event_for_each_child(event, perf_event_addr_filters_apply);
7916
7917 return ret;
7918}
7919
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03007920static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7921{
7922 char *filter_str;
7923 int ret = -EINVAL;
7924
Alexander Shishkin375637b2016-04-27 18:44:46 +03007925 if ((event->attr.type != PERF_TYPE_TRACEPOINT ||
7926 !IS_ENABLED(CONFIG_EVENT_TRACING)) &&
7927 !has_addr_filter(event))
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03007928 return -EINVAL;
7929
7930 filter_str = strndup_user(arg, PAGE_SIZE);
7931 if (IS_ERR(filter_str))
7932 return PTR_ERR(filter_str);
7933
7934 if (IS_ENABLED(CONFIG_EVENT_TRACING) &&
7935 event->attr.type == PERF_TYPE_TRACEPOINT)
7936 ret = ftrace_profile_set_filter(event, event->attr.config,
7937 filter_str);
Alexander Shishkin375637b2016-04-27 18:44:46 +03007938 else if (has_addr_filter(event))
7939 ret = perf_event_set_addr_filter(event, filter_str);
Alexander Shishkinc796bbb2016-04-27 18:44:42 +03007940
7941 kfree(filter_str);
7942 return ret;
7943}
7944
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007945/*
7946 * hrtimer based swevent callback
7947 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007948
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007949static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007950{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007951 enum hrtimer_restart ret = HRTIMER_RESTART;
7952 struct perf_sample_data data;
7953 struct pt_regs *regs;
7954 struct perf_event *event;
7955 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007956
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007957 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007958
7959 if (event->state != PERF_EVENT_STATE_ACTIVE)
7960 return HRTIMER_NORESTART;
7961
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007962 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007963
Robert Richterfd0d0002012-04-02 20:19:08 +02007964 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007965 regs = get_irq_regs();
7966
7967 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08007968 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02007969 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007970 ret = HRTIMER_NORESTART;
7971 }
7972
7973 period = max_t(u64, 10000, event->hw.sample_period);
7974 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7975
7976 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007977}
7978
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007979static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007980{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007981 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007982 s64 period;
7983
7984 if (!is_sampling_event(event))
7985 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007986
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007987 period = local64_read(&hwc->period_left);
7988 if (period) {
7989 if (period < 0)
7990 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007991
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007992 local64_set(&hwc->period_left, 0);
7993 } else {
7994 period = max_t(u64, 10000, hwc->sample_period);
7995 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00007996 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7997 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007998}
7999
8000static void perf_swevent_cancel_hrtimer(struct perf_event *event)
8001{
8002 struct hw_perf_event *hwc = &event->hw;
8003
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01008004 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008005 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02008006 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008007
8008 hrtimer_cancel(&hwc->hrtimer);
8009 }
8010}
8011
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008012static void perf_swevent_init_hrtimer(struct perf_event *event)
8013{
8014 struct hw_perf_event *hwc = &event->hw;
8015
8016 if (!is_sampling_event(event))
8017 return;
8018
8019 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
8020 hwc->hrtimer.function = perf_swevent_hrtimer;
8021
8022 /*
8023 * Since hrtimers have a fixed rate, we can do a static freq->period
8024 * mapping and avoid the whole period adjust feedback stuff.
8025 */
8026 if (event->attr.freq) {
8027 long freq = event->attr.sample_freq;
8028
8029 event->attr.sample_period = NSEC_PER_SEC / freq;
8030 hwc->sample_period = event->attr.sample_period;
8031 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09008032 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008033 event->attr.freq = 0;
8034 }
8035}
8036
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008037/*
8038 * Software event: cpu wall time clock
8039 */
8040
8041static void cpu_clock_event_update(struct perf_event *event)
8042{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008043 s64 prev;
8044 u64 now;
8045
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008046 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008047 prev = local64_xchg(&event->hw.prev_count, now);
8048 local64_add(now - prev, &event->count);
8049}
8050
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008051static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008052{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008053 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008054 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008055}
8056
8057static void cpu_clock_event_stop(struct perf_event *event, int flags)
8058{
8059 perf_swevent_cancel_hrtimer(event);
8060 cpu_clock_event_update(event);
8061}
8062
8063static int cpu_clock_event_add(struct perf_event *event, int flags)
8064{
8065 if (flags & PERF_EF_START)
8066 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008067 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008068
8069 return 0;
8070}
8071
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008072static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008073{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008074 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008075}
8076
8077static void cpu_clock_event_read(struct perf_event *event)
8078{
8079 cpu_clock_event_update(event);
8080}
8081
8082static int cpu_clock_event_init(struct perf_event *event)
8083{
8084 if (event->attr.type != PERF_TYPE_SOFTWARE)
8085 return -ENOENT;
8086
8087 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
8088 return -ENOENT;
8089
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008090 /*
8091 * no branch sampling for software events
8092 */
8093 if (has_branch_stack(event))
8094 return -EOPNOTSUPP;
8095
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008096 perf_swevent_init_hrtimer(event);
8097
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008098 return 0;
8099}
8100
8101static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008102 .task_ctx_nr = perf_sw_context,
8103
Peter Zijlstra34f43922015-02-20 14:05:38 +01008104 .capabilities = PERF_PMU_CAP_NO_NMI,
8105
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008106 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008107 .add = cpu_clock_event_add,
8108 .del = cpu_clock_event_del,
8109 .start = cpu_clock_event_start,
8110 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008111 .read = cpu_clock_event_read,
8112};
8113
8114/*
8115 * Software event: task time clock
8116 */
8117
8118static void task_clock_event_update(struct perf_event *event, u64 now)
8119{
8120 u64 prev;
8121 s64 delta;
8122
8123 prev = local64_xchg(&event->hw.prev_count, now);
8124 delta = now - prev;
8125 local64_add(delta, &event->count);
8126}
8127
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008128static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008129{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008130 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008131 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008132}
8133
8134static void task_clock_event_stop(struct perf_event *event, int flags)
8135{
8136 perf_swevent_cancel_hrtimer(event);
8137 task_clock_event_update(event, event->ctx->time);
8138}
8139
8140static int task_clock_event_add(struct perf_event *event, int flags)
8141{
8142 if (flags & PERF_EF_START)
8143 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08008144 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008145
8146 return 0;
8147}
8148
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008149static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008150{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008151 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008152}
8153
8154static void task_clock_event_read(struct perf_event *event)
8155{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01008156 u64 now = perf_clock();
8157 u64 delta = now - event->ctx->timestamp;
8158 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008159
8160 task_clock_event_update(event, time);
8161}
8162
8163static int task_clock_event_init(struct perf_event *event)
8164{
8165 if (event->attr.type != PERF_TYPE_SOFTWARE)
8166 return -ENOENT;
8167
8168 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
8169 return -ENOENT;
8170
Stephane Eranian2481c5f2012-02-09 23:20:59 +01008171 /*
8172 * no branch sampling for software events
8173 */
8174 if (has_branch_stack(event))
8175 return -EOPNOTSUPP;
8176
Peter Zijlstraba3dd362011-02-15 12:41:46 +01008177 perf_swevent_init_hrtimer(event);
8178
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008179 return 0;
8180}
8181
8182static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008183 .task_ctx_nr = perf_sw_context,
8184
Peter Zijlstra34f43922015-02-20 14:05:38 +01008185 .capabilities = PERF_PMU_CAP_NO_NMI,
8186
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008187 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02008188 .add = task_clock_event_add,
8189 .del = task_clock_event_del,
8190 .start = task_clock_event_start,
8191 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008192 .read = task_clock_event_read,
8193};
8194
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008195static void perf_pmu_nop_void(struct pmu *pmu)
8196{
8197}
8198
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008199static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
8200{
8201}
8202
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008203static int perf_pmu_nop_int(struct pmu *pmu)
8204{
8205 return 0;
8206}
8207
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008208static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008209
8210static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008211{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008212 __this_cpu_write(nop_txn_flags, flags);
8213
8214 if (flags & ~PERF_PMU_TXN_ADD)
8215 return;
8216
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008217 perf_pmu_disable(pmu);
8218}
8219
8220static int perf_pmu_commit_txn(struct pmu *pmu)
8221{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008222 unsigned int flags = __this_cpu_read(nop_txn_flags);
8223
8224 __this_cpu_write(nop_txn_flags, 0);
8225
8226 if (flags & ~PERF_PMU_TXN_ADD)
8227 return 0;
8228
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008229 perf_pmu_enable(pmu);
8230 return 0;
8231}
8232
8233static void perf_pmu_cancel_txn(struct pmu *pmu)
8234{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008235 unsigned int flags = __this_cpu_read(nop_txn_flags);
8236
8237 __this_cpu_write(nop_txn_flags, 0);
8238
8239 if (flags & ~PERF_PMU_TXN_ADD)
8240 return;
8241
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008242 perf_pmu_enable(pmu);
8243}
8244
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008245static int perf_event_idx_default(struct perf_event *event)
8246{
Peter Zijlstrac719f562014-10-21 11:10:21 +02008247 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008248}
8249
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008250/*
8251 * Ensures all contexts with the same task_ctx_nr have the same
8252 * pmu_cpu_context too.
8253 */
Mark Rutland9e317042014-02-10 17:44:18 +00008254static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008255{
8256 struct pmu *pmu;
8257
8258 if (ctxn < 0)
8259 return NULL;
8260
8261 list_for_each_entry(pmu, &pmus, entry) {
8262 if (pmu->task_ctx_nr == ctxn)
8263 return pmu->pmu_cpu_context;
8264 }
8265
8266 return NULL;
8267}
8268
Peter Zijlstra51676952010-12-07 14:18:20 +01008269static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008270{
Peter Zijlstra51676952010-12-07 14:18:20 +01008271 int cpu;
8272
8273 for_each_possible_cpu(cpu) {
8274 struct perf_cpu_context *cpuctx;
8275
8276 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8277
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008278 if (cpuctx->unique_pmu == old_pmu)
8279 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01008280 }
8281}
8282
8283static void free_pmu_context(struct pmu *pmu)
8284{
8285 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008286
8287 mutex_lock(&pmus_lock);
8288 /*
8289 * Like a real lame refcount.
8290 */
Peter Zijlstra51676952010-12-07 14:18:20 +01008291 list_for_each_entry(i, &pmus, entry) {
8292 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
8293 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008294 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01008295 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008296 }
8297
Peter Zijlstra51676952010-12-07 14:18:20 +01008298 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008299out:
8300 mutex_unlock(&pmus_lock);
8301}
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008302
8303/*
8304 * Let userspace know that this PMU supports address range filtering:
8305 */
8306static ssize_t nr_addr_filters_show(struct device *dev,
8307 struct device_attribute *attr,
8308 char *page)
8309{
8310 struct pmu *pmu = dev_get_drvdata(dev);
8311
8312 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
8313}
8314DEVICE_ATTR_RO(nr_addr_filters);
8315
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008316static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008317
Peter Zijlstraabe43402010-11-17 23:17:37 +01008318static ssize_t
8319type_show(struct device *dev, struct device_attribute *attr, char *page)
8320{
8321 struct pmu *pmu = dev_get_drvdata(dev);
8322
8323 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
8324}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008325static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008326
Stephane Eranian62b85632013-04-03 14:21:34 +02008327static ssize_t
8328perf_event_mux_interval_ms_show(struct device *dev,
8329 struct device_attribute *attr,
8330 char *page)
8331{
8332 struct pmu *pmu = dev_get_drvdata(dev);
8333
8334 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
8335}
8336
Peter Zijlstra272325c2015-04-15 11:41:58 +02008337static DEFINE_MUTEX(mux_interval_mutex);
8338
Stephane Eranian62b85632013-04-03 14:21:34 +02008339static ssize_t
8340perf_event_mux_interval_ms_store(struct device *dev,
8341 struct device_attribute *attr,
8342 const char *buf, size_t count)
8343{
8344 struct pmu *pmu = dev_get_drvdata(dev);
8345 int timer, cpu, ret;
8346
8347 ret = kstrtoint(buf, 0, &timer);
8348 if (ret)
8349 return ret;
8350
8351 if (timer < 1)
8352 return -EINVAL;
8353
8354 /* same value, noting to do */
8355 if (timer == pmu->hrtimer_interval_ms)
8356 return count;
8357
Peter Zijlstra272325c2015-04-15 11:41:58 +02008358 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008359 pmu->hrtimer_interval_ms = timer;
8360
8361 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02008362 get_online_cpus();
8363 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02008364 struct perf_cpu_context *cpuctx;
8365 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
8366 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
8367
Peter Zijlstra272325c2015-04-15 11:41:58 +02008368 cpu_function_call(cpu,
8369 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02008370 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02008371 put_online_cpus();
8372 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02008373
8374 return count;
8375}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008376static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02008377
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008378static struct attribute *pmu_dev_attrs[] = {
8379 &dev_attr_type.attr,
8380 &dev_attr_perf_event_mux_interval_ms.attr,
8381 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008382};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008383ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008384
8385static int pmu_bus_running;
8386static struct bus_type pmu_bus = {
8387 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07008388 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01008389};
8390
8391static void pmu_dev_release(struct device *dev)
8392{
8393 kfree(dev);
8394}
8395
8396static int pmu_dev_alloc(struct pmu *pmu)
8397{
8398 int ret = -ENOMEM;
8399
8400 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
8401 if (!pmu->dev)
8402 goto out;
8403
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01008404 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01008405 device_initialize(pmu->dev);
8406 ret = dev_set_name(pmu->dev, "%s", pmu->name);
8407 if (ret)
8408 goto free_dev;
8409
8410 dev_set_drvdata(pmu->dev, pmu);
8411 pmu->dev->bus = &pmu_bus;
8412 pmu->dev->release = pmu_dev_release;
8413 ret = device_add(pmu->dev);
8414 if (ret)
8415 goto free_dev;
8416
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008417 /* For PMUs with address filters, throw in an extra attribute: */
8418 if (pmu->nr_addr_filters)
8419 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
8420
8421 if (ret)
8422 goto del_dev;
8423
Peter Zijlstraabe43402010-11-17 23:17:37 +01008424out:
8425 return ret;
8426
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008427del_dev:
8428 device_del(pmu->dev);
8429
Peter Zijlstraabe43402010-11-17 23:17:37 +01008430free_dev:
8431 put_device(pmu->dev);
8432 goto out;
8433}
8434
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008435static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008436static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008437
Mischa Jonker03d8e802013-06-04 11:45:48 +02008438int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008439{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008440 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008441
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008442 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008443 ret = -ENOMEM;
8444 pmu->pmu_disable_count = alloc_percpu(int);
8445 if (!pmu->pmu_disable_count)
8446 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008447
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008448 pmu->type = -1;
8449 if (!name)
8450 goto skip_type;
8451 pmu->name = name;
8452
8453 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08008454 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
8455 if (type < 0) {
8456 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008457 goto free_pdc;
8458 }
8459 }
8460 pmu->type = type;
8461
Peter Zijlstraabe43402010-11-17 23:17:37 +01008462 if (pmu_bus_running) {
8463 ret = pmu_dev_alloc(pmu);
8464 if (ret)
8465 goto free_idr;
8466 }
8467
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008468skip_type:
Peter Zijlstra26657842016-03-22 22:09:18 +01008469 if (pmu->task_ctx_nr == perf_hw_context) {
8470 static int hw_context_taken = 0;
8471
Mark Rutland5101ef22016-04-26 11:33:46 +01008472 /*
8473 * Other than systems with heterogeneous CPUs, it never makes
8474 * sense for two PMUs to share perf_hw_context. PMUs which are
8475 * uncore must use perf_invalid_context.
8476 */
8477 if (WARN_ON_ONCE(hw_context_taken &&
8478 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
Peter Zijlstra26657842016-03-22 22:09:18 +01008479 pmu->task_ctx_nr = perf_invalid_context;
8480
8481 hw_context_taken = 1;
8482 }
8483
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008484 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
8485 if (pmu->pmu_cpu_context)
8486 goto got_cpu_context;
8487
Wei Yongjunc4814202013-04-12 11:05:54 +08008488 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008489 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
8490 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01008491 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008492
8493 for_each_possible_cpu(cpu) {
8494 struct perf_cpu_context *cpuctx;
8495
8496 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02008497 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01008498 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02008499 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008500 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02008501
Peter Zijlstra272325c2015-04-15 11:41:58 +02008502 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02008503
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02008504 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008505 }
8506
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008507got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008508 if (!pmu->start_txn) {
8509 if (pmu->pmu_enable) {
8510 /*
8511 * If we have pmu_enable/pmu_disable calls, install
8512 * transaction stubs that use that to try and batch
8513 * hardware accesses.
8514 */
8515 pmu->start_txn = perf_pmu_start_txn;
8516 pmu->commit_txn = perf_pmu_commit_txn;
8517 pmu->cancel_txn = perf_pmu_cancel_txn;
8518 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07008519 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02008520 pmu->commit_txn = perf_pmu_nop_int;
8521 pmu->cancel_txn = perf_pmu_nop_void;
8522 }
8523 }
8524
8525 if (!pmu->pmu_enable) {
8526 pmu->pmu_enable = perf_pmu_nop_void;
8527 pmu->pmu_disable = perf_pmu_nop_void;
8528 }
8529
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01008530 if (!pmu->event_idx)
8531 pmu->event_idx = perf_event_idx_default;
8532
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008533 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008534 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008535 ret = 0;
8536unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008537 mutex_unlock(&pmus_lock);
8538
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008539 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008540
Peter Zijlstraabe43402010-11-17 23:17:37 +01008541free_dev:
8542 device_del(pmu->dev);
8543 put_device(pmu->dev);
8544
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008545free_idr:
8546 if (pmu->type >= PERF_TYPE_MAX)
8547 idr_remove(&pmu_idr, pmu->type);
8548
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008549free_pdc:
8550 free_percpu(pmu->pmu_disable_count);
8551 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008552}
Yan, Zhengc464c762014-03-18 16:56:41 +08008553EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008554
8555void perf_pmu_unregister(struct pmu *pmu)
8556{
8557 mutex_lock(&pmus_lock);
8558 list_del_rcu(&pmu->entry);
8559 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008560
8561 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02008562 * We dereference the pmu list under both SRCU and regular RCU, so
8563 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008564 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008565 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02008566 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008567
Peter Zijlstra33696fc2010-06-14 08:49:00 +02008568 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008569 if (pmu->type >= PERF_TYPE_MAX)
8570 idr_remove(&pmu_idr, pmu->type);
Alexander Shishkin6e855cd2016-04-27 18:44:48 +03008571 if (pmu->nr_addr_filters)
8572 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
Peter Zijlstraabe43402010-11-17 23:17:37 +01008573 device_del(pmu->dev);
8574 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01008575 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008576}
Yan, Zhengc464c762014-03-18 16:56:41 +08008577EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008578
Mark Rutlandcc34b982015-01-07 14:56:51 +00008579static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
8580{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008581 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00008582 int ret;
8583
8584 if (!try_module_get(pmu->module))
8585 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008586
8587 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02008588 /*
8589 * This ctx->mutex can nest when we're called through
8590 * inheritance. See the perf_event_ctx_lock_nested() comment.
8591 */
8592 ctx = perf_event_ctx_lock_nested(event->group_leader,
8593 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008594 BUG_ON(!ctx);
8595 }
8596
Mark Rutlandcc34b982015-01-07 14:56:51 +00008597 event->pmu = pmu;
8598 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01008599
8600 if (ctx)
8601 perf_event_ctx_unlock(event->group_leader, ctx);
8602
Mark Rutlandcc34b982015-01-07 14:56:51 +00008603 if (ret)
8604 module_put(pmu->module);
8605
8606 return ret;
8607}
8608
Geliang Tang18ab2cd2015-09-27 23:25:50 +08008609static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008610{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02008611 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008612 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08008613 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008614
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008615 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008616
8617 rcu_read_lock();
8618 pmu = idr_find(&pmu_idr, event->attr.type);
8619 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08008620 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008621 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08008622 if (ret)
8623 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008624 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08008625 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008626
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008627 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00008628 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008629 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008630 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008631
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008632 if (ret != -ENOENT) {
8633 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008634 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008635 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008636 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02008637 pmu = ERR_PTR(-ENOENT);
8638unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008639 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008640
8641 return pmu;
8642}
8643
Kan Liangf2fb6be2016-03-23 11:24:37 -07008644static void attach_sb_event(struct perf_event *event)
8645{
8646 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
8647
8648 raw_spin_lock(&pel->lock);
8649 list_add_rcu(&event->sb_list, &pel->list);
8650 raw_spin_unlock(&pel->lock);
8651}
8652
Peter Zijlstraaab5b712016-05-12 17:26:46 +02008653/*
8654 * We keep a list of all !task (and therefore per-cpu) events
8655 * that need to receive side-band records.
8656 *
8657 * This avoids having to scan all the various PMU per-cpu contexts
8658 * looking for them.
8659 */
Kan Liangf2fb6be2016-03-23 11:24:37 -07008660static void account_pmu_sb_event(struct perf_event *event)
8661{
8662 struct perf_event_attr *attr = &event->attr;
8663
8664 if (event->parent)
8665 return;
8666
8667 if (event->attach_state & PERF_ATTACH_TASK)
8668 return;
8669
8670 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
8671 attr->comm || attr->comm_exec ||
8672 attr->task ||
8673 attr->context_switch)
8674 attach_sb_event(event);
8675}
8676
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008677static void account_event_cpu(struct perf_event *event, int cpu)
8678{
8679 if (event->parent)
8680 return;
8681
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008682 if (is_cgroup_event(event))
8683 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
8684}
8685
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008686/* Freq events need the tick to stay alive (see perf_event_task_tick). */
8687static void account_freq_event_nohz(void)
8688{
8689#ifdef CONFIG_NO_HZ_FULL
8690 /* Lock so we don't race with concurrent unaccount */
8691 spin_lock(&nr_freq_lock);
8692 if (atomic_inc_return(&nr_freq_events) == 1)
8693 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
8694 spin_unlock(&nr_freq_lock);
8695#endif
8696}
8697
8698static void account_freq_event(void)
8699{
8700 if (tick_nohz_full_enabled())
8701 account_freq_event_nohz();
8702 else
8703 atomic_inc(&nr_freq_events);
8704}
8705
8706
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008707static void account_event(struct perf_event *event)
8708{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008709 bool inc = false;
8710
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008711 if (event->parent)
8712 return;
8713
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008714 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008715 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008716 if (event->attr.mmap || event->attr.mmap_data)
8717 atomic_inc(&nr_mmap_events);
8718 if (event->attr.comm)
8719 atomic_inc(&nr_comm_events);
8720 if (event->attr.task)
8721 atomic_inc(&nr_task_events);
Frederic Weisbecker555e0c12015-07-16 17:42:29 +02008722 if (event->attr.freq)
8723 account_freq_event();
Adrian Hunter45ac1402015-07-21 12:44:02 +03008724 if (event->attr.context_switch) {
8725 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008726 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03008727 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008728 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008729 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008730 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01008731 inc = true;
8732
Peter Zijlstra9107c892016-02-24 18:45:45 +01008733 if (inc) {
8734 if (atomic_inc_not_zero(&perf_sched_count))
8735 goto enabled;
8736
8737 mutex_lock(&perf_sched_mutex);
8738 if (!atomic_read(&perf_sched_count)) {
8739 static_branch_enable(&perf_sched_events);
8740 /*
8741 * Guarantee that all CPUs observe they key change and
8742 * call the perf scheduling hooks before proceeding to
8743 * install events that need them.
8744 */
8745 synchronize_sched();
8746 }
8747 /*
8748 * Now that we have waited for the sync_sched(), allow further
8749 * increments to by-pass the mutex.
8750 */
8751 atomic_inc(&perf_sched_count);
8752 mutex_unlock(&perf_sched_mutex);
8753 }
8754enabled:
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008755
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02008756 account_event_cpu(event, event->cpu);
Kan Liangf2fb6be2016-03-23 11:24:37 -07008757
8758 account_pmu_sb_event(event);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008759}
8760
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008761/*
8762 * Allocate and initialize a event structure
8763 */
8764static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008765perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008766 struct task_struct *task,
8767 struct perf_event *group_leader,
8768 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008769 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00008770 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008771{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02008772 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008773 struct perf_event *event;
8774 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008775 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008776
Oleg Nesterov66832eb2011-01-18 17:10:32 +01008777 if ((unsigned)cpu >= nr_cpu_ids) {
8778 if (!task || cpu != -1)
8779 return ERR_PTR(-EINVAL);
8780 }
8781
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008782 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008783 if (!event)
8784 return ERR_PTR(-ENOMEM);
8785
8786 /*
8787 * Single events are their own group leaders, with an
8788 * empty sibling list:
8789 */
8790 if (!group_leader)
8791 group_leader = event;
8792
8793 mutex_init(&event->child_mutex);
8794 INIT_LIST_HEAD(&event->child_list);
8795
8796 INIT_LIST_HEAD(&event->group_entry);
8797 INIT_LIST_HEAD(&event->event_entry);
8798 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01008799 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01008800 INIT_LIST_HEAD(&event->active_entry);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008801 INIT_LIST_HEAD(&event->addr_filters.list);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01008802 INIT_HLIST_NODE(&event->hlist_entry);
8803
Peter Zijlstra10c6db12011-11-26 02:47:31 +01008804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008805 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08008806 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008807
8808 mutex_init(&event->mmap_mutex);
Alexander Shishkin375637b2016-04-27 18:44:46 +03008809 raw_spin_lock_init(&event->addr_filters.lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008810
Al Viroa6fa9412012-08-20 14:59:25 +01008811 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008812 event->cpu = cpu;
8813 event->attr = *attr;
8814 event->group_leader = group_leader;
8815 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008816 event->oncpu = -1;
8817
8818 event->parent = parent_event;
8819
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08008820 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008821 event->id = atomic64_inc_return(&perf_event_id);
8822
8823 event->state = PERF_EVENT_STATE_INACTIVE;
8824
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008825 if (task) {
8826 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008827 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01008828 * XXX pmu::event_init needs to know what task to account to
8829 * and we cannot use the ctx information because we need the
8830 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008831 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01008832 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008833 }
8834
Peter Zijlstra34f43922015-02-20 14:05:38 +01008835 event->clock = &local_clock;
8836 if (parent_event)
8837 event->clock = parent_event->clock;
8838
Avi Kivity4dc0da82011-06-29 18:42:35 +03008839 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01008840 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008841 context = parent_event->overflow_handler_context;
8842 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01008843
Wang Nan18794452016-03-28 06:41:30 +00008844 if (overflow_handler) {
8845 event->overflow_handler = overflow_handler;
8846 event->overflow_handler_context = context;
Wang Nan9ecda412016-04-05 14:11:18 +00008847 } else if (is_write_backward(event)){
8848 event->overflow_handler = perf_event_output_backward;
8849 event->overflow_handler_context = NULL;
Wang Nan18794452016-03-28 06:41:30 +00008850 } else {
Wang Nan9ecda412016-04-05 14:11:18 +00008851 event->overflow_handler = perf_event_output_forward;
Wang Nan18794452016-03-28 06:41:30 +00008852 event->overflow_handler_context = NULL;
8853 }
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02008854
Jiri Olsa0231bb52013-02-01 11:23:45 +01008855 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008856
8857 pmu = NULL;
8858
8859 hwc = &event->hw;
8860 hwc->sample_period = attr->sample_period;
8861 if (attr->freq && attr->sample_freq)
8862 hwc->sample_period = 1;
8863 hwc->last_period = hwc->sample_period;
8864
Peter Zijlstrae7850592010-05-21 14:43:08 +02008865 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008866
8867 /*
8868 * we currently do not support PERF_FORMAT_GROUP on inherited events
8869 */
8870 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008871 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008872
Yan, Zhenga46a2302014-11-04 21:56:06 -05008873 if (!has_branch_stack(event))
8874 event->attr.branch_sample_type = 0;
8875
Matt Fleming79dff512015-01-23 18:45:42 +00008876 if (cgroup_fd != -1) {
8877 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
8878 if (err)
8879 goto err_ns;
8880 }
8881
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008882 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008883 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008884 goto err_ns;
8885 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008886 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008887 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008888 }
8889
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008890 err = exclusive_event_init(event);
8891 if (err)
8892 goto err_pmu;
8893
Alexander Shishkin375637b2016-04-27 18:44:46 +03008894 if (has_addr_filter(event)) {
8895 event->addr_filters_offs = kcalloc(pmu->nr_addr_filters,
8896 sizeof(unsigned long),
8897 GFP_KERNEL);
8898 if (!event->addr_filters_offs)
8899 goto err_per_task;
8900
8901 /* force hw sync on the address filters */
8902 event->addr_filters_gen = 1;
8903 }
8904
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008905 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02008906 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03008907 err = get_callchain_buffers(attr->sample_max_stack);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008908 if (err)
Alexander Shishkin375637b2016-04-27 18:44:46 +03008909 goto err_addr_filters;
Stephane Eraniand010b332012-02-09 23:21:00 +01008910 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008911 }
8912
Alexander Shishkin927a5572016-03-02 13:24:14 +02008913 /* symmetric to unaccount_event() in _free_event() */
8914 account_event(event);
8915
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008916 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008917
Alexander Shishkin375637b2016-04-27 18:44:46 +03008918err_addr_filters:
8919 kfree(event->addr_filters_offs);
8920
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008921err_per_task:
8922 exclusive_event_destroy(event);
8923
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008924err_pmu:
8925 if (event->destroy)
8926 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08008927 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008928err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00008929 if (is_cgroup_event(event))
8930 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02008931 if (event->ns)
8932 put_pid_ns(event->ns);
8933 kfree(event);
8934
8935 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008936}
8937
8938static int perf_copy_attr(struct perf_event_attr __user *uattr,
8939 struct perf_event_attr *attr)
8940{
8941 u32 size;
8942 int ret;
8943
8944 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
8945 return -EFAULT;
8946
8947 /*
8948 * zero the full structure, so that a short copy will be nice.
8949 */
8950 memset(attr, 0, sizeof(*attr));
8951
8952 ret = get_user(size, &uattr->size);
8953 if (ret)
8954 return ret;
8955
8956 if (size > PAGE_SIZE) /* silly large */
8957 goto err_size;
8958
8959 if (!size) /* abi compat */
8960 size = PERF_ATTR_SIZE_VER0;
8961
8962 if (size < PERF_ATTR_SIZE_VER0)
8963 goto err_size;
8964
8965 /*
8966 * If we're handed a bigger struct than we know of,
8967 * ensure all the unknown bits are 0 - i.e. new
8968 * user-space does not rely on any kernel feature
8969 * extensions we dont know about yet.
8970 */
8971 if (size > sizeof(*attr)) {
8972 unsigned char __user *addr;
8973 unsigned char __user *end;
8974 unsigned char val;
8975
8976 addr = (void __user *)uattr + sizeof(*attr);
8977 end = (void __user *)uattr + size;
8978
8979 for (; addr < end; addr++) {
8980 ret = get_user(val, addr);
8981 if (ret)
8982 return ret;
8983 if (val)
8984 goto err_size;
8985 }
8986 size = sizeof(*attr);
8987 }
8988
8989 ret = copy_from_user(attr, uattr, size);
8990 if (ret)
8991 return -EFAULT;
8992
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05308993 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008994 return -EINVAL;
8995
8996 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
8997 return -EINVAL;
8998
8999 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
9000 return -EINVAL;
9001
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009002 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
9003 u64 mask = attr->branch_sample_type;
9004
9005 /* only using defined bits */
9006 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
9007 return -EINVAL;
9008
9009 /* at least one branch bit must be set */
9010 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
9011 return -EINVAL;
9012
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009013 /* propagate priv level, when not set for branch */
9014 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
9015
9016 /* exclude_kernel checked on syscall entry */
9017 if (!attr->exclude_kernel)
9018 mask |= PERF_SAMPLE_BRANCH_KERNEL;
9019
9020 if (!attr->exclude_user)
9021 mask |= PERF_SAMPLE_BRANCH_USER;
9022
9023 if (!attr->exclude_hv)
9024 mask |= PERF_SAMPLE_BRANCH_HV;
9025 /*
9026 * adjust user setting (for HW filter setup)
9027 */
9028 attr->branch_sample_type = mask;
9029 }
Stephane Eraniane7122092013-06-06 11:02:04 +02009030 /* privileged levels capture (kernel, hv): check permissions */
9031 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02009032 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9033 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01009034 }
Jiri Olsa40189942012-08-07 15:20:37 +02009035
Jiri Olsac5ebced2012-08-07 15:20:40 +02009036 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02009037 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02009038 if (ret)
9039 return ret;
9040 }
9041
9042 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
9043 if (!arch_perf_have_user_stack_dump())
9044 return -ENOSYS;
9045
9046 /*
9047 * We have __u32 type for the size, but so far
9048 * we can only use __u16 as maximum due to the
9049 * __u16 sample size limit.
9050 */
9051 if (attr->sample_stack_user >= USHRT_MAX)
9052 ret = -EINVAL;
9053 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
9054 ret = -EINVAL;
9055 }
Jiri Olsa40189942012-08-07 15:20:37 +02009056
Stephane Eranian60e23642014-09-24 13:48:37 +02009057 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
9058 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009059out:
9060 return ret;
9061
9062err_size:
9063 put_user(sizeof(*attr), &uattr->size);
9064 ret = -E2BIG;
9065 goto out;
9066}
9067
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009068static int
9069perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009070{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009071 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009072 int ret = -EINVAL;
9073
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009074 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009075 goto set;
9076
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009077 /* don't allow circular references */
9078 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009079 goto out;
9080
Peter Zijlstra0f139302010-05-20 14:35:15 +02009081 /*
9082 * Don't allow cross-cpu buffers
9083 */
9084 if (output_event->cpu != event->cpu)
9085 goto out;
9086
9087 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02009088 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02009089 */
9090 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
9091 goto out;
9092
Peter Zijlstra34f43922015-02-20 14:05:38 +01009093 /*
9094 * Mixing clocks in the same buffer is trouble you don't need.
9095 */
9096 if (output_event->clock != event->clock)
9097 goto out;
9098
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009099 /*
Wang Nan9ecda412016-04-05 14:11:18 +00009100 * Either writing ring buffer from beginning or from end.
9101 * Mixing is not allowed.
9102 */
9103 if (is_write_backward(output_event) != is_write_backward(event))
9104 goto out;
9105
9106 /*
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02009107 * If both events generate aux data, they must be on the same PMU
9108 */
9109 if (has_aux(event) && has_aux(output_event) &&
9110 event->pmu != output_event->pmu)
9111 goto out;
9112
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009113set:
9114 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009115 /* Can't redirect output if we've got an active mmap() */
9116 if (atomic_read(&event->mmap_count))
9117 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009118
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009119 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02009120 /* get the rb we want to redirect to */
9121 rb = ring_buffer_get(output_event);
9122 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009123 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009124 }
9125
Peter Zijlstrab69cf532014-03-14 10:50:33 +01009126 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02009127
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009128 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009129unlock:
9130 mutex_unlock(&event->mmap_mutex);
9131
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009132out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009133 return ret;
9134}
9135
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009136static void mutex_lock_double(struct mutex *a, struct mutex *b)
9137{
9138 if (b < a)
9139 swap(a, b);
9140
9141 mutex_lock(a);
9142 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
9143}
9144
Peter Zijlstra34f43922015-02-20 14:05:38 +01009145static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
9146{
9147 bool nmi_safe = false;
9148
9149 switch (clk_id) {
9150 case CLOCK_MONOTONIC:
9151 event->clock = &ktime_get_mono_fast_ns;
9152 nmi_safe = true;
9153 break;
9154
9155 case CLOCK_MONOTONIC_RAW:
9156 event->clock = &ktime_get_raw_fast_ns;
9157 nmi_safe = true;
9158 break;
9159
9160 case CLOCK_REALTIME:
9161 event->clock = &ktime_get_real_ns;
9162 break;
9163
9164 case CLOCK_BOOTTIME:
9165 event->clock = &ktime_get_boot_ns;
9166 break;
9167
9168 case CLOCK_TAI:
9169 event->clock = &ktime_get_tai_ns;
9170 break;
9171
9172 default:
9173 return -EINVAL;
9174 }
9175
9176 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
9177 return -EINVAL;
9178
9179 return 0;
9180}
9181
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009182/**
9183 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9184 *
9185 * @attr_uptr: event_id type attributes for monitoring/sampling
9186 * @pid: target pid
9187 * @cpu: target cpu
9188 * @group_fd: group leader event fd
9189 */
9190SYSCALL_DEFINE5(perf_event_open,
9191 struct perf_event_attr __user *, attr_uptr,
9192 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
9193{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009194 struct perf_event *group_leader = NULL, *output_event = NULL;
9195 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009196 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009197 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009198 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04009199 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07009200 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009201 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04009202 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009203 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009204 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01009205 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00009206 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009207
9208 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02009209 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009210 return -EINVAL;
9211
9212 err = perf_copy_attr(attr_uptr, &attr);
9213 if (err)
9214 return err;
9215
9216 if (!attr.exclude_kernel) {
9217 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
9218 return -EACCES;
9219 }
9220
9221 if (attr.freq) {
9222 if (attr.sample_freq > sysctl_perf_event_sample_rate)
9223 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02009224 } else {
9225 if (attr.sample_period & (1ULL << 63))
9226 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009227 }
9228
Arnaldo Carvalho de Melo97c79a32016-04-28 13:16:33 -03009229 if (!attr.sample_max_stack)
9230 attr.sample_max_stack = sysctl_perf_event_max_stack;
9231
Stephane Eraniane5d13672011-02-14 11:20:01 +02009232 /*
9233 * In cgroup mode, the pid argument is used to pass the fd
9234 * opened to the cgroup directory in cgroupfs. The cpu argument
9235 * designates the cpu on which to monitor threads from that
9236 * cgroup.
9237 */
9238 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
9239 return -EINVAL;
9240
Yann Droneauda21b0b32014-01-05 21:36:33 +01009241 if (flags & PERF_FLAG_FD_CLOEXEC)
9242 f_flags |= O_CLOEXEC;
9243
9244 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009245 if (event_fd < 0)
9246 return event_fd;
9247
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009248 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04009249 err = perf_fget_light(group_fd, &group);
9250 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009251 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04009252 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009253 if (flags & PERF_FLAG_FD_OUTPUT)
9254 output_event = group_leader;
9255 if (flags & PERF_FLAG_FD_NO_GROUP)
9256 group_leader = NULL;
9257 }
9258
Stephane Eraniane5d13672011-02-14 11:20:01 +02009259 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009260 task = find_lively_task_by_vpid(pid);
9261 if (IS_ERR(task)) {
9262 err = PTR_ERR(task);
9263 goto err_group_fd;
9264 }
9265 }
9266
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009267 if (task && group_leader &&
9268 group_leader->attr.inherit != attr.inherit) {
9269 err = -EINVAL;
9270 goto err_task;
9271 }
9272
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009273 get_online_cpus();
9274
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009275 if (task) {
9276 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
9277 if (err)
9278 goto err_cpus;
9279
9280 /*
9281 * Reuse ptrace permission checks for now.
9282 *
9283 * We must hold cred_guard_mutex across this and any potential
9284 * perf_install_in_context() call for this new event to
9285 * serialize against exec() altering our credentials (and the
9286 * perf_event_exit_task() that could imply).
9287 */
9288 err = -EACCES;
9289 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
9290 goto err_cred;
9291 }
9292
Matt Fleming79dff512015-01-23 18:45:42 +00009293 if (flags & PERF_FLAG_PID_CGROUP)
9294 cgroup_fd = pid;
9295
Avi Kivity4dc0da82011-06-29 18:42:35 +03009296 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009297 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009298 if (IS_ERR(event)) {
9299 err = PTR_ERR(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009300 goto err_cred;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02009301 }
9302
Vince Weaver53b25332014-05-16 17:12:12 -04009303 if (is_sampling_event(event)) {
9304 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
9305 err = -ENOTSUPP;
9306 goto err_alloc;
9307 }
9308 }
9309
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009310 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009311 * Special case software events and allow them to be part of
9312 * any hardware group.
9313 */
9314 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009315
Peter Zijlstra34f43922015-02-20 14:05:38 +01009316 if (attr.use_clockid) {
9317 err = perf_event_set_clock(event, attr.clockid);
9318 if (err)
9319 goto err_alloc;
9320 }
9321
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009322 if (group_leader &&
9323 (is_software_event(event) != is_software_event(group_leader))) {
9324 if (is_software_event(event)) {
9325 /*
9326 * If event and group_leader are not both a software
9327 * event, and event is, then group leader is not.
9328 *
9329 * Allow the addition of software events to !software
9330 * groups, this is safe because software events never
9331 * fail to schedule.
9332 */
9333 pmu = group_leader->pmu;
9334 } else if (is_software_event(group_leader) &&
9335 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
9336 /*
9337 * In case the group is a pure software group, and we
9338 * try to add a hardware event, move the whole group to
9339 * the hardware context.
9340 */
9341 move_group = 1;
9342 }
9343 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009344
9345 /*
9346 * Get the target context (task or percpu):
9347 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009348 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009349 if (IS_ERR(ctx)) {
9350 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009351 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009352 }
9353
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009354 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
9355 err = -EBUSY;
9356 goto err_context;
9357 }
9358
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009359 /*
9360 * Look up the group leader (we will attach this event to it):
9361 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009362 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009363 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009364
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009365 /*
9366 * Do not allow a recursive hierarchy (this new sibling
9367 * becoming part of another group-sibling):
9368 */
9369 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009370 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01009371
9372 /* All events in a group should have the same clock */
9373 if (group_leader->clock != event->clock)
9374 goto err_context;
9375
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009376 /*
9377 * Do not allow to attach to a group in a different
9378 * task or CPU context:
9379 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009380 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01009381 /*
9382 * Make sure we're both on the same task, or both
9383 * per-cpu events.
9384 */
9385 if (group_leader->ctx->task != ctx->task)
9386 goto err_context;
9387
9388 /*
9389 * Make sure we're both events for the same CPU;
9390 * grouping events for different CPUs is broken; since
9391 * you can never concurrently schedule them anyhow.
9392 */
9393 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009394 goto err_context;
9395 } else {
9396 if (group_leader->ctx != ctx)
9397 goto err_context;
9398 }
9399
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009400 /*
9401 * Only a group leader can be exclusive or pinned
9402 */
9403 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009404 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009405 }
9406
9407 if (output_event) {
9408 err = perf_event_set_output(event, output_event);
9409 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009410 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02009411 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009412
Yann Droneauda21b0b32014-01-05 21:36:33 +01009413 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
9414 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04009415 if (IS_ERR(event_file)) {
9416 err = PTR_ERR(event_file);
Alexander Shishkin201c2f82016-03-21 10:02:42 +02009417 event_file = NULL;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009418 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04009419 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009420
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009421 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009422 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009423 mutex_lock_double(&gctx->mutex, &ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009424 if (gctx->task == TASK_TOMBSTONE) {
9425 err = -ESRCH;
9426 goto err_locked;
9427 }
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009428 } else {
9429 mutex_lock(&ctx->mutex);
9430 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009431
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009432 if (ctx->task == TASK_TOMBSTONE) {
9433 err = -ESRCH;
9434 goto err_locked;
9435 }
9436
Peter Zijlstraa7239682015-09-09 19:06:33 +02009437 if (!perf_event_validate_size(event)) {
9438 err = -E2BIG;
9439 goto err_locked;
9440 }
9441
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009442 /*
9443 * Must be under the same ctx::mutex as perf_install_in_context(),
9444 * because we need to serialize with concurrent event creation.
9445 */
9446 if (!exclusive_event_installable(event, ctx)) {
9447 /* exclusive and group stuff are assumed mutually exclusive */
9448 WARN_ON_ONCE(move_group);
9449
9450 err = -EBUSY;
9451 goto err_locked;
9452 }
9453
9454 WARN_ON_ONCE(ctx->parent_ctx);
9455
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009456 /*
9457 * This is the point on no return; we cannot fail hereafter. This is
9458 * where we start modifying current state.
9459 */
9460
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009461 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009462 /*
9463 * See perf_event_ctx_lock() for comments on the details
9464 * of swizzling perf_event::ctx.
9465 */
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009466 perf_remove_from_context(group_leader, 0);
Jiri Olsa0231bb52013-02-01 11:23:45 +01009467
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009468 list_for_each_entry(sibling, &group_leader->sibling_list,
9469 group_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009470 perf_remove_from_context(sibling, 0);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009471 put_ctx(gctx);
9472 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009473
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009474 /*
9475 * Wait for everybody to stop referencing the events through
9476 * the old lists, before installing it on new lists.
9477 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009478 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009479
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009480 /*
9481 * Install the group siblings before the group leader.
9482 *
9483 * Because a group leader will try and install the entire group
9484 * (through the sibling list, which is still in-tact), we can
9485 * end up with siblings installed in the wrong context.
9486 *
9487 * By installing siblings first we NO-OP because they're not
9488 * reachable through the group lists.
9489 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009490 list_for_each_entry(sibling, &group_leader->sibling_list,
9491 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009492 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01009493 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009494 get_ctx(ctx);
9495 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009496
9497 /*
9498 * Removing from the context ends up with disabled
9499 * event. What we want here is event in the initial
9500 * startup state, ready to be add into new context.
9501 */
9502 perf_event__state_init(group_leader);
9503 perf_install_in_context(ctx, group_leader, group_leader->cpu);
9504 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02009505
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009506 /*
9507 * Now that all events are installed in @ctx, nothing
9508 * references @gctx anymore, so drop the last reference we have
9509 * on it.
9510 */
9511 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009512 }
9513
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02009514 /*
9515 * Precalculate sample_data sizes; do while holding ctx::mutex such
9516 * that we're serialized against further additions and before
9517 * perf_install_in_context() which is the point the event is active and
9518 * can use these values.
9519 */
9520 perf_event__header_size(event);
9521 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009522
Peter Zijlstra78cd2c72016-01-25 14:08:45 +01009523 event->owner = current;
9524
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08009525 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009526 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009527
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009528 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009529 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009530 mutex_unlock(&ctx->mutex);
9531
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009532 if (task) {
9533 mutex_unlock(&task->signal->cred_guard_mutex);
9534 put_task_struct(task);
9535 }
9536
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009537 put_online_cpus();
9538
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009539 mutex_lock(&current->perf_event_mutex);
9540 list_add_tail(&event->owner_entry, &current->perf_event_list);
9541 mutex_unlock(&current->perf_event_mutex);
9542
Peter Zijlstra8a495422010-05-27 15:47:49 +02009543 /*
9544 * Drop the reference on the group_event after placing the
9545 * new event on the sibling_list. This ensures destruction
9546 * of the group leader will find the pointer to itself in
9547 * perf_group_detach().
9548 */
Al Viro2903ff02012-08-28 12:52:22 -04009549 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009550 fd_install(event_fd, event_file);
9551 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009552
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02009553err_locked:
9554 if (move_group)
9555 mutex_unlock(&gctx->mutex);
9556 mutex_unlock(&ctx->mutex);
9557/* err_file: */
9558 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009559err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009560 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04009561 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02009562err_alloc:
Peter Zijlstra13005622016-02-24 18:45:41 +01009563 /*
9564 * If event_file is set, the fput() above will have called ->release()
9565 * and that will take care of freeing the event.
9566 */
9567 if (!event_file)
9568 free_event(event);
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009569err_cred:
9570 if (task)
9571 mutex_unlock(&task->signal->cred_guard_mutex);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009572err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08009573 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02009574err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02009575 if (task)
9576 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02009577err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04009578 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04009579err_fd:
9580 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009581 return err;
9582}
9583
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009584/**
9585 * perf_event_create_kernel_counter
9586 *
9587 * @attr: attributes of the counter to create
9588 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07009589 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009590 */
9591struct perf_event *
9592perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07009593 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03009594 perf_overflow_handler_t overflow_handler,
9595 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009596{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009597 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009598 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009599 int err;
9600
9601 /*
9602 * Get the target context (task or percpu):
9603 */
9604
Avi Kivity4dc0da82011-06-29 18:42:35 +03009605 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00009606 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009607 if (IS_ERR(event)) {
9608 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009609 goto err;
9610 }
9611
Jiri Olsaf8697762014-08-01 14:33:01 +02009612 /* Mark owner so we could distinguish it from user events. */
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009613 event->owner = TASK_TOMBSTONE;
Jiri Olsaf8697762014-08-01 14:33:01 +02009614
Yan, Zheng4af57ef2014-11-04 21:56:01 -05009615 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009616 if (IS_ERR(ctx)) {
9617 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009618 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009619 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009620
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009621 WARN_ON_ONCE(ctx->parent_ctx);
9622 mutex_lock(&ctx->mutex);
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009623 if (ctx->task == TASK_TOMBSTONE) {
9624 err = -ESRCH;
9625 goto err_unlock;
9626 }
9627
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009628 if (!exclusive_event_installable(event, ctx)) {
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009629 err = -EBUSY;
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009630 goto err_unlock;
Alexander Shishkinbed5b252015-01-30 12:31:06 +02009631 }
9632
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009633 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009634 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009635 mutex_unlock(&ctx->mutex);
9636
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009637 return event;
9638
Peter Zijlstra84c4e622016-02-24 18:45:40 +01009639err_unlock:
9640 mutex_unlock(&ctx->mutex);
9641 perf_unpin_context(ctx);
9642 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02009643err_free:
9644 free_event(event);
9645err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01009646 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02009647}
9648EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
9649
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009650void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
9651{
9652 struct perf_event_context *src_ctx;
9653 struct perf_event_context *dst_ctx;
9654 struct perf_event *event, *tmp;
9655 LIST_HEAD(events);
9656
9657 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
9658 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
9659
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009660 /*
9661 * See perf_event_ctx_lock() for comments on the details
9662 * of swizzling perf_event::ctx.
9663 */
9664 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009665 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
9666 event_entry) {
Peter Zijlstra45a0e072016-01-26 13:09:48 +01009667 perf_remove_from_context(event, 0);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02009668 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009669 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02009670 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009671 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009672
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009673 /*
9674 * Wait for the events to quiesce before re-instating them.
9675 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009676 synchronize_rcu();
9677
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01009678 /*
9679 * Re-instate events in 2 passes.
9680 *
9681 * Skip over group leaders and only install siblings on this first
9682 * pass, siblings will not get enabled without a leader, however a
9683 * leader will enable its siblings, even if those are still on the old
9684 * context.
9685 */
9686 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
9687 if (event->group_leader == event)
9688 continue;
9689
9690 list_del(&event->migrate_entry);
9691 if (event->state >= PERF_EVENT_STATE_OFF)
9692 event->state = PERF_EVENT_STATE_INACTIVE;
9693 account_event_cpu(event, dst_cpu);
9694 perf_install_in_context(dst_ctx, event, dst_cpu);
9695 get_ctx(dst_ctx);
9696 }
9697
9698 /*
9699 * Once all the siblings are setup properly, install the group leaders
9700 * to make it go.
9701 */
Peter Zijlstra98861672013-10-03 16:02:23 +02009702 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
9703 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009704 if (event->state >= PERF_EVENT_STATE_OFF)
9705 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02009706 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009707 perf_install_in_context(dst_ctx, event, dst_cpu);
9708 get_ctx(dst_ctx);
9709 }
9710 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01009711 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08009712}
9713EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
9714
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009715static void sync_child_event(struct perf_event *child_event,
9716 struct task_struct *child)
9717{
9718 struct perf_event *parent_event = child_event->parent;
9719 u64 child_val;
9720
9721 if (child_event->attr.inherit_stat)
9722 perf_event_read_event(child_event, child);
9723
Peter Zijlstrab5e58792010-05-21 14:43:12 +02009724 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009725
9726 /*
9727 * Add back the child's count to the parent's count:
9728 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02009729 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009730 atomic64_add(child_event->total_time_enabled,
9731 &parent_event->child_total_time_enabled);
9732 atomic64_add(child_event->total_time_running,
9733 &parent_event->child_total_time_running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009734}
9735
9736static void
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009737perf_event_exit_event(struct perf_event *child_event,
9738 struct perf_event_context *child_ctx,
9739 struct task_struct *child)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009740{
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009741 struct perf_event *parent_event = child_event->parent;
9742
Peter Zijlstra1903d502014-07-15 17:27:27 +02009743 /*
9744 * Do not destroy the 'original' grouping; because of the context
9745 * switch optimization the original events could've ended up in a
9746 * random child task.
9747 *
9748 * If we were to destroy the original group, all group related
9749 * operations would cease to function properly after this random
9750 * child dies.
9751 *
9752 * Do destroy all inherited groups, we don't care about those
9753 * and being thorough is better.
9754 */
Peter Zijlstra32132a32016-01-11 15:40:59 +01009755 raw_spin_lock_irq(&child_ctx->lock);
9756 WARN_ON_ONCE(child_ctx->is_active);
9757
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009758 if (parent_event)
Peter Zijlstra32132a32016-01-11 15:40:59 +01009759 perf_group_detach(child_event);
9760 list_del_event(child_event, child_ctx);
Peter Zijlstraa69b0ca2016-02-24 18:45:44 +01009761 child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */
Peter Zijlstra32132a32016-01-11 15:40:59 +01009762 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009763
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009764 /*
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009765 * Parent events are governed by their filedesc, retain them.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009766 */
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009767 if (!parent_event) {
Jiri Olsa179033b2014-08-07 11:48:26 -04009768 perf_event_wakeup(child_event);
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009769 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009770 }
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009771 /*
9772 * Child events can be cleaned up.
9773 */
9774
9775 sync_child_event(child_event, child);
9776
9777 /*
9778 * Remove this event from the parent's list
9779 */
9780 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
9781 mutex_lock(&parent_event->child_mutex);
9782 list_del_init(&child_event->child_list);
9783 mutex_unlock(&parent_event->child_mutex);
9784
9785 /*
9786 * Kick perf_poll() for is_event_hup().
9787 */
9788 perf_event_wakeup(parent_event);
9789 free_event(child_event);
9790 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009791}
9792
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009793static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009794{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02009795 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009796 struct perf_event *child_event, *next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009797
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009798 WARN_ON_ONCE(child != current);
9799
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009800 child_ctx = perf_pin_task_context(child, ctxn);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009801 if (!child_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009802 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009803
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009804 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009805 * In order to reduce the amount of tricky in ctx tear-down, we hold
9806 * ctx::mutex over the entire thing. This serializes against almost
9807 * everything that wants to access the ctx.
9808 *
9809 * The exception is sys_perf_event_open() /
9810 * perf_event_create_kernel_count() which does find_get_context()
9811 * without ctx::mutex (it cannot because of the move_group double mutex
9812 * lock thing). See the comments in perf_install_in_context().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009813 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009814 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009815
9816 /*
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009817 * In a single ctx::lock section, de-schedule the events and detach the
9818 * context from the task such that we cannot ever get it scheduled back
9819 * in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009820 */
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009821 raw_spin_lock_irq(&child_ctx->lock);
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009822 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02009823
9824 /*
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009825 * Now that the context is inactive, destroy the task <-> ctx relation
9826 * and mark the context dead.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009827 */
Peter Zijlstra63b6da32016-01-14 16:05:37 +01009828 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
9829 put_ctx(child_ctx); /* cannot be last */
9830 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
9831 put_task_struct(current); /* cannot be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009832
Peter Zijlstra211de6e2014-09-30 19:23:08 +02009833 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra6a3351b2016-01-25 14:09:54 +01009834 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009835
Peter Zijlstra211de6e2014-09-30 19:23:08 +02009836 if (clone_ctx)
9837 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02009838
9839 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009840 * Report the task dead after unscheduling the events so that we
9841 * won't get any samples after PERF_RECORD_EXIT. We can however still
9842 * get a few PERF_RECORD_READ events.
9843 */
9844 perf_event_task(child, child_ctx, 0);
9845
Peter Zijlstraebf905f2014-05-29 19:00:24 +02009846 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Peter Zijlstra8ba289b2016-01-26 13:06:56 +01009847 perf_event_exit_event(child_event, child_ctx, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009848
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009849 mutex_unlock(&child_ctx->mutex);
9850
9851 put_ctx(child_ctx);
9852}
9853
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009854/*
9855 * When a child task exits, feed back event values to parent events.
Peter Zijlstra79c9ce52016-04-26 11:36:53 +02009856 *
9857 * Can be called with cred_guard_mutex held when called from
9858 * install_exec_creds().
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009859 */
9860void perf_event_exit_task(struct task_struct *child)
9861{
Peter Zijlstra88821352010-11-09 19:01:43 +01009862 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009863 int ctxn;
9864
Peter Zijlstra88821352010-11-09 19:01:43 +01009865 mutex_lock(&child->perf_event_mutex);
9866 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
9867 owner_entry) {
9868 list_del_init(&event->owner_entry);
9869
9870 /*
9871 * Ensure the list deletion is visible before we clear
9872 * the owner, closes a race against perf_release() where
9873 * we need to serialize on the owner->perf_event_mutex.
9874 */
Peter Zijlstraf47c02c2016-01-26 12:30:14 +01009875 smp_store_release(&event->owner, NULL);
Peter Zijlstra88821352010-11-09 19:01:43 +01009876 }
9877 mutex_unlock(&child->perf_event_mutex);
9878
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009879 for_each_task_context_nr(ctxn)
9880 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +01009881
9882 /*
9883 * The perf_event_exit_task_context calls perf_event_task
9884 * with child's task_ctx, which generates EXIT events for
9885 * child contexts and sets child->perf_event_ctxp[] to NULL.
9886 * At this point we need to send EXIT events to cpu contexts.
9887 */
9888 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009889}
9890
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009891static void perf_free_event(struct perf_event *event,
9892 struct perf_event_context *ctx)
9893{
9894 struct perf_event *parent = event->parent;
9895
9896 if (WARN_ON_ONCE(!parent))
9897 return;
9898
9899 mutex_lock(&parent->child_mutex);
9900 list_del_init(&event->child_list);
9901 mutex_unlock(&parent->child_mutex);
9902
Al Viroa6fa9412012-08-20 14:59:25 +01009903 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009904
Peter Zijlstra652884f2015-01-23 11:20:10 +01009905 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02009906 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009907 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01009908 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009909 free_event(event);
9910}
9911
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009912/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01009913 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009914 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01009915 *
9916 * Not all locks are strictly required, but take them anyway to be nice and
9917 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009918 */
9919void perf_event_free_task(struct task_struct *task)
9920{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009921 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009922 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009923 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009924
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009925 for_each_task_context_nr(ctxn) {
9926 ctx = task->perf_event_ctxp[ctxn];
9927 if (!ctx)
9928 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009929
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009930 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009931again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009932 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
9933 group_entry)
9934 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009935
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009936 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
9937 group_entry)
9938 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009939
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009940 if (!list_empty(&ctx->pinned_groups) ||
9941 !list_empty(&ctx->flexible_groups))
9942 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009943
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009944 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009945
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009946 put_ctx(ctx);
9947 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009948}
9949
Peter Zijlstra4e231c72010-09-09 21:01:59 +02009950void perf_event_delayed_put(struct task_struct *task)
9951{
9952 int ctxn;
9953
9954 for_each_task_context_nr(ctxn)
9955 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
9956}
9957
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -08009958struct file *perf_event_get(unsigned int fd)
Kaixu Xiaffe86902015-08-06 07:02:32 +00009959{
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -08009960 struct file *file;
Kaixu Xiaffe86902015-08-06 07:02:32 +00009961
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -08009962 file = fget_raw(fd);
9963 if (!file)
9964 return ERR_PTR(-EBADF);
Kaixu Xiaffe86902015-08-06 07:02:32 +00009965
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -08009966 if (file->f_op != &perf_fops) {
9967 fput(file);
9968 return ERR_PTR(-EBADF);
9969 }
Kaixu Xiaffe86902015-08-06 07:02:32 +00009970
Alexei Starovoitove03e7ee2016-01-25 20:59:49 -08009971 return file;
Kaixu Xiaffe86902015-08-06 07:02:32 +00009972}
9973
9974const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
9975{
9976 if (!event)
9977 return ERR_PTR(-EINVAL);
9978
9979 return &event->attr;
9980}
9981
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009982/*
9983 * inherit a event from parent task to child task:
9984 */
9985static struct perf_event *
9986inherit_event(struct perf_event *parent_event,
9987 struct task_struct *parent,
9988 struct perf_event_context *parent_ctx,
9989 struct task_struct *child,
9990 struct perf_event *group_leader,
9991 struct perf_event_context *child_ctx)
9992{
Jiri Olsa1929def2014-09-12 13:18:27 +02009993 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009994 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02009995 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009996
9997 /*
9998 * Instead of creating recursive hierarchies of events,
9999 * we link inherited events back to the original parent,
10000 * which has a filp for sure, which we use as the reference
10001 * count:
10002 */
10003 if (parent_event->parent)
10004 parent_event = parent_event->parent;
10005
10006 child_event = perf_event_alloc(&parent_event->attr,
10007 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +020010008 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010009 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +000010010 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010011 if (IS_ERR(child_event))
10012 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +010010013
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010014 /*
10015 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
10016 * must be under the same lock in order to serialize against
10017 * perf_event_release_kernel(), such that either we must observe
10018 * is_orphaned_event() or they will observe us on the child_list.
10019 */
10020 mutex_lock(&parent_event->child_mutex);
Jiri Olsafadfe7b2014-08-01 14:33:02 +020010021 if (is_orphaned_event(parent_event) ||
10022 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Peter Zijlstrac6e5b732016-01-15 16:07:41 +020010023 mutex_unlock(&parent_event->child_mutex);
Al Viroa6fa9412012-08-20 14:59:25 +010010024 free_event(child_event);
10025 return NULL;
10026 }
10027
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010028 get_ctx(child_ctx);
10029
10030 /*
10031 * Make the child state follow the state of the parent event,
10032 * not its attr.disabled bit. We hold the parent's mutex,
10033 * so we won't race with perf_event_{en, dis}able_family.
10034 */
Jiri Olsa1929def2014-09-12 13:18:27 +020010035 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010036 child_event->state = PERF_EVENT_STATE_INACTIVE;
10037 else
10038 child_event->state = PERF_EVENT_STATE_OFF;
10039
10040 if (parent_event->attr.freq) {
10041 u64 sample_period = parent_event->hw.sample_period;
10042 struct hw_perf_event *hwc = &child_event->hw;
10043
10044 hwc->sample_period = sample_period;
10045 hwc->last_period = sample_period;
10046
10047 local64_set(&hwc->period_left, sample_period);
10048 }
10049
10050 child_event->ctx = child_ctx;
10051 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +030010052 child_event->overflow_handler_context
10053 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010054
10055 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -020010056 * Precalculate sample_data sizes
10057 */
10058 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -020010059 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -020010060
10061 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010062 * Link it up in the child's context:
10063 */
Peter Zijlstracee010e2010-09-10 12:51:54 +020010064 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010065 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +020010066 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010067
10068 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010069 * Link this into the parent event's child list
10070 */
Peter Zijlstra97dee4f2010-09-07 15:35:33 +020010071 list_add_tail(&child_event->child_list, &parent_event->child_list);
10072 mutex_unlock(&parent_event->child_mutex);
10073
10074 return child_event;
10075}
10076
10077static int inherit_group(struct perf_event *parent_event,
10078 struct task_struct *parent,
10079 struct perf_event_context *parent_ctx,
10080 struct task_struct *child,
10081 struct perf_event_context *child_ctx)
10082{
10083 struct perf_event *leader;
10084 struct perf_event *sub;
10085 struct perf_event *child_ctr;
10086
10087 leader = inherit_event(parent_event, parent, parent_ctx,
10088 child, NULL, child_ctx);
10089 if (IS_ERR(leader))
10090 return PTR_ERR(leader);
10091 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
10092 child_ctr = inherit_event(sub, parent, parent_ctx,
10093 child, leader, child_ctx);
10094 if (IS_ERR(child_ctr))
10095 return PTR_ERR(child_ctr);
10096 }
10097 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010098}
10099
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010100static int
10101inherit_task_group(struct perf_event *event, struct task_struct *parent,
10102 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010103 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010104 int *inherited_all)
10105{
10106 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010107 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010108
10109 if (!event->attr.inherit) {
10110 *inherited_all = 0;
10111 return 0;
10112 }
10113
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010114 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010115 if (!child_ctx) {
10116 /*
10117 * This is executed from the parent task context, so
10118 * inherit events that have been marked for cloning.
10119 * First allocate and initialize a context for the
10120 * child.
10121 */
10122
Jiri Olsa734df5a2013-07-09 17:44:10 +020010123 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010124 if (!child_ctx)
10125 return -ENOMEM;
10126
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010127 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010128 }
10129
10130 ret = inherit_group(event, parent, parent_ctx,
10131 child, child_ctx);
10132
10133 if (ret)
10134 *inherited_all = 0;
10135
10136 return ret;
10137}
10138
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010139/*
10140 * Initialize the perf_event context in task_struct
10141 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +020010142static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010143{
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010144 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010145 struct perf_event_context *cloned_ctx;
10146 struct perf_event *event;
10147 struct task_struct *parent = current;
10148 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010149 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010150 int ret = 0;
10151
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010152 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010153 return 0;
10154
10155 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010156 * If the parent's context is a clone, pin it so it won't get
10157 * swapped under us.
10158 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010159 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +020010160 if (!parent_ctx)
10161 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010162
10163 /*
10164 * No need to check if parent_ctx != NULL here; since we saw
10165 * it non-NULL earlier, the only reason for it to become NULL
10166 * is if we exit, and since we're currently in the middle of
10167 * a fork we can't be exiting at the same time.
10168 */
10169
10170 /*
10171 * Lock the parent list. No need to lock the child - not PID
10172 * hashed yet and not running, so nobody can access it.
10173 */
10174 mutex_lock(&parent_ctx->mutex);
10175
10176 /*
10177 * We dont have to disable NMIs - we are only looking at
10178 * the list, not manipulating it:
10179 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010180 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010181 ret = inherit_task_group(event, parent, parent_ctx,
10182 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010183 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010184 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010185 }
10186
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010187 /*
10188 * We can't hold ctx->lock when iterating the ->flexible_group list due
10189 * to allocations, but we need to prevent rotation because
10190 * rotate_ctx() will change the list from interrupt context.
10191 */
10192 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10193 parent_ctx->rotate_disable = 1;
10194 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
10195
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010196 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010197 ret = inherit_task_group(event, parent, parent_ctx,
10198 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010199 if (ret)
10200 break;
10201 }
10202
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010203 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
10204 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +010010205
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010206 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +010010207
Peter Zijlstra05cbaa22009-12-30 16:00:35 +010010208 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010209 /*
10210 * Mark the child context as a clone of the parent
10211 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010212 *
10213 * Note that if the parent is a clone, the holding of
10214 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010215 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010216 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010217 if (cloned_ctx) {
10218 child_ctx->parent_ctx = cloned_ctx;
10219 child_ctx->parent_gen = parent_ctx->parent_gen;
10220 } else {
10221 child_ctx->parent_ctx = parent_ctx;
10222 child_ctx->parent_gen = parent_ctx->generation;
10223 }
10224 get_ctx(child_ctx->parent_ctx);
10225 }
10226
Peter Zijlstrac5ed5142011-01-17 13:45:37 +010010227 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010228 mutex_unlock(&parent_ctx->mutex);
10229
10230 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010010231 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010232
10233 return ret;
10234}
10235
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010236/*
10237 * Initialize the perf_event context in task_struct
10238 */
10239int perf_event_init_task(struct task_struct *child)
10240{
10241 int ctxn, ret;
10242
Oleg Nesterov8550d7c2011-01-19 19:22:28 +010010243 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
10244 mutex_init(&child->perf_event_mutex);
10245 INIT_LIST_HEAD(&child->perf_event_list);
10246
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010247 for_each_task_context_nr(ctxn) {
10248 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010249 if (ret) {
10250 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010251 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -070010252 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +020010253 }
10254
10255 return 0;
10256}
10257
Paul Mackerras220b1402010-03-10 20:45:52 +110010258static void __init perf_event_init_all_cpus(void)
10259{
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010260 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +110010261 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +110010262
10263 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010264 swhash = &per_cpu(swevent_htable, cpu);
10265 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +000010266 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Kan Liangf2fb6be2016-03-23 11:24:37 -070010267
10268 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
10269 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +110010270 }
10271}
10272
Paul Gortmaker0db06282013-06-19 14:53:51 -040010273static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010274{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010275 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010276
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010277 mutex_lock(&swhash->hlist_mutex);
Thomas Gleixner059fcd82016-02-09 20:11:34 +000010278 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010279 struct swevent_hlist *hlist;
10280
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010281 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
10282 WARN_ON(!hlist);
10283 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020010284 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +020010285 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010286}
10287
Dave Young2965faa2015-09-09 15:38:55 -070010288#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010289static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010290{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010291 struct perf_event_context *ctx = __info;
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010292 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
10293 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010294
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010295 raw_spin_lock(&ctx->lock);
10296 list_for_each_entry(event, &ctx->event_list, event_entry)
Peter Zijlstra45a0e072016-01-26 13:09:48 +010010297 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
Peter Zijlstrafae3fde2016-01-11 15:00:50 +010010298 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010299}
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010300
10301static void perf_event_exit_cpu_context(int cpu)
10302{
10303 struct perf_event_context *ctx;
10304 struct pmu *pmu;
10305 int idx;
10306
10307 idx = srcu_read_lock(&pmus_srcu);
10308 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +020010309 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010310
10311 mutex_lock(&ctx->mutex);
10312 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
10313 mutex_unlock(&ctx->mutex);
10314 }
10315 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +020010316}
10317
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010318static void perf_event_exit_cpu(int cpu)
10319{
Peter Zijlstrae3703f82014-02-24 12:06:12 +010010320 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010321}
10322#else
10323static inline void perf_event_exit_cpu(int cpu) { }
10324#endif
10325
Peter Zijlstrac2774432010-12-08 15:29:02 +010010326static int
10327perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
10328{
10329 int cpu;
10330
10331 for_each_online_cpu(cpu)
10332 perf_event_exit_cpu(cpu);
10333
10334 return NOTIFY_OK;
10335}
10336
10337/*
10338 * Run the perf reboot notifier at the very last possible moment so that
10339 * the generic watchdog code runs as long as possible.
10340 */
10341static struct notifier_block perf_reboot_notifier = {
10342 .notifier_call = perf_reboot,
10343 .priority = INT_MIN,
10344};
10345
Paul Gortmaker0db06282013-06-19 14:53:51 -040010346static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010347perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
10348{
10349 unsigned int cpu = (long)hcpu;
10350
Linus Torvalds4536e4d2011-11-03 07:44:04 -070010351 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010352
10353 case CPU_UP_PREPARE:
Peter Zijlstra1dcaac12016-03-08 17:56:05 +010010354 /*
10355 * This must be done before the CPU comes alive, because the
10356 * moment we can run tasks we can encounter (software) events.
10357 *
10358 * Specifically, someone can have inherited events on kthreadd
10359 * or a pre-existing worker thread that gets re-bound.
10360 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010361 perf_event_init_cpu(cpu);
10362 break;
10363
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010364 case CPU_DOWN_PREPARE:
Peter Zijlstra1dcaac12016-03-08 17:56:05 +010010365 /*
10366 * This must be done before the CPU dies because after that an
10367 * active event might want to IPI the CPU and that'll not work
10368 * so great for dead CPUs.
10369 *
10370 * XXX smp_call_function_single() return -ENXIO without a warn
10371 * so we could possibly deal with this.
10372 *
10373 * This is safe against new events arriving because
10374 * sys_perf_event_open() serializes against hotplug using
10375 * get_online_cpus().
10376 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010377 perf_event_exit_cpu(cpu);
10378 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010379 default:
10380 break;
10381 }
10382
10383 return NOTIFY_OK;
10384}
10385
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010386void __init perf_event_init(void)
10387{
Jason Wessel3c502e72010-11-04 17:33:01 -050010388 int ret;
10389
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010390 idr_init(&pmu_idr);
10391
Paul Mackerras220b1402010-03-10 20:45:52 +110010392 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010393 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +010010394 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
10395 perf_pmu_register(&perf_cpu_clock, NULL, -1);
10396 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +020010397 perf_tp_register();
10398 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +010010399 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -050010400
10401 ret = init_hw_breakpoint();
10402 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +020010403
Jiri Olsab01c3a02012-03-23 15:41:20 +010010404 /*
10405 * Build time assertion that we keep the data_head at the intended
10406 * location. IOW, validation we got the __reserved[] size right.
10407 */
10408 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
10409 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010410}
Peter Zijlstraabe43402010-11-17 23:17:37 +010010411
Cody P Schaferfd979c02015-01-30 13:45:57 -080010412ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
10413 char *page)
10414{
10415 struct perf_pmu_events_attr *pmu_attr =
10416 container_of(attr, struct perf_pmu_events_attr, attr);
10417
10418 if (pmu_attr->event_str)
10419 return sprintf(page, "%s\n", pmu_attr->event_str);
10420
10421 return 0;
10422}
Thomas Gleixner675965b2016-02-22 22:19:27 +000010423EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
Cody P Schaferfd979c02015-01-30 13:45:57 -080010424
Peter Zijlstraabe43402010-11-17 23:17:37 +010010425static int __init perf_event_sysfs_init(void)
10426{
10427 struct pmu *pmu;
10428 int ret;
10429
10430 mutex_lock(&pmus_lock);
10431
10432 ret = bus_register(&pmu_bus);
10433 if (ret)
10434 goto unlock;
10435
10436 list_for_each_entry(pmu, &pmus, entry) {
10437 if (!pmu->name || pmu->type < 0)
10438 continue;
10439
10440 ret = pmu_dev_alloc(pmu);
10441 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
10442 }
10443 pmu_bus_running = 1;
10444 ret = 0;
10445
10446unlock:
10447 mutex_unlock(&pmus_lock);
10448
10449 return ret;
10450}
10451device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010452
10453#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -040010454static struct cgroup_subsys_state *
10455perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010456{
10457 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +020010458
Li Zefan1b15d052011-03-03 14:26:06 +080010459 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010460 if (!jc)
10461 return ERR_PTR(-ENOMEM);
10462
Stephane Eraniane5d13672011-02-14 11:20:01 +020010463 jc->info = alloc_percpu(struct perf_cgroup_info);
10464 if (!jc->info) {
10465 kfree(jc);
10466 return ERR_PTR(-ENOMEM);
10467 }
10468
Stephane Eraniane5d13672011-02-14 11:20:01 +020010469 return &jc->css;
10470}
10471
Tejun Heoeb954192013-08-08 20:11:23 -040010472static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010473{
Tejun Heoeb954192013-08-08 20:11:23 -040010474 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
10475
Stephane Eraniane5d13672011-02-14 11:20:01 +020010476 free_percpu(jc->info);
10477 kfree(jc);
10478}
10479
10480static int __perf_cgroup_move(void *info)
10481{
10482 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010483 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010484 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +010010485 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +020010486 return 0;
10487}
10488
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010489static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +020010490{
Tejun Heobb9d97b2011-12-12 18:12:21 -080010491 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010492 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -080010493
Tejun Heo1f7dd3e52015-12-03 10:18:21 -050010494 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -080010495 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +020010496}
10497
Tejun Heo073219e2014-02-08 10:36:58 -050010498struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -080010499 .css_alloc = perf_cgroup_css_alloc,
10500 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -080010501 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +020010502};
10503#endif /* CONFIG_CGROUP_PERF */