blob: 66c9ad4f8707d33ff5455dcd9fd3df9a775e747f [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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020047
Frederic Weisbecker76369132011-05-19 19:55:04 +020048#include "internal.h"
49
Ingo Molnarcdd6c482009-09-21 12:02:48 +020050#include <asm/irq_regs.h>
51
Jiri Olsafadfe7b2014-08-01 14:33:02 +020052static struct workqueue_struct *perf_wq;
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) {
69 tfc->ret = -EAGAIN;
70 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
71 return;
72 }
73
74 tfc->ret = tfc->func(tfc->info);
75}
76
77/**
78 * task_function_call - call a function on the cpu on which a task runs
79 * @p: the task to evaluate
80 * @func: the function to be called
81 * @info: the function call argument
82 *
83 * Calls the function @func when the task is currently running. This might
84 * be on the current CPU, which just calls the function directly
85 *
86 * returns: @func return value, or
87 * -ESRCH - when the process isn't running
88 * -EAGAIN - when the process moved away
89 */
90static int
Peter Zijlstra272325c2015-04-15 11:41:58 +020091task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010092{
93 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020094 .p = p,
95 .func = func,
96 .info = info,
97 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010098 };
99
100 if (task_curr(p))
101 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
102
103 return data.ret;
104}
105
106/**
107 * cpu_function_call - call a function on the cpu
108 * @func: the function to be called
109 * @info: the function call argument
110 *
111 * Calls the function @func on the remote cpu.
112 *
113 * returns: @func return value or -ENXIO when the cpu is offline
114 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200115static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100116{
117 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200118 .p = NULL,
119 .func = func,
120 .info = info,
121 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100122 };
123
124 smp_call_function_single(cpu, remote_function, &data, 1);
125
126 return data.ret;
127}
128
Peter Zijlstra39a43642016-01-11 12:46:35 +0100129/*
130 * On task ctx scheduling...
131 *
132 * When !ctx->nr_events a task context will not be scheduled. This means
133 * we can disable the scheduler hooks (for performance) without leaving
134 * pending task ctx state.
135 *
136 * This however results in two special cases:
137 *
138 * - removing the last event from a task ctx; this is relatively straight
139 * forward and is done in __perf_remove_from_context.
140 *
141 * - adding the first event to a task ctx; this is tricky because we cannot
142 * rely on ctx->is_active and therefore cannot use event_function_call().
143 * See perf_install_in_context().
144 *
145 * This is because we need a ctx->lock serialized variable (ctx->is_active)
146 * to reliably determine if a particular task/context is scheduled in. The
147 * task_curr() use in task_function_call() is racy in that a remote context
148 * switch is not a single atomic operation.
149 *
150 * As is, the situation is 'safe' because we set rq->curr before we do the
151 * actual context switch. This means that task_curr() will fail early, but
152 * we'll continue spinning on ctx->is_active until we've passed
153 * perf_event_task_sched_out().
154 *
155 * Without this ctx->lock serialized variable we could have race where we find
156 * the task (and hence the context) would not be active while in fact they are.
157 *
158 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
159 */
160
Peter Zijlstra00179602015-11-30 16:26:35 +0100161static void event_function_call(struct perf_event *event,
162 int (*active)(void *),
163 void (*inactive)(void *),
164 void *data)
165{
166 struct perf_event_context *ctx = event->ctx;
167 struct task_struct *task = ctx->task;
168
169 if (!task) {
170 cpu_function_call(event->cpu, active, data);
171 return;
172 }
173
174again:
175 if (!task_function_call(task, active, data))
176 return;
177
178 raw_spin_lock_irq(&ctx->lock);
179 if (ctx->is_active) {
180 /*
181 * Reload the task pointer, it might have been changed by
182 * a concurrent perf_event_context_sched_out().
183 */
184 task = ctx->task;
185 raw_spin_unlock_irq(&ctx->lock);
186 goto again;
187 }
188 inactive(data);
189 raw_spin_unlock_irq(&ctx->lock);
190}
191
Jiri Olsaf8697762014-08-01 14:33:01 +0200192#define EVENT_OWNER_KERNEL ((void *) -1)
193
194static bool is_kernel_event(struct perf_event *event)
195{
196 return event->owner == EVENT_OWNER_KERNEL;
197}
198
Stephane Eraniane5d13672011-02-14 11:20:01 +0200199#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
200 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100201 PERF_FLAG_PID_CGROUP |\
202 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200203
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100204/*
205 * branch priv levels that need permission checks
206 */
207#define PERF_SAMPLE_BRANCH_PERM_PLM \
208 (PERF_SAMPLE_BRANCH_KERNEL |\
209 PERF_SAMPLE_BRANCH_HV)
210
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200211enum event_type_t {
212 EVENT_FLEXIBLE = 0x1,
213 EVENT_PINNED = 0x2,
214 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
215};
216
Stephane Eraniane5d13672011-02-14 11:20:01 +0200217/*
218 * perf_sched_events : >0 events exist
219 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
220 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100221struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200222static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500223static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200224
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200225static atomic_t nr_mmap_events __read_mostly;
226static atomic_t nr_comm_events __read_mostly;
227static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200228static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300229static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200230
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200231static LIST_HEAD(pmus);
232static DEFINE_MUTEX(pmus_lock);
233static struct srcu_struct pmus_srcu;
234
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200235/*
236 * perf event paranoia level:
237 * -1 - not paranoid at all
238 * 0 - disallow raw tracepoint access for unpriv
239 * 1 - disallow cpu events for unpriv
240 * 2 - disallow kernel profiling for unpriv
241 */
242int sysctl_perf_event_paranoid __read_mostly = 1;
243
Frederic Weisbecker20443382011-03-31 03:33:29 +0200244/* Minimum for 512 kiB + 1 user control page */
245int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200246
247/*
248 * max perf event sample rate
249 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700250#define DEFAULT_MAX_SAMPLE_RATE 100000
251#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
252#define DEFAULT_CPU_TIME_MAX_PERCENT 25
253
254int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
255
256static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
257static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
258
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200259static int perf_sample_allowed_ns __read_mostly =
260 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700261
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800262static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700263{
264 u64 tmp = perf_sample_period_ns;
265
266 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200267 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200268 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700269}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100270
Stephane Eranian9e630202013-04-03 14:21:33 +0200271static int perf_rotate_context(struct perf_cpu_context *cpuctx);
272
Peter Zijlstra163ec432011-02-16 11:22:34 +0100273int perf_proc_update_handler(struct ctl_table *table, int write,
274 void __user *buffer, size_t *lenp,
275 loff_t *ppos)
276{
Knut Petersen723478c2013-09-25 14:29:37 +0200277 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100278
279 if (ret || !write)
280 return ret;
281
282 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700283 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
284 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100285
286 return 0;
287}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200288
Dave Hansen14c63f12013-06-21 08:51:36 -0700289int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
290
291int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
292 void __user *buffer, size_t *lenp,
293 loff_t *ppos)
294{
295 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
296
297 if (ret || !write)
298 return ret;
299
300 update_perf_cpu_limits();
301
302 return 0;
303}
304
305/*
306 * perf samples are done in some very critical code paths (NMIs).
307 * If they take too much CPU time, the system can lock up and not
308 * get any real work done. This will drop the sample rate when
309 * we detect that events are taking too long.
310 */
311#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200312static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700313
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100314static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700315{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100316 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700317 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200318 u64 local_samples_len;
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100319
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500320 local_samples_len = __this_cpu_read(running_sample_length);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100321 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
322
323 printk_ratelimited(KERN_WARNING
324 "perf interrupt took too long (%lld > %lld), lowering "
325 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100326 avg_local_sample_len, allowed_ns >> 1,
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100327 sysctl_perf_event_sample_rate);
328}
329
330static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
331
332void perf_sample_event_took(u64 sample_len_ns)
333{
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200334 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100335 u64 avg_local_sample_len;
336 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700337
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200338 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700339 return;
340
341 /* decay the counter by 1 average sample */
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500342 local_samples_len = __this_cpu_read(running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700343 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
344 local_samples_len += sample_len_ns;
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500345 __this_cpu_write(running_sample_length, local_samples_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700346
347 /*
348 * note: this will be biased artifically low until we have
349 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
350 * from having to maintain a count.
351 */
352 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
353
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200354 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700355 return;
356
357 if (max_samples_per_tick <= 1)
358 return;
359
360 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
361 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
362 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
363
Dave Hansen14c63f12013-06-21 08:51:36 -0700364 update_perf_cpu_limits();
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100365
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100366 if (!irq_work_queue(&perf_duration_work)) {
367 early_printk("perf interrupt took too long (%lld > %lld), lowering "
368 "kernel.perf_event_max_sample_rate to %d\n",
369 avg_local_sample_len, allowed_ns >> 1,
370 sysctl_perf_event_sample_rate);
371 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700372}
373
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200374static atomic64_t perf_event_id;
375
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200376static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
377 enum event_type_t event_type);
378
379static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200380 enum event_type_t event_type,
381 struct task_struct *task);
382
383static void update_context_time(struct perf_event_context *ctx);
384static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200385
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200386void __weak perf_event_print_debug(void) { }
387
Matt Fleming84c79912010-10-03 21:41:13 +0100388extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200389{
Matt Fleming84c79912010-10-03 21:41:13 +0100390 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200391}
392
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200393static inline u64 perf_clock(void)
394{
395 return local_clock();
396}
397
Peter Zijlstra34f43922015-02-20 14:05:38 +0100398static inline u64 perf_event_clock(struct perf_event *event)
399{
400 return event->clock();
401}
402
Stephane Eraniane5d13672011-02-14 11:20:01 +0200403static inline struct perf_cpu_context *
404__get_cpu_context(struct perf_event_context *ctx)
405{
406 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
407}
408
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200409static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
410 struct perf_event_context *ctx)
411{
412 raw_spin_lock(&cpuctx->ctx.lock);
413 if (ctx)
414 raw_spin_lock(&ctx->lock);
415}
416
417static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
418 struct perf_event_context *ctx)
419{
420 if (ctx)
421 raw_spin_unlock(&ctx->lock);
422 raw_spin_unlock(&cpuctx->ctx.lock);
423}
424
Stephane Eraniane5d13672011-02-14 11:20:01 +0200425#ifdef CONFIG_CGROUP_PERF
426
Stephane Eraniane5d13672011-02-14 11:20:01 +0200427static inline bool
428perf_cgroup_match(struct perf_event *event)
429{
430 struct perf_event_context *ctx = event->ctx;
431 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
432
Tejun Heoef824fa2013-04-08 19:00:38 -0700433 /* @event doesn't care about cgroup */
434 if (!event->cgrp)
435 return true;
436
437 /* wants specific cgroup scope but @cpuctx isn't associated with any */
438 if (!cpuctx->cgrp)
439 return false;
440
441 /*
442 * Cgroup scoping is recursive. An event enabled for a cgroup is
443 * also enabled for all its descendant cgroups. If @cpuctx's
444 * cgroup is a descendant of @event's (the test covers identity
445 * case), it's a match.
446 */
447 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
448 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200449}
450
Stephane Eraniane5d13672011-02-14 11:20:01 +0200451static inline void perf_detach_cgroup(struct perf_event *event)
452{
Zefan Li4e2ba652014-09-19 16:53:14 +0800453 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200454 event->cgrp = NULL;
455}
456
457static inline int is_cgroup_event(struct perf_event *event)
458{
459 return event->cgrp != NULL;
460}
461
462static inline u64 perf_cgroup_event_time(struct perf_event *event)
463{
464 struct perf_cgroup_info *t;
465
466 t = per_cpu_ptr(event->cgrp->info, event->cpu);
467 return t->time;
468}
469
470static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
471{
472 struct perf_cgroup_info *info;
473 u64 now;
474
475 now = perf_clock();
476
477 info = this_cpu_ptr(cgrp->info);
478
479 info->time += now - info->timestamp;
480 info->timestamp = now;
481}
482
483static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
484{
485 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
486 if (cgrp_out)
487 __update_cgrp_time(cgrp_out);
488}
489
490static inline void update_cgrp_time_from_event(struct perf_event *event)
491{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200492 struct perf_cgroup *cgrp;
493
Stephane Eraniane5d13672011-02-14 11:20:01 +0200494 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200495 * ensure we access cgroup data only when needed and
496 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200497 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200498 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200499 return;
500
Stephane Eranian614e4c42015-11-12 11:00:04 +0100501 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200502 /*
503 * Do not update time when cgroup is not active
504 */
505 if (cgrp == event->cgrp)
506 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200507}
508
509static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200510perf_cgroup_set_timestamp(struct task_struct *task,
511 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200512{
513 struct perf_cgroup *cgrp;
514 struct perf_cgroup_info *info;
515
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200516 /*
517 * ctx->lock held by caller
518 * ensure we do not access cgroup data
519 * unless we have the cgroup pinned (css_get)
520 */
521 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200522 return;
523
Stephane Eranian614e4c42015-11-12 11:00:04 +0100524 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200526 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200527}
528
529#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
530#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
531
532/*
533 * reschedule events based on the cgroup constraint of task.
534 *
535 * mode SWOUT : schedule out everything
536 * mode SWIN : schedule in based on cgroup for next
537 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800538static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200539{
540 struct perf_cpu_context *cpuctx;
541 struct pmu *pmu;
542 unsigned long flags;
543
544 /*
545 * disable interrupts to avoid geting nr_cgroup
546 * changes via __perf_event_disable(). Also
547 * avoids preemption.
548 */
549 local_irq_save(flags);
550
551 /*
552 * we reschedule only in the presence of cgroup
553 * constrained events.
554 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200555
556 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200557 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200558 if (cpuctx->unique_pmu != pmu)
559 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200560
Stephane Eraniane5d13672011-02-14 11:20:01 +0200561 /*
562 * perf_cgroup_events says at least one
563 * context on this CPU has cgroup events.
564 *
565 * ctx->nr_cgroups reports the number of cgroup
566 * events for a context.
567 */
568 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200569 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
570 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200571
572 if (mode & PERF_CGROUP_SWOUT) {
573 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
574 /*
575 * must not be done before ctxswout due
576 * to event_filter_match() in event_sched_out()
577 */
578 cpuctx->cgrp = NULL;
579 }
580
581 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200582 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200583 /*
584 * set cgrp before ctxsw in to allow
585 * event_filter_match() to not have to pass
586 * task around
Stephane Eranian614e4c42015-11-12 11:00:04 +0100587 * we pass the cpuctx->ctx to perf_cgroup_from_task()
588 * because cgorup events are only per-cpu
Stephane Eraniane5d13672011-02-14 11:20:01 +0200589 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100590 cpuctx->cgrp = perf_cgroup_from_task(task, &cpuctx->ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200591 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
592 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200593 perf_pmu_enable(cpuctx->ctx.pmu);
594 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200595 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200596 }
597
Stephane Eraniane5d13672011-02-14 11:20:01 +0200598 local_irq_restore(flags);
599}
600
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200601static inline void perf_cgroup_sched_out(struct task_struct *task,
602 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200603{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200604 struct perf_cgroup *cgrp1;
605 struct perf_cgroup *cgrp2 = NULL;
606
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100607 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200608 /*
609 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100610 * we do not need to pass the ctx here because we know
611 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200612 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100613 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100614 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200615
616 /*
617 * only schedule out current cgroup events if we know
618 * that we are switching to a different cgroup. Otherwise,
619 * do no touch the cgroup events.
620 */
621 if (cgrp1 != cgrp2)
622 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100623
624 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200625}
626
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200627static inline void perf_cgroup_sched_in(struct task_struct *prev,
628 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200629{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200630 struct perf_cgroup *cgrp1;
631 struct perf_cgroup *cgrp2 = NULL;
632
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100633 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200634 /*
635 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100636 * we do not need to pass the ctx here because we know
637 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200638 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100639 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100640 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200641
642 /*
643 * only need to schedule in cgroup events if we are changing
644 * cgroup during ctxsw. Cgroup events were not scheduled
645 * out of ctxsw out if that was not the case.
646 */
647 if (cgrp1 != cgrp2)
648 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100649
650 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200651}
652
653static inline int perf_cgroup_connect(int fd, struct perf_event *event,
654 struct perf_event_attr *attr,
655 struct perf_event *group_leader)
656{
657 struct perf_cgroup *cgrp;
658 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400659 struct fd f = fdget(fd);
660 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200661
Al Viro2903ff02012-08-28 12:52:22 -0400662 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200663 return -EBADF;
664
Al Virob5830432014-10-31 01:22:04 -0400665 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400666 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800667 if (IS_ERR(css)) {
668 ret = PTR_ERR(css);
669 goto out;
670 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200671
672 cgrp = container_of(css, struct perf_cgroup, css);
673 event->cgrp = cgrp;
674
675 /*
676 * all events in a group must monitor
677 * the same cgroup because a task belongs
678 * to only one perf cgroup at a time
679 */
680 if (group_leader && group_leader->cgrp != cgrp) {
681 perf_detach_cgroup(event);
682 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200683 }
Li Zefan3db272c2011-03-03 14:25:37 +0800684out:
Al Viro2903ff02012-08-28 12:52:22 -0400685 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200686 return ret;
687}
688
689static inline void
690perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
691{
692 struct perf_cgroup_info *t;
693 t = per_cpu_ptr(event->cgrp->info, event->cpu);
694 event->shadow_ctx_time = now - t->timestamp;
695}
696
697static inline void
698perf_cgroup_defer_enabled(struct perf_event *event)
699{
700 /*
701 * when the current task's perf cgroup does not match
702 * the event's, we need to remember to call the
703 * perf_mark_enable() function the first time a task with
704 * a matching perf cgroup is scheduled in.
705 */
706 if (is_cgroup_event(event) && !perf_cgroup_match(event))
707 event->cgrp_defer_enabled = 1;
708}
709
710static inline void
711perf_cgroup_mark_enabled(struct perf_event *event,
712 struct perf_event_context *ctx)
713{
714 struct perf_event *sub;
715 u64 tstamp = perf_event_time(event);
716
717 if (!event->cgrp_defer_enabled)
718 return;
719
720 event->cgrp_defer_enabled = 0;
721
722 event->tstamp_enabled = tstamp - event->total_time_enabled;
723 list_for_each_entry(sub, &event->sibling_list, group_entry) {
724 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
725 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
726 sub->cgrp_defer_enabled = 0;
727 }
728 }
729}
730#else /* !CONFIG_CGROUP_PERF */
731
732static inline bool
733perf_cgroup_match(struct perf_event *event)
734{
735 return true;
736}
737
738static inline void perf_detach_cgroup(struct perf_event *event)
739{}
740
741static inline int is_cgroup_event(struct perf_event *event)
742{
743 return 0;
744}
745
746static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
747{
748 return 0;
749}
750
751static inline void update_cgrp_time_from_event(struct perf_event *event)
752{
753}
754
755static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
756{
757}
758
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200759static inline void perf_cgroup_sched_out(struct task_struct *task,
760 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200761{
762}
763
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200764static inline void perf_cgroup_sched_in(struct task_struct *prev,
765 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200766{
767}
768
769static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
770 struct perf_event_attr *attr,
771 struct perf_event *group_leader)
772{
773 return -EINVAL;
774}
775
776static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200777perf_cgroup_set_timestamp(struct task_struct *task,
778 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200779{
780}
781
782void
783perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
784{
785}
786
787static inline void
788perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
789{
790}
791
792static inline u64 perf_cgroup_event_time(struct perf_event *event)
793{
794 return 0;
795}
796
797static inline void
798perf_cgroup_defer_enabled(struct perf_event *event)
799{
800}
801
802static inline void
803perf_cgroup_mark_enabled(struct perf_event *event,
804 struct perf_event_context *ctx)
805{
806}
807#endif
808
Stephane Eranian9e630202013-04-03 14:21:33 +0200809/*
810 * set default to be dependent on timer tick just
811 * like original code
812 */
813#define PERF_CPU_HRTIMER (1000 / HZ)
814/*
815 * function must be called with interrupts disbled
816 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200817static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +0200818{
819 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +0200820 int rotations = 0;
821
822 WARN_ON(!irqs_disabled());
823
824 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200825 rotations = perf_rotate_context(cpuctx);
826
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200827 raw_spin_lock(&cpuctx->hrtimer_lock);
828 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +0200829 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200830 else
831 cpuctx->hrtimer_active = 0;
832 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +0200833
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200834 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +0200835}
836
Peter Zijlstra272325c2015-04-15 11:41:58 +0200837static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +0200838{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200839 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200840 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +0200841 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +0200842
843 /* no multiplexing needed for SW PMU */
844 if (pmu->task_ctx_nr == perf_sw_context)
845 return;
846
Stephane Eranian62b85632013-04-03 14:21:34 +0200847 /*
848 * check default is sane, if not set then force to
849 * default interval (1/tick)
850 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200851 interval = pmu->hrtimer_interval_ms;
852 if (interval < 1)
853 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +0200854
Peter Zijlstra272325c2015-04-15 11:41:58 +0200855 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +0200856
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200857 raw_spin_lock_init(&cpuctx->hrtimer_lock);
858 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +0200859 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +0200860}
861
Peter Zijlstra272325c2015-04-15 11:41:58 +0200862static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +0200863{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200864 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200865 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200866 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +0200867
868 /* not for SW PMU */
869 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +0200870 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200871
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200872 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
873 if (!cpuctx->hrtimer_active) {
874 cpuctx->hrtimer_active = 1;
875 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
876 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
877 }
878 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +0200879
Peter Zijlstra272325c2015-04-15 11:41:58 +0200880 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200881}
882
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200883void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200884{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200885 int *count = this_cpu_ptr(pmu->pmu_disable_count);
886 if (!(*count)++)
887 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200888}
889
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200890void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200891{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200892 int *count = this_cpu_ptr(pmu->pmu_disable_count);
893 if (!--(*count))
894 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200895}
896
Mark Rutland2fde4f92015-01-07 15:01:54 +0000897static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200898
899/*
Mark Rutland2fde4f92015-01-07 15:01:54 +0000900 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
901 * perf_event_task_tick() are fully serialized because they're strictly cpu
902 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
903 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200904 */
Mark Rutland2fde4f92015-01-07 15:01:54 +0000905static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200906{
Mark Rutland2fde4f92015-01-07 15:01:54 +0000907 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200908
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200909 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200910
Mark Rutland2fde4f92015-01-07 15:01:54 +0000911 WARN_ON(!list_empty(&ctx->active_ctx_list));
912
913 list_add(&ctx->active_ctx_list, head);
914}
915
916static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
917{
918 WARN_ON(!irqs_disabled());
919
920 WARN_ON(list_empty(&ctx->active_ctx_list));
921
922 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200923}
924
925static void get_ctx(struct perf_event_context *ctx)
926{
927 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
928}
929
Yan, Zheng4af57ef282014-11-04 21:56:01 -0500930static void free_ctx(struct rcu_head *head)
931{
932 struct perf_event_context *ctx;
933
934 ctx = container_of(head, struct perf_event_context, rcu_head);
935 kfree(ctx->task_ctx_data);
936 kfree(ctx);
937}
938
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200939static void put_ctx(struct perf_event_context *ctx)
940{
941 if (atomic_dec_and_test(&ctx->refcount)) {
942 if (ctx->parent_ctx)
943 put_ctx(ctx->parent_ctx);
944 if (ctx->task)
945 put_task_struct(ctx->task);
Yan, Zheng4af57ef282014-11-04 21:56:01 -0500946 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200947 }
948}
949
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200950/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100951 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
952 * perf_pmu_migrate_context() we need some magic.
953 *
954 * Those places that change perf_event::ctx will hold both
955 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
956 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +0200957 * Lock ordering is by mutex address. There are two other sites where
958 * perf_event_context::mutex nests and those are:
959 *
960 * - perf_event_exit_task_context() [ child , 0 ]
961 * __perf_event_exit_task()
962 * sync_child_event()
963 * put_event() [ parent, 1 ]
964 *
965 * - perf_event_init_context() [ parent, 0 ]
966 * inherit_task_group()
967 * inherit_group()
968 * inherit_event()
969 * perf_event_alloc()
970 * perf_init_event()
971 * perf_try_init_event() [ child , 1 ]
972 *
973 * While it appears there is an obvious deadlock here -- the parent and child
974 * nesting levels are inverted between the two. This is in fact safe because
975 * life-time rules separate them. That is an exiting task cannot fork, and a
976 * spawning task cannot (yet) exit.
977 *
978 * But remember that that these are parent<->child context relations, and
979 * migration does not affect children, therefore these two orderings should not
980 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100981 *
982 * The change in perf_event::ctx does not affect children (as claimed above)
983 * because the sys_perf_event_open() case will install a new event and break
984 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
985 * concerned with cpuctx and that doesn't have children.
986 *
987 * The places that change perf_event::ctx will issue:
988 *
989 * perf_remove_from_context();
990 * synchronize_rcu();
991 * perf_install_in_context();
992 *
993 * to affect the change. The remove_from_context() + synchronize_rcu() should
994 * quiesce the event, after which we can install it in the new location. This
995 * means that only external vectors (perf_fops, prctl) can perturb the event
996 * while in transit. Therefore all such accessors should also acquire
997 * perf_event_context::mutex to serialize against this.
998 *
999 * However; because event->ctx can change while we're waiting to acquire
1000 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1001 * function.
1002 *
1003 * Lock order:
1004 * task_struct::perf_event_mutex
1005 * perf_event_context::mutex
1006 * perf_event_context::lock
1007 * perf_event::child_mutex;
1008 * perf_event::mmap_mutex
1009 * mmap_sem
1010 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001011static struct perf_event_context *
1012perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001013{
1014 struct perf_event_context *ctx;
1015
1016again:
1017 rcu_read_lock();
1018 ctx = ACCESS_ONCE(event->ctx);
1019 if (!atomic_inc_not_zero(&ctx->refcount)) {
1020 rcu_read_unlock();
1021 goto again;
1022 }
1023 rcu_read_unlock();
1024
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001025 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001026 if (event->ctx != ctx) {
1027 mutex_unlock(&ctx->mutex);
1028 put_ctx(ctx);
1029 goto again;
1030 }
1031
1032 return ctx;
1033}
1034
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001035static inline struct perf_event_context *
1036perf_event_ctx_lock(struct perf_event *event)
1037{
1038 return perf_event_ctx_lock_nested(event, 0);
1039}
1040
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001041static void perf_event_ctx_unlock(struct perf_event *event,
1042 struct perf_event_context *ctx)
1043{
1044 mutex_unlock(&ctx->mutex);
1045 put_ctx(ctx);
1046}
1047
1048/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001049 * This must be done under the ctx->lock, such as to serialize against
1050 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1051 * calling scheduler related locks and ctx->lock nests inside those.
1052 */
1053static __must_check struct perf_event_context *
1054unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001055{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001056 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1057
1058 lockdep_assert_held(&ctx->lock);
1059
1060 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001061 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001062 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001063
1064 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001065}
1066
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001067static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1068{
1069 /*
1070 * only top level events have the pid namespace they were created in
1071 */
1072 if (event->parent)
1073 event = event->parent;
1074
1075 return task_tgid_nr_ns(p, event->ns);
1076}
1077
1078static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1079{
1080 /*
1081 * only top level events have the pid namespace they were created in
1082 */
1083 if (event->parent)
1084 event = event->parent;
1085
1086 return task_pid_nr_ns(p, event->ns);
1087}
1088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001089/*
1090 * If we inherit events we want to return the parent event id
1091 * to userspace.
1092 */
1093static u64 primary_event_id(struct perf_event *event)
1094{
1095 u64 id = event->id;
1096
1097 if (event->parent)
1098 id = event->parent->id;
1099
1100 return id;
1101}
1102
1103/*
1104 * Get the perf_event_context for a task and lock it.
1105 * This has to cope with with the fact that until it is locked,
1106 * the context could get moved to another task.
1107 */
1108static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001109perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001110{
1111 struct perf_event_context *ctx;
1112
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001113retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001114 /*
1115 * One of the few rules of preemptible RCU is that one cannot do
1116 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001117 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001118 * rcu_read_unlock_special().
1119 *
1120 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001121 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001122 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001123 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001124 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001125 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001126 if (ctx) {
1127 /*
1128 * If this context is a clone of another, it might
1129 * get swapped for another underneath us by
1130 * perf_event_task_sched_out, though the
1131 * rcu_read_lock() protects us from any context
1132 * getting freed. Lock the context and check if it
1133 * got swapped before we could get the lock, and retry
1134 * if so. If we locked the right context, then it
1135 * can't get swapped on us any more.
1136 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001137 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001138 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001139 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001140 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001141 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001142 goto retry;
1143 }
1144
1145 if (!atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001146 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001147 ctx = NULL;
1148 }
1149 }
1150 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001151 if (!ctx)
1152 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001153 return ctx;
1154}
1155
1156/*
1157 * Get the context for a task and increment its pin_count so it
1158 * can't get swapped to another task. This also increments its
1159 * reference count so that the context can't get freed.
1160 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001161static struct perf_event_context *
1162perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001163{
1164 struct perf_event_context *ctx;
1165 unsigned long flags;
1166
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001167 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001168 if (ctx) {
1169 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001170 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171 }
1172 return ctx;
1173}
1174
1175static void perf_unpin_context(struct perf_event_context *ctx)
1176{
1177 unsigned long flags;
1178
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001179 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001180 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001181 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001182}
1183
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001184/*
1185 * Update the record of the current time in a context.
1186 */
1187static void update_context_time(struct perf_event_context *ctx)
1188{
1189 u64 now = perf_clock();
1190
1191 ctx->time += now - ctx->timestamp;
1192 ctx->timestamp = now;
1193}
1194
Stephane Eranian41587552011-01-03 18:20:01 +02001195static u64 perf_event_time(struct perf_event *event)
1196{
1197 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001198
1199 if (is_cgroup_event(event))
1200 return perf_cgroup_event_time(event);
1201
Stephane Eranian41587552011-01-03 18:20:01 +02001202 return ctx ? ctx->time : 0;
1203}
1204
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001205/*
1206 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001207 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001208 */
1209static void update_event_times(struct perf_event *event)
1210{
1211 struct perf_event_context *ctx = event->ctx;
1212 u64 run_end;
1213
1214 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1215 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1216 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001217 /*
1218 * in cgroup mode, time_enabled represents
1219 * the time the event was enabled AND active
1220 * tasks were in the monitored cgroup. This is
1221 * independent of the activity of the context as
1222 * there may be a mix of cgroup and non-cgroup events.
1223 *
1224 * That is why we treat cgroup events differently
1225 * here.
1226 */
1227 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001228 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001229 else if (ctx->is_active)
1230 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001231 else
1232 run_end = event->tstamp_stopped;
1233
1234 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001235
1236 if (event->state == PERF_EVENT_STATE_INACTIVE)
1237 run_end = event->tstamp_stopped;
1238 else
Stephane Eranian41587552011-01-03 18:20:01 +02001239 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001240
1241 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001242
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001243}
1244
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001245/*
1246 * Update total_time_enabled and total_time_running for all events in a group.
1247 */
1248static void update_group_times(struct perf_event *leader)
1249{
1250 struct perf_event *event;
1251
1252 update_event_times(leader);
1253 list_for_each_entry(event, &leader->sibling_list, group_entry)
1254 update_event_times(event);
1255}
1256
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001257static struct list_head *
1258ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1259{
1260 if (event->attr.pinned)
1261 return &ctx->pinned_groups;
1262 else
1263 return &ctx->flexible_groups;
1264}
1265
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266/*
1267 * Add a event from the lists for its context.
1268 * Must be called with ctx->mutex and ctx->lock held.
1269 */
1270static void
1271list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1272{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001273 lockdep_assert_held(&ctx->lock);
1274
Peter Zijlstra8a495422010-05-27 15:47:49 +02001275 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1276 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001277
1278 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001279 * If we're a stand alone event or group leader, we go to the context
1280 * list, group events are kept attached to the group so that
1281 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001282 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001283 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001284 struct list_head *list;
1285
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001286 if (is_software_event(event))
1287 event->group_flags |= PERF_GROUP_SOFTWARE;
1288
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001289 list = ctx_group_list(event, ctx);
1290 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001291 }
1292
Peter Zijlstra08309372011-03-03 11:31:20 +01001293 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001294 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296 list_add_rcu(&event->event_entry, &ctx->event_list);
1297 ctx->nr_events++;
1298 if (event->attr.inherit_stat)
1299 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001300
1301 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001302}
1303
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001304/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001305 * Initialize event state based on the perf_event_attr::disabled.
1306 */
1307static inline void perf_event__state_init(struct perf_event *event)
1308{
1309 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1310 PERF_EVENT_STATE_INACTIVE;
1311}
1312
Peter Zijlstraa7239682015-09-09 19:06:33 +02001313static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001314{
1315 int entry = sizeof(u64); /* value */
1316 int size = 0;
1317 int nr = 1;
1318
1319 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1320 size += sizeof(u64);
1321
1322 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1323 size += sizeof(u64);
1324
1325 if (event->attr.read_format & PERF_FORMAT_ID)
1326 entry += sizeof(u64);
1327
1328 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001329 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001330 size += sizeof(u64);
1331 }
1332
1333 size += entry * nr;
1334 event->read_size = size;
1335}
1336
Peter Zijlstraa7239682015-09-09 19:06:33 +02001337static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001338{
1339 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001340 u16 size = 0;
1341
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001342 if (sample_type & PERF_SAMPLE_IP)
1343 size += sizeof(data->ip);
1344
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001345 if (sample_type & PERF_SAMPLE_ADDR)
1346 size += sizeof(data->addr);
1347
1348 if (sample_type & PERF_SAMPLE_PERIOD)
1349 size += sizeof(data->period);
1350
Andi Kleenc3feedf2013-01-24 16:10:28 +01001351 if (sample_type & PERF_SAMPLE_WEIGHT)
1352 size += sizeof(data->weight);
1353
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001354 if (sample_type & PERF_SAMPLE_READ)
1355 size += event->read_size;
1356
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001357 if (sample_type & PERF_SAMPLE_DATA_SRC)
1358 size += sizeof(data->data_src.val);
1359
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001360 if (sample_type & PERF_SAMPLE_TRANSACTION)
1361 size += sizeof(data->txn);
1362
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001363 event->header_size = size;
1364}
1365
Peter Zijlstraa7239682015-09-09 19:06:33 +02001366/*
1367 * Called at perf_event creation and when events are attached/detached from a
1368 * group.
1369 */
1370static void perf_event__header_size(struct perf_event *event)
1371{
1372 __perf_event_read_size(event,
1373 event->group_leader->nr_siblings);
1374 __perf_event_header_size(event, event->attr.sample_type);
1375}
1376
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001377static void perf_event__id_header_size(struct perf_event *event)
1378{
1379 struct perf_sample_data *data;
1380 u64 sample_type = event->attr.sample_type;
1381 u16 size = 0;
1382
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001383 if (sample_type & PERF_SAMPLE_TID)
1384 size += sizeof(data->tid_entry);
1385
1386 if (sample_type & PERF_SAMPLE_TIME)
1387 size += sizeof(data->time);
1388
Adrian Hunterff3d5272013-08-27 11:23:07 +03001389 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1390 size += sizeof(data->id);
1391
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001392 if (sample_type & PERF_SAMPLE_ID)
1393 size += sizeof(data->id);
1394
1395 if (sample_type & PERF_SAMPLE_STREAM_ID)
1396 size += sizeof(data->stream_id);
1397
1398 if (sample_type & PERF_SAMPLE_CPU)
1399 size += sizeof(data->cpu_entry);
1400
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001401 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001402}
1403
Peter Zijlstraa7239682015-09-09 19:06:33 +02001404static bool perf_event_validate_size(struct perf_event *event)
1405{
1406 /*
1407 * The values computed here will be over-written when we actually
1408 * attach the event.
1409 */
1410 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1411 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1412 perf_event__id_header_size(event);
1413
1414 /*
1415 * Sum the lot; should not exceed the 64k limit we have on records.
1416 * Conservative limit to allow for callchains and other variable fields.
1417 */
1418 if (event->read_size + event->header_size +
1419 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1420 return false;
1421
1422 return true;
1423}
1424
Peter Zijlstra8a495422010-05-27 15:47:49 +02001425static void perf_group_attach(struct perf_event *event)
1426{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001427 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001428
Peter Zijlstra74c33372010-10-15 11:40:29 +02001429 /*
1430 * We can have double attach due to group movement in perf_event_open.
1431 */
1432 if (event->attach_state & PERF_ATTACH_GROUP)
1433 return;
1434
Peter Zijlstra8a495422010-05-27 15:47:49 +02001435 event->attach_state |= PERF_ATTACH_GROUP;
1436
1437 if (group_leader == event)
1438 return;
1439
Peter Zijlstra652884f2015-01-23 11:20:10 +01001440 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1441
Peter Zijlstra8a495422010-05-27 15:47:49 +02001442 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1443 !is_software_event(event))
1444 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1445
1446 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1447 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001448
1449 perf_event__header_size(group_leader);
1450
1451 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1452 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001453}
1454
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001455/*
1456 * Remove a event from the lists for its context.
1457 * Must be called with ctx->mutex and ctx->lock held.
1458 */
1459static void
1460list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1461{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001462 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001463
1464 WARN_ON_ONCE(event->ctx != ctx);
1465 lockdep_assert_held(&ctx->lock);
1466
Peter Zijlstra8a495422010-05-27 15:47:49 +02001467 /*
1468 * We can have double detach due to exit/hot-unplug + close.
1469 */
1470 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001472
1473 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1474
Stephane Eranian68cacd22011-03-23 16:03:06 +01001475 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001476 ctx->nr_cgroups--;
Peter Zijlstra70a01652016-01-08 09:29:16 +01001477 /*
1478 * Because cgroup events are always per-cpu events, this will
1479 * always be called from the right CPU.
1480 */
Stephane Eranian68cacd22011-03-23 16:03:06 +01001481 cpuctx = __get_cpu_context(ctx);
1482 /*
Peter Zijlstra70a01652016-01-08 09:29:16 +01001483 * If there are no more cgroup events then clear cgrp to avoid
1484 * stale pointer in update_cgrp_time_from_cpuctx().
Stephane Eranian68cacd22011-03-23 16:03:06 +01001485 */
1486 if (!ctx->nr_cgroups)
1487 cpuctx->cgrp = NULL;
1488 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490 ctx->nr_events--;
1491 if (event->attr.inherit_stat)
1492 ctx->nr_stat--;
1493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 list_del_rcu(&event->event_entry);
1495
Peter Zijlstra8a495422010-05-27 15:47:49 +02001496 if (event->group_leader == event)
1497 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001499 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001500
1501 /*
1502 * If event was in error state, then keep it
1503 * that way, otherwise bogus counts will be
1504 * returned on read(). The only way to get out
1505 * of error state is by explicit re-enabling
1506 * of the event
1507 */
1508 if (event->state > PERF_EVENT_STATE_OFF)
1509 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001510
1511 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001512}
1513
Peter Zijlstra8a495422010-05-27 15:47:49 +02001514static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001515{
1516 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001517 struct list_head *list = NULL;
1518
1519 /*
1520 * We can have double detach due to exit/hot-unplug + close.
1521 */
1522 if (!(event->attach_state & PERF_ATTACH_GROUP))
1523 return;
1524
1525 event->attach_state &= ~PERF_ATTACH_GROUP;
1526
1527 /*
1528 * If this is a sibling, remove it from its group.
1529 */
1530 if (event->group_leader != event) {
1531 list_del_init(&event->group_entry);
1532 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001533 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001534 }
1535
1536 if (!list_empty(&event->group_entry))
1537 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001538
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001539 /*
1540 * If this was a group event with sibling events then
1541 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001542 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001543 */
1544 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001545 if (list)
1546 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001547 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001548
1549 /* Inherit group flags from the previous leader */
1550 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001551
1552 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001553 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001554
1555out:
1556 perf_event__header_size(event->group_leader);
1557
1558 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1559 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001560}
1561
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001562/*
1563 * User event without the task.
1564 */
1565static bool is_orphaned_event(struct perf_event *event)
1566{
1567 return event && !is_kernel_event(event) && !event->owner;
1568}
1569
1570/*
1571 * Event has a parent but parent's task finished and it's
1572 * alive only because of children holding refference.
1573 */
1574static bool is_orphaned_child(struct perf_event *event)
1575{
1576 return is_orphaned_event(event->parent);
1577}
1578
1579static void orphans_remove_work(struct work_struct *work);
1580
1581static void schedule_orphans_remove(struct perf_event_context *ctx)
1582{
1583 if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1584 return;
1585
1586 if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1587 get_ctx(ctx);
1588 ctx->orphans_remove_sched = true;
1589 }
1590}
1591
1592static int __init perf_workqueue_init(void)
1593{
1594 perf_wq = create_singlethread_workqueue("perf");
1595 WARN(!perf_wq, "failed to create perf workqueue\n");
1596 return perf_wq ? 0 : -1;
1597}
1598
1599core_initcall(perf_workqueue_init);
1600
Mark Rutland66eb5792015-05-13 17:12:23 +01001601static inline int pmu_filter_match(struct perf_event *event)
1602{
1603 struct pmu *pmu = event->pmu;
1604 return pmu->filter_match ? pmu->filter_match(event) : 1;
1605}
1606
Stephane Eranianfa66f072010-08-26 16:40:01 +02001607static inline int
1608event_filter_match(struct perf_event *event)
1609{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001610 return (event->cpu == -1 || event->cpu == smp_processor_id())
Mark Rutland66eb5792015-05-13 17:12:23 +01001611 && perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001612}
1613
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001614static void
1615event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001616 struct perf_cpu_context *cpuctx,
1617 struct perf_event_context *ctx)
1618{
Stephane Eranian41587552011-01-03 18:20:01 +02001619 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001620 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001621
1622 WARN_ON_ONCE(event->ctx != ctx);
1623 lockdep_assert_held(&ctx->lock);
1624
Stephane Eranianfa66f072010-08-26 16:40:01 +02001625 /*
1626 * An event which could not be activated because of
1627 * filter mismatch still needs to have its timings
1628 * maintained, otherwise bogus information is return
1629 * via read() for time_enabled, time_running:
1630 */
1631 if (event->state == PERF_EVENT_STATE_INACTIVE
1632 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001633 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001634 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001635 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001636 }
1637
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001638 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001639 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001640
Alexander Shishkin44377272013-12-16 14:17:36 +02001641 perf_pmu_disable(event->pmu);
1642
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001643 event->state = PERF_EVENT_STATE_INACTIVE;
1644 if (event->pending_disable) {
1645 event->pending_disable = 0;
1646 event->state = PERF_EVENT_STATE_OFF;
1647 }
Stephane Eranian41587552011-01-03 18:20:01 +02001648 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001649 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001650 event->oncpu = -1;
1651
1652 if (!is_software_event(event))
1653 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001654 if (!--ctx->nr_active)
1655 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001656 if (event->attr.freq && event->attr.sample_freq)
1657 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001658 if (event->attr.exclusive || !cpuctx->active_oncpu)
1659 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001660
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001661 if (is_orphaned_child(event))
1662 schedule_orphans_remove(ctx);
1663
Alexander Shishkin44377272013-12-16 14:17:36 +02001664 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001665}
1666
1667static void
1668group_sched_out(struct perf_event *group_event,
1669 struct perf_cpu_context *cpuctx,
1670 struct perf_event_context *ctx)
1671{
1672 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001673 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674
1675 event_sched_out(group_event, cpuctx, ctx);
1676
1677 /*
1678 * Schedule out siblings (if any):
1679 */
1680 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1681 event_sched_out(event, cpuctx, ctx);
1682
Stephane Eranianfa66f072010-08-26 16:40:01 +02001683 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684 cpuctx->exclusive = 0;
1685}
1686
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001687struct remove_event {
1688 struct perf_event *event;
1689 bool detach_group;
1690};
1691
Peter Zijlstra00179602015-11-30 16:26:35 +01001692static void ___perf_remove_from_context(void *info)
1693{
1694 struct remove_event *re = info;
1695 struct perf_event *event = re->event;
1696 struct perf_event_context *ctx = event->ctx;
1697
1698 if (re->detach_group)
1699 perf_group_detach(event);
1700 list_del_event(event, ctx);
1701}
1702
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001703/*
1704 * Cross CPU call to remove a performance event
1705 *
1706 * We disable the event on the hardware level first. After that we
1707 * remove it from the context list.
1708 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001709static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001710{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001711 struct remove_event *re = info;
1712 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001713 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001714 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001715
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001716 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001717 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001718 if (re->detach_group)
1719 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720 list_del_event(event, ctx);
Peter Zijlstra39a43642016-01-11 12:46:35 +01001721
1722 if (!ctx->nr_events && ctx->is_active) {
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001723 ctx->is_active = 0;
Peter Zijlstra39a43642016-01-11 12:46:35 +01001724 if (ctx->task) {
1725 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
1726 cpuctx->task_ctx = NULL;
1727 }
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001728 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001729 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001730
1731 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001732}
1733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001734/*
1735 * Remove the event from a task's (or a CPU's) list of events.
1736 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001737 * CPU events are removed with a smp call. For task events we only
1738 * call when the task is on a CPU.
1739 *
1740 * If event->ctx is a cloned context, callers must make sure that
1741 * every task struct that event->ctx->task could possibly point to
1742 * remains valid. This is OK when called from perf_release since
1743 * that only calls us on the top-level context, which can't be a clone.
1744 * When called from perf_event_exit_task, it's OK because the
1745 * context has been detached from its task.
1746 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001747static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001748{
1749 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001750 struct remove_event re = {
1751 .event = event,
1752 .detach_group = detach_group,
1753 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001755 lockdep_assert_held(&ctx->mutex);
1756
Peter Zijlstra00179602015-11-30 16:26:35 +01001757 event_function_call(event, __perf_remove_from_context,
1758 ___perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001759}
1760
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001761/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001762 * Cross CPU call to disable a performance event
1763 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301764int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001765{
1766 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001767 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001768 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001769
1770 /*
1771 * If this is a per-task event, need to check whether this
1772 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001773 *
1774 * Can trigger due to concurrent perf_event_context_sched_out()
1775 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001776 */
1777 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001778 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001779
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001780 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001781
1782 /*
1783 * If the event is on, turn it off.
1784 * If it is in error state, leave it in error state.
1785 */
1786 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1787 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001788 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001789 update_group_times(event);
1790 if (event == event->group_leader)
1791 group_sched_out(event, cpuctx, ctx);
1792 else
1793 event_sched_out(event, cpuctx, ctx);
1794 event->state = PERF_EVENT_STATE_OFF;
1795 }
1796
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001797 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001798
1799 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800}
1801
Peter Zijlstra7b648012015-12-03 18:35:21 +01001802void ___perf_event_disable(void *info)
1803{
1804 struct perf_event *event = info;
1805
1806 /*
1807 * Since we have the lock this context can't be scheduled
1808 * in, so we can change the state safely.
1809 */
1810 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1811 update_group_times(event);
1812 event->state = PERF_EVENT_STATE_OFF;
1813 }
1814}
1815
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001816/*
1817 * Disable a event.
1818 *
1819 * If event->ctx is a cloned context, callers must make sure that
1820 * every task struct that event->ctx->task could possibly point to
1821 * remains valid. This condition is satisifed when called through
1822 * perf_event_for_each_child or perf_event_for_each because they
1823 * hold the top-level event's child_mutex, so any descendant that
1824 * goes to exit will block in sync_child_event.
1825 * When called from perf_pending_event it's OK because event->ctx
1826 * is the current context on this CPU and preemption is disabled,
1827 * hence we can't get into perf_event_task_sched_out for this context.
1828 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001829static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001830{
1831 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001832
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001833 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001834 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001835 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001836 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001837 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001838 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001839
1840 event_function_call(event, __perf_event_disable,
1841 ___perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001842}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001843
1844/*
1845 * Strictly speaking kernel users cannot create groups and therefore this
1846 * interface does not need the perf_event_ctx_lock() magic.
1847 */
1848void perf_event_disable(struct perf_event *event)
1849{
1850 struct perf_event_context *ctx;
1851
1852 ctx = perf_event_ctx_lock(event);
1853 _perf_event_disable(event);
1854 perf_event_ctx_unlock(event, ctx);
1855}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001856EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001857
Stephane Eraniane5d13672011-02-14 11:20:01 +02001858static void perf_set_shadow_time(struct perf_event *event,
1859 struct perf_event_context *ctx,
1860 u64 tstamp)
1861{
1862 /*
1863 * use the correct time source for the time snapshot
1864 *
1865 * We could get by without this by leveraging the
1866 * fact that to get to this function, the caller
1867 * has most likely already called update_context_time()
1868 * and update_cgrp_time_xx() and thus both timestamp
1869 * are identical (or very close). Given that tstamp is,
1870 * already adjusted for cgroup, we could say that:
1871 * tstamp - ctx->timestamp
1872 * is equivalent to
1873 * tstamp - cgrp->timestamp.
1874 *
1875 * Then, in perf_output_read(), the calculation would
1876 * work with no changes because:
1877 * - event is guaranteed scheduled in
1878 * - no scheduled out in between
1879 * - thus the timestamp would be the same
1880 *
1881 * But this is a bit hairy.
1882 *
1883 * So instead, we have an explicit cgroup call to remain
1884 * within the time time source all along. We believe it
1885 * is cleaner and simpler to understand.
1886 */
1887 if (is_cgroup_event(event))
1888 perf_cgroup_set_shadow_time(event, tstamp);
1889 else
1890 event->shadow_ctx_time = tstamp - ctx->timestamp;
1891}
1892
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001893#define MAX_INTERRUPTS (~0ULL)
1894
1895static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001896static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001897
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001898static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001899event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001900 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001901 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001902{
Stephane Eranian41587552011-01-03 18:20:01 +02001903 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001904 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001905
Peter Zijlstra63342412014-05-05 11:49:16 +02001906 lockdep_assert_held(&ctx->lock);
1907
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001908 if (event->state <= PERF_EVENT_STATE_OFF)
1909 return 0;
1910
1911 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001912 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001913
1914 /*
1915 * Unthrottle events, since we scheduled we might have missed several
1916 * ticks already, also for a heavily scheduling task there is little
1917 * guarantee it'll get a tick in a timely manner.
1918 */
1919 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1920 perf_log_throttle(event, 1);
1921 event->hw.interrupts = 0;
1922 }
1923
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001924 /*
1925 * The new state must be visible before we turn it on in the hardware:
1926 */
1927 smp_wmb();
1928
Alexander Shishkin44377272013-12-16 14:17:36 +02001929 perf_pmu_disable(event->pmu);
1930
Shaohua Li72f669c2015-02-05 15:55:31 -08001931 perf_set_shadow_time(event, ctx, tstamp);
1932
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001933 perf_log_itrace_start(event);
1934
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001935 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001936 event->state = PERF_EVENT_STATE_INACTIVE;
1937 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001938 ret = -EAGAIN;
1939 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001940 }
1941
Peter Zijlstra00a29162015-07-27 10:35:07 +02001942 event->tstamp_running += tstamp - event->tstamp_stopped;
1943
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001944 if (!is_software_event(event))
1945 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001946 if (!ctx->nr_active++)
1947 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001948 if (event->attr.freq && event->attr.sample_freq)
1949 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001950
1951 if (event->attr.exclusive)
1952 cpuctx->exclusive = 1;
1953
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001954 if (is_orphaned_child(event))
1955 schedule_orphans_remove(ctx);
1956
Alexander Shishkin44377272013-12-16 14:17:36 +02001957out:
1958 perf_pmu_enable(event->pmu);
1959
1960 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001961}
1962
1963static int
1964group_sched_in(struct perf_event *group_event,
1965 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001966 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001967{
Lin Ming6bde9b62010-04-23 13:56:00 +08001968 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001969 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001970 u64 now = ctx->time;
1971 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001972
1973 if (group_event->state == PERF_EVENT_STATE_OFF)
1974 return 0;
1975
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001976 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08001977
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001978 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001979 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001980 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001981 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001982 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001983
1984 /*
1985 * Schedule in siblings as one group (if any):
1986 */
1987 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001988 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001989 partial_group = event;
1990 goto group_error;
1991 }
1992 }
1993
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001994 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001995 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001996
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997group_error:
1998 /*
1999 * Groups can be scheduled in as one unit only, so undo any
2000 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02002001 * The events up to the failed event are scheduled out normally,
2002 * tstamp_stopped will be updated.
2003 *
2004 * The failed events and the remaining siblings need to have
2005 * their timings updated as if they had gone thru event_sched_in()
2006 * and event_sched_out(). This is required to get consistent timings
2007 * across the group. This also takes care of the case where the group
2008 * could never be scheduled by ensuring tstamp_stopped is set to mark
2009 * the time the event was actually stopped, such that time delta
2010 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002011 */
2012 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2013 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02002014 simulate = true;
2015
2016 if (simulate) {
2017 event->tstamp_running += now - event->tstamp_stopped;
2018 event->tstamp_stopped = now;
2019 } else {
2020 event_sched_out(event, cpuctx, ctx);
2021 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02002023 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002024
Peter Zijlstraad5133b2010-06-15 12:22:39 +02002025 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02002026
Peter Zijlstra272325c2015-04-15 11:41:58 +02002027 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002028
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002029 return -EAGAIN;
2030}
2031
2032/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002033 * Work out whether we can put this event group on the CPU now.
2034 */
2035static int group_can_go_on(struct perf_event *event,
2036 struct perf_cpu_context *cpuctx,
2037 int can_add_hw)
2038{
2039 /*
2040 * Groups consisting entirely of software events can always go on.
2041 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002042 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002043 return 1;
2044 /*
2045 * If an exclusive group is already on, no other hardware
2046 * events can go on.
2047 */
2048 if (cpuctx->exclusive)
2049 return 0;
2050 /*
2051 * If this group is exclusive and there are already
2052 * events on the CPU, it can't go on.
2053 */
2054 if (event->attr.exclusive && cpuctx->active_oncpu)
2055 return 0;
2056 /*
2057 * Otherwise, try to add it if all previous groups were able
2058 * to go on.
2059 */
2060 return can_add_hw;
2061}
2062
2063static void add_event_to_ctx(struct perf_event *event,
2064 struct perf_event_context *ctx)
2065{
Stephane Eranian41587552011-01-03 18:20:01 +02002066 u64 tstamp = perf_event_time(event);
2067
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002069 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002070 event->tstamp_enabled = tstamp;
2071 event->tstamp_running = tstamp;
2072 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002073}
2074
Peter Zijlstra3e349502016-01-08 10:01:18 +01002075static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2076 struct perf_event_context *ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002077static void
2078ctx_sched_in(struct perf_event_context *ctx,
2079 struct perf_cpu_context *cpuctx,
2080 enum event_type_t event_type,
2081 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002082
Peter Zijlstradce58552011-04-09 21:17:46 +02002083static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2084 struct perf_event_context *ctx,
2085 struct task_struct *task)
2086{
2087 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2088 if (ctx)
2089 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2090 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2091 if (ctx)
2092 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2093}
2094
Peter Zijlstra3e349502016-01-08 10:01:18 +01002095static void ctx_resched(struct perf_cpu_context *cpuctx,
2096 struct perf_event_context *task_ctx)
2097{
2098 perf_pmu_disable(cpuctx->ctx.pmu);
2099 if (task_ctx)
2100 task_ctx_sched_out(cpuctx, task_ctx);
2101 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2102 perf_event_sched_in(cpuctx, task_ctx, current);
2103 perf_pmu_enable(cpuctx->ctx.pmu);
2104}
2105
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002106/*
2107 * Cross CPU call to install and enable a performance event
2108 *
2109 * Must be called with ctx->mutex held
2110 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002111static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112{
Peter Zijlstra39a43642016-01-11 12:46:35 +01002113 struct perf_event_context *ctx = info;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002114 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002115 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002116
Peter Zijlstra39a43642016-01-11 12:46:35 +01002117 if (ctx->task) {
2118 /*
2119 * If we hit the 'wrong' task, we've since scheduled and
2120 * everything should be sorted, nothing to do!
2121 */
2122 if (ctx->task != current)
2123 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002124
Peter Zijlstra39a43642016-01-11 12:46:35 +01002125 /*
2126 * If task_ctx is set, it had better be to us.
2127 */
2128 WARN_ON_ONCE(cpuctx->task_ctx != ctx && cpuctx->task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002129 task_ctx = ctx;
2130 }
2131
Peter Zijlstra39a43642016-01-11 12:46:35 +01002132 perf_ctx_lock(cpuctx, task_ctx);
2133 ctx_resched(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002134 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002135
2136 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002137}
2138
2139/*
2140 * Attach a performance event to a context
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141 */
2142static void
2143perf_install_in_context(struct perf_event_context *ctx,
2144 struct perf_event *event,
2145 int cpu)
2146{
Peter Zijlstra39a43642016-01-11 12:46:35 +01002147 struct task_struct *task = NULL;
2148
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002149 lockdep_assert_held(&ctx->mutex);
2150
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002151 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002152 if (event->cpu != -1)
2153 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002154
Peter Zijlstra39a43642016-01-11 12:46:35 +01002155 /*
2156 * Installing events is tricky because we cannot rely on ctx->is_active
2157 * to be set in case this is the nr_events 0 -> 1 transition.
2158 *
2159 * So what we do is we add the event to the list here, which will allow
2160 * a future context switch to DTRT and then send a racy IPI. If the IPI
2161 * fails to hit the right task, this means a context switch must have
2162 * happened and that will have taken care of business.
2163 */
2164 raw_spin_lock_irq(&ctx->lock);
2165 update_context_time(ctx);
2166 /*
2167 * Update cgrp time only if current cgrp matches event->cgrp.
2168 * Must be done before calling add_event_to_ctx().
2169 */
2170 update_cgrp_time_from_event(event);
2171 add_event_to_ctx(event, ctx);
2172 task = ctx->task;
2173 raw_spin_unlock_irq(&ctx->lock);
2174
2175 if (task)
2176 task_function_call(task, __perf_install_in_context, ctx);
2177 else
2178 cpu_function_call(cpu, __perf_install_in_context, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002179}
2180
2181/*
2182 * Put a event into inactive state and update time fields.
2183 * Enabling the leader of a group effectively enables all
2184 * the group members that aren't explicitly disabled, so we
2185 * have to update their ->tstamp_enabled also.
2186 * Note: this works for group members as well as group leaders
2187 * since the non-leader members' sibling_lists will be empty.
2188 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002189static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002190{
2191 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002192 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002193
2194 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002195 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002196 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002197 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2198 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002199 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002200}
2201
2202/*
2203 * Cross CPU call to enable a performance event
2204 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002205static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002206{
2207 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002208 struct perf_event_context *ctx = event->ctx;
2209 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002210 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002211 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002212
Jiri Olsa06f41792013-07-09 17:44:11 +02002213 /*
2214 * There's a time window between 'ctx->is_active' check
2215 * in perf_event_enable function and this place having:
2216 * - IRQs on
2217 * - ctx->lock unlocked
2218 *
2219 * where the task could be killed and 'ctx' deactivated
2220 * by perf_event_exit_task.
2221 */
2222 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002223 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002224
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002225 perf_ctx_lock(cpuctx, task_ctx);
2226 WARN_ON_ONCE(&cpuctx->ctx != ctx && task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002227 update_context_time(ctx);
2228
2229 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2230 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002231
2232 /*
2233 * set current task's cgroup time reference point
2234 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002235 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002236
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002237 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238
Stephane Eraniane5d13672011-02-14 11:20:01 +02002239 if (!event_filter_match(event)) {
2240 if (is_cgroup_event(event))
2241 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002242 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002243 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002244
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002245 /*
2246 * If the event is in a group and isn't the group leader,
2247 * then don't put it on unless the group is on.
2248 */
2249 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2250 goto unlock;
2251
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002252 ctx_resched(cpuctx, task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002253
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002254unlock:
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002255 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002256
2257 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258}
2259
Peter Zijlstra7b648012015-12-03 18:35:21 +01002260void ___perf_event_enable(void *info)
2261{
2262 __perf_event_mark_enabled((struct perf_event *)info);
2263}
2264
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002265/*
2266 * Enable a event.
2267 *
2268 * If event->ctx is a cloned context, callers must make sure that
2269 * every task struct that event->ctx->task could possibly point to
2270 * remains valid. This condition is satisfied when called through
2271 * perf_event_for_each_child or perf_event_for_each as described
2272 * for perf_event_disable.
2273 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002274static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002275{
2276 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002277
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002278 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002279 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
2280 raw_spin_unlock_irq(&ctx->lock);
2281 return;
2282 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002283
2284 /*
2285 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002286 *
2287 * That way, if we see the event in error state below, we know that it
2288 * has gone back into error state, as distinct from the task having
2289 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002290 */
2291 if (event->state == PERF_EVENT_STATE_ERROR)
2292 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002293 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002294
Peter Zijlstra7b648012015-12-03 18:35:21 +01002295 event_function_call(event, __perf_event_enable,
2296 ___perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002297}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002298
2299/*
2300 * See perf_event_disable();
2301 */
2302void perf_event_enable(struct perf_event *event)
2303{
2304 struct perf_event_context *ctx;
2305
2306 ctx = perf_event_ctx_lock(event);
2307 _perf_event_enable(event);
2308 perf_event_ctx_unlock(event, ctx);
2309}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002310EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002311
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002312static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002313{
2314 /*
2315 * not supported on inherited events
2316 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002317 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002318 return -EINVAL;
2319
2320 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002321 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002322
2323 return 0;
2324}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002325
2326/*
2327 * See perf_event_disable()
2328 */
2329int perf_event_refresh(struct perf_event *event, int refresh)
2330{
2331 struct perf_event_context *ctx;
2332 int ret;
2333
2334 ctx = perf_event_ctx_lock(event);
2335 ret = _perf_event_refresh(event, refresh);
2336 perf_event_ctx_unlock(event, ctx);
2337
2338 return ret;
2339}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002340EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002341
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002342static void ctx_sched_out(struct perf_event_context *ctx,
2343 struct perf_cpu_context *cpuctx,
2344 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002345{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002346 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002347 struct perf_event *event;
2348
2349 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350
Peter Zijlstra39a43642016-01-11 12:46:35 +01002351 if (likely(!ctx->nr_events)) {
2352 /*
2353 * See __perf_remove_from_context().
2354 */
2355 WARN_ON_ONCE(ctx->is_active);
2356 if (ctx->task)
2357 WARN_ON_ONCE(cpuctx->task_ctx);
2358 return;
2359 }
2360
Peter Zijlstradb24d332011-04-09 21:17:45 +02002361 ctx->is_active &= ~event_type;
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002362 if (ctx->task) {
2363 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2364 if (!ctx->is_active)
2365 cpuctx->task_ctx = NULL;
2366 }
2367
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002368 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002369 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002370 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002371 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002372
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002373 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002374 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002375 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2376 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002377 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002378
Peter Zijlstradb24d332011-04-09 21:17:45 +02002379 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002380 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002381 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002382 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002383 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002384}
2385
2386/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002387 * Test whether two contexts are equivalent, i.e. whether they have both been
2388 * cloned from the same version of the same context.
2389 *
2390 * Equivalence is measured using a generation number in the context that is
2391 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2392 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002393 */
2394static int context_equiv(struct perf_event_context *ctx1,
2395 struct perf_event_context *ctx2)
2396{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002397 lockdep_assert_held(&ctx1->lock);
2398 lockdep_assert_held(&ctx2->lock);
2399
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002400 /* Pinning disables the swap optimization */
2401 if (ctx1->pin_count || ctx2->pin_count)
2402 return 0;
2403
2404 /* If ctx1 is the parent of ctx2 */
2405 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2406 return 1;
2407
2408 /* If ctx2 is the parent of ctx1 */
2409 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2410 return 1;
2411
2412 /*
2413 * If ctx1 and ctx2 have the same parent; we flatten the parent
2414 * hierarchy, see perf_event_init_context().
2415 */
2416 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2417 ctx1->parent_gen == ctx2->parent_gen)
2418 return 1;
2419
2420 /* Unmatched */
2421 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422}
2423
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002424static void __perf_event_sync_stat(struct perf_event *event,
2425 struct perf_event *next_event)
2426{
2427 u64 value;
2428
2429 if (!event->attr.inherit_stat)
2430 return;
2431
2432 /*
2433 * Update the event value, we cannot use perf_event_read()
2434 * because we're in the middle of a context switch and have IRQs
2435 * disabled, which upsets smp_call_function_single(), however
2436 * we know the event must be on the current CPU, therefore we
2437 * don't need to use it.
2438 */
2439 switch (event->state) {
2440 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002441 event->pmu->read(event);
2442 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443
2444 case PERF_EVENT_STATE_INACTIVE:
2445 update_event_times(event);
2446 break;
2447
2448 default:
2449 break;
2450 }
2451
2452 /*
2453 * In order to keep per-task stats reliable we need to flip the event
2454 * values when we flip the contexts.
2455 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002456 value = local64_read(&next_event->count);
2457 value = local64_xchg(&event->count, value);
2458 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002459
2460 swap(event->total_time_enabled, next_event->total_time_enabled);
2461 swap(event->total_time_running, next_event->total_time_running);
2462
2463 /*
2464 * Since we swizzled the values, update the user visible data too.
2465 */
2466 perf_event_update_userpage(event);
2467 perf_event_update_userpage(next_event);
2468}
2469
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002470static void perf_event_sync_stat(struct perf_event_context *ctx,
2471 struct perf_event_context *next_ctx)
2472{
2473 struct perf_event *event, *next_event;
2474
2475 if (!ctx->nr_stat)
2476 return;
2477
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002478 update_context_time(ctx);
2479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480 event = list_first_entry(&ctx->event_list,
2481 struct perf_event, event_entry);
2482
2483 next_event = list_first_entry(&next_ctx->event_list,
2484 struct perf_event, event_entry);
2485
2486 while (&event->event_entry != &ctx->event_list &&
2487 &next_event->event_entry != &next_ctx->event_list) {
2488
2489 __perf_event_sync_stat(event, next_event);
2490
2491 event = list_next_entry(event, event_entry);
2492 next_event = list_next_entry(next_event, event_entry);
2493 }
2494}
2495
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002496static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2497 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002498{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002499 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002500 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002501 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002502 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002503 int do_switch = 1;
2504
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002505 if (likely(!ctx))
2506 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002508 cpuctx = __get_cpu_context(ctx);
2509 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002510 return;
2511
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002512 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002513 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002514 if (!next_ctx)
2515 goto unlock;
2516
2517 parent = rcu_dereference(ctx->parent_ctx);
2518 next_parent = rcu_dereference(next_ctx->parent_ctx);
2519
2520 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002521 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002522 goto unlock;
2523
2524 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002525 /*
2526 * Looks like the two contexts are clones, so we might be
2527 * able to optimize the context switch. We lock both
2528 * contexts and check that they are clones under the
2529 * lock (including re-checking that neither has been
2530 * uncloned in the meantime). It doesn't matter which
2531 * order we take the locks because no other cpu could
2532 * be trying to lock both of these tasks.
2533 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002534 raw_spin_lock(&ctx->lock);
2535 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002536 if (context_equiv(ctx, next_ctx)) {
2537 /*
2538 * XXX do we need a memory barrier of sorts
2539 * wrt to rcu_dereference() of perf_event_ctxp
2540 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002541 task->perf_event_ctxp[ctxn] = next_ctx;
2542 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002543 ctx->task = next;
2544 next_ctx->task = task;
Yan, Zheng5a158c32014-11-04 21:56:02 -05002545
2546 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2547
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002548 do_switch = 0;
2549
2550 perf_event_sync_stat(ctx, next_ctx);
2551 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002552 raw_spin_unlock(&next_ctx->lock);
2553 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002554 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002555unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002556 rcu_read_unlock();
2557
2558 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002559 raw_spin_lock(&ctx->lock);
Peter Zijlstra8833d0e2016-01-08 10:02:37 +01002560 task_ctx_sched_out(cpuctx, ctx);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002561 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002562 }
2563}
2564
Yan, Zhengba532502014-11-04 21:55:58 -05002565void perf_sched_cb_dec(struct pmu *pmu)
2566{
2567 this_cpu_dec(perf_sched_cb_usages);
2568}
2569
2570void perf_sched_cb_inc(struct pmu *pmu)
2571{
2572 this_cpu_inc(perf_sched_cb_usages);
2573}
2574
2575/*
2576 * This function provides the context switch callback to the lower code
2577 * layer. It is invoked ONLY when the context switch callback is enabled.
2578 */
2579static void perf_pmu_sched_task(struct task_struct *prev,
2580 struct task_struct *next,
2581 bool sched_in)
2582{
2583 struct perf_cpu_context *cpuctx;
2584 struct pmu *pmu;
2585 unsigned long flags;
2586
2587 if (prev == next)
2588 return;
2589
2590 local_irq_save(flags);
2591
2592 rcu_read_lock();
2593
2594 list_for_each_entry_rcu(pmu, &pmus, entry) {
2595 if (pmu->sched_task) {
2596 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2597
2598 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2599
2600 perf_pmu_disable(pmu);
2601
2602 pmu->sched_task(cpuctx->task_ctx, sched_in);
2603
2604 perf_pmu_enable(pmu);
2605
2606 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2607 }
2608 }
2609
2610 rcu_read_unlock();
2611
2612 local_irq_restore(flags);
2613}
2614
Adrian Hunter45ac1402015-07-21 12:44:02 +03002615static void perf_event_switch(struct task_struct *task,
2616 struct task_struct *next_prev, bool sched_in);
2617
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002618#define for_each_task_context_nr(ctxn) \
2619 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2620
2621/*
2622 * Called from scheduler to remove the events of the current task,
2623 * with interrupts disabled.
2624 *
2625 * We stop each event and update the event value in event->count.
2626 *
2627 * This does not protect us against NMI, but disable()
2628 * sets the disabled bit in the control field of event _before_
2629 * accessing the event control register. If a NMI hits, then it will
2630 * not restart the event.
2631 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002632void __perf_event_task_sched_out(struct task_struct *task,
2633 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002634{
2635 int ctxn;
2636
Yan, Zhengba532502014-11-04 21:55:58 -05002637 if (__this_cpu_read(perf_sched_cb_usages))
2638 perf_pmu_sched_task(task, next, false);
2639
Adrian Hunter45ac1402015-07-21 12:44:02 +03002640 if (atomic_read(&nr_switch_events))
2641 perf_event_switch(task, next, false);
2642
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002643 for_each_task_context_nr(ctxn)
2644 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002645
2646 /*
2647 * if cgroup events exist on this CPU, then we need
2648 * to check if we have to switch out PMU state.
2649 * cgroup event are system-wide mode only
2650 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002651 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002652 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002653}
2654
Peter Zijlstra3e349502016-01-08 10:01:18 +01002655static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2656 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002657{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002658 if (!cpuctx->task_ctx)
2659 return;
2660
2661 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2662 return;
2663
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002664 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002665}
2666
2667/*
2668 * Called with IRQs disabled
2669 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002670static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2671 enum event_type_t event_type)
2672{
2673 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002674}
2675
2676static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002677ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002678 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002679{
2680 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002681
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002682 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2683 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002684 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002685 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002686 continue;
2687
Stephane Eraniane5d13672011-02-14 11:20:01 +02002688 /* may need to reset tstamp_enabled */
2689 if (is_cgroup_event(event))
2690 perf_cgroup_mark_enabled(event, ctx);
2691
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002692 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002693 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002694
2695 /*
2696 * If this pinned group hasn't been scheduled,
2697 * put it in error state.
2698 */
2699 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2700 update_group_times(event);
2701 event->state = PERF_EVENT_STATE_ERROR;
2702 }
2703 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002704}
2705
2706static void
2707ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002708 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002709{
2710 struct perf_event *event;
2711 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002712
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002713 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2714 /* Ignore events in OFF or ERROR state */
2715 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002716 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002717 /*
2718 * Listen to the 'cpu' scheduling filter constraint
2719 * of events:
2720 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002721 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002722 continue;
2723
Stephane Eraniane5d13672011-02-14 11:20:01 +02002724 /* may need to reset tstamp_enabled */
2725 if (is_cgroup_event(event))
2726 perf_cgroup_mark_enabled(event, ctx);
2727
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002728 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002729 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002730 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002731 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002732 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002733}
2734
2735static void
2736ctx_sched_in(struct perf_event_context *ctx,
2737 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002738 enum event_type_t event_type,
2739 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002740{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002741 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002742 u64 now;
2743
2744 lockdep_assert_held(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002745
Peter Zijlstra39a43642016-01-11 12:46:35 +01002746 if (likely(!ctx->nr_events))
2747 return;
2748
Peter Zijlstradb24d332011-04-09 21:17:45 +02002749 ctx->is_active |= event_type;
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002750 if (ctx->task) {
2751 if (!is_active)
2752 cpuctx->task_ctx = ctx;
2753 else
2754 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2755 }
2756
Stephane Eraniane5d13672011-02-14 11:20:01 +02002757 now = perf_clock();
2758 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002759 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002760 /*
2761 * First go through the list and put on any pinned groups
2762 * in order to give them the best chance of going on.
2763 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002764 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002765 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002766
2767 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002768 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002769 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002770}
2771
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002772static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002773 enum event_type_t event_type,
2774 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002775{
2776 struct perf_event_context *ctx = &cpuctx->ctx;
2777
Stephane Eraniane5d13672011-02-14 11:20:01 +02002778 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002779}
2780
Stephane Eraniane5d13672011-02-14 11:20:01 +02002781static void perf_event_context_sched_in(struct perf_event_context *ctx,
2782 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002783{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002784 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002785
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002786 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002787 if (cpuctx->task_ctx == ctx)
2788 return;
2789
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002790 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002791 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002792 /*
2793 * We want to keep the following priority order:
2794 * cpu pinned (that don't need to move), task pinned,
2795 * cpu flexible, task flexible.
2796 */
2797 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Peter Zijlstra63e30d32016-01-08 11:39:10 +01002798 perf_event_sched_in(cpuctx, ctx, task);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002799 perf_pmu_enable(ctx->pmu);
2800 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002801}
2802
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002803/*
2804 * Called from scheduler to add the events of the current task
2805 * with interrupts disabled.
2806 *
2807 * We restore the event value and then enable it.
2808 *
2809 * This does not protect us against NMI, but enable()
2810 * sets the enabled bit in the control field of event _before_
2811 * accessing the event control register. If a NMI hits, then it will
2812 * keep the event running.
2813 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002814void __perf_event_task_sched_in(struct task_struct *prev,
2815 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002816{
2817 struct perf_event_context *ctx;
2818 int ctxn;
2819
Peter Zijlstra7e41d172016-01-08 09:21:40 +01002820 /*
2821 * If cgroup events exist on this CPU, then we need to check if we have
2822 * to switch in PMU state; cgroup event are system-wide mode only.
2823 *
2824 * Since cgroup events are CPU events, we must schedule these in before
2825 * we schedule in the task events.
2826 */
2827 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
2828 perf_cgroup_sched_in(prev, task);
2829
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002830 for_each_task_context_nr(ctxn) {
2831 ctx = task->perf_event_ctxp[ctxn];
2832 if (likely(!ctx))
2833 continue;
2834
Stephane Eraniane5d13672011-02-14 11:20:01 +02002835 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002836 }
Stephane Eraniand010b332012-02-09 23:21:00 +01002837
Adrian Hunter45ac1402015-07-21 12:44:02 +03002838 if (atomic_read(&nr_switch_events))
2839 perf_event_switch(task, prev, true);
2840
Yan, Zhengba532502014-11-04 21:55:58 -05002841 if (__this_cpu_read(perf_sched_cb_usages))
2842 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002843}
2844
Peter Zijlstraabd50712010-01-26 18:50:16 +01002845static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2846{
2847 u64 frequency = event->attr.sample_freq;
2848 u64 sec = NSEC_PER_SEC;
2849 u64 divisor, dividend;
2850
2851 int count_fls, nsec_fls, frequency_fls, sec_fls;
2852
2853 count_fls = fls64(count);
2854 nsec_fls = fls64(nsec);
2855 frequency_fls = fls64(frequency);
2856 sec_fls = 30;
2857
2858 /*
2859 * We got @count in @nsec, with a target of sample_freq HZ
2860 * the target period becomes:
2861 *
2862 * @count * 10^9
2863 * period = -------------------
2864 * @nsec * sample_freq
2865 *
2866 */
2867
2868 /*
2869 * Reduce accuracy by one bit such that @a and @b converge
2870 * to a similar magnitude.
2871 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002872#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002873do { \
2874 if (a##_fls > b##_fls) { \
2875 a >>= 1; \
2876 a##_fls--; \
2877 } else { \
2878 b >>= 1; \
2879 b##_fls--; \
2880 } \
2881} while (0)
2882
2883 /*
2884 * Reduce accuracy until either term fits in a u64, then proceed with
2885 * the other, so that finally we can do a u64/u64 division.
2886 */
2887 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2888 REDUCE_FLS(nsec, frequency);
2889 REDUCE_FLS(sec, count);
2890 }
2891
2892 if (count_fls + sec_fls > 64) {
2893 divisor = nsec * frequency;
2894
2895 while (count_fls + sec_fls > 64) {
2896 REDUCE_FLS(count, sec);
2897 divisor >>= 1;
2898 }
2899
2900 dividend = count * sec;
2901 } else {
2902 dividend = count * sec;
2903
2904 while (nsec_fls + frequency_fls > 64) {
2905 REDUCE_FLS(nsec, frequency);
2906 dividend >>= 1;
2907 }
2908
2909 divisor = nsec * frequency;
2910 }
2911
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002912 if (!divisor)
2913 return dividend;
2914
Peter Zijlstraabd50712010-01-26 18:50:16 +01002915 return div64_u64(dividend, divisor);
2916}
2917
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002918static DEFINE_PER_CPU(int, perf_throttled_count);
2919static DEFINE_PER_CPU(u64, perf_throttled_seq);
2920
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002921static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002922{
2923 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002924 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002925 s64 delta;
2926
Peter Zijlstraabd50712010-01-26 18:50:16 +01002927 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002928
2929 delta = (s64)(period - hwc->sample_period);
2930 delta = (delta + 7) / 8; /* low pass filter */
2931
2932 sample_period = hwc->sample_period + delta;
2933
2934 if (!sample_period)
2935 sample_period = 1;
2936
2937 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002938
Peter Zijlstrae7850592010-05-21 14:43:08 +02002939 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002940 if (disable)
2941 event->pmu->stop(event, PERF_EF_UPDATE);
2942
Peter Zijlstrae7850592010-05-21 14:43:08 +02002943 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002944
2945 if (disable)
2946 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002947 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002948}
2949
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002950/*
2951 * combine freq adjustment with unthrottling to avoid two passes over the
2952 * events. At the same time, make sure, having freq events does not change
2953 * the rate of unthrottling as that would introduce bias.
2954 */
2955static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2956 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002957{
2958 struct perf_event *event;
2959 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002960 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002961 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002962
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002963 /*
2964 * only need to iterate over all events iff:
2965 * - context have events in frequency mode (needs freq adjust)
2966 * - there are events to unthrottle on this cpu
2967 */
2968 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002969 return;
2970
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002971 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002972 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002973
Paul Mackerras03541f82009-10-14 16:58:03 +11002974 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002975 if (event->state != PERF_EVENT_STATE_ACTIVE)
2976 continue;
2977
Stephane Eranian5632ab12011-01-03 18:20:01 +02002978 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002979 continue;
2980
Alexander Shishkin44377272013-12-16 14:17:36 +02002981 perf_pmu_disable(event->pmu);
2982
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002983 hwc = &event->hw;
2984
Jiri Olsaae23bff2013-08-24 16:45:54 +02002985 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002986 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002987 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002988 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002989 }
2990
2991 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002992 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002993
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002994 /*
2995 * stop the event and update event->count
2996 */
2997 event->pmu->stop(event, PERF_EF_UPDATE);
2998
Peter Zijlstrae7850592010-05-21 14:43:08 +02002999 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003000 delta = now - hwc->freq_count_stamp;
3001 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003002
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003003 /*
3004 * restart the event
3005 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003006 * we have stopped the event so tell that
3007 * to perf_adjust_period() to avoid stopping it
3008 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003009 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003010 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003011 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003012
3013 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003014 next:
3015 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003017
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003018 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003019 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020}
3021
3022/*
3023 * Round-robin a context's events:
3024 */
3025static void rotate_ctx(struct perf_event_context *ctx)
3026{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003027 /*
3028 * Rotate the first entry last of non-pinned groups. Rotation might be
3029 * disabled by the inheritance code.
3030 */
3031 if (!ctx->rotate_disable)
3032 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003033}
3034
Stephane Eranian9e630202013-04-03 14:21:33 +02003035static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003037 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003038 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003039
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003040 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003041 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3042 rotate = 1;
3043 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003045 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003046 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003047 if (ctx->nr_events != ctx->nr_active)
3048 rotate = 1;
3049 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003050
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003051 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003052 goto done;
3053
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003054 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003055 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003056
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003057 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3058 if (ctx)
3059 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003060
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003061 rotate_ctx(&cpuctx->ctx);
3062 if (ctx)
3063 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003065 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003066
3067 perf_pmu_enable(cpuctx->ctx.pmu);
3068 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003069done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003070
3071 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003072}
3073
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003074#ifdef CONFIG_NO_HZ_FULL
3075bool perf_event_can_stop_tick(void)
3076{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003077 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003078 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003079 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003080 else
3081 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003082}
3083#endif
3084
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003085void perf_event_task_tick(void)
3086{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003087 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3088 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003089 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003090
3091 WARN_ON(!irqs_disabled());
3092
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003093 __this_cpu_inc(perf_throttled_seq);
3094 throttled = __this_cpu_xchg(perf_throttled_count, 0);
3095
Mark Rutland2fde4f92015-01-07 15:01:54 +00003096 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003097 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003098}
3099
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003100static int event_enable_on_exec(struct perf_event *event,
3101 struct perf_event_context *ctx)
3102{
3103 if (!event->attr.enable_on_exec)
3104 return 0;
3105
3106 event->attr.enable_on_exec = 0;
3107 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3108 return 0;
3109
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003110 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003111
3112 return 1;
3113}
3114
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003115/*
3116 * Enable all of a task's events that have been marked enable-on-exec.
3117 * This expects task == current.
3118 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003119static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003120{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003121 struct perf_event_context *ctx, *clone_ctx = NULL;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003122 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003123 struct perf_event *event;
3124 unsigned long flags;
3125 int enabled = 0;
3126
3127 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003128 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129 if (!ctx || !ctx->nr_events)
3130 goto out;
3131
Peter Zijlstra3e349502016-01-08 10:01:18 +01003132 cpuctx = __get_cpu_context(ctx);
3133 perf_ctx_lock(cpuctx, ctx);
3134 list_for_each_entry(event, &ctx->event_list, event_entry)
3135 enabled |= event_enable_on_exec(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003136
3137 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003138 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003139 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003140 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003141 clone_ctx = unclone_ctx(ctx);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003142 ctx_resched(cpuctx, ctx);
3143 }
3144 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003145
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003146out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003147 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003148
3149 if (clone_ctx)
3150 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003151}
3152
Peter Zijlstrae041e322014-05-21 17:32:19 +02003153void perf_event_exec(void)
3154{
Peter Zijlstrae041e322014-05-21 17:32:19 +02003155 int ctxn;
3156
3157 rcu_read_lock();
Peter Zijlstrac1274492015-12-10 20:57:40 +01003158 for_each_task_context_nr(ctxn)
3159 perf_event_enable_on_exec(ctxn);
Peter Zijlstrae041e322014-05-21 17:32:19 +02003160 rcu_read_unlock();
3161}
3162
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003163struct perf_read_data {
3164 struct perf_event *event;
3165 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003166 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003167};
3168
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169/*
3170 * Cross CPU call to read the hardware event
3171 */
3172static void __perf_event_read(void *info)
3173{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003174 struct perf_read_data *data = info;
3175 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003176 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003177 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003178 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003179
3180 /*
3181 * If this is a task context, we need to check whether it is
3182 * the current task context of this cpu. If not it has been
3183 * scheduled out before the smp call arrived. In that case
3184 * event->count would have been updated to a recent sample
3185 * when the event was scheduled out.
3186 */
3187 if (ctx->task && cpuctx->task_ctx != ctx)
3188 return;
3189
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003190 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003191 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003192 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003193 update_cgrp_time_from_event(event);
3194 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003195
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003196 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003197 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003198 goto unlock;
3199
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003200 if (!data->group) {
3201 pmu->read(event);
3202 data->ret = 0;
3203 goto unlock;
3204 }
3205
3206 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3207
3208 pmu->read(event);
3209
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003210 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3211 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003212 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3213 /*
3214 * Use sibling's PMU rather than @event's since
3215 * sibling could be on different (eg: software) PMU.
3216 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003217 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003218 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003219 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003220
3221 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003222
3223unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003224 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003225}
3226
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003227static inline u64 perf_event_count(struct perf_event *event)
3228{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003229 if (event->pmu->count)
3230 return event->pmu->count(event);
3231
3232 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003233}
3234
Kaixu Xiaffe86902015-08-06 07:02:32 +00003235/*
3236 * NMI-safe method to read a local event, that is an event that
3237 * is:
3238 * - either for the current task, or for this CPU
3239 * - does not have inherit set, for inherited task events
3240 * will not be local and we cannot read them atomically
3241 * - must not have a pmu::count method
3242 */
3243u64 perf_event_read_local(struct perf_event *event)
3244{
3245 unsigned long flags;
3246 u64 val;
3247
3248 /*
3249 * Disabling interrupts avoids all counter scheduling (context
3250 * switches, timer based rotation and IPIs).
3251 */
3252 local_irq_save(flags);
3253
3254 /* If this is a per-task event, it must be for current */
3255 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3256 event->hw.target != current);
3257
3258 /* If this is a per-CPU event, it must be for this CPU */
3259 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3260 event->cpu != smp_processor_id());
3261
3262 /*
3263 * It must not be an event with inherit set, we cannot read
3264 * all child counters from atomic context.
3265 */
3266 WARN_ON_ONCE(event->attr.inherit);
3267
3268 /*
3269 * It must not have a pmu::count method, those are not
3270 * NMI safe.
3271 */
3272 WARN_ON_ONCE(event->pmu->count);
3273
3274 /*
3275 * If the event is currently on this CPU, its either a per-task event,
3276 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3277 * oncpu == -1).
3278 */
3279 if (event->oncpu == smp_processor_id())
3280 event->pmu->read(event);
3281
3282 val = local64_read(&event->count);
3283 local_irq_restore(flags);
3284
3285 return val;
3286}
3287
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003288static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003289{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003290 int ret = 0;
3291
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003292 /*
3293 * If event is enabled and currently active on a CPU, update the
3294 * value in the event structure:
3295 */
3296 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003297 struct perf_read_data data = {
3298 .event = event,
3299 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003300 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003301 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003302 smp_call_function_single(event->oncpu,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003303 __perf_event_read, &data, 1);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003304 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003305 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003306 struct perf_event_context *ctx = event->ctx;
3307 unsigned long flags;
3308
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003309 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003310 /*
3311 * may read while context is not active
3312 * (e.g., thread is blocked), in that case
3313 * we cannot update context time
3314 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003315 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003316 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003317 update_cgrp_time_from_event(event);
3318 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003319 if (group)
3320 update_group_times(event);
3321 else
3322 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003323 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003324 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003325
3326 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327}
3328
3329/*
3330 * Initialize the perf_event context in a task_struct:
3331 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003332static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003333{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003334 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003335 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003336 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003337 INIT_LIST_HEAD(&ctx->pinned_groups);
3338 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003339 INIT_LIST_HEAD(&ctx->event_list);
3340 atomic_set(&ctx->refcount, 1);
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003341 INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003342}
3343
Peter Zijlstraeb184472010-09-07 15:55:13 +02003344static struct perf_event_context *
3345alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346{
3347 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003348
3349 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3350 if (!ctx)
3351 return NULL;
3352
3353 __perf_event_init_context(ctx);
3354 if (task) {
3355 ctx->task = task;
3356 get_task_struct(task);
3357 }
3358 ctx->pmu = pmu;
3359
3360 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361}
3362
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003363static struct task_struct *
3364find_lively_task_by_vpid(pid_t vpid)
3365{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003367 int err;
3368
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003369 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003370 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003371 task = current;
3372 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003373 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374 if (task)
3375 get_task_struct(task);
3376 rcu_read_unlock();
3377
3378 if (!task)
3379 return ERR_PTR(-ESRCH);
3380
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003381 /* Reuse ptrace permission checks for now. */
3382 err = -EACCES;
3383 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3384 goto errout;
3385
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003386 return task;
3387errout:
3388 put_task_struct(task);
3389 return ERR_PTR(err);
3390
3391}
3392
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003393/*
3394 * Returns a matching context with refcount and pincount.
3395 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003396static struct perf_event_context *
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003397find_get_context(struct pmu *pmu, struct task_struct *task,
3398 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003399{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003400 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003401 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003402 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003403 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003404 int ctxn, err;
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003405 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003407 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003408 /* Must be root to operate on a CPU event: */
3409 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3410 return ERR_PTR(-EACCES);
3411
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003412 /*
3413 * We could be clever and allow to attach a event to an
3414 * offline CPU and activate it when the CPU comes up, but
3415 * that's for later.
3416 */
3417 if (!cpu_online(cpu))
3418 return ERR_PTR(-ENODEV);
3419
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003420 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003421 ctx = &cpuctx->ctx;
3422 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003423 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003424
3425 return ctx;
3426 }
3427
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003428 err = -EINVAL;
3429 ctxn = pmu->task_ctx_nr;
3430 if (ctxn < 0)
3431 goto errout;
3432
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003433 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3434 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3435 if (!task_ctx_data) {
3436 err = -ENOMEM;
3437 goto errout;
3438 }
3439 }
3440
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003441retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003442 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003443 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003444 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003445 ++ctx->pin_count;
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003446
3447 if (task_ctx_data && !ctx->task_ctx_data) {
3448 ctx->task_ctx_data = task_ctx_data;
3449 task_ctx_data = NULL;
3450 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003451 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003452
3453 if (clone_ctx)
3454 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003455 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003456 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003457 err = -ENOMEM;
3458 if (!ctx)
3459 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003460
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003461 if (task_ctx_data) {
3462 ctx->task_ctx_data = task_ctx_data;
3463 task_ctx_data = NULL;
3464 }
3465
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003466 err = 0;
3467 mutex_lock(&task->perf_event_mutex);
3468 /*
3469 * If it has already passed perf_event_exit_task().
3470 * we must see PF_EXITING, it takes this mutex too.
3471 */
3472 if (task->flags & PF_EXITING)
3473 err = -ESRCH;
3474 else if (task->perf_event_ctxp[ctxn])
3475 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003476 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003477 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003478 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003479 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003480 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003481 mutex_unlock(&task->perf_event_mutex);
3482
3483 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003484 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003485
3486 if (err == -EAGAIN)
3487 goto retry;
3488 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003489 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003490 }
3491
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003492 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493 return ctx;
3494
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003495errout:
Yan, Zheng4af57ef282014-11-04 21:56:01 -05003496 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003497 return ERR_PTR(err);
3498}
3499
Li Zefan6fb29152009-10-15 11:21:42 +08003500static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003501static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003502
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003503static void free_event_rcu(struct rcu_head *head)
3504{
3505 struct perf_event *event;
3506
3507 event = container_of(head, struct perf_event, rcu_head);
3508 if (event->ns)
3509 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003510 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003511 kfree(event);
3512}
3513
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003514static void ring_buffer_attach(struct perf_event *event,
3515 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003516
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003517static void unaccount_event_cpu(struct perf_event *event, int cpu)
3518{
3519 if (event->parent)
3520 return;
3521
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003522 if (is_cgroup_event(event))
3523 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3524}
3525
3526static void unaccount_event(struct perf_event *event)
3527{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003528 bool dec = false;
3529
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003530 if (event->parent)
3531 return;
3532
3533 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003534 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003535 if (event->attr.mmap || event->attr.mmap_data)
3536 atomic_dec(&nr_mmap_events);
3537 if (event->attr.comm)
3538 atomic_dec(&nr_comm_events);
3539 if (event->attr.task)
3540 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003541 if (event->attr.freq)
3542 atomic_dec(&nr_freq_events);
Adrian Hunter45ac1402015-07-21 12:44:02 +03003543 if (event->attr.context_switch) {
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003544 dec = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03003545 atomic_dec(&nr_switch_events);
3546 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003547 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003548 dec = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003549 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01003550 dec = true;
3551
3552 if (dec)
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003553 static_key_slow_dec_deferred(&perf_sched_events);
3554
3555 unaccount_event_cpu(event, event->cpu);
3556}
3557
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003558/*
3559 * The following implement mutual exclusion of events on "exclusive" pmus
3560 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3561 * at a time, so we disallow creating events that might conflict, namely:
3562 *
3563 * 1) cpu-wide events in the presence of per-task events,
3564 * 2) per-task events in the presence of cpu-wide events,
3565 * 3) two matching events on the same context.
3566 *
3567 * The former two cases are handled in the allocation path (perf_event_alloc(),
3568 * __free_event()), the latter -- before the first perf_install_in_context().
3569 */
3570static int exclusive_event_init(struct perf_event *event)
3571{
3572 struct pmu *pmu = event->pmu;
3573
3574 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3575 return 0;
3576
3577 /*
3578 * Prevent co-existence of per-task and cpu-wide events on the
3579 * same exclusive pmu.
3580 *
3581 * Negative pmu::exclusive_cnt means there are cpu-wide
3582 * events on this "exclusive" pmu, positive means there are
3583 * per-task events.
3584 *
3585 * Since this is called in perf_event_alloc() path, event::ctx
3586 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3587 * to mean "per-task event", because unlike other attach states it
3588 * never gets cleared.
3589 */
3590 if (event->attach_state & PERF_ATTACH_TASK) {
3591 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3592 return -EBUSY;
3593 } else {
3594 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3595 return -EBUSY;
3596 }
3597
3598 return 0;
3599}
3600
3601static void exclusive_event_destroy(struct perf_event *event)
3602{
3603 struct pmu *pmu = event->pmu;
3604
3605 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3606 return;
3607
3608 /* see comment in exclusive_event_init() */
3609 if (event->attach_state & PERF_ATTACH_TASK)
3610 atomic_dec(&pmu->exclusive_cnt);
3611 else
3612 atomic_inc(&pmu->exclusive_cnt);
3613}
3614
3615static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3616{
3617 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3618 (e1->cpu == e2->cpu ||
3619 e1->cpu == -1 ||
3620 e2->cpu == -1))
3621 return true;
3622 return false;
3623}
3624
3625/* Called under the same ctx::mutex as perf_install_in_context() */
3626static bool exclusive_event_installable(struct perf_event *event,
3627 struct perf_event_context *ctx)
3628{
3629 struct perf_event *iter_event;
3630 struct pmu *pmu = event->pmu;
3631
3632 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3633 return true;
3634
3635 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3636 if (exclusive_event_match(iter_event, event))
3637 return false;
3638 }
3639
3640 return true;
3641}
3642
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003643static void __free_event(struct perf_event *event)
3644{
3645 if (!event->parent) {
3646 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3647 put_callchain_buffers();
3648 }
3649
Alexei Starovoitovdead9f22015-05-15 12:15:21 -07003650 perf_event_free_bpf_prog(event);
3651
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003652 if (event->destroy)
3653 event->destroy(event);
3654
3655 if (event->ctx)
3656 put_ctx(event->ctx);
3657
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003658 if (event->pmu) {
3659 exclusive_event_destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08003660 module_put(event->pmu->module);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003661 }
Yan, Zhengc464c762014-03-18 16:56:41 +08003662
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003663 call_rcu(&event->rcu_head, free_event_rcu);
3664}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003665
3666static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003667{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003668 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003670 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003671
Frederic Weisbecker76369132011-05-19 19:55:04 +02003672 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003673 /*
3674 * Can happen when we close an event with re-directed output.
3675 *
3676 * Since we have a 0 refcount, perf_mmap_close() will skip
3677 * over us; possibly making our ring_buffer_put() the last.
3678 */
3679 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003680 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003681 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003682 }
3683
Stephane Eraniane5d13672011-02-14 11:20:01 +02003684 if (is_cgroup_event(event))
3685 perf_detach_cgroup(event);
3686
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003687 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003688}
3689
Peter Zijlstra683ede42014-05-05 12:11:24 +02003690/*
3691 * Used to free events which have a known refcount of 1, such as in error paths
3692 * where the event isn't exposed yet and inherited events.
3693 */
3694static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003695{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003696 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3697 "unexpected event refcount: %ld; ptr=%p\n",
3698 atomic_long_read(&event->refcount), event)) {
3699 /* leak to avoid use-after-free */
3700 return;
3701 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003702
Peter Zijlstra683ede42014-05-05 12:11:24 +02003703 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003704}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003705
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003706/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003707 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003708 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003709static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003710{
Peter Zijlstra88821352010-11-09 19:01:43 +01003711 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003712
Peter Zijlstra88821352010-11-09 19:01:43 +01003713 rcu_read_lock();
3714 owner = ACCESS_ONCE(event->owner);
3715 /*
3716 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3717 * !owner it means the list deletion is complete and we can indeed
3718 * free this event, otherwise we need to serialize on
3719 * owner->perf_event_mutex.
3720 */
3721 smp_read_barrier_depends();
3722 if (owner) {
3723 /*
3724 * Since delayed_put_task_struct() also drops the last
3725 * task reference we can safely take a new reference
3726 * while holding the rcu_read_lock().
3727 */
3728 get_task_struct(owner);
3729 }
3730 rcu_read_unlock();
3731
3732 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003733 /*
3734 * If we're here through perf_event_exit_task() we're already
3735 * holding ctx->mutex which would be an inversion wrt. the
3736 * normal lock order.
3737 *
3738 * However we can safely take this lock because its the child
3739 * ctx->mutex.
3740 */
3741 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3742
Peter Zijlstra88821352010-11-09 19:01:43 +01003743 /*
3744 * We have to re-check the event->owner field, if it is cleared
3745 * we raced with perf_event_exit_task(), acquiring the mutex
3746 * ensured they're done, and we can proceed with freeing the
3747 * event.
3748 */
3749 if (event->owner)
3750 list_del_init(&event->owner_entry);
3751 mutex_unlock(&owner->perf_event_mutex);
3752 put_task_struct(owner);
3753 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003754}
3755
Jiri Olsaf8697762014-08-01 14:33:01 +02003756static void put_event(struct perf_event *event)
3757{
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003758 struct perf_event_context *ctx;
Jiri Olsaf8697762014-08-01 14:33:01 +02003759
3760 if (!atomic_long_dec_and_test(&event->refcount))
3761 return;
3762
3763 if (!is_kernel_event(event))
3764 perf_remove_from_owner(event);
Peter Zijlstra88821352010-11-09 19:01:43 +01003765
Peter Zijlstra683ede42014-05-05 12:11:24 +02003766 /*
3767 * There are two ways this annotation is useful:
3768 *
3769 * 1) there is a lock recursion from perf_event_exit_task
3770 * see the comment there.
3771 *
3772 * 2) there is a lock-inversion with mmap_sem through
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003773 * perf_read_group(), which takes faults while
Peter Zijlstra683ede42014-05-05 12:11:24 +02003774 * holding ctx->mutex, however this is called after
3775 * the last filedesc died, so there is no possibility
3776 * to trigger the AB-BA case.
3777 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003778 ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3779 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003780 perf_remove_from_context(event, true);
Leon Yud415a7f2015-02-26 20:43:33 +08003781 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003782
3783 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003784}
3785
Peter Zijlstra683ede42014-05-05 12:11:24 +02003786int perf_event_release_kernel(struct perf_event *event)
3787{
3788 put_event(event);
3789 return 0;
3790}
3791EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3792
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02003793/*
3794 * Called when the last reference to the file is gone.
3795 */
Al Viroa6fa9412012-08-20 14:59:25 +01003796static int perf_release(struct inode *inode, struct file *file)
3797{
3798 put_event(file->private_data);
3799 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003800}
3801
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003802/*
3803 * Remove all orphanes events from the context.
3804 */
3805static void orphans_remove_work(struct work_struct *work)
3806{
3807 struct perf_event_context *ctx;
3808 struct perf_event *event, *tmp;
3809
3810 ctx = container_of(work, struct perf_event_context,
3811 orphans_remove.work);
3812
3813 mutex_lock(&ctx->mutex);
3814 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3815 struct perf_event *parent_event = event->parent;
3816
3817 if (!is_orphaned_child(event))
3818 continue;
3819
3820 perf_remove_from_context(event, true);
3821
3822 mutex_lock(&parent_event->child_mutex);
3823 list_del_init(&event->child_list);
3824 mutex_unlock(&parent_event->child_mutex);
3825
3826 free_event(event);
3827 put_event(parent_event);
3828 }
3829
3830 raw_spin_lock_irq(&ctx->lock);
3831 ctx->orphans_remove_sched = false;
3832 raw_spin_unlock_irq(&ctx->lock);
3833 mutex_unlock(&ctx->mutex);
3834
3835 put_ctx(ctx);
3836}
3837
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003838u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003839{
3840 struct perf_event *child;
3841 u64 total = 0;
3842
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003843 *enabled = 0;
3844 *running = 0;
3845
Peter Zijlstra6f105812009-11-20 22:19:56 +01003846 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003847
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003848 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003849 total += perf_event_count(event);
3850
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003851 *enabled += event->total_time_enabled +
3852 atomic64_read(&event->child_total_time_enabled);
3853 *running += event->total_time_running +
3854 atomic64_read(&event->child_total_time_running);
3855
3856 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003857 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003858 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003859 *enabled += child->total_time_enabled;
3860 *running += child->total_time_running;
3861 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003862 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003863
3864 return total;
3865}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003866EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003867
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003868static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003869 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003870{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003871 struct perf_event *sub;
3872 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003873 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003874
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003875 ret = perf_event_read(leader, true);
3876 if (ret)
3877 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003878
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003879 /*
3880 * Since we co-schedule groups, {enabled,running} times of siblings
3881 * will be identical to those of the leader, so we only publish one
3882 * set.
3883 */
3884 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3885 values[n++] += leader->total_time_enabled +
3886 atomic64_read(&leader->child_total_time_enabled);
3887 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003888
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003889 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3890 values[n++] += leader->total_time_running +
3891 atomic64_read(&leader->child_total_time_running);
3892 }
3893
3894 /*
3895 * Write {count,id} tuples for every sibling.
3896 */
3897 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003898 if (read_format & PERF_FORMAT_ID)
3899 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003901 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003902 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003903 if (read_format & PERF_FORMAT_ID)
3904 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003905 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003906
3907 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003908}
3909
3910static int perf_read_group(struct perf_event *event,
3911 u64 read_format, char __user *buf)
3912{
3913 struct perf_event *leader = event->group_leader, *child;
3914 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003915 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003916 u64 *values;
3917
3918 lockdep_assert_held(&ctx->mutex);
3919
3920 values = kzalloc(event->read_size, GFP_KERNEL);
3921 if (!values)
3922 return -ENOMEM;
3923
3924 values[0] = 1 + leader->nr_siblings;
3925
3926 /*
3927 * By locking the child_mutex of the leader we effectively
3928 * lock the child list of all siblings.. XXX explain how.
3929 */
3930 mutex_lock(&leader->child_mutex);
3931
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003932 ret = __perf_read_group_add(leader, read_format, values);
3933 if (ret)
3934 goto unlock;
3935
3936 list_for_each_entry(child, &leader->child_list, child_list) {
3937 ret = __perf_read_group_add(child, read_format, values);
3938 if (ret)
3939 goto unlock;
3940 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003941
3942 mutex_unlock(&leader->child_mutex);
3943
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003944 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003945 if (copy_to_user(buf, values, event->read_size))
3946 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003947 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003948
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003949unlock:
3950 mutex_unlock(&leader->child_mutex);
3951out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003952 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003953 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003954}
3955
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003956static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003957 u64 read_format, char __user *buf)
3958{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003959 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003960 u64 values[4];
3961 int n = 0;
3962
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003963 values[n++] = perf_event_read_value(event, &enabled, &running);
3964 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3965 values[n++] = enabled;
3966 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3967 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003968 if (read_format & PERF_FORMAT_ID)
3969 values[n++] = primary_event_id(event);
3970
3971 if (copy_to_user(buf, values, n * sizeof(u64)))
3972 return -EFAULT;
3973
3974 return n * sizeof(u64);
3975}
3976
Jiri Olsadc633982014-09-12 13:18:26 +02003977static bool is_event_hup(struct perf_event *event)
3978{
3979 bool no_children;
3980
3981 if (event->state != PERF_EVENT_STATE_EXIT)
3982 return false;
3983
3984 mutex_lock(&event->child_mutex);
3985 no_children = list_empty(&event->child_list);
3986 mutex_unlock(&event->child_mutex);
3987 return no_children;
3988}
3989
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003990/*
3991 * Read the performance event - simple non blocking version for now
3992 */
3993static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003994__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003995{
3996 u64 read_format = event->attr.read_format;
3997 int ret;
3998
3999 /*
4000 * Return end-of-file for a read on a event that is in
4001 * error state (i.e. because it was pinned but it couldn't be
4002 * scheduled on to the CPU at some point).
4003 */
4004 if (event->state == PERF_EVENT_STATE_ERROR)
4005 return 0;
4006
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004007 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004008 return -ENOSPC;
4009
4010 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004011 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004012 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004013 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004014 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004015
4016 return ret;
4017}
4018
4019static ssize_t
4020perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4021{
4022 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004023 struct perf_event_context *ctx;
4024 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004025
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004026 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07004027 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004028 perf_event_ctx_unlock(event, ctx);
4029
4030 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004031}
4032
4033static unsigned int perf_poll(struct file *file, poll_table *wait)
4034{
4035 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004036 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02004037 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004038
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004039 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004040
Jiri Olsadc633982014-09-12 13:18:26 +02004041 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004042 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004043
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004044 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004045 * Pin the event->rb by taking event->mmap_mutex; otherwise
4046 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004047 */
4048 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004049 rb = event->rb;
4050 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004051 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004052 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004053 return events;
4054}
4055
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004056static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004057{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004058 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004059 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004060 perf_event_update_userpage(event);
4061}
4062
4063/*
4064 * Holding the top-level event's child_mutex means that any
4065 * descendant process that has inherited this event will block
4066 * in sync_child_event if it goes to exit, thus satisfying the
4067 * task existence requirements of perf_event_enable/disable.
4068 */
4069static void perf_event_for_each_child(struct perf_event *event,
4070 void (*func)(struct perf_event *))
4071{
4072 struct perf_event *child;
4073
4074 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004076 mutex_lock(&event->child_mutex);
4077 func(event);
4078 list_for_each_entry(child, &event->child_list, child_list)
4079 func(child);
4080 mutex_unlock(&event->child_mutex);
4081}
4082
4083static void perf_event_for_each(struct perf_event *event,
4084 void (*func)(struct perf_event *))
4085{
4086 struct perf_event_context *ctx = event->ctx;
4087 struct perf_event *sibling;
4088
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004089 lockdep_assert_held(&ctx->mutex);
4090
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004091 event = event->group_leader;
4092
4093 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004094 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004095 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004096}
4097
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004098struct period_event {
4099 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004100 u64 value;
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004101};
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004102
Peter Zijlstra00179602015-11-30 16:26:35 +01004103static void ___perf_event_period(void *info)
4104{
4105 struct period_event *pe = info;
4106 struct perf_event *event = pe->event;
4107 u64 value = pe->value;
4108
4109 if (event->attr.freq) {
4110 event->attr.sample_freq = value;
4111 } else {
4112 event->attr.sample_period = value;
4113 event->hw.sample_period = value;
4114 }
4115
4116 local64_set(&event->hw.period_left, 0);
4117}
4118
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004119static int __perf_event_period(void *info)
4120{
4121 struct period_event *pe = info;
4122 struct perf_event *event = pe->event;
4123 struct perf_event_context *ctx = event->ctx;
4124 u64 value = pe->value;
4125 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004126
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004127 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004128 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004129 event->attr.sample_freq = value;
4130 } else {
4131 event->attr.sample_period = value;
4132 event->hw.sample_period = value;
4133 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004134
4135 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4136 if (active) {
4137 perf_pmu_disable(ctx->pmu);
4138 event->pmu->stop(event, PERF_EF_UPDATE);
4139 }
4140
4141 local64_set(&event->hw.period_left, 0);
4142
4143 if (active) {
4144 event->pmu->start(event, PERF_EF_RELOAD);
4145 perf_pmu_enable(ctx->pmu);
4146 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004147 raw_spin_unlock(&ctx->lock);
Peter Zijlstrabad71922013-11-27 13:54:38 +00004148
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004149 return 0;
4150}
4151
4152static int perf_event_period(struct perf_event *event, u64 __user *arg)
4153{
4154 struct period_event pe = { .event = event, };
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004155 u64 value;
4156
4157 if (!is_sampling_event(event))
4158 return -EINVAL;
4159
4160 if (copy_from_user(&value, arg, sizeof(value)))
4161 return -EFAULT;
4162
4163 if (!value)
4164 return -EINVAL;
4165
4166 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4167 return -EINVAL;
4168
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004169 pe.value = value;
4170
Peter Zijlstra00179602015-11-30 16:26:35 +01004171 event_function_call(event, __perf_event_period,
4172 ___perf_event_period, &pe);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004174 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004175}
4176
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004177static const struct file_operations perf_fops;
4178
Al Viro2903ff02012-08-28 12:52:22 -04004179static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004180{
Al Viro2903ff02012-08-28 12:52:22 -04004181 struct fd f = fdget(fd);
4182 if (!f.file)
4183 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004184
Al Viro2903ff02012-08-28 12:52:22 -04004185 if (f.file->f_op != &perf_fops) {
4186 fdput(f);
4187 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004188 }
Al Viro2903ff02012-08-28 12:52:22 -04004189 *p = f;
4190 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004191}
4192
4193static int perf_event_set_output(struct perf_event *event,
4194 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004195static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004196static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004197
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004198static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004199{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004200 void (*func)(struct perf_event *);
4201 u32 flags = arg;
4202
4203 switch (cmd) {
4204 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004205 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004206 break;
4207 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004208 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004209 break;
4210 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004211 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004212 break;
4213
4214 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004215 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004216
4217 case PERF_EVENT_IOC_PERIOD:
4218 return perf_event_period(event, (u64 __user *)arg);
4219
Jiri Olsacf4957f2012-10-24 13:37:58 +02004220 case PERF_EVENT_IOC_ID:
4221 {
4222 u64 id = primary_event_id(event);
4223
4224 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4225 return -EFAULT;
4226 return 0;
4227 }
4228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004229 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004230 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004231 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004232 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004233 struct perf_event *output_event;
4234 struct fd output;
4235 ret = perf_fget_light(arg, &output);
4236 if (ret)
4237 return ret;
4238 output_event = output.file->private_data;
4239 ret = perf_event_set_output(event, output_event);
4240 fdput(output);
4241 } else {
4242 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004243 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004244 return ret;
4245 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004246
Li Zefan6fb29152009-10-15 11:21:42 +08004247 case PERF_EVENT_IOC_SET_FILTER:
4248 return perf_event_set_filter(event, (void __user *)arg);
4249
Alexei Starovoitov25415172015-03-25 12:49:20 -07004250 case PERF_EVENT_IOC_SET_BPF:
4251 return perf_event_set_bpf_prog(event, arg);
4252
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004253 default:
4254 return -ENOTTY;
4255 }
4256
4257 if (flags & PERF_IOC_FLAG_GROUP)
4258 perf_event_for_each(event, func);
4259 else
4260 perf_event_for_each_child(event, func);
4261
4262 return 0;
4263}
4264
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004265static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4266{
4267 struct perf_event *event = file->private_data;
4268 struct perf_event_context *ctx;
4269 long ret;
4270
4271 ctx = perf_event_ctx_lock(event);
4272 ret = _perf_ioctl(event, cmd, arg);
4273 perf_event_ctx_unlock(event, ctx);
4274
4275 return ret;
4276}
4277
Pawel Mollb3f20782014-06-13 16:03:32 +01004278#ifdef CONFIG_COMPAT
4279static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4280 unsigned long arg)
4281{
4282 switch (_IOC_NR(cmd)) {
4283 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4284 case _IOC_NR(PERF_EVENT_IOC_ID):
4285 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4286 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4287 cmd &= ~IOCSIZE_MASK;
4288 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4289 }
4290 break;
4291 }
4292 return perf_ioctl(file, cmd, arg);
4293}
4294#else
4295# define perf_compat_ioctl NULL
4296#endif
4297
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004298int perf_event_task_enable(void)
4299{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004300 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004301 struct perf_event *event;
4302
4303 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004304 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4305 ctx = perf_event_ctx_lock(event);
4306 perf_event_for_each_child(event, _perf_event_enable);
4307 perf_event_ctx_unlock(event, ctx);
4308 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004309 mutex_unlock(&current->perf_event_mutex);
4310
4311 return 0;
4312}
4313
4314int perf_event_task_disable(void)
4315{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004316 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004317 struct perf_event *event;
4318
4319 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004320 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4321 ctx = perf_event_ctx_lock(event);
4322 perf_event_for_each_child(event, _perf_event_disable);
4323 perf_event_ctx_unlock(event, ctx);
4324 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004325 mutex_unlock(&current->perf_event_mutex);
4326
4327 return 0;
4328}
4329
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004330static int perf_event_index(struct perf_event *event)
4331{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004332 if (event->hw.state & PERF_HES_STOPPED)
4333 return 0;
4334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004335 if (event->state != PERF_EVENT_STATE_ACTIVE)
4336 return 0;
4337
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004338 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004339}
4340
Eric B Munsonc4794292011-06-23 16:34:38 -04004341static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004342 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004343 u64 *enabled,
4344 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004345{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004346 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004347
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004348 *now = perf_clock();
4349 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004350 *enabled = ctx_time - event->tstamp_enabled;
4351 *running = ctx_time - event->tstamp_running;
4352}
4353
Peter Zijlstrafa731582013-09-19 10:16:42 +02004354static void perf_event_init_userpage(struct perf_event *event)
4355{
4356 struct perf_event_mmap_page *userpg;
4357 struct ring_buffer *rb;
4358
4359 rcu_read_lock();
4360 rb = rcu_dereference(event->rb);
4361 if (!rb)
4362 goto unlock;
4363
4364 userpg = rb->user_page;
4365
4366 /* Allow new userspace to detect that bit 0 is deprecated */
4367 userpg->cap_bit0_is_deprecated = 1;
4368 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004369 userpg->data_offset = PAGE_SIZE;
4370 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa731582013-09-19 10:16:42 +02004371
4372unlock:
4373 rcu_read_unlock();
4374}
4375
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004376void __weak arch_perf_update_userpage(
4377 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004378{
4379}
4380
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004381/*
4382 * Callers need to ensure there can be no nesting of this function, otherwise
4383 * the seqlock logic goes bad. We can not serialize this because the arch
4384 * code calls this from NMI context.
4385 */
4386void perf_event_update_userpage(struct perf_event *event)
4387{
4388 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004389 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004390 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004391
4392 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004393 rb = rcu_dereference(event->rb);
4394 if (!rb)
4395 goto unlock;
4396
Eric B Munson0d641202011-06-24 12:26:26 -04004397 /*
4398 * compute total_time_enabled, total_time_running
4399 * based on snapshot values taken when the event
4400 * was last scheduled in.
4401 *
4402 * we cannot simply called update_context_time()
4403 * because of locking issue as we can be called in
4404 * NMI context
4405 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004406 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004407
Frederic Weisbecker76369132011-05-19 19:55:04 +02004408 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004409 /*
4410 * Disable preemption so as to not let the corresponding user-space
4411 * spin too long if we get preempted.
4412 */
4413 preempt_disable();
4414 ++userpg->lock;
4415 barrier();
4416 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004417 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004418 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004419 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004420
Eric B Munson0d641202011-06-24 12:26:26 -04004421 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004422 atomic64_read(&event->child_total_time_enabled);
4423
Eric B Munson0d641202011-06-24 12:26:26 -04004424 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004425 atomic64_read(&event->child_total_time_running);
4426
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004427 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004428
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004429 barrier();
4430 ++userpg->lock;
4431 preempt_enable();
4432unlock:
4433 rcu_read_unlock();
4434}
4435
Peter Zijlstra906010b2009-09-21 16:08:49 +02004436static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4437{
4438 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004439 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004440 int ret = VM_FAULT_SIGBUS;
4441
4442 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4443 if (vmf->pgoff == 0)
4444 ret = 0;
4445 return ret;
4446 }
4447
4448 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004449 rb = rcu_dereference(event->rb);
4450 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004451 goto unlock;
4452
4453 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4454 goto unlock;
4455
Frederic Weisbecker76369132011-05-19 19:55:04 +02004456 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004457 if (!vmf->page)
4458 goto unlock;
4459
4460 get_page(vmf->page);
4461 vmf->page->mapping = vma->vm_file->f_mapping;
4462 vmf->page->index = vmf->pgoff;
4463
4464 ret = 0;
4465unlock:
4466 rcu_read_unlock();
4467
4468 return ret;
4469}
4470
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004471static void ring_buffer_attach(struct perf_event *event,
4472 struct ring_buffer *rb)
4473{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004474 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004475 unsigned long flags;
4476
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004477 if (event->rb) {
4478 /*
4479 * Should be impossible, we set this when removing
4480 * event->rb_entry and wait/clear when adding event->rb_entry.
4481 */
4482 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004483
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004484 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004485 spin_lock_irqsave(&old_rb->event_lock, flags);
4486 list_del_rcu(&event->rb_entry);
4487 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004488
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004489 event->rcu_batches = get_state_synchronize_rcu();
4490 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004491 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004492
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004493 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004494 if (event->rcu_pending) {
4495 cond_synchronize_rcu(event->rcu_batches);
4496 event->rcu_pending = 0;
4497 }
4498
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004499 spin_lock_irqsave(&rb->event_lock, flags);
4500 list_add_rcu(&event->rb_entry, &rb->event_list);
4501 spin_unlock_irqrestore(&rb->event_lock, flags);
4502 }
4503
4504 rcu_assign_pointer(event->rb, rb);
4505
4506 if (old_rb) {
4507 ring_buffer_put(old_rb);
4508 /*
4509 * Since we detached before setting the new rb, so that we
4510 * could attach the new rb, we could have missed a wakeup.
4511 * Provide it now.
4512 */
4513 wake_up_all(&event->waitq);
4514 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004515}
4516
4517static void ring_buffer_wakeup(struct perf_event *event)
4518{
4519 struct ring_buffer *rb;
4520
4521 rcu_read_lock();
4522 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004523 if (rb) {
4524 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4525 wake_up_all(&event->waitq);
4526 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004527 rcu_read_unlock();
4528}
4529
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004530struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004531{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004532 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004533
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004534 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004535 rb = rcu_dereference(event->rb);
4536 if (rb) {
4537 if (!atomic_inc_not_zero(&rb->refcount))
4538 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004539 }
4540 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004541
Frederic Weisbecker76369132011-05-19 19:55:04 +02004542 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004543}
4544
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004545void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004546{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004547 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004548 return;
4549
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004550 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004551
Frederic Weisbecker76369132011-05-19 19:55:04 +02004552 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004553}
4554
4555static void perf_mmap_open(struct vm_area_struct *vma)
4556{
4557 struct perf_event *event = vma->vm_file->private_data;
4558
4559 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004560 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004561
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004562 if (vma->vm_pgoff)
4563 atomic_inc(&event->rb->aux_mmap_count);
4564
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004565 if (event->pmu->event_mapped)
4566 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004567}
4568
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004569/*
4570 * A buffer can be mmap()ed multiple times; either directly through the same
4571 * event, or through other events by use of perf_event_set_output().
4572 *
4573 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4574 * the buffer here, where we still have a VM context. This means we need
4575 * to detach all events redirecting to us.
4576 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004577static void perf_mmap_close(struct vm_area_struct *vma)
4578{
4579 struct perf_event *event = vma->vm_file->private_data;
4580
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004581 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004582 struct user_struct *mmap_user = rb->mmap_user;
4583 int mmap_locked = rb->mmap_locked;
4584 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004585
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004586 if (event->pmu->event_unmapped)
4587 event->pmu->event_unmapped(event);
4588
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004589 /*
4590 * rb->aux_mmap_count will always drop before rb->mmap_count and
4591 * event->mmap_count, so it is ok to use event->mmap_mutex to
4592 * serialize with perf_mmap here.
4593 */
4594 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4595 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
4596 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4597 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4598
4599 rb_free_aux(rb);
4600 mutex_unlock(&event->mmap_mutex);
4601 }
4602
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004603 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004604
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004605 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004606 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004607
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004608 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004609 mutex_unlock(&event->mmap_mutex);
4610
4611 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004612 if (atomic_read(&rb->mmap_count))
4613 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004614
4615 /*
4616 * No other mmap()s, detach from all other events that might redirect
4617 * into the now unreachable buffer. Somewhat complicated by the
4618 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4619 */
4620again:
4621 rcu_read_lock();
4622 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4623 if (!atomic_long_inc_not_zero(&event->refcount)) {
4624 /*
4625 * This event is en-route to free_event() which will
4626 * detach it and remove it from the list.
4627 */
4628 continue;
4629 }
4630 rcu_read_unlock();
4631
4632 mutex_lock(&event->mmap_mutex);
4633 /*
4634 * Check we didn't race with perf_event_set_output() which can
4635 * swizzle the rb from under us while we were waiting to
4636 * acquire mmap_mutex.
4637 *
4638 * If we find a different rb; ignore this event, a next
4639 * iteration will no longer find it on the list. We have to
4640 * still restart the iteration to make sure we're not now
4641 * iterating the wrong list.
4642 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004643 if (event->rb == rb)
4644 ring_buffer_attach(event, NULL);
4645
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004646 mutex_unlock(&event->mmap_mutex);
4647 put_event(event);
4648
4649 /*
4650 * Restart the iteration; either we're on the wrong list or
4651 * destroyed its integrity by doing a deletion.
4652 */
4653 goto again;
4654 }
4655 rcu_read_unlock();
4656
4657 /*
4658 * It could be there's still a few 0-ref events on the list; they'll
4659 * get cleaned up by free_event() -- they'll also still have their
4660 * ref on the rb and will free it whenever they are done with it.
4661 *
4662 * Aside from that, this buffer is 'fully' detached and unmapped,
4663 * undo the VM accounting.
4664 */
4665
4666 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4667 vma->vm_mm->pinned_vm -= mmap_locked;
4668 free_uid(mmap_user);
4669
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004670out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004671 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004672}
4673
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04004674static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004675 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004676 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004677 .fault = perf_mmap_fault,
4678 .page_mkwrite = perf_mmap_fault,
4679};
4680
4681static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4682{
4683 struct perf_event *event = file->private_data;
4684 unsigned long user_locked, user_lock_limit;
4685 struct user_struct *user = current_user();
4686 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004687 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004688 unsigned long vma_size;
4689 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004690 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004691 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004692
Peter Zijlstrac7920612010-05-18 10:33:24 +02004693 /*
4694 * Don't allow mmap() of inherited per-task counters. This would
4695 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004696 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004697 */
4698 if (event->cpu == -1 && event->attr.inherit)
4699 return -EINVAL;
4700
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004701 if (!(vma->vm_flags & VM_SHARED))
4702 return -EINVAL;
4703
4704 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004705
4706 if (vma->vm_pgoff == 0) {
4707 nr_pages = (vma_size / PAGE_SIZE) - 1;
4708 } else {
4709 /*
4710 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
4711 * mapped, all subsequent mappings should have the same size
4712 * and offset. Must be above the normal perf buffer.
4713 */
4714 u64 aux_offset, aux_size;
4715
4716 if (!event->rb)
4717 return -EINVAL;
4718
4719 nr_pages = vma_size / PAGE_SIZE;
4720
4721 mutex_lock(&event->mmap_mutex);
4722 ret = -EINVAL;
4723
4724 rb = event->rb;
4725 if (!rb)
4726 goto aux_unlock;
4727
4728 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
4729 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
4730
4731 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
4732 goto aux_unlock;
4733
4734 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
4735 goto aux_unlock;
4736
4737 /* already mapped with a different offset */
4738 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
4739 goto aux_unlock;
4740
4741 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
4742 goto aux_unlock;
4743
4744 /* already mapped with a different size */
4745 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
4746 goto aux_unlock;
4747
4748 if (!is_power_of_2(nr_pages))
4749 goto aux_unlock;
4750
4751 if (!atomic_inc_not_zero(&rb->mmap_count))
4752 goto aux_unlock;
4753
4754 if (rb_has_aux(rb)) {
4755 atomic_inc(&rb->aux_mmap_count);
4756 ret = 0;
4757 goto unlock;
4758 }
4759
4760 atomic_set(&rb->aux_mmap_count, 1);
4761 user_extra = nr_pages;
4762
4763 goto accounting;
4764 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004765
4766 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004767 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004768 * can do bitmasks instead of modulo.
4769 */
Kan Liang2ed11312015-03-02 02:14:26 -05004770 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004771 return -EINVAL;
4772
4773 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4774 return -EINVAL;
4775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004776 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004777again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004778 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004779 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004780 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004781 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004782 goto unlock;
4783 }
4784
4785 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4786 /*
4787 * Raced against perf_mmap_close() through
4788 * perf_event_set_output(). Try again, hope for better
4789 * luck.
4790 */
4791 mutex_unlock(&event->mmap_mutex);
4792 goto again;
4793 }
4794
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004795 goto unlock;
4796 }
4797
4798 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004799
4800accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004801 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4802
4803 /*
4804 * Increase the limit linearly with more CPUs:
4805 */
4806 user_lock_limit *= num_online_cpus();
4807
4808 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004810 if (user_locked > user_lock_limit)
4811 extra = user_locked - user_lock_limit;
4812
Jiri Slaby78d7d402010-03-05 13:42:54 -08004813 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004814 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004815 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004816
4817 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4818 !capable(CAP_IPC_LOCK)) {
4819 ret = -EPERM;
4820 goto unlock;
4821 }
4822
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004823 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004824
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004825 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004826 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004827
Frederic Weisbecker76369132011-05-19 19:55:04 +02004828 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004829 rb = rb_alloc(nr_pages,
4830 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4831 event->cpu, flags);
4832
4833 if (!rb) {
4834 ret = -ENOMEM;
4835 goto unlock;
4836 }
4837
4838 atomic_set(&rb->mmap_count, 1);
4839 rb->mmap_user = get_current_user();
4840 rb->mmap_locked = extra;
4841
4842 ring_buffer_attach(event, rb);
4843
4844 perf_event_init_userpage(event);
4845 perf_event_update_userpage(event);
4846 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02004847 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
4848 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004849 if (!ret)
4850 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004851 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004852
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004853unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004854 if (!ret) {
4855 atomic_long_add(user_extra, &user->locked_vm);
4856 vma->vm_mm->pinned_vm += extra;
4857
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004858 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004859 } else if (rb) {
4860 atomic_dec(&rb->mmap_count);
4861 }
4862aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004863 mutex_unlock(&event->mmap_mutex);
4864
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004865 /*
4866 * Since pinned accounting is per vm we cannot allow fork() to copy our
4867 * vma.
4868 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004869 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004870 vma->vm_ops = &perf_mmap_vmops;
4871
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004872 if (event->pmu->event_mapped)
4873 event->pmu->event_mapped(event);
4874
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004875 return ret;
4876}
4877
4878static int perf_fasync(int fd, struct file *filp, int on)
4879{
Al Viro496ad9a2013-01-23 17:07:38 -05004880 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881 struct perf_event *event = filp->private_data;
4882 int retval;
4883
4884 mutex_lock(&inode->i_mutex);
4885 retval = fasync_helper(fd, filp, on, &event->fasync);
4886 mutex_unlock(&inode->i_mutex);
4887
4888 if (retval < 0)
4889 return retval;
4890
4891 return 0;
4892}
4893
4894static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004895 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004896 .release = perf_release,
4897 .read = perf_read,
4898 .poll = perf_poll,
4899 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01004900 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004901 .mmap = perf_mmap,
4902 .fasync = perf_fasync,
4903};
4904
4905/*
4906 * Perf event wakeup
4907 *
4908 * If there's data, ensure we set the poll() state and publish everything
4909 * to user-space before waking everybody up.
4910 */
4911
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004912static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
4913{
4914 /* only the parent has fasync state */
4915 if (event->parent)
4916 event = event->parent;
4917 return &event->fasync;
4918}
4919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004920void perf_event_wakeup(struct perf_event *event)
4921{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004922 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004923
4924 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004925 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926 event->pending_kill = 0;
4927 }
4928}
4929
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004930static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004931{
4932 struct perf_event *event = container_of(entry,
4933 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01004934 int rctx;
4935
4936 rctx = perf_swevent_get_recursion_context();
4937 /*
4938 * If we 'fail' here, that's OK, it means recursion is already disabled
4939 * and we won't recurse 'further'.
4940 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004941
4942 if (event->pending_disable) {
4943 event->pending_disable = 0;
4944 __perf_event_disable(event);
4945 }
4946
4947 if (event->pending_wakeup) {
4948 event->pending_wakeup = 0;
4949 perf_event_wakeup(event);
4950 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01004951
4952 if (rctx >= 0)
4953 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004954}
4955
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004956/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004957 * We assume there is only KVM supporting the callbacks.
4958 * Later on, we might change it to a list if there is
4959 * another virtualization implementation supporting the callbacks.
4960 */
4961struct perf_guest_info_callbacks *perf_guest_cbs;
4962
4963int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4964{
4965 perf_guest_cbs = cbs;
4966 return 0;
4967}
4968EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4969
4970int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4971{
4972 perf_guest_cbs = NULL;
4973 return 0;
4974}
4975EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4976
Jiri Olsa40189942012-08-07 15:20:37 +02004977static void
4978perf_output_sample_regs(struct perf_output_handle *handle,
4979 struct pt_regs *regs, u64 mask)
4980{
4981 int bit;
4982
4983 for_each_set_bit(bit, (const unsigned long *) &mask,
4984 sizeof(mask) * BITS_PER_BYTE) {
4985 u64 val;
4986
4987 val = perf_reg_value(regs, bit);
4988 perf_output_put(handle, val);
4989 }
4990}
4991
Stephane Eranian60e23642014-09-24 13:48:37 +02004992static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004993 struct pt_regs *regs,
4994 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02004995{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004996 if (user_mode(regs)) {
4997 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02004998 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004999 } else if (current->mm) {
5000 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005001 } else {
5002 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5003 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02005004 }
5005}
5006
Stephane Eranian60e23642014-09-24 13:48:37 +02005007static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5008 struct pt_regs *regs)
5009{
5010 regs_intr->regs = regs;
5011 regs_intr->abi = perf_reg_abi(current);
5012}
5013
5014
Jiri Olsac5ebced2012-08-07 15:20:40 +02005015/*
5016 * Get remaining task size from user stack pointer.
5017 *
5018 * It'd be better to take stack vma map and limit this more
5019 * precisly, but there's no way to get it safely under interrupt,
5020 * so using TASK_SIZE as limit.
5021 */
5022static u64 perf_ustack_task_size(struct pt_regs *regs)
5023{
5024 unsigned long addr = perf_user_stack_pointer(regs);
5025
5026 if (!addr || addr >= TASK_SIZE)
5027 return 0;
5028
5029 return TASK_SIZE - addr;
5030}
5031
5032static u16
5033perf_sample_ustack_size(u16 stack_size, u16 header_size,
5034 struct pt_regs *regs)
5035{
5036 u64 task_size;
5037
5038 /* No regs, no stack pointer, no dump. */
5039 if (!regs)
5040 return 0;
5041
5042 /*
5043 * Check if we fit in with the requested stack size into the:
5044 * - TASK_SIZE
5045 * If we don't, we limit the size to the TASK_SIZE.
5046 *
5047 * - remaining sample size
5048 * If we don't, we customize the stack size to
5049 * fit in to the remaining sample size.
5050 */
5051
5052 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5053 stack_size = min(stack_size, (u16) task_size);
5054
5055 /* Current header size plus static size and dynamic size. */
5056 header_size += 2 * sizeof(u64);
5057
5058 /* Do we fit in with the current stack dump size? */
5059 if ((u16) (header_size + stack_size) < header_size) {
5060 /*
5061 * If we overflow the maximum size for the sample,
5062 * we customize the stack dump size to fit in.
5063 */
5064 stack_size = USHRT_MAX - header_size - sizeof(u64);
5065 stack_size = round_up(stack_size, sizeof(u64));
5066 }
5067
5068 return stack_size;
5069}
5070
5071static void
5072perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5073 struct pt_regs *regs)
5074{
5075 /* Case of a kernel thread, nothing to dump */
5076 if (!regs) {
5077 u64 size = 0;
5078 perf_output_put(handle, size);
5079 } else {
5080 unsigned long sp;
5081 unsigned int rem;
5082 u64 dyn_size;
5083
5084 /*
5085 * We dump:
5086 * static size
5087 * - the size requested by user or the best one we can fit
5088 * in to the sample max size
5089 * data
5090 * - user stack dump data
5091 * dynamic size
5092 * - the actual dumped size
5093 */
5094
5095 /* Static size. */
5096 perf_output_put(handle, dump_size);
5097
5098 /* Data. */
5099 sp = perf_user_stack_pointer(regs);
5100 rem = __output_copy_user(handle, (void *) sp, dump_size);
5101 dyn_size = dump_size - rem;
5102
5103 perf_output_skip(handle, rem);
5104
5105 /* Dynamic size. */
5106 perf_output_put(handle, dyn_size);
5107 }
5108}
5109
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005110static void __perf_event_header__init_id(struct perf_event_header *header,
5111 struct perf_sample_data *data,
5112 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005113{
5114 u64 sample_type = event->attr.sample_type;
5115
5116 data->type = sample_type;
5117 header->size += event->id_header_size;
5118
5119 if (sample_type & PERF_SAMPLE_TID) {
5120 /* namespace issues */
5121 data->tid_entry.pid = perf_event_pid(event, current);
5122 data->tid_entry.tid = perf_event_tid(event, current);
5123 }
5124
5125 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005126 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005127
Adrian Hunterff3d5272013-08-27 11:23:07 +03005128 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005129 data->id = primary_event_id(event);
5130
5131 if (sample_type & PERF_SAMPLE_STREAM_ID)
5132 data->stream_id = event->id;
5133
5134 if (sample_type & PERF_SAMPLE_CPU) {
5135 data->cpu_entry.cpu = raw_smp_processor_id();
5136 data->cpu_entry.reserved = 0;
5137 }
5138}
5139
Frederic Weisbecker76369132011-05-19 19:55:04 +02005140void perf_event_header__init_id(struct perf_event_header *header,
5141 struct perf_sample_data *data,
5142 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005143{
5144 if (event->attr.sample_id_all)
5145 __perf_event_header__init_id(header, data, event);
5146}
5147
5148static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5149 struct perf_sample_data *data)
5150{
5151 u64 sample_type = data->type;
5152
5153 if (sample_type & PERF_SAMPLE_TID)
5154 perf_output_put(handle, data->tid_entry);
5155
5156 if (sample_type & PERF_SAMPLE_TIME)
5157 perf_output_put(handle, data->time);
5158
5159 if (sample_type & PERF_SAMPLE_ID)
5160 perf_output_put(handle, data->id);
5161
5162 if (sample_type & PERF_SAMPLE_STREAM_ID)
5163 perf_output_put(handle, data->stream_id);
5164
5165 if (sample_type & PERF_SAMPLE_CPU)
5166 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005167
5168 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5169 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005170}
5171
Frederic Weisbecker76369132011-05-19 19:55:04 +02005172void perf_event__output_id_sample(struct perf_event *event,
5173 struct perf_output_handle *handle,
5174 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005175{
5176 if (event->attr.sample_id_all)
5177 __perf_event__output_id_sample(handle, sample);
5178}
5179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005181 struct perf_event *event,
5182 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005183{
5184 u64 read_format = event->attr.read_format;
5185 u64 values[4];
5186 int n = 0;
5187
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005188 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005189 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005190 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005191 atomic64_read(&event->child_total_time_enabled);
5192 }
5193 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005194 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005195 atomic64_read(&event->child_total_time_running);
5196 }
5197 if (read_format & PERF_FORMAT_ID)
5198 values[n++] = primary_event_id(event);
5199
Frederic Weisbecker76369132011-05-19 19:55:04 +02005200 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005201}
5202
5203/*
5204 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5205 */
5206static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005207 struct perf_event *event,
5208 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005209{
5210 struct perf_event *leader = event->group_leader, *sub;
5211 u64 read_format = event->attr.read_format;
5212 u64 values[5];
5213 int n = 0;
5214
5215 values[n++] = 1 + leader->nr_siblings;
5216
5217 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005218 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005219
5220 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005221 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222
5223 if (leader != event)
5224 leader->pmu->read(leader);
5225
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005226 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005227 if (read_format & PERF_FORMAT_ID)
5228 values[n++] = primary_event_id(leader);
5229
Frederic Weisbecker76369132011-05-19 19:55:04 +02005230 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231
5232 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5233 n = 0;
5234
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005235 if ((sub != event) &&
5236 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005237 sub->pmu->read(sub);
5238
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005239 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005240 if (read_format & PERF_FORMAT_ID)
5241 values[n++] = primary_event_id(sub);
5242
Frederic Weisbecker76369132011-05-19 19:55:04 +02005243 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244 }
5245}
5246
Stephane Eranianeed01522010-10-26 16:08:01 +02005247#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5248 PERF_FORMAT_TOTAL_TIME_RUNNING)
5249
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005250static void perf_output_read(struct perf_output_handle *handle,
5251 struct perf_event *event)
5252{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005253 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005254 u64 read_format = event->attr.read_format;
5255
5256 /*
5257 * compute total_time_enabled, total_time_running
5258 * based on snapshot values taken when the event
5259 * was last scheduled in.
5260 *
5261 * we cannot simply called update_context_time()
5262 * because of locking issue as we are called in
5263 * NMI context
5264 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005265 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005266 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005269 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005270 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005271 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005272}
5273
5274void perf_output_sample(struct perf_output_handle *handle,
5275 struct perf_event_header *header,
5276 struct perf_sample_data *data,
5277 struct perf_event *event)
5278{
5279 u64 sample_type = data->type;
5280
5281 perf_output_put(handle, *header);
5282
Adrian Hunterff3d5272013-08-27 11:23:07 +03005283 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5284 perf_output_put(handle, data->id);
5285
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005286 if (sample_type & PERF_SAMPLE_IP)
5287 perf_output_put(handle, data->ip);
5288
5289 if (sample_type & PERF_SAMPLE_TID)
5290 perf_output_put(handle, data->tid_entry);
5291
5292 if (sample_type & PERF_SAMPLE_TIME)
5293 perf_output_put(handle, data->time);
5294
5295 if (sample_type & PERF_SAMPLE_ADDR)
5296 perf_output_put(handle, data->addr);
5297
5298 if (sample_type & PERF_SAMPLE_ID)
5299 perf_output_put(handle, data->id);
5300
5301 if (sample_type & PERF_SAMPLE_STREAM_ID)
5302 perf_output_put(handle, data->stream_id);
5303
5304 if (sample_type & PERF_SAMPLE_CPU)
5305 perf_output_put(handle, data->cpu_entry);
5306
5307 if (sample_type & PERF_SAMPLE_PERIOD)
5308 perf_output_put(handle, data->period);
5309
5310 if (sample_type & PERF_SAMPLE_READ)
5311 perf_output_read(handle, event);
5312
5313 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5314 if (data->callchain) {
5315 int size = 1;
5316
5317 if (data->callchain)
5318 size += data->callchain->nr;
5319
5320 size *= sizeof(u64);
5321
Frederic Weisbecker76369132011-05-19 19:55:04 +02005322 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005323 } else {
5324 u64 nr = 0;
5325 perf_output_put(handle, nr);
5326 }
5327 }
5328
5329 if (sample_type & PERF_SAMPLE_RAW) {
5330 if (data->raw) {
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005331 u32 raw_size = data->raw->size;
5332 u32 real_size = round_up(raw_size + sizeof(u32),
5333 sizeof(u64)) - sizeof(u32);
5334 u64 zero = 0;
5335
5336 perf_output_put(handle, real_size);
5337 __output_copy(handle, data->raw->data, raw_size);
5338 if (real_size - raw_size)
5339 __output_copy(handle, &zero, real_size - raw_size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005340 } else {
5341 struct {
5342 u32 size;
5343 u32 data;
5344 } raw = {
5345 .size = sizeof(u32),
5346 .data = 0,
5347 };
5348 perf_output_put(handle, raw);
5349 }
5350 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005351
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005352 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5353 if (data->br_stack) {
5354 size_t size;
5355
5356 size = data->br_stack->nr
5357 * sizeof(struct perf_branch_entry);
5358
5359 perf_output_put(handle, data->br_stack->nr);
5360 perf_output_copy(handle, data->br_stack->entries, size);
5361 } else {
5362 /*
5363 * we always store at least the value of nr
5364 */
5365 u64 nr = 0;
5366 perf_output_put(handle, nr);
5367 }
5368 }
Jiri Olsa40189942012-08-07 15:20:37 +02005369
5370 if (sample_type & PERF_SAMPLE_REGS_USER) {
5371 u64 abi = data->regs_user.abi;
5372
5373 /*
5374 * If there are no regs to dump, notice it through
5375 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5376 */
5377 perf_output_put(handle, abi);
5378
5379 if (abi) {
5380 u64 mask = event->attr.sample_regs_user;
5381 perf_output_sample_regs(handle,
5382 data->regs_user.regs,
5383 mask);
5384 }
5385 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005386
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005387 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005388 perf_output_sample_ustack(handle,
5389 data->stack_user_size,
5390 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005391 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005392
5393 if (sample_type & PERF_SAMPLE_WEIGHT)
5394 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005395
5396 if (sample_type & PERF_SAMPLE_DATA_SRC)
5397 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005398
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005399 if (sample_type & PERF_SAMPLE_TRANSACTION)
5400 perf_output_put(handle, data->txn);
5401
Stephane Eranian60e23642014-09-24 13:48:37 +02005402 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5403 u64 abi = data->regs_intr.abi;
5404 /*
5405 * If there are no regs to dump, notice it through
5406 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5407 */
5408 perf_output_put(handle, abi);
5409
5410 if (abi) {
5411 u64 mask = event->attr.sample_regs_intr;
5412
5413 perf_output_sample_regs(handle,
5414 data->regs_intr.regs,
5415 mask);
5416 }
5417 }
5418
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005419 if (!event->attr.watermark) {
5420 int wakeup_events = event->attr.wakeup_events;
5421
5422 if (wakeup_events) {
5423 struct ring_buffer *rb = handle->rb;
5424 int events = local_inc_return(&rb->events);
5425
5426 if (events >= wakeup_events) {
5427 local_sub(wakeup_events, &rb->events);
5428 local_inc(&rb->wakeup);
5429 }
5430 }
5431 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005432}
5433
5434void perf_prepare_sample(struct perf_event_header *header,
5435 struct perf_sample_data *data,
5436 struct perf_event *event,
5437 struct pt_regs *regs)
5438{
5439 u64 sample_type = event->attr.sample_type;
5440
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005441 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005442 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005443
5444 header->misc = 0;
5445 header->misc |= perf_misc_flags(regs);
5446
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005447 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005448
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005449 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005450 data->ip = perf_instruction_pointer(regs);
5451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5453 int size = 1;
5454
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005455 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005456
5457 if (data->callchain)
5458 size += data->callchain->nr;
5459
5460 header->size += size * sizeof(u64);
5461 }
5462
5463 if (sample_type & PERF_SAMPLE_RAW) {
5464 int size = sizeof(u32);
5465
5466 if (data->raw)
5467 size += data->raw->size;
5468 else
5469 size += sizeof(u32);
5470
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005471 header->size += round_up(size, sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005472 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005473
5474 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5475 int size = sizeof(u64); /* nr */
5476 if (data->br_stack) {
5477 size += data->br_stack->nr
5478 * sizeof(struct perf_branch_entry);
5479 }
5480 header->size += size;
5481 }
Jiri Olsa40189942012-08-07 15:20:37 +02005482
Peter Zijlstra25657112014-09-24 13:48:42 +02005483 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005484 perf_sample_regs_user(&data->regs_user, regs,
5485 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005486
Jiri Olsa40189942012-08-07 15:20:37 +02005487 if (sample_type & PERF_SAMPLE_REGS_USER) {
5488 /* regs dump ABI info */
5489 int size = sizeof(u64);
5490
Jiri Olsa40189942012-08-07 15:20:37 +02005491 if (data->regs_user.regs) {
5492 u64 mask = event->attr.sample_regs_user;
5493 size += hweight64(mask) * sizeof(u64);
5494 }
5495
5496 header->size += size;
5497 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005498
5499 if (sample_type & PERF_SAMPLE_STACK_USER) {
5500 /*
5501 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5502 * processed as the last one or have additional check added
5503 * in case new sample type is added, because we could eat
5504 * up the rest of the sample size.
5505 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005506 u16 stack_size = event->attr.sample_stack_user;
5507 u16 size = sizeof(u64);
5508
Jiri Olsac5ebced2012-08-07 15:20:40 +02005509 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005510 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005511
5512 /*
5513 * If there is something to dump, add space for the dump
5514 * itself and for the field that tells the dynamic size,
5515 * which is how many have been actually dumped.
5516 */
5517 if (stack_size)
5518 size += sizeof(u64) + stack_size;
5519
5520 data->stack_user_size = stack_size;
5521 header->size += size;
5522 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005523
5524 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5525 /* regs dump ABI info */
5526 int size = sizeof(u64);
5527
5528 perf_sample_regs_intr(&data->regs_intr, regs);
5529
5530 if (data->regs_intr.regs) {
5531 u64 mask = event->attr.sample_regs_intr;
5532
5533 size += hweight64(mask) * sizeof(u64);
5534 }
5535
5536 header->size += size;
5537 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005538}
5539
Yan, Zheng21509082015-05-06 15:33:49 -04005540void perf_event_output(struct perf_event *event,
5541 struct perf_sample_data *data,
5542 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005543{
5544 struct perf_output_handle handle;
5545 struct perf_event_header header;
5546
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005547 /* protect the callchain buffers */
5548 rcu_read_lock();
5549
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005550 perf_prepare_sample(&header, data, event, regs);
5551
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005552 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005553 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005554
5555 perf_output_sample(&handle, &header, data, event);
5556
5557 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005558
5559exit:
5560 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005561}
5562
5563/*
5564 * read event_id
5565 */
5566
5567struct perf_read_event {
5568 struct perf_event_header header;
5569
5570 u32 pid;
5571 u32 tid;
5572};
5573
5574static void
5575perf_event_read_event(struct perf_event *event,
5576 struct task_struct *task)
5577{
5578 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005579 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005580 struct perf_read_event read_event = {
5581 .header = {
5582 .type = PERF_RECORD_READ,
5583 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005584 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005585 },
5586 .pid = perf_event_pid(event, task),
5587 .tid = perf_event_tid(event, task),
5588 };
5589 int ret;
5590
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005591 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005592 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005593 if (ret)
5594 return;
5595
5596 perf_output_put(&handle, read_event);
5597 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005598 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005599
5600 perf_output_end(&handle);
5601}
5602
Jiri Olsa52d857a2013-05-06 18:27:18 +02005603typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5604
5605static void
5606perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005607 perf_event_aux_output_cb output,
5608 void *data)
5609{
5610 struct perf_event *event;
5611
5612 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5613 if (event->state < PERF_EVENT_STATE_INACTIVE)
5614 continue;
5615 if (!event_filter_match(event))
5616 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005617 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005618 }
5619}
5620
5621static void
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005622perf_event_aux_task_ctx(perf_event_aux_output_cb output, void *data,
5623 struct perf_event_context *task_ctx)
5624{
5625 rcu_read_lock();
5626 preempt_disable();
5627 perf_event_aux_ctx(task_ctx, output, data);
5628 preempt_enable();
5629 rcu_read_unlock();
5630}
5631
5632static void
Jiri Olsa67516842013-07-09 18:56:31 +02005633perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005634 struct perf_event_context *task_ctx)
5635{
5636 struct perf_cpu_context *cpuctx;
5637 struct perf_event_context *ctx;
5638 struct pmu *pmu;
5639 int ctxn;
5640
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005641 /*
5642 * If we have task_ctx != NULL we only notify
5643 * the task context itself. The task_ctx is set
5644 * only for EXIT events before releasing task
5645 * context.
5646 */
5647 if (task_ctx) {
5648 perf_event_aux_task_ctx(output, data, task_ctx);
5649 return;
5650 }
5651
Jiri Olsa52d857a2013-05-06 18:27:18 +02005652 rcu_read_lock();
5653 list_for_each_entry_rcu(pmu, &pmus, entry) {
5654 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5655 if (cpuctx->unique_pmu != pmu)
5656 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005657 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005658 ctxn = pmu->task_ctx_nr;
5659 if (ctxn < 0)
5660 goto next;
5661 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5662 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005663 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005664next:
5665 put_cpu_ptr(pmu->pmu_cpu_context);
5666 }
Jiri Olsa52d857a2013-05-06 18:27:18 +02005667 rcu_read_unlock();
5668}
5669
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005670/*
5671 * task tracking -- fork/exit
5672 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005673 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005674 */
5675
5676struct perf_task_event {
5677 struct task_struct *task;
5678 struct perf_event_context *task_ctx;
5679
5680 struct {
5681 struct perf_event_header header;
5682
5683 u32 pid;
5684 u32 ppid;
5685 u32 tid;
5686 u32 ptid;
5687 u64 time;
5688 } event_id;
5689};
5690
Jiri Olsa67516842013-07-09 18:56:31 +02005691static int perf_event_task_match(struct perf_event *event)
5692{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005693 return event->attr.comm || event->attr.mmap ||
5694 event->attr.mmap2 || event->attr.mmap_data ||
5695 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005696}
5697
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005698static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005699 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005700{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005701 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005703 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005704 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005705 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005706
Jiri Olsa67516842013-07-09 18:56:31 +02005707 if (!perf_event_task_match(event))
5708 return;
5709
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005710 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005711
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005712 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005713 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005714 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005715 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005716
5717 task_event->event_id.pid = perf_event_pid(event, task);
5718 task_event->event_id.ppid = perf_event_pid(event, current);
5719
5720 task_event->event_id.tid = perf_event_tid(event, task);
5721 task_event->event_id.ptid = perf_event_tid(event, current);
5722
Peter Zijlstra34f43922015-02-20 14:05:38 +01005723 task_event->event_id.time = perf_event_clock(event);
5724
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005725 perf_output_put(&handle, task_event->event_id);
5726
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005727 perf_event__output_id_sample(event, &handle, &sample);
5728
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005729 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005730out:
5731 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005732}
5733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005734static void perf_event_task(struct task_struct *task,
5735 struct perf_event_context *task_ctx,
5736 int new)
5737{
5738 struct perf_task_event task_event;
5739
5740 if (!atomic_read(&nr_comm_events) &&
5741 !atomic_read(&nr_mmap_events) &&
5742 !atomic_read(&nr_task_events))
5743 return;
5744
5745 task_event = (struct perf_task_event){
5746 .task = task,
5747 .task_ctx = task_ctx,
5748 .event_id = {
5749 .header = {
5750 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5751 .misc = 0,
5752 .size = sizeof(task_event.event_id),
5753 },
5754 /* .pid */
5755 /* .ppid */
5756 /* .tid */
5757 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01005758 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005759 },
5760 };
5761
Jiri Olsa67516842013-07-09 18:56:31 +02005762 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005763 &task_event,
5764 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005765}
5766
5767void perf_event_fork(struct task_struct *task)
5768{
5769 perf_event_task(task, NULL, 1);
5770}
5771
5772/*
5773 * comm tracking
5774 */
5775
5776struct perf_comm_event {
5777 struct task_struct *task;
5778 char *comm;
5779 int comm_size;
5780
5781 struct {
5782 struct perf_event_header header;
5783
5784 u32 pid;
5785 u32 tid;
5786 } event_id;
5787};
5788
Jiri Olsa67516842013-07-09 18:56:31 +02005789static int perf_event_comm_match(struct perf_event *event)
5790{
5791 return event->attr.comm;
5792}
5793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005795 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005796{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005797 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005798 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005799 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005800 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005801 int ret;
5802
Jiri Olsa67516842013-07-09 18:56:31 +02005803 if (!perf_event_comm_match(event))
5804 return;
5805
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005806 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5807 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005808 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005809
5810 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005811 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005812
5813 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5814 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5815
5816 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005817 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005818 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005819
5820 perf_event__output_id_sample(event, &handle, &sample);
5821
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005822 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005823out:
5824 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005825}
5826
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005827static void perf_event_comm_event(struct perf_comm_event *comm_event)
5828{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005829 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005830 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005831
5832 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005833 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005834 size = ALIGN(strlen(comm)+1, sizeof(u64));
5835
5836 comm_event->comm = comm;
5837 comm_event->comm_size = size;
5838
5839 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005840
Jiri Olsa67516842013-07-09 18:56:31 +02005841 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005842 comm_event,
5843 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005844}
5845
Adrian Hunter82b89772014-05-28 11:45:04 +03005846void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005847{
5848 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005849
5850 if (!atomic_read(&nr_comm_events))
5851 return;
5852
5853 comm_event = (struct perf_comm_event){
5854 .task = task,
5855 /* .comm */
5856 /* .comm_size */
5857 .event_id = {
5858 .header = {
5859 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005860 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005861 /* .size */
5862 },
5863 /* .pid */
5864 /* .tid */
5865 },
5866 };
5867
5868 perf_event_comm_event(&comm_event);
5869}
5870
5871/*
5872 * mmap tracking
5873 */
5874
5875struct perf_mmap_event {
5876 struct vm_area_struct *vma;
5877
5878 const char *file_name;
5879 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005880 int maj, min;
5881 u64 ino;
5882 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005883 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005884
5885 struct {
5886 struct perf_event_header header;
5887
5888 u32 pid;
5889 u32 tid;
5890 u64 start;
5891 u64 len;
5892 u64 pgoff;
5893 } event_id;
5894};
5895
Jiri Olsa67516842013-07-09 18:56:31 +02005896static int perf_event_mmap_match(struct perf_event *event,
5897 void *data)
5898{
5899 struct perf_mmap_event *mmap_event = data;
5900 struct vm_area_struct *vma = mmap_event->vma;
5901 int executable = vma->vm_flags & VM_EXEC;
5902
5903 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005904 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005905}
5906
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005907static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005908 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005909{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005910 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005911 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005912 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005913 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005914 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005915
Jiri Olsa67516842013-07-09 18:56:31 +02005916 if (!perf_event_mmap_match(event, data))
5917 return;
5918
Stephane Eranian13d7a242013-08-21 12:10:24 +02005919 if (event->attr.mmap2) {
5920 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5921 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5922 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5923 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005924 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005925 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5926 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005927 }
5928
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005929 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5930 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005931 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005932 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005933 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005934
5935 mmap_event->event_id.pid = perf_event_pid(event, current);
5936 mmap_event->event_id.tid = perf_event_tid(event, current);
5937
5938 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005939
5940 if (event->attr.mmap2) {
5941 perf_output_put(&handle, mmap_event->maj);
5942 perf_output_put(&handle, mmap_event->min);
5943 perf_output_put(&handle, mmap_event->ino);
5944 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005945 perf_output_put(&handle, mmap_event->prot);
5946 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005947 }
5948
Frederic Weisbecker76369132011-05-19 19:55:04 +02005949 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005951
5952 perf_event__output_id_sample(event, &handle, &sample);
5953
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005954 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005955out:
5956 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005957}
5958
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005959static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5960{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005961 struct vm_area_struct *vma = mmap_event->vma;
5962 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005963 int maj = 0, min = 0;
5964 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005965 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966 unsigned int size;
5967 char tmp[16];
5968 char *buf = NULL;
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005969 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005970
5971 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005972 struct inode *inode;
5973 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005974
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005975 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005976 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005977 name = "//enomem";
5978 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005979 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005981 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005982 * need to add enough zero bytes after the string to handle
5983 * the 64bit alignment we do later.
5984 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02005985 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005986 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005987 name = "//toolong";
5988 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005989 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005990 inode = file_inode(vma->vm_file);
5991 dev = inode->i_sb->s_dev;
5992 ino = inode->i_ino;
5993 gen = inode->i_generation;
5994 maj = MAJOR(dev);
5995 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005996
5997 if (vma->vm_flags & VM_READ)
5998 prot |= PROT_READ;
5999 if (vma->vm_flags & VM_WRITE)
6000 prot |= PROT_WRITE;
6001 if (vma->vm_flags & VM_EXEC)
6002 prot |= PROT_EXEC;
6003
6004 if (vma->vm_flags & VM_MAYSHARE)
6005 flags = MAP_SHARED;
6006 else
6007 flags = MAP_PRIVATE;
6008
6009 if (vma->vm_flags & VM_DENYWRITE)
6010 flags |= MAP_DENYWRITE;
6011 if (vma->vm_flags & VM_MAYEXEC)
6012 flags |= MAP_EXECUTABLE;
6013 if (vma->vm_flags & VM_LOCKED)
6014 flags |= MAP_LOCKED;
6015 if (vma->vm_flags & VM_HUGETLB)
6016 flags |= MAP_HUGETLB;
6017
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006018 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02006020 if (vma->vm_ops && vma->vm_ops->name) {
6021 name = (char *) vma->vm_ops->name(vma);
6022 if (name)
6023 goto cpy_name;
6024 }
6025
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02006026 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006027 if (name)
6028 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006029
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006030 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006031 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006032 name = "[heap]";
6033 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02006034 }
6035 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006036 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006037 name = "[stack]";
6038 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006039 }
6040
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006041 name = "//anon";
6042 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006043 }
6044
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006045cpy_name:
6046 strlcpy(tmp, name, sizeof(tmp));
6047 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006048got_name:
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02006049 /*
6050 * Since our buffer works in 8 byte units we need to align our string
6051 * size to a multiple of 8. However, we must guarantee the tail end is
6052 * zero'd out to avoid leaking random bits to userspace.
6053 */
6054 size = strlen(name)+1;
6055 while (!IS_ALIGNED(size, sizeof(u64)))
6056 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006057
6058 mmap_event->file_name = name;
6059 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006060 mmap_event->maj = maj;
6061 mmap_event->min = min;
6062 mmap_event->ino = ino;
6063 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006064 mmap_event->prot = prot;
6065 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006066
Stephane Eranian2fe85422013-01-24 16:10:39 +01006067 if (!(vma->vm_flags & VM_EXEC))
6068 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006070 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6071
Jiri Olsa67516842013-07-09 18:56:31 +02006072 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006073 mmap_event,
6074 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006075
6076 kfree(buf);
6077}
6078
Eric B Munson3af9e852010-05-18 15:30:49 +01006079void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006080{
6081 struct perf_mmap_event mmap_event;
6082
6083 if (!atomic_read(&nr_mmap_events))
6084 return;
6085
6086 mmap_event = (struct perf_mmap_event){
6087 .vma = vma,
6088 /* .file_name */
6089 /* .file_size */
6090 .event_id = {
6091 .header = {
6092 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006093 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006094 /* .size */
6095 },
6096 /* .pid */
6097 /* .tid */
6098 .start = vma->vm_start,
6099 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006100 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006101 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006102 /* .maj (attr_mmap2 only) */
6103 /* .min (attr_mmap2 only) */
6104 /* .ino (attr_mmap2 only) */
6105 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006106 /* .prot (attr_mmap2 only) */
6107 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006108 };
6109
6110 perf_event_mmap_event(&mmap_event);
6111}
6112
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006113void perf_event_aux_event(struct perf_event *event, unsigned long head,
6114 unsigned long size, u64 flags)
6115{
6116 struct perf_output_handle handle;
6117 struct perf_sample_data sample;
6118 struct perf_aux_event {
6119 struct perf_event_header header;
6120 u64 offset;
6121 u64 size;
6122 u64 flags;
6123 } rec = {
6124 .header = {
6125 .type = PERF_RECORD_AUX,
6126 .misc = 0,
6127 .size = sizeof(rec),
6128 },
6129 .offset = head,
6130 .size = size,
6131 .flags = flags,
6132 };
6133 int ret;
6134
6135 perf_event_header__init_id(&rec.header, &sample, event);
6136 ret = perf_output_begin(&handle, event, rec.header.size);
6137
6138 if (ret)
6139 return;
6140
6141 perf_output_put(&handle, rec);
6142 perf_event__output_id_sample(event, &handle, &sample);
6143
6144 perf_output_end(&handle);
6145}
6146
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006147/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006148 * Lost/dropped samples logging
6149 */
6150void perf_log_lost_samples(struct perf_event *event, u64 lost)
6151{
6152 struct perf_output_handle handle;
6153 struct perf_sample_data sample;
6154 int ret;
6155
6156 struct {
6157 struct perf_event_header header;
6158 u64 lost;
6159 } lost_samples_event = {
6160 .header = {
6161 .type = PERF_RECORD_LOST_SAMPLES,
6162 .misc = 0,
6163 .size = sizeof(lost_samples_event),
6164 },
6165 .lost = lost,
6166 };
6167
6168 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6169
6170 ret = perf_output_begin(&handle, event,
6171 lost_samples_event.header.size);
6172 if (ret)
6173 return;
6174
6175 perf_output_put(&handle, lost_samples_event);
6176 perf_event__output_id_sample(event, &handle, &sample);
6177 perf_output_end(&handle);
6178}
6179
6180/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006181 * context_switch tracking
6182 */
6183
6184struct perf_switch_event {
6185 struct task_struct *task;
6186 struct task_struct *next_prev;
6187
6188 struct {
6189 struct perf_event_header header;
6190 u32 next_prev_pid;
6191 u32 next_prev_tid;
6192 } event_id;
6193};
6194
6195static int perf_event_switch_match(struct perf_event *event)
6196{
6197 return event->attr.context_switch;
6198}
6199
6200static void perf_event_switch_output(struct perf_event *event, void *data)
6201{
6202 struct perf_switch_event *se = data;
6203 struct perf_output_handle handle;
6204 struct perf_sample_data sample;
6205 int ret;
6206
6207 if (!perf_event_switch_match(event))
6208 return;
6209
6210 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6211 if (event->ctx->task) {
6212 se->event_id.header.type = PERF_RECORD_SWITCH;
6213 se->event_id.header.size = sizeof(se->event_id.header);
6214 } else {
6215 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6216 se->event_id.header.size = sizeof(se->event_id);
6217 se->event_id.next_prev_pid =
6218 perf_event_pid(event, se->next_prev);
6219 se->event_id.next_prev_tid =
6220 perf_event_tid(event, se->next_prev);
6221 }
6222
6223 perf_event_header__init_id(&se->event_id.header, &sample, event);
6224
6225 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6226 if (ret)
6227 return;
6228
6229 if (event->ctx->task)
6230 perf_output_put(&handle, se->event_id.header);
6231 else
6232 perf_output_put(&handle, se->event_id);
6233
6234 perf_event__output_id_sample(event, &handle, &sample);
6235
6236 perf_output_end(&handle);
6237}
6238
6239static void perf_event_switch(struct task_struct *task,
6240 struct task_struct *next_prev, bool sched_in)
6241{
6242 struct perf_switch_event switch_event;
6243
6244 /* N.B. caller checks nr_switch_events != 0 */
6245
6246 switch_event = (struct perf_switch_event){
6247 .task = task,
6248 .next_prev = next_prev,
6249 .event_id = {
6250 .header = {
6251 /* .type */
6252 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6253 /* .size */
6254 },
6255 /* .next_prev_pid */
6256 /* .next_prev_tid */
6257 },
6258 };
6259
6260 perf_event_aux(perf_event_switch_output,
6261 &switch_event,
6262 NULL);
6263}
6264
6265/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006266 * IRQ throttle logging
6267 */
6268
6269static void perf_log_throttle(struct perf_event *event, int enable)
6270{
6271 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006272 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006273 int ret;
6274
6275 struct {
6276 struct perf_event_header header;
6277 u64 time;
6278 u64 id;
6279 u64 stream_id;
6280 } throttle_event = {
6281 .header = {
6282 .type = PERF_RECORD_THROTTLE,
6283 .misc = 0,
6284 .size = sizeof(throttle_event),
6285 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006286 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006287 .id = primary_event_id(event),
6288 .stream_id = event->id,
6289 };
6290
6291 if (enable)
6292 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6293
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006294 perf_event_header__init_id(&throttle_event.header, &sample, event);
6295
6296 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006297 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006298 if (ret)
6299 return;
6300
6301 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006302 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006303 perf_output_end(&handle);
6304}
6305
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006306static void perf_log_itrace_start(struct perf_event *event)
6307{
6308 struct perf_output_handle handle;
6309 struct perf_sample_data sample;
6310 struct perf_aux_event {
6311 struct perf_event_header header;
6312 u32 pid;
6313 u32 tid;
6314 } rec;
6315 int ret;
6316
6317 if (event->parent)
6318 event = event->parent;
6319
6320 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6321 event->hw.itrace_started)
6322 return;
6323
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006324 rec.header.type = PERF_RECORD_ITRACE_START;
6325 rec.header.misc = 0;
6326 rec.header.size = sizeof(rec);
6327 rec.pid = perf_event_pid(event, current);
6328 rec.tid = perf_event_tid(event, current);
6329
6330 perf_event_header__init_id(&rec.header, &sample, event);
6331 ret = perf_output_begin(&handle, event, rec.header.size);
6332
6333 if (ret)
6334 return;
6335
6336 perf_output_put(&handle, rec);
6337 perf_event__output_id_sample(event, &handle, &sample);
6338
6339 perf_output_end(&handle);
6340}
6341
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006342/*
6343 * Generic event overflow handling, sampling.
6344 */
6345
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006346static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006347 int throttle, struct perf_sample_data *data,
6348 struct pt_regs *regs)
6349{
6350 int events = atomic_read(&event->event_limit);
6351 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006352 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006353 int ret = 0;
6354
Peter Zijlstra96398822010-11-24 18:55:29 +01006355 /*
6356 * Non-sampling counters might still use the PMI to fold short
6357 * hardware counters, ignore those.
6358 */
6359 if (unlikely(!is_sampling_event(event)))
6360 return 0;
6361
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006362 seq = __this_cpu_read(perf_throttled_seq);
6363 if (seq != hwc->interrupts_seq) {
6364 hwc->interrupts_seq = seq;
6365 hwc->interrupts = 1;
6366 } else {
6367 hwc->interrupts++;
6368 if (unlikely(throttle
6369 && hwc->interrupts >= max_samples_per_tick)) {
6370 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01006371 hwc->interrupts = MAX_INTERRUPTS;
6372 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02006373 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006374 ret = 1;
6375 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006376 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006377
6378 if (event->attr.freq) {
6379 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01006380 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006381
Peter Zijlstraabd50712010-01-26 18:50:16 +01006382 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006383
Peter Zijlstraabd50712010-01-26 18:50:16 +01006384 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01006385 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386 }
6387
6388 /*
6389 * XXX event_limit might not quite work as expected on inherited
6390 * events
6391 */
6392
6393 event->pending_kill = POLL_IN;
6394 if (events && atomic_dec_and_test(&event->event_limit)) {
6395 ret = 1;
6396 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006397 event->pending_disable = 1;
6398 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006399 }
6400
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006401 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006402 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006403 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006404 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006405
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006406 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006407 event->pending_wakeup = 1;
6408 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02006409 }
6410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006411 return ret;
6412}
6413
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006414int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006415 struct perf_sample_data *data,
6416 struct pt_regs *regs)
6417{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006418 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006419}
6420
6421/*
6422 * Generic software event infrastructure
6423 */
6424
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006425struct swevent_htable {
6426 struct swevent_hlist *swevent_hlist;
6427 struct mutex hlist_mutex;
6428 int hlist_refcount;
6429
6430 /* Recursion avoidance in each contexts */
6431 int recursion[PERF_NR_CONTEXTS];
6432};
6433
6434static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6435
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006436/*
6437 * We directly increment event->count and keep a second value in
6438 * event->hw.period_left to count intervals. This period event
6439 * is kept in the range [-sample_period, 0] so that we can use the
6440 * sign as trigger.
6441 */
6442
Jiri Olsaab573842013-05-01 17:25:44 +02006443u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006444{
6445 struct hw_perf_event *hwc = &event->hw;
6446 u64 period = hwc->last_period;
6447 u64 nr, offset;
6448 s64 old, val;
6449
6450 hwc->last_period = hwc->sample_period;
6451
6452again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02006453 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006454 if (val < 0)
6455 return 0;
6456
6457 nr = div64_u64(period + val, period);
6458 offset = nr * period;
6459 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02006460 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006461 goto again;
6462
6463 return nr;
6464}
6465
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006466static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006467 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006468 struct pt_regs *regs)
6469{
6470 struct hw_perf_event *hwc = &event->hw;
6471 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006472
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006473 if (!overflow)
6474 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006475
6476 if (hwc->interrupts == MAX_INTERRUPTS)
6477 return;
6478
6479 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006480 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006481 data, regs)) {
6482 /*
6483 * We inhibit the overflow from happening when
6484 * hwc->interrupts == MAX_INTERRUPTS.
6485 */
6486 break;
6487 }
6488 throttle = 1;
6489 }
6490}
6491
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006492static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006493 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494 struct pt_regs *regs)
6495{
6496 struct hw_perf_event *hwc = &event->hw;
6497
Peter Zijlstrae7850592010-05-21 14:43:08 +02006498 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006500 if (!regs)
6501 return;
6502
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006503 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006504 return;
6505
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03006506 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6507 data->period = nr;
6508 return perf_swevent_overflow(event, 1, data, regs);
6509 } else
6510 data->period = event->hw.last_period;
6511
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006512 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006513 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006514
Peter Zijlstrae7850592010-05-21 14:43:08 +02006515 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006516 return;
6517
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006518 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006519}
6520
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006521static int perf_exclude_event(struct perf_event *event,
6522 struct pt_regs *regs)
6523{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006524 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01006525 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006526
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006527 if (regs) {
6528 if (event->attr.exclude_user && user_mode(regs))
6529 return 1;
6530
6531 if (event->attr.exclude_kernel && !user_mode(regs))
6532 return 1;
6533 }
6534
6535 return 0;
6536}
6537
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006538static int perf_swevent_match(struct perf_event *event,
6539 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08006540 u32 event_id,
6541 struct perf_sample_data *data,
6542 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006543{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006544 if (event->attr.type != type)
6545 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006546
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006547 if (event->attr.config != event_id)
6548 return 0;
6549
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006550 if (perf_exclude_event(event, regs))
6551 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006552
6553 return 1;
6554}
6555
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006556static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006557{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006558 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006559
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006560 return hash_64(val, SWEVENT_HLIST_BITS);
6561}
6562
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006563static inline struct hlist_head *
6564__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006565{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006566 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006567
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006568 return &hlist->heads[hash];
6569}
6570
6571/* For the read side: events when they trigger */
6572static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006573find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006574{
6575 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006576
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006577 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006578 if (!hlist)
6579 return NULL;
6580
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006581 return __find_swevent_head(hlist, type, event_id);
6582}
6583
6584/* For the event head insertion and removal in the hlist */
6585static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006586find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006587{
6588 struct swevent_hlist *hlist;
6589 u32 event_id = event->attr.config;
6590 u64 type = event->attr.type;
6591
6592 /*
6593 * Event scheduling is always serialized against hlist allocation
6594 * and release. Which makes the protected version suitable here.
6595 * The context lock guarantees that.
6596 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006597 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006598 lockdep_is_held(&event->ctx->lock));
6599 if (!hlist)
6600 return NULL;
6601
6602 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006603}
6604
6605static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006606 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006607 struct perf_sample_data *data,
6608 struct pt_regs *regs)
6609{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006610 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006611 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006612 struct hlist_head *head;
6613
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006614 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006615 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006616 if (!head)
6617 goto end;
6618
Sasha Levinb67bfe02013-02-27 17:06:00 -08006619 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006620 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006621 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006622 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006623end:
6624 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006625}
6626
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006627DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6628
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006629int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006630{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006631 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006632
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006633 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006634}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006635EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006636
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006637inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006638{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006639 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006640
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006641 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006642}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006643
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006644void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006645{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006646 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006647
6648 if (WARN_ON_ONCE(!regs))
6649 return;
6650
6651 perf_sample_data_init(&data, addr, 0);
6652 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6653}
6654
6655void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6656{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006657 int rctx;
6658
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006659 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006660 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006661 if (unlikely(rctx < 0))
6662 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006663
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006664 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006665
6666 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006667fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006668 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006669}
6670
6671static void perf_swevent_read(struct perf_event *event)
6672{
6673}
6674
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006675static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006676{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006677 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006678 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006679 struct hlist_head *head;
6680
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006681 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006682 hwc->last_period = hwc->sample_period;
6683 perf_swevent_set_period(event);
6684 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006685
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006686 hwc->state = !(flags & PERF_EF_START);
6687
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006688 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01006689 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006690 return -EINVAL;
6691
6692 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08006693 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006694
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006695 return 0;
6696}
6697
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006698static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006699{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006700 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006701}
6702
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006703static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006704{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006705 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006706}
6707
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006708static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006709{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006710 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006711}
6712
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006713/* Deref the hlist from the update side */
6714static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006715swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006716{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006717 return rcu_dereference_protected(swhash->swevent_hlist,
6718 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006719}
6720
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006721static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006722{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006723 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006724
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006725 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006726 return;
6727
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006728 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006729 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006730}
6731
6732static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6733{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006734 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006735
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006736 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006737
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006738 if (!--swhash->hlist_refcount)
6739 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006740
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006741 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006742}
6743
6744static void swevent_hlist_put(struct perf_event *event)
6745{
6746 int cpu;
6747
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006748 for_each_possible_cpu(cpu)
6749 swevent_hlist_put_cpu(event, cpu);
6750}
6751
6752static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6753{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006754 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006755 int err = 0;
6756
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006757 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006758 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006759 struct swevent_hlist *hlist;
6760
6761 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6762 if (!hlist) {
6763 err = -ENOMEM;
6764 goto exit;
6765 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006766 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006767 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006768 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006769exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006770 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006771
6772 return err;
6773}
6774
6775static int swevent_hlist_get(struct perf_event *event)
6776{
6777 int err;
6778 int cpu, failed_cpu;
6779
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006780 get_online_cpus();
6781 for_each_possible_cpu(cpu) {
6782 err = swevent_hlist_get_cpu(event, cpu);
6783 if (err) {
6784 failed_cpu = cpu;
6785 goto fail;
6786 }
6787 }
6788 put_online_cpus();
6789
6790 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006791fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006792 for_each_possible_cpu(cpu) {
6793 if (cpu == failed_cpu)
6794 break;
6795 swevent_hlist_put_cpu(event, cpu);
6796 }
6797
6798 put_online_cpus();
6799 return err;
6800}
6801
Ingo Molnarc5905af2012-02-24 08:31:31 +01006802struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006803
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006804static void sw_perf_event_destroy(struct perf_event *event)
6805{
6806 u64 event_id = event->attr.config;
6807
6808 WARN_ON(event->parent);
6809
Ingo Molnarc5905af2012-02-24 08:31:31 +01006810 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006811 swevent_hlist_put(event);
6812}
6813
6814static int perf_swevent_init(struct perf_event *event)
6815{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006816 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006817
6818 if (event->attr.type != PERF_TYPE_SOFTWARE)
6819 return -ENOENT;
6820
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006821 /*
6822 * no branch sampling for software events
6823 */
6824 if (has_branch_stack(event))
6825 return -EOPNOTSUPP;
6826
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006827 switch (event_id) {
6828 case PERF_COUNT_SW_CPU_CLOCK:
6829 case PERF_COUNT_SW_TASK_CLOCK:
6830 return -ENOENT;
6831
6832 default:
6833 break;
6834 }
6835
Dan Carpenterce677832010-10-24 21:50:42 +02006836 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006837 return -ENOENT;
6838
6839 if (!event->parent) {
6840 int err;
6841
6842 err = swevent_hlist_get(event);
6843 if (err)
6844 return err;
6845
Ingo Molnarc5905af2012-02-24 08:31:31 +01006846 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006847 event->destroy = sw_perf_event_destroy;
6848 }
6849
6850 return 0;
6851}
6852
6853static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006854 .task_ctx_nr = perf_sw_context,
6855
Peter Zijlstra34f43922015-02-20 14:05:38 +01006856 .capabilities = PERF_PMU_CAP_NO_NMI,
6857
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006858 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006859 .add = perf_swevent_add,
6860 .del = perf_swevent_del,
6861 .start = perf_swevent_start,
6862 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006863 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006864};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006865
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006866#ifdef CONFIG_EVENT_TRACING
6867
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006868static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006869 struct perf_sample_data *data)
6870{
6871 void *record = data->raw->data;
6872
Peter Zijlstrab71b4372015-11-02 10:50:51 +01006873 /* only top level events have filters set */
6874 if (event->parent)
6875 event = event->parent;
6876
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006877 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6878 return 1;
6879 return 0;
6880}
6881
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006882static int perf_tp_event_match(struct perf_event *event,
6883 struct perf_sample_data *data,
6884 struct pt_regs *regs)
6885{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006886 if (event->hw.state & PERF_HES_STOPPED)
6887 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006888 /*
6889 * All tracepoints are from kernel-space.
6890 */
6891 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006892 return 0;
6893
6894 if (!perf_tp_filter_match(event, data))
6895 return 0;
6896
6897 return 1;
6898}
6899
6900void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006901 struct pt_regs *regs, struct hlist_head *head, int rctx,
6902 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006903{
6904 struct perf_sample_data data;
6905 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006906
6907 struct perf_raw_record raw = {
6908 .size = entry_size,
6909 .data = record,
6910 };
6911
Robert Richterfd0d0002012-04-02 20:19:08 +02006912 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006913 data.raw = &raw;
6914
Sasha Levinb67bfe02013-02-27 17:06:00 -08006915 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006916 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006917 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006918 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006919
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006920 /*
6921 * If we got specified a target task, also iterate its context and
6922 * deliver this event there too.
6923 */
6924 if (task && task != current) {
6925 struct perf_event_context *ctx;
6926 struct trace_entry *entry = record;
6927
6928 rcu_read_lock();
6929 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6930 if (!ctx)
6931 goto unlock;
6932
6933 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6934 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6935 continue;
6936 if (event->attr.config != entry->type)
6937 continue;
6938 if (perf_tp_event_match(event, &data, regs))
6939 perf_swevent_event(event, count, &data, regs);
6940 }
6941unlock:
6942 rcu_read_unlock();
6943 }
6944
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006945 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006946}
6947EXPORT_SYMBOL_GPL(perf_tp_event);
6948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006949static void tp_perf_event_destroy(struct perf_event *event)
6950{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006951 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006952}
6953
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006954static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006955{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006956 int err;
6957
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006958 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6959 return -ENOENT;
6960
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006961 /*
6962 * no branch sampling for tracepoint events
6963 */
6964 if (has_branch_stack(event))
6965 return -EOPNOTSUPP;
6966
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006967 err = perf_trace_init(event);
6968 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006969 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006970
6971 event->destroy = tp_perf_event_destroy;
6972
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006973 return 0;
6974}
6975
6976static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006977 .task_ctx_nr = perf_sw_context,
6978
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006979 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006980 .add = perf_trace_add,
6981 .del = perf_trace_del,
6982 .start = perf_swevent_start,
6983 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006984 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006985};
6986
6987static inline void perf_tp_register(void)
6988{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006989 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006990}
Li Zefan6fb29152009-10-15 11:21:42 +08006991
6992static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6993{
6994 char *filter_str;
6995 int ret;
6996
6997 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6998 return -EINVAL;
6999
7000 filter_str = strndup_user(arg, PAGE_SIZE);
7001 if (IS_ERR(filter_str))
7002 return PTR_ERR(filter_str);
7003
7004 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
7005
7006 kfree(filter_str);
7007 return ret;
7008}
7009
7010static void perf_event_free_filter(struct perf_event *event)
7011{
7012 ftrace_profile_free_filter(event);
7013}
7014
Alexei Starovoitov25415172015-03-25 12:49:20 -07007015static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7016{
7017 struct bpf_prog *prog;
7018
7019 if (event->attr.type != PERF_TYPE_TRACEPOINT)
7020 return -EINVAL;
7021
7022 if (event->tp_event->prog)
7023 return -EEXIST;
7024
Wang Nan04a22fa2015-07-01 02:13:50 +00007025 if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
7026 /* bpf programs can only be attached to u/kprobes */
Alexei Starovoitov25415172015-03-25 12:49:20 -07007027 return -EINVAL;
7028
7029 prog = bpf_prog_get(prog_fd);
7030 if (IS_ERR(prog))
7031 return PTR_ERR(prog);
7032
Linus Torvalds6c373ca2015-04-15 09:00:47 -07007033 if (prog->type != BPF_PROG_TYPE_KPROBE) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07007034 /* valid fd, but invalid bpf program type */
7035 bpf_prog_put(prog);
7036 return -EINVAL;
7037 }
7038
7039 event->tp_event->prog = prog;
7040
7041 return 0;
7042}
7043
7044static void perf_event_free_bpf_prog(struct perf_event *event)
7045{
7046 struct bpf_prog *prog;
7047
7048 if (!event->tp_event)
7049 return;
7050
7051 prog = event->tp_event->prog;
7052 if (prog) {
7053 event->tp_event->prog = NULL;
7054 bpf_prog_put(prog);
7055 }
7056}
7057
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007058#else
Li Zefan6fb29152009-10-15 11:21:42 +08007059
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007060static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007061{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007062}
Li Zefan6fb29152009-10-15 11:21:42 +08007063
7064static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7065{
7066 return -ENOENT;
7067}
7068
7069static void perf_event_free_filter(struct perf_event *event)
7070{
7071}
7072
Alexei Starovoitov25415172015-03-25 12:49:20 -07007073static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7074{
7075 return -ENOENT;
7076}
7077
7078static void perf_event_free_bpf_prog(struct perf_event *event)
7079{
7080}
Li Zefan07b139c2009-12-21 14:27:35 +08007081#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007082
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007083#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007084void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007085{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007086 struct perf_sample_data sample;
7087 struct pt_regs *regs = data;
7088
Robert Richterfd0d0002012-04-02 20:19:08 +02007089 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007090
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007091 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007092 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007093}
7094#endif
7095
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007096/*
7097 * hrtimer based swevent callback
7098 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007099
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007100static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007101{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007102 enum hrtimer_restart ret = HRTIMER_RESTART;
7103 struct perf_sample_data data;
7104 struct pt_regs *regs;
7105 struct perf_event *event;
7106 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007107
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007108 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007109
7110 if (event->state != PERF_EVENT_STATE_ACTIVE)
7111 return HRTIMER_NORESTART;
7112
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007113 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007114
Robert Richterfd0d0002012-04-02 20:19:08 +02007115 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007116 regs = get_irq_regs();
7117
7118 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08007119 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02007120 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007121 ret = HRTIMER_NORESTART;
7122 }
7123
7124 period = max_t(u64, 10000, event->hw.sample_period);
7125 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7126
7127 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007128}
7129
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007130static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007131{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007132 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007133 s64 period;
7134
7135 if (!is_sampling_event(event))
7136 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007137
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007138 period = local64_read(&hwc->period_left);
7139 if (period) {
7140 if (period < 0)
7141 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007142
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007143 local64_set(&hwc->period_left, 0);
7144 } else {
7145 period = max_t(u64, 10000, hwc->sample_period);
7146 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00007147 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7148 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007149}
7150
7151static void perf_swevent_cancel_hrtimer(struct perf_event *event)
7152{
7153 struct hw_perf_event *hwc = &event->hw;
7154
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007155 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007156 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007157 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007158
7159 hrtimer_cancel(&hwc->hrtimer);
7160 }
7161}
7162
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007163static void perf_swevent_init_hrtimer(struct perf_event *event)
7164{
7165 struct hw_perf_event *hwc = &event->hw;
7166
7167 if (!is_sampling_event(event))
7168 return;
7169
7170 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7171 hwc->hrtimer.function = perf_swevent_hrtimer;
7172
7173 /*
7174 * Since hrtimers have a fixed rate, we can do a static freq->period
7175 * mapping and avoid the whole period adjust feedback stuff.
7176 */
7177 if (event->attr.freq) {
7178 long freq = event->attr.sample_freq;
7179
7180 event->attr.sample_period = NSEC_PER_SEC / freq;
7181 hwc->sample_period = event->attr.sample_period;
7182 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09007183 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007184 event->attr.freq = 0;
7185 }
7186}
7187
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007188/*
7189 * Software event: cpu wall time clock
7190 */
7191
7192static void cpu_clock_event_update(struct perf_event *event)
7193{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007194 s64 prev;
7195 u64 now;
7196
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007197 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007198 prev = local64_xchg(&event->hw.prev_count, now);
7199 local64_add(now - prev, &event->count);
7200}
7201
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007202static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007203{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007204 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007205 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007206}
7207
7208static void cpu_clock_event_stop(struct perf_event *event, int flags)
7209{
7210 perf_swevent_cancel_hrtimer(event);
7211 cpu_clock_event_update(event);
7212}
7213
7214static int cpu_clock_event_add(struct perf_event *event, int flags)
7215{
7216 if (flags & PERF_EF_START)
7217 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007218 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007219
7220 return 0;
7221}
7222
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007223static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007224{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007225 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007226}
7227
7228static void cpu_clock_event_read(struct perf_event *event)
7229{
7230 cpu_clock_event_update(event);
7231}
7232
7233static int cpu_clock_event_init(struct perf_event *event)
7234{
7235 if (event->attr.type != PERF_TYPE_SOFTWARE)
7236 return -ENOENT;
7237
7238 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
7239 return -ENOENT;
7240
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007241 /*
7242 * no branch sampling for software events
7243 */
7244 if (has_branch_stack(event))
7245 return -EOPNOTSUPP;
7246
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007247 perf_swevent_init_hrtimer(event);
7248
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007249 return 0;
7250}
7251
7252static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007253 .task_ctx_nr = perf_sw_context,
7254
Peter Zijlstra34f43922015-02-20 14:05:38 +01007255 .capabilities = PERF_PMU_CAP_NO_NMI,
7256
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007257 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007258 .add = cpu_clock_event_add,
7259 .del = cpu_clock_event_del,
7260 .start = cpu_clock_event_start,
7261 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007262 .read = cpu_clock_event_read,
7263};
7264
7265/*
7266 * Software event: task time clock
7267 */
7268
7269static void task_clock_event_update(struct perf_event *event, u64 now)
7270{
7271 u64 prev;
7272 s64 delta;
7273
7274 prev = local64_xchg(&event->hw.prev_count, now);
7275 delta = now - prev;
7276 local64_add(delta, &event->count);
7277}
7278
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007279static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007280{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007281 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007282 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007283}
7284
7285static void task_clock_event_stop(struct perf_event *event, int flags)
7286{
7287 perf_swevent_cancel_hrtimer(event);
7288 task_clock_event_update(event, event->ctx->time);
7289}
7290
7291static int task_clock_event_add(struct perf_event *event, int flags)
7292{
7293 if (flags & PERF_EF_START)
7294 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007295 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007296
7297 return 0;
7298}
7299
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007300static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007301{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007302 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007303}
7304
7305static void task_clock_event_read(struct perf_event *event)
7306{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01007307 u64 now = perf_clock();
7308 u64 delta = now - event->ctx->timestamp;
7309 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007310
7311 task_clock_event_update(event, time);
7312}
7313
7314static int task_clock_event_init(struct perf_event *event)
7315{
7316 if (event->attr.type != PERF_TYPE_SOFTWARE)
7317 return -ENOENT;
7318
7319 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
7320 return -ENOENT;
7321
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007322 /*
7323 * no branch sampling for software events
7324 */
7325 if (has_branch_stack(event))
7326 return -EOPNOTSUPP;
7327
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007328 perf_swevent_init_hrtimer(event);
7329
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007330 return 0;
7331}
7332
7333static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007334 .task_ctx_nr = perf_sw_context,
7335
Peter Zijlstra34f43922015-02-20 14:05:38 +01007336 .capabilities = PERF_PMU_CAP_NO_NMI,
7337
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007338 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007339 .add = task_clock_event_add,
7340 .del = task_clock_event_del,
7341 .start = task_clock_event_start,
7342 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007343 .read = task_clock_event_read,
7344};
7345
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007346static void perf_pmu_nop_void(struct pmu *pmu)
7347{
7348}
7349
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007350static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
7351{
7352}
7353
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007354static int perf_pmu_nop_int(struct pmu *pmu)
7355{
7356 return 0;
7357}
7358
Geliang Tang18ab2cd2015-09-27 23:25:50 +08007359static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007360
7361static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007362{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007363 __this_cpu_write(nop_txn_flags, flags);
7364
7365 if (flags & ~PERF_PMU_TXN_ADD)
7366 return;
7367
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007368 perf_pmu_disable(pmu);
7369}
7370
7371static int perf_pmu_commit_txn(struct pmu *pmu)
7372{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007373 unsigned int flags = __this_cpu_read(nop_txn_flags);
7374
7375 __this_cpu_write(nop_txn_flags, 0);
7376
7377 if (flags & ~PERF_PMU_TXN_ADD)
7378 return 0;
7379
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007380 perf_pmu_enable(pmu);
7381 return 0;
7382}
7383
7384static void perf_pmu_cancel_txn(struct pmu *pmu)
7385{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007386 unsigned int flags = __this_cpu_read(nop_txn_flags);
7387
7388 __this_cpu_write(nop_txn_flags, 0);
7389
7390 if (flags & ~PERF_PMU_TXN_ADD)
7391 return;
7392
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007393 perf_pmu_enable(pmu);
7394}
7395
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007396static int perf_event_idx_default(struct perf_event *event)
7397{
Peter Zijlstrac719f562014-10-21 11:10:21 +02007398 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007399}
7400
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007401/*
7402 * Ensures all contexts with the same task_ctx_nr have the same
7403 * pmu_cpu_context too.
7404 */
Mark Rutland9e317042014-02-10 17:44:18 +00007405static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007406{
7407 struct pmu *pmu;
7408
7409 if (ctxn < 0)
7410 return NULL;
7411
7412 list_for_each_entry(pmu, &pmus, entry) {
7413 if (pmu->task_ctx_nr == ctxn)
7414 return pmu->pmu_cpu_context;
7415 }
7416
7417 return NULL;
7418}
7419
Peter Zijlstra51676952010-12-07 14:18:20 +01007420static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007421{
Peter Zijlstra51676952010-12-07 14:18:20 +01007422 int cpu;
7423
7424 for_each_possible_cpu(cpu) {
7425 struct perf_cpu_context *cpuctx;
7426
7427 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7428
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007429 if (cpuctx->unique_pmu == old_pmu)
7430 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01007431 }
7432}
7433
7434static void free_pmu_context(struct pmu *pmu)
7435{
7436 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007437
7438 mutex_lock(&pmus_lock);
7439 /*
7440 * Like a real lame refcount.
7441 */
Peter Zijlstra51676952010-12-07 14:18:20 +01007442 list_for_each_entry(i, &pmus, entry) {
7443 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
7444 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007445 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01007446 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007447 }
7448
Peter Zijlstra51676952010-12-07 14:18:20 +01007449 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007450out:
7451 mutex_unlock(&pmus_lock);
7452}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007453static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007454
Peter Zijlstraabe43402010-11-17 23:17:37 +01007455static ssize_t
7456type_show(struct device *dev, struct device_attribute *attr, char *page)
7457{
7458 struct pmu *pmu = dev_get_drvdata(dev);
7459
7460 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
7461}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007462static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007463
Stephane Eranian62b85632013-04-03 14:21:34 +02007464static ssize_t
7465perf_event_mux_interval_ms_show(struct device *dev,
7466 struct device_attribute *attr,
7467 char *page)
7468{
7469 struct pmu *pmu = dev_get_drvdata(dev);
7470
7471 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
7472}
7473
Peter Zijlstra272325c2015-04-15 11:41:58 +02007474static DEFINE_MUTEX(mux_interval_mutex);
7475
Stephane Eranian62b85632013-04-03 14:21:34 +02007476static ssize_t
7477perf_event_mux_interval_ms_store(struct device *dev,
7478 struct device_attribute *attr,
7479 const char *buf, size_t count)
7480{
7481 struct pmu *pmu = dev_get_drvdata(dev);
7482 int timer, cpu, ret;
7483
7484 ret = kstrtoint(buf, 0, &timer);
7485 if (ret)
7486 return ret;
7487
7488 if (timer < 1)
7489 return -EINVAL;
7490
7491 /* same value, noting to do */
7492 if (timer == pmu->hrtimer_interval_ms)
7493 return count;
7494
Peter Zijlstra272325c2015-04-15 11:41:58 +02007495 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007496 pmu->hrtimer_interval_ms = timer;
7497
7498 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02007499 get_online_cpus();
7500 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02007501 struct perf_cpu_context *cpuctx;
7502 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7503 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
7504
Peter Zijlstra272325c2015-04-15 11:41:58 +02007505 cpu_function_call(cpu,
7506 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02007507 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02007508 put_online_cpus();
7509 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007510
7511 return count;
7512}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007513static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02007514
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007515static struct attribute *pmu_dev_attrs[] = {
7516 &dev_attr_type.attr,
7517 &dev_attr_perf_event_mux_interval_ms.attr,
7518 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007519};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007520ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007521
7522static int pmu_bus_running;
7523static struct bus_type pmu_bus = {
7524 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007525 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007526};
7527
7528static void pmu_dev_release(struct device *dev)
7529{
7530 kfree(dev);
7531}
7532
7533static int pmu_dev_alloc(struct pmu *pmu)
7534{
7535 int ret = -ENOMEM;
7536
7537 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
7538 if (!pmu->dev)
7539 goto out;
7540
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01007541 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01007542 device_initialize(pmu->dev);
7543 ret = dev_set_name(pmu->dev, "%s", pmu->name);
7544 if (ret)
7545 goto free_dev;
7546
7547 dev_set_drvdata(pmu->dev, pmu);
7548 pmu->dev->bus = &pmu_bus;
7549 pmu->dev->release = pmu_dev_release;
7550 ret = device_add(pmu->dev);
7551 if (ret)
7552 goto free_dev;
7553
7554out:
7555 return ret;
7556
7557free_dev:
7558 put_device(pmu->dev);
7559 goto out;
7560}
7561
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007562static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007563static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007564
Mischa Jonker03d8e802013-06-04 11:45:48 +02007565int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007566{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007567 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007568
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007569 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007570 ret = -ENOMEM;
7571 pmu->pmu_disable_count = alloc_percpu(int);
7572 if (!pmu->pmu_disable_count)
7573 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007574
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007575 pmu->type = -1;
7576 if (!name)
7577 goto skip_type;
7578 pmu->name = name;
7579
7580 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08007581 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
7582 if (type < 0) {
7583 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007584 goto free_pdc;
7585 }
7586 }
7587 pmu->type = type;
7588
Peter Zijlstraabe43402010-11-17 23:17:37 +01007589 if (pmu_bus_running) {
7590 ret = pmu_dev_alloc(pmu);
7591 if (ret)
7592 goto free_idr;
7593 }
7594
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007595skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007596 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
7597 if (pmu->pmu_cpu_context)
7598 goto got_cpu_context;
7599
Wei Yongjunc4814202013-04-12 11:05:54 +08007600 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007601 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
7602 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01007603 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007604
7605 for_each_possible_cpu(cpu) {
7606 struct perf_cpu_context *cpuctx;
7607
7608 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02007609 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007610 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007611 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007612 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02007613
Peter Zijlstra272325c2015-04-15 11:41:58 +02007614 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02007615
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007616 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007617 }
7618
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007619got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007620 if (!pmu->start_txn) {
7621 if (pmu->pmu_enable) {
7622 /*
7623 * If we have pmu_enable/pmu_disable calls, install
7624 * transaction stubs that use that to try and batch
7625 * hardware accesses.
7626 */
7627 pmu->start_txn = perf_pmu_start_txn;
7628 pmu->commit_txn = perf_pmu_commit_txn;
7629 pmu->cancel_txn = perf_pmu_cancel_txn;
7630 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007631 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007632 pmu->commit_txn = perf_pmu_nop_int;
7633 pmu->cancel_txn = perf_pmu_nop_void;
7634 }
7635 }
7636
7637 if (!pmu->pmu_enable) {
7638 pmu->pmu_enable = perf_pmu_nop_void;
7639 pmu->pmu_disable = perf_pmu_nop_void;
7640 }
7641
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007642 if (!pmu->event_idx)
7643 pmu->event_idx = perf_event_idx_default;
7644
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007645 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007646 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007647 ret = 0;
7648unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007649 mutex_unlock(&pmus_lock);
7650
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007651 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007652
Peter Zijlstraabe43402010-11-17 23:17:37 +01007653free_dev:
7654 device_del(pmu->dev);
7655 put_device(pmu->dev);
7656
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007657free_idr:
7658 if (pmu->type >= PERF_TYPE_MAX)
7659 idr_remove(&pmu_idr, pmu->type);
7660
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007661free_pdc:
7662 free_percpu(pmu->pmu_disable_count);
7663 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007664}
Yan, Zhengc464c762014-03-18 16:56:41 +08007665EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007666
7667void perf_pmu_unregister(struct pmu *pmu)
7668{
7669 mutex_lock(&pmus_lock);
7670 list_del_rcu(&pmu->entry);
7671 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007672
7673 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007674 * We dereference the pmu list under both SRCU and regular RCU, so
7675 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007676 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007677 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007678 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007679
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007680 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007681 if (pmu->type >= PERF_TYPE_MAX)
7682 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007683 device_del(pmu->dev);
7684 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007685 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007686}
Yan, Zhengc464c762014-03-18 16:56:41 +08007687EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007688
Mark Rutlandcc34b982015-01-07 14:56:51 +00007689static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7690{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007691 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00007692 int ret;
7693
7694 if (!try_module_get(pmu->module))
7695 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007696
7697 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02007698 /*
7699 * This ctx->mutex can nest when we're called through
7700 * inheritance. See the perf_event_ctx_lock_nested() comment.
7701 */
7702 ctx = perf_event_ctx_lock_nested(event->group_leader,
7703 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007704 BUG_ON(!ctx);
7705 }
7706
Mark Rutlandcc34b982015-01-07 14:56:51 +00007707 event->pmu = pmu;
7708 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007709
7710 if (ctx)
7711 perf_event_ctx_unlock(event->group_leader, ctx);
7712
Mark Rutlandcc34b982015-01-07 14:56:51 +00007713 if (ret)
7714 module_put(pmu->module);
7715
7716 return ret;
7717}
7718
Geliang Tang18ab2cd2015-09-27 23:25:50 +08007719static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007720{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007721 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007722 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007723 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007724
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007725 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007726
7727 rcu_read_lock();
7728 pmu = idr_find(&pmu_idr, event->attr.type);
7729 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007730 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007731 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007732 if (ret)
7733 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007734 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007735 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007736
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007737 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007738 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007739 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007740 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007741
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007742 if (ret != -ENOENT) {
7743 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007744 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007745 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007746 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007747 pmu = ERR_PTR(-ENOENT);
7748unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007749 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007750
7751 return pmu;
7752}
7753
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007754static void account_event_cpu(struct perf_event *event, int cpu)
7755{
7756 if (event->parent)
7757 return;
7758
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007759 if (is_cgroup_event(event))
7760 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7761}
7762
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007763static void account_event(struct perf_event *event)
7764{
Peter Zijlstra25432ae2016-01-08 11:05:09 +01007765 bool inc = false;
7766
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007767 if (event->parent)
7768 return;
7769
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007770 if (event->attach_state & PERF_ATTACH_TASK)
Peter Zijlstra25432ae2016-01-08 11:05:09 +01007771 inc = true;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007772 if (event->attr.mmap || event->attr.mmap_data)
7773 atomic_inc(&nr_mmap_events);
7774 if (event->attr.comm)
7775 atomic_inc(&nr_comm_events);
7776 if (event->attr.task)
7777 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007778 if (event->attr.freq) {
7779 if (atomic_inc_return(&nr_freq_events) == 1)
7780 tick_nohz_full_kick_all();
7781 }
Adrian Hunter45ac1402015-07-21 12:44:02 +03007782 if (event->attr.context_switch) {
7783 atomic_inc(&nr_switch_events);
Peter Zijlstra25432ae2016-01-08 11:05:09 +01007784 inc = true;
Adrian Hunter45ac1402015-07-21 12:44:02 +03007785 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007786 if (has_branch_stack(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01007787 inc = true;
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007788 if (is_cgroup_event(event))
Peter Zijlstra25432ae2016-01-08 11:05:09 +01007789 inc = true;
7790
7791 if (inc)
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007792 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007793
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007794 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007795}
7796
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007797/*
7798 * Allocate and initialize a event structure
7799 */
7800static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007801perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007802 struct task_struct *task,
7803 struct perf_event *group_leader,
7804 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007805 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00007806 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007807{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007808 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007809 struct perf_event *event;
7810 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007811 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007812
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007813 if ((unsigned)cpu >= nr_cpu_ids) {
7814 if (!task || cpu != -1)
7815 return ERR_PTR(-EINVAL);
7816 }
7817
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007818 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007819 if (!event)
7820 return ERR_PTR(-ENOMEM);
7821
7822 /*
7823 * Single events are their own group leaders, with an
7824 * empty sibling list:
7825 */
7826 if (!group_leader)
7827 group_leader = event;
7828
7829 mutex_init(&event->child_mutex);
7830 INIT_LIST_HEAD(&event->child_list);
7831
7832 INIT_LIST_HEAD(&event->group_entry);
7833 INIT_LIST_HEAD(&event->event_entry);
7834 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007835 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007836 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007837 INIT_HLIST_NODE(&event->hlist_entry);
7838
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007839
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007840 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007841 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007842
7843 mutex_init(&event->mmap_mutex);
7844
Al Viroa6fa9412012-08-20 14:59:25 +01007845 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007846 event->cpu = cpu;
7847 event->attr = *attr;
7848 event->group_leader = group_leader;
7849 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007850 event->oncpu = -1;
7851
7852 event->parent = parent_event;
7853
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007854 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007855 event->id = atomic64_inc_return(&perf_event_id);
7856
7857 event->state = PERF_EVENT_STATE_INACTIVE;
7858
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007859 if (task) {
7860 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007861 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007862 * XXX pmu::event_init needs to know what task to account to
7863 * and we cannot use the ctx information because we need the
7864 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007865 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007866 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007867 }
7868
Peter Zijlstra34f43922015-02-20 14:05:38 +01007869 event->clock = &local_clock;
7870 if (parent_event)
7871 event->clock = parent_event->clock;
7872
Avi Kivity4dc0da82011-06-29 18:42:35 +03007873 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007874 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007875 context = parent_event->overflow_handler_context;
7876 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007877
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007878 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007879 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007880
Jiri Olsa0231bb52013-02-01 11:23:45 +01007881 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007882
7883 pmu = NULL;
7884
7885 hwc = &event->hw;
7886 hwc->sample_period = attr->sample_period;
7887 if (attr->freq && attr->sample_freq)
7888 hwc->sample_period = 1;
7889 hwc->last_period = hwc->sample_period;
7890
Peter Zijlstrae7850592010-05-21 14:43:08 +02007891 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007892
7893 /*
7894 * we currently do not support PERF_FORMAT_GROUP on inherited events
7895 */
7896 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007897 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007898
Yan, Zhenga46a2302014-11-04 21:56:06 -05007899 if (!has_branch_stack(event))
7900 event->attr.branch_sample_type = 0;
7901
Matt Fleming79dff512015-01-23 18:45:42 +00007902 if (cgroup_fd != -1) {
7903 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
7904 if (err)
7905 goto err_ns;
7906 }
7907
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007908 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007909 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007910 goto err_ns;
7911 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007912 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007913 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007914 }
7915
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007916 err = exclusive_event_init(event);
7917 if (err)
7918 goto err_pmu;
7919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007920 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007921 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7922 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007923 if (err)
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007924 goto err_per_task;
Stephane Eraniand010b332012-02-09 23:21:00 +01007925 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007926 }
7927
7928 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007929
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007930err_per_task:
7931 exclusive_event_destroy(event);
7932
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007933err_pmu:
7934 if (event->destroy)
7935 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007936 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007937err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00007938 if (is_cgroup_event(event))
7939 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007940 if (event->ns)
7941 put_pid_ns(event->ns);
7942 kfree(event);
7943
7944 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007945}
7946
7947static int perf_copy_attr(struct perf_event_attr __user *uattr,
7948 struct perf_event_attr *attr)
7949{
7950 u32 size;
7951 int ret;
7952
7953 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7954 return -EFAULT;
7955
7956 /*
7957 * zero the full structure, so that a short copy will be nice.
7958 */
7959 memset(attr, 0, sizeof(*attr));
7960
7961 ret = get_user(size, &uattr->size);
7962 if (ret)
7963 return ret;
7964
7965 if (size > PAGE_SIZE) /* silly large */
7966 goto err_size;
7967
7968 if (!size) /* abi compat */
7969 size = PERF_ATTR_SIZE_VER0;
7970
7971 if (size < PERF_ATTR_SIZE_VER0)
7972 goto err_size;
7973
7974 /*
7975 * If we're handed a bigger struct than we know of,
7976 * ensure all the unknown bits are 0 - i.e. new
7977 * user-space does not rely on any kernel feature
7978 * extensions we dont know about yet.
7979 */
7980 if (size > sizeof(*attr)) {
7981 unsigned char __user *addr;
7982 unsigned char __user *end;
7983 unsigned char val;
7984
7985 addr = (void __user *)uattr + sizeof(*attr);
7986 end = (void __user *)uattr + size;
7987
7988 for (; addr < end; addr++) {
7989 ret = get_user(val, addr);
7990 if (ret)
7991 return ret;
7992 if (val)
7993 goto err_size;
7994 }
7995 size = sizeof(*attr);
7996 }
7997
7998 ret = copy_from_user(attr, uattr, size);
7999 if (ret)
8000 return -EFAULT;
8001
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05308002 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008003 return -EINVAL;
8004
8005 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
8006 return -EINVAL;
8007
8008 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
8009 return -EINVAL;
8010
Stephane Eranianbce38cd2012-02-09 23:20:51 +01008011 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
8012 u64 mask = attr->branch_sample_type;
8013
8014 /* only using defined bits */
8015 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
8016 return -EINVAL;
8017
8018 /* at least one branch bit must be set */
8019 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
8020 return -EINVAL;
8021
Stephane Eranianbce38cd2012-02-09 23:20:51 +01008022 /* propagate priv level, when not set for branch */
8023 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
8024
8025 /* exclude_kernel checked on syscall entry */
8026 if (!attr->exclude_kernel)
8027 mask |= PERF_SAMPLE_BRANCH_KERNEL;
8028
8029 if (!attr->exclude_user)
8030 mask |= PERF_SAMPLE_BRANCH_USER;
8031
8032 if (!attr->exclude_hv)
8033 mask |= PERF_SAMPLE_BRANCH_HV;
8034 /*
8035 * adjust user setting (for HW filter setup)
8036 */
8037 attr->branch_sample_type = mask;
8038 }
Stephane Eraniane7122092013-06-06 11:02:04 +02008039 /* privileged levels capture (kernel, hv): check permissions */
8040 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02008041 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8042 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01008043 }
Jiri Olsa40189942012-08-07 15:20:37 +02008044
Jiri Olsac5ebced2012-08-07 15:20:40 +02008045 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02008046 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02008047 if (ret)
8048 return ret;
8049 }
8050
8051 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
8052 if (!arch_perf_have_user_stack_dump())
8053 return -ENOSYS;
8054
8055 /*
8056 * We have __u32 type for the size, but so far
8057 * we can only use __u16 as maximum due to the
8058 * __u16 sample size limit.
8059 */
8060 if (attr->sample_stack_user >= USHRT_MAX)
8061 ret = -EINVAL;
8062 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
8063 ret = -EINVAL;
8064 }
Jiri Olsa40189942012-08-07 15:20:37 +02008065
Stephane Eranian60e23642014-09-24 13:48:37 +02008066 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
8067 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008068out:
8069 return ret;
8070
8071err_size:
8072 put_user(sizeof(*attr), &uattr->size);
8073 ret = -E2BIG;
8074 goto out;
8075}
8076
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008077static int
8078perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008079{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008080 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008081 int ret = -EINVAL;
8082
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008083 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008084 goto set;
8085
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008086 /* don't allow circular references */
8087 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008088 goto out;
8089
Peter Zijlstra0f139302010-05-20 14:35:15 +02008090 /*
8091 * Don't allow cross-cpu buffers
8092 */
8093 if (output_event->cpu != event->cpu)
8094 goto out;
8095
8096 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02008097 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02008098 */
8099 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
8100 goto out;
8101
Peter Zijlstra34f43922015-02-20 14:05:38 +01008102 /*
8103 * Mixing clocks in the same buffer is trouble you don't need.
8104 */
8105 if (output_event->clock != event->clock)
8106 goto out;
8107
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02008108 /*
8109 * If both events generate aux data, they must be on the same PMU
8110 */
8111 if (has_aux(event) && has_aux(output_event) &&
8112 event->pmu != output_event->pmu)
8113 goto out;
8114
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008115set:
8116 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008117 /* Can't redirect output if we've got an active mmap() */
8118 if (atomic_read(&event->mmap_count))
8119 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008120
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008121 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02008122 /* get the rb we want to redirect to */
8123 rb = ring_buffer_get(output_event);
8124 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008125 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008126 }
8127
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008128 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02008129
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008130 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008131unlock:
8132 mutex_unlock(&event->mmap_mutex);
8133
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008134out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008135 return ret;
8136}
8137
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008138static void mutex_lock_double(struct mutex *a, struct mutex *b)
8139{
8140 if (b < a)
8141 swap(a, b);
8142
8143 mutex_lock(a);
8144 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
8145}
8146
Peter Zijlstra34f43922015-02-20 14:05:38 +01008147static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
8148{
8149 bool nmi_safe = false;
8150
8151 switch (clk_id) {
8152 case CLOCK_MONOTONIC:
8153 event->clock = &ktime_get_mono_fast_ns;
8154 nmi_safe = true;
8155 break;
8156
8157 case CLOCK_MONOTONIC_RAW:
8158 event->clock = &ktime_get_raw_fast_ns;
8159 nmi_safe = true;
8160 break;
8161
8162 case CLOCK_REALTIME:
8163 event->clock = &ktime_get_real_ns;
8164 break;
8165
8166 case CLOCK_BOOTTIME:
8167 event->clock = &ktime_get_boot_ns;
8168 break;
8169
8170 case CLOCK_TAI:
8171 event->clock = &ktime_get_tai_ns;
8172 break;
8173
8174 default:
8175 return -EINVAL;
8176 }
8177
8178 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
8179 return -EINVAL;
8180
8181 return 0;
8182}
8183
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008184/**
8185 * sys_perf_event_open - open a performance event, associate it to a task/cpu
8186 *
8187 * @attr_uptr: event_id type attributes for monitoring/sampling
8188 * @pid: target pid
8189 * @cpu: target cpu
8190 * @group_fd: group leader event fd
8191 */
8192SYSCALL_DEFINE5(perf_event_open,
8193 struct perf_event_attr __user *, attr_uptr,
8194 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
8195{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008196 struct perf_event *group_leader = NULL, *output_event = NULL;
8197 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008198 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008199 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008200 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04008201 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07008202 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008203 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04008204 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008205 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008206 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01008207 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00008208 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008209
8210 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02008211 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008212 return -EINVAL;
8213
8214 err = perf_copy_attr(attr_uptr, &attr);
8215 if (err)
8216 return err;
8217
8218 if (!attr.exclude_kernel) {
8219 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8220 return -EACCES;
8221 }
8222
8223 if (attr.freq) {
8224 if (attr.sample_freq > sysctl_perf_event_sample_rate)
8225 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02008226 } else {
8227 if (attr.sample_period & (1ULL << 63))
8228 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008229 }
8230
Stephane Eraniane5d13672011-02-14 11:20:01 +02008231 /*
8232 * In cgroup mode, the pid argument is used to pass the fd
8233 * opened to the cgroup directory in cgroupfs. The cpu argument
8234 * designates the cpu on which to monitor threads from that
8235 * cgroup.
8236 */
8237 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
8238 return -EINVAL;
8239
Yann Droneauda21b0b32014-01-05 21:36:33 +01008240 if (flags & PERF_FLAG_FD_CLOEXEC)
8241 f_flags |= O_CLOEXEC;
8242
8243 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008244 if (event_fd < 0)
8245 return event_fd;
8246
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008247 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04008248 err = perf_fget_light(group_fd, &group);
8249 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008250 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04008251 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008252 if (flags & PERF_FLAG_FD_OUTPUT)
8253 output_event = group_leader;
8254 if (flags & PERF_FLAG_FD_NO_GROUP)
8255 group_leader = NULL;
8256 }
8257
Stephane Eraniane5d13672011-02-14 11:20:01 +02008258 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008259 task = find_lively_task_by_vpid(pid);
8260 if (IS_ERR(task)) {
8261 err = PTR_ERR(task);
8262 goto err_group_fd;
8263 }
8264 }
8265
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008266 if (task && group_leader &&
8267 group_leader->attr.inherit != attr.inherit) {
8268 err = -EINVAL;
8269 goto err_task;
8270 }
8271
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008272 get_online_cpus();
8273
Matt Fleming79dff512015-01-23 18:45:42 +00008274 if (flags & PERF_FLAG_PID_CGROUP)
8275 cgroup_fd = pid;
8276
Avi Kivity4dc0da82011-06-29 18:42:35 +03008277 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008278 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008279 if (IS_ERR(event)) {
8280 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008281 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008282 }
8283
Vince Weaver53b25332014-05-16 17:12:12 -04008284 if (is_sampling_event(event)) {
8285 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
8286 err = -ENOTSUPP;
8287 goto err_alloc;
8288 }
8289 }
8290
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008291 account_event(event);
8292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008293 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008294 * Special case software events and allow them to be part of
8295 * any hardware group.
8296 */
8297 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008298
Peter Zijlstra34f43922015-02-20 14:05:38 +01008299 if (attr.use_clockid) {
8300 err = perf_event_set_clock(event, attr.clockid);
8301 if (err)
8302 goto err_alloc;
8303 }
8304
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008305 if (group_leader &&
8306 (is_software_event(event) != is_software_event(group_leader))) {
8307 if (is_software_event(event)) {
8308 /*
8309 * If event and group_leader are not both a software
8310 * event, and event is, then group leader is not.
8311 *
8312 * Allow the addition of software events to !software
8313 * groups, this is safe because software events never
8314 * fail to schedule.
8315 */
8316 pmu = group_leader->pmu;
8317 } else if (is_software_event(group_leader) &&
8318 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
8319 /*
8320 * In case the group is a pure software group, and we
8321 * try to add a hardware event, move the whole group to
8322 * the hardware context.
8323 */
8324 move_group = 1;
8325 }
8326 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008327
8328 /*
8329 * Get the target context (task or percpu):
8330 */
Yan, Zheng4af57ef282014-11-04 21:56:01 -05008331 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008332 if (IS_ERR(ctx)) {
8333 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008334 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008335 }
8336
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008337 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
8338 err = -EBUSY;
8339 goto err_context;
8340 }
8341
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02008342 if (task) {
8343 put_task_struct(task);
8344 task = NULL;
8345 }
8346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008347 /*
8348 * Look up the group leader (we will attach this event to it):
8349 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008350 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008351 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008352
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008353 /*
8354 * Do not allow a recursive hierarchy (this new sibling
8355 * becoming part of another group-sibling):
8356 */
8357 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008358 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01008359
8360 /* All events in a group should have the same clock */
8361 if (group_leader->clock != event->clock)
8362 goto err_context;
8363
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008364 /*
8365 * Do not allow to attach to a group in a different
8366 * task or CPU context:
8367 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008368 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01008369 /*
8370 * Make sure we're both on the same task, or both
8371 * per-cpu events.
8372 */
8373 if (group_leader->ctx->task != ctx->task)
8374 goto err_context;
8375
8376 /*
8377 * Make sure we're both events for the same CPU;
8378 * grouping events for different CPUs is broken; since
8379 * you can never concurrently schedule them anyhow.
8380 */
8381 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008382 goto err_context;
8383 } else {
8384 if (group_leader->ctx != ctx)
8385 goto err_context;
8386 }
8387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008388 /*
8389 * Only a group leader can be exclusive or pinned
8390 */
8391 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008392 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008393 }
8394
8395 if (output_event) {
8396 err = perf_event_set_output(event, output_event);
8397 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008398 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008399 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008400
Yann Droneauda21b0b32014-01-05 21:36:33 +01008401 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
8402 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008403 if (IS_ERR(event_file)) {
8404 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008405 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04008406 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008407
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008408 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008409 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008410 mutex_lock_double(&gctx->mutex, &ctx->mutex);
8411 } else {
8412 mutex_lock(&ctx->mutex);
8413 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008414
Peter Zijlstraa7239682015-09-09 19:06:33 +02008415 if (!perf_event_validate_size(event)) {
8416 err = -E2BIG;
8417 goto err_locked;
8418 }
8419
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008420 /*
8421 * Must be under the same ctx::mutex as perf_install_in_context(),
8422 * because we need to serialize with concurrent event creation.
8423 */
8424 if (!exclusive_event_installable(event, ctx)) {
8425 /* exclusive and group stuff are assumed mutually exclusive */
8426 WARN_ON_ONCE(move_group);
8427
8428 err = -EBUSY;
8429 goto err_locked;
8430 }
8431
8432 WARN_ON_ONCE(ctx->parent_ctx);
8433
8434 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008435 /*
8436 * See perf_event_ctx_lock() for comments on the details
8437 * of swizzling perf_event::ctx.
8438 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008439 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01008440
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008441 list_for_each_entry(sibling, &group_leader->sibling_list,
8442 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008443 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008444 put_ctx(gctx);
8445 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008446
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008447 /*
8448 * Wait for everybody to stop referencing the events through
8449 * the old lists, before installing it on new lists.
8450 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008451 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008452
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008453 /*
8454 * Install the group siblings before the group leader.
8455 *
8456 * Because a group leader will try and install the entire group
8457 * (through the sibling list, which is still in-tact), we can
8458 * end up with siblings installed in the wrong context.
8459 *
8460 * By installing siblings first we NO-OP because they're not
8461 * reachable through the group lists.
8462 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008463 list_for_each_entry(sibling, &group_leader->sibling_list,
8464 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008465 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01008466 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008467 get_ctx(ctx);
8468 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008469
8470 /*
8471 * Removing from the context ends up with disabled
8472 * event. What we want here is event in the initial
8473 * startup state, ready to be add into new context.
8474 */
8475 perf_event__state_init(group_leader);
8476 perf_install_in_context(ctx, group_leader, group_leader->cpu);
8477 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008478
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008479 /*
8480 * Now that all events are installed in @ctx, nothing
8481 * references @gctx anymore, so drop the last reference we have
8482 * on it.
8483 */
8484 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008485 }
8486
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02008487 /*
8488 * Precalculate sample_data sizes; do while holding ctx::mutex such
8489 * that we're serialized against further additions and before
8490 * perf_install_in_context() which is the point the event is active and
8491 * can use these values.
8492 */
8493 perf_event__header_size(event);
8494 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008495
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08008496 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008497 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008498
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008499 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008500 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008501 mutex_unlock(&ctx->mutex);
8502
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008503 put_online_cpus();
8504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008505 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01008506
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008507 mutex_lock(&current->perf_event_mutex);
8508 list_add_tail(&event->owner_entry, &current->perf_event_list);
8509 mutex_unlock(&current->perf_event_mutex);
8510
Peter Zijlstra8a495422010-05-27 15:47:49 +02008511 /*
8512 * Drop the reference on the group_event after placing the
8513 * new event on the sibling_list. This ensures destruction
8514 * of the group leader will find the pointer to itself in
8515 * perf_group_detach().
8516 */
Al Viro2903ff02012-08-28 12:52:22 -04008517 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008518 fd_install(event_fd, event_file);
8519 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008520
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008521err_locked:
8522 if (move_group)
8523 mutex_unlock(&gctx->mutex);
8524 mutex_unlock(&ctx->mutex);
8525/* err_file: */
8526 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008527err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008528 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04008529 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008530err_alloc:
8531 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008532err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008533 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008534err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02008535 if (task)
8536 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008537err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04008538 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008539err_fd:
8540 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008541 return err;
8542}
8543
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008544/**
8545 * perf_event_create_kernel_counter
8546 *
8547 * @attr: attributes of the counter to create
8548 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07008549 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008550 */
8551struct perf_event *
8552perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07008553 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008554 perf_overflow_handler_t overflow_handler,
8555 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008556{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008557 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008558 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008559 int err;
8560
8561 /*
8562 * Get the target context (task or percpu):
8563 */
8564
Avi Kivity4dc0da82011-06-29 18:42:35 +03008565 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008566 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008567 if (IS_ERR(event)) {
8568 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008569 goto err;
8570 }
8571
Jiri Olsaf8697762014-08-01 14:33:01 +02008572 /* Mark owner so we could distinguish it from user events. */
8573 event->owner = EVENT_OWNER_KERNEL;
8574
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008575 account_event(event);
8576
Yan, Zheng4af57ef282014-11-04 21:56:01 -05008577 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008578 if (IS_ERR(ctx)) {
8579 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008580 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008581 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008582
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008583 WARN_ON_ONCE(ctx->parent_ctx);
8584 mutex_lock(&ctx->mutex);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008585 if (!exclusive_event_installable(event, ctx)) {
8586 mutex_unlock(&ctx->mutex);
8587 perf_unpin_context(ctx);
8588 put_ctx(ctx);
8589 err = -EBUSY;
8590 goto err_free;
8591 }
8592
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008593 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008594 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008595 mutex_unlock(&ctx->mutex);
8596
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008597 return event;
8598
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008599err_free:
8600 free_event(event);
8601err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008602 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008603}
8604EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
8605
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008606void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
8607{
8608 struct perf_event_context *src_ctx;
8609 struct perf_event_context *dst_ctx;
8610 struct perf_event *event, *tmp;
8611 LIST_HEAD(events);
8612
8613 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
8614 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
8615
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008616 /*
8617 * See perf_event_ctx_lock() for comments on the details
8618 * of swizzling perf_event::ctx.
8619 */
8620 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008621 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
8622 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008623 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008624 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008625 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02008626 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008627 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008628
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008629 /*
8630 * Wait for the events to quiesce before re-instating them.
8631 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008632 synchronize_rcu();
8633
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008634 /*
8635 * Re-instate events in 2 passes.
8636 *
8637 * Skip over group leaders and only install siblings on this first
8638 * pass, siblings will not get enabled without a leader, however a
8639 * leader will enable its siblings, even if those are still on the old
8640 * context.
8641 */
8642 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8643 if (event->group_leader == event)
8644 continue;
8645
8646 list_del(&event->migrate_entry);
8647 if (event->state >= PERF_EVENT_STATE_OFF)
8648 event->state = PERF_EVENT_STATE_INACTIVE;
8649 account_event_cpu(event, dst_cpu);
8650 perf_install_in_context(dst_ctx, event, dst_cpu);
8651 get_ctx(dst_ctx);
8652 }
8653
8654 /*
8655 * Once all the siblings are setup properly, install the group leaders
8656 * to make it go.
8657 */
Peter Zijlstra98861672013-10-03 16:02:23 +02008658 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8659 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008660 if (event->state >= PERF_EVENT_STATE_OFF)
8661 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008662 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008663 perf_install_in_context(dst_ctx, event, dst_cpu);
8664 get_ctx(dst_ctx);
8665 }
8666 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008667 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008668}
8669EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
8670
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008671static void sync_child_event(struct perf_event *child_event,
8672 struct task_struct *child)
8673{
8674 struct perf_event *parent_event = child_event->parent;
8675 u64 child_val;
8676
8677 if (child_event->attr.inherit_stat)
8678 perf_event_read_event(child_event, child);
8679
Peter Zijlstrab5e58792010-05-21 14:43:12 +02008680 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008681
8682 /*
8683 * Add back the child's count to the parent's count:
8684 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02008685 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008686 atomic64_add(child_event->total_time_enabled,
8687 &parent_event->child_total_time_enabled);
8688 atomic64_add(child_event->total_time_running,
8689 &parent_event->child_total_time_running);
8690
8691 /*
8692 * Remove this event from the parent's list
8693 */
8694 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8695 mutex_lock(&parent_event->child_mutex);
8696 list_del_init(&child_event->child_list);
8697 mutex_unlock(&parent_event->child_mutex);
8698
8699 /*
Jiri Olsadc633982014-09-12 13:18:26 +02008700 * Make sure user/parent get notified, that we just
8701 * lost one event.
8702 */
8703 perf_event_wakeup(parent_event);
8704
8705 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008706 * Release the parent event, if this was the last
8707 * reference to it.
8708 */
Al Viroa6fa9412012-08-20 14:59:25 +01008709 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008710}
8711
8712static void
8713__perf_event_exit_task(struct perf_event *child_event,
8714 struct perf_event_context *child_ctx,
8715 struct task_struct *child)
8716{
Peter Zijlstra1903d502014-07-15 17:27:27 +02008717 /*
8718 * Do not destroy the 'original' grouping; because of the context
8719 * switch optimization the original events could've ended up in a
8720 * random child task.
8721 *
8722 * If we were to destroy the original group, all group related
8723 * operations would cease to function properly after this random
8724 * child dies.
8725 *
8726 * Do destroy all inherited groups, we don't care about those
8727 * and being thorough is better.
8728 */
Peter Zijlstra32132a32016-01-11 15:40:59 +01008729 raw_spin_lock_irq(&child_ctx->lock);
8730 WARN_ON_ONCE(child_ctx->is_active);
8731
8732 if (!!child_event->parent)
8733 perf_group_detach(child_event);
8734 list_del_event(child_event, child_ctx);
8735 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008736
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008737 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008738 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008739 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008740 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008741 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008742 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008743 sync_child_event(child_event, child);
8744 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04008745 } else {
8746 child_event->state = PERF_EVENT_STATE_EXIT;
8747 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008748 }
8749}
8750
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008751static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008752{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008753 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008754 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008755
Jiri Olsa4e93ad62015-11-04 16:00:05 +01008756 if (likely(!child->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008757 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008758
Peter Zijlstra32132a32016-01-11 15:40:59 +01008759 local_irq_disable();
8760 WARN_ON_ONCE(child != current);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008761 /*
8762 * We can't reschedule here because interrupts are disabled,
Peter Zijlstra32132a32016-01-11 15:40:59 +01008763 * and child must be current.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008764 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01008765 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008766
8767 /*
8768 * Take the context lock here so that if find_get_context is
8769 * reading child->perf_event_ctxp, we wait until it has
8770 * incremented the context's refcount before we do put_ctx below.
8771 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008772 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra3e349502016-01-08 10:01:18 +01008773 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008774 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008775
8776 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008777 * If this context is a clone; unclone it so it can't get
8778 * swapped to another process while we're removing all
8779 * the events from it.
8780 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008781 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01008782 update_context_time(child_ctx);
Peter Zijlstra32132a32016-01-11 15:40:59 +01008783 raw_spin_unlock_irq(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008784
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008785 if (clone_ctx)
8786 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008787
8788 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008789 * Report the task dead after unscheduling the events so that we
8790 * won't get any samples after PERF_RECORD_EXIT. We can however still
8791 * get a few PERF_RECORD_READ events.
8792 */
8793 perf_event_task(child, child_ctx, 0);
8794
8795 /*
8796 * We can recurse on the same lock type through:
8797 *
8798 * __perf_event_exit_task()
8799 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008800 * put_event()
8801 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008802 *
8803 * But since its the parent context it won't be the same instance.
8804 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008805 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008806
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008807 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008808 __perf_event_exit_task(child_event, child_ctx, child);
8809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008810 mutex_unlock(&child_ctx->mutex);
8811
8812 put_ctx(child_ctx);
8813}
8814
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008815/*
8816 * When a child task exits, feed back event values to parent events.
8817 */
8818void perf_event_exit_task(struct task_struct *child)
8819{
Peter Zijlstra88821352010-11-09 19:01:43 +01008820 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008821 int ctxn;
8822
Peter Zijlstra88821352010-11-09 19:01:43 +01008823 mutex_lock(&child->perf_event_mutex);
8824 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8825 owner_entry) {
8826 list_del_init(&event->owner_entry);
8827
8828 /*
8829 * Ensure the list deletion is visible before we clear
8830 * the owner, closes a race against perf_release() where
8831 * we need to serialize on the owner->perf_event_mutex.
8832 */
8833 smp_wmb();
8834 event->owner = NULL;
8835 }
8836 mutex_unlock(&child->perf_event_mutex);
8837
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008838 for_each_task_context_nr(ctxn)
8839 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +01008840
8841 /*
8842 * The perf_event_exit_task_context calls perf_event_task
8843 * with child's task_ctx, which generates EXIT events for
8844 * child contexts and sets child->perf_event_ctxp[] to NULL.
8845 * At this point we need to send EXIT events to cpu contexts.
8846 */
8847 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008848}
8849
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008850static void perf_free_event(struct perf_event *event,
8851 struct perf_event_context *ctx)
8852{
8853 struct perf_event *parent = event->parent;
8854
8855 if (WARN_ON_ONCE(!parent))
8856 return;
8857
8858 mutex_lock(&parent->child_mutex);
8859 list_del_init(&event->child_list);
8860 mutex_unlock(&parent->child_mutex);
8861
Al Viroa6fa9412012-08-20 14:59:25 +01008862 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008863
Peter Zijlstra652884f2015-01-23 11:20:10 +01008864 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008865 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008866 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008867 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008868 free_event(event);
8869}
8870
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008871/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008872 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008873 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008874 *
8875 * Not all locks are strictly required, but take them anyway to be nice and
8876 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008877 */
8878void perf_event_free_task(struct task_struct *task)
8879{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008880 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008881 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008882 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008883
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008884 for_each_task_context_nr(ctxn) {
8885 ctx = task->perf_event_ctxp[ctxn];
8886 if (!ctx)
8887 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008888
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008889 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008890again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008891 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8892 group_entry)
8893 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008894
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008895 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8896 group_entry)
8897 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008898
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008899 if (!list_empty(&ctx->pinned_groups) ||
8900 !list_empty(&ctx->flexible_groups))
8901 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008902
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008903 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008904
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02008905 put_ctx(ctx);
8906 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008907}
8908
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008909void perf_event_delayed_put(struct task_struct *task)
8910{
8911 int ctxn;
8912
8913 for_each_task_context_nr(ctxn)
8914 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8915}
8916
Kaixu Xiaffe86902015-08-06 07:02:32 +00008917struct perf_event *perf_event_get(unsigned int fd)
8918{
8919 int err;
8920 struct fd f;
8921 struct perf_event *event;
8922
8923 err = perf_fget_light(fd, &f);
8924 if (err)
8925 return ERR_PTR(err);
8926
8927 event = f.file->private_data;
8928 atomic_long_inc(&event->refcount);
8929 fdput(f);
8930
8931 return event;
8932}
8933
8934const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
8935{
8936 if (!event)
8937 return ERR_PTR(-EINVAL);
8938
8939 return &event->attr;
8940}
8941
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008942/*
8943 * inherit a event from parent task to child task:
8944 */
8945static struct perf_event *
8946inherit_event(struct perf_event *parent_event,
8947 struct task_struct *parent,
8948 struct perf_event_context *parent_ctx,
8949 struct task_struct *child,
8950 struct perf_event *group_leader,
8951 struct perf_event_context *child_ctx)
8952{
Jiri Olsa1929def2014-09-12 13:18:27 +02008953 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008954 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008955 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008956
8957 /*
8958 * Instead of creating recursive hierarchies of events,
8959 * we link inherited events back to the original parent,
8960 * which has a filp for sure, which we use as the reference
8961 * count:
8962 */
8963 if (parent_event->parent)
8964 parent_event = parent_event->parent;
8965
8966 child_event = perf_event_alloc(&parent_event->attr,
8967 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008968 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008969 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +00008970 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008971 if (IS_ERR(child_event))
8972 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008973
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008974 if (is_orphaned_event(parent_event) ||
8975 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008976 free_event(child_event);
8977 return NULL;
8978 }
8979
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008980 get_ctx(child_ctx);
8981
8982 /*
8983 * Make the child state follow the state of the parent event,
8984 * not its attr.disabled bit. We hold the parent's mutex,
8985 * so we won't race with perf_event_{en, dis}able_family.
8986 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008987 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008988 child_event->state = PERF_EVENT_STATE_INACTIVE;
8989 else
8990 child_event->state = PERF_EVENT_STATE_OFF;
8991
8992 if (parent_event->attr.freq) {
8993 u64 sample_period = parent_event->hw.sample_period;
8994 struct hw_perf_event *hwc = &child_event->hw;
8995
8996 hwc->sample_period = sample_period;
8997 hwc->last_period = sample_period;
8998
8999 local64_set(&hwc->period_left, sample_period);
9000 }
9001
9002 child_event->ctx = child_ctx;
9003 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03009004 child_event->overflow_handler_context
9005 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009006
9007 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02009008 * Precalculate sample_data sizes
9009 */
9010 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02009011 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02009012
9013 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009014 * Link it up in the child's context:
9015 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02009016 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009017 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02009018 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009019
9020 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02009021 * Link this into the parent event's child list
9022 */
9023 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
9024 mutex_lock(&parent_event->child_mutex);
9025 list_add_tail(&child_event->child_list, &parent_event->child_list);
9026 mutex_unlock(&parent_event->child_mutex);
9027
9028 return child_event;
9029}
9030
9031static int inherit_group(struct perf_event *parent_event,
9032 struct task_struct *parent,
9033 struct perf_event_context *parent_ctx,
9034 struct task_struct *child,
9035 struct perf_event_context *child_ctx)
9036{
9037 struct perf_event *leader;
9038 struct perf_event *sub;
9039 struct perf_event *child_ctr;
9040
9041 leader = inherit_event(parent_event, parent, parent_ctx,
9042 child, NULL, child_ctx);
9043 if (IS_ERR(leader))
9044 return PTR_ERR(leader);
9045 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
9046 child_ctr = inherit_event(sub, parent, parent_ctx,
9047 child, leader, child_ctx);
9048 if (IS_ERR(child_ctr))
9049 return PTR_ERR(child_ctr);
9050 }
9051 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009052}
9053
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009054static int
9055inherit_task_group(struct perf_event *event, struct task_struct *parent,
9056 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009057 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009058 int *inherited_all)
9059{
9060 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009061 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009062
9063 if (!event->attr.inherit) {
9064 *inherited_all = 0;
9065 return 0;
9066 }
9067
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009068 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009069 if (!child_ctx) {
9070 /*
9071 * This is executed from the parent task context, so
9072 * inherit events that have been marked for cloning.
9073 * First allocate and initialize a context for the
9074 * child.
9075 */
9076
Jiri Olsa734df5a2013-07-09 17:44:10 +02009077 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009078 if (!child_ctx)
9079 return -ENOMEM;
9080
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009081 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009082 }
9083
9084 ret = inherit_group(event, parent, parent_ctx,
9085 child, child_ctx);
9086
9087 if (ret)
9088 *inherited_all = 0;
9089
9090 return ret;
9091}
9092
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009093/*
9094 * Initialize the perf_event context in task_struct
9095 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02009096static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009097{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009098 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009099 struct perf_event_context *cloned_ctx;
9100 struct perf_event *event;
9101 struct task_struct *parent = current;
9102 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009103 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009104 int ret = 0;
9105
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009106 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009107 return 0;
9108
9109 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009110 * If the parent's context is a clone, pin it so it won't get
9111 * swapped under us.
9112 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009113 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02009114 if (!parent_ctx)
9115 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009116
9117 /*
9118 * No need to check if parent_ctx != NULL here; since we saw
9119 * it non-NULL earlier, the only reason for it to become NULL
9120 * is if we exit, and since we're currently in the middle of
9121 * a fork we can't be exiting at the same time.
9122 */
9123
9124 /*
9125 * Lock the parent list. No need to lock the child - not PID
9126 * hashed yet and not running, so nobody can access it.
9127 */
9128 mutex_lock(&parent_ctx->mutex);
9129
9130 /*
9131 * We dont have to disable NMIs - we are only looking at
9132 * the list, not manipulating it:
9133 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009134 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009135 ret = inherit_task_group(event, parent, parent_ctx,
9136 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009137 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009138 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009139 }
9140
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009141 /*
9142 * We can't hold ctx->lock when iterating the ->flexible_group list due
9143 * to allocations, but we need to prevent rotation because
9144 * rotate_ctx() will change the list from interrupt context.
9145 */
9146 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9147 parent_ctx->rotate_disable = 1;
9148 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9149
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009150 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009151 ret = inherit_task_group(event, parent, parent_ctx,
9152 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009153 if (ret)
9154 break;
9155 }
9156
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009157 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9158 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009159
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009160 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009161
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01009162 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009163 /*
9164 * Mark the child context as a clone of the parent
9165 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009166 *
9167 * Note that if the parent is a clone, the holding of
9168 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009169 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009170 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009171 if (cloned_ctx) {
9172 child_ctx->parent_ctx = cloned_ctx;
9173 child_ctx->parent_gen = parent_ctx->parent_gen;
9174 } else {
9175 child_ctx->parent_ctx = parent_ctx;
9176 child_ctx->parent_gen = parent_ctx->generation;
9177 }
9178 get_ctx(child_ctx->parent_ctx);
9179 }
9180
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009181 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009182 mutex_unlock(&parent_ctx->mutex);
9183
9184 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009185 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009186
9187 return ret;
9188}
9189
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009190/*
9191 * Initialize the perf_event context in task_struct
9192 */
9193int perf_event_init_task(struct task_struct *child)
9194{
9195 int ctxn, ret;
9196
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01009197 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
9198 mutex_init(&child->perf_event_mutex);
9199 INIT_LIST_HEAD(&child->perf_event_list);
9200
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009201 for_each_task_context_nr(ctxn) {
9202 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009203 if (ret) {
9204 perf_event_free_task(child);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009205 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009206 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02009207 }
9208
9209 return 0;
9210}
9211
Paul Mackerras220b1402010-03-10 20:45:52 +11009212static void __init perf_event_init_all_cpus(void)
9213{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009214 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11009215 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11009216
9217 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009218 swhash = &per_cpu(swevent_htable, cpu);
9219 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00009220 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11009221 }
9222}
9223
Paul Gortmaker0db06282013-06-19 14:53:51 -04009224static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009225{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009226 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009227
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009228 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009229 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009230 struct swevent_hlist *hlist;
9231
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009232 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
9233 WARN_ON(!hlist);
9234 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009235 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009236 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009237}
9238
Dave Young2965faa2015-09-09 15:38:55 -07009239#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009240static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009241{
Mark Rutland226424e2014-11-05 16:11:44 +00009242 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009243 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009244
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009245 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02009246 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
9247 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009248 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009249}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009250
9251static void perf_event_exit_cpu_context(int cpu)
9252{
9253 struct perf_event_context *ctx;
9254 struct pmu *pmu;
9255 int idx;
9256
9257 idx = srcu_read_lock(&pmus_srcu);
9258 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02009259 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009260
9261 mutex_lock(&ctx->mutex);
9262 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
9263 mutex_unlock(&ctx->mutex);
9264 }
9265 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009266}
9267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009268static void perf_event_exit_cpu(int cpu)
9269{
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009270 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009271}
9272#else
9273static inline void perf_event_exit_cpu(int cpu) { }
9274#endif
9275
Peter Zijlstrac2774432010-12-08 15:29:02 +01009276static int
9277perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
9278{
9279 int cpu;
9280
9281 for_each_online_cpu(cpu)
9282 perf_event_exit_cpu(cpu);
9283
9284 return NOTIFY_OK;
9285}
9286
9287/*
9288 * Run the perf reboot notifier at the very last possible moment so that
9289 * the generic watchdog code runs as long as possible.
9290 */
9291static struct notifier_block perf_reboot_notifier = {
9292 .notifier_call = perf_reboot,
9293 .priority = INT_MIN,
9294};
9295
Paul Gortmaker0db06282013-06-19 14:53:51 -04009296static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009297perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
9298{
9299 unsigned int cpu = (long)hcpu;
9300
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009301 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009302
9303 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02009304 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009305 perf_event_init_cpu(cpu);
9306 break;
9307
Peter Zijlstra5e116372010-06-11 13:35:08 +02009308 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009309 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009310 perf_event_exit_cpu(cpu);
9311 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009312 default:
9313 break;
9314 }
9315
9316 return NOTIFY_OK;
9317}
9318
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009319void __init perf_event_init(void)
9320{
Jason Wessel3c502e72010-11-04 17:33:01 -05009321 int ret;
9322
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009323 idr_init(&pmu_idr);
9324
Paul Mackerras220b1402010-03-10 20:45:52 +11009325 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009326 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009327 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
9328 perf_pmu_register(&perf_cpu_clock, NULL, -1);
9329 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009330 perf_tp_register();
9331 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01009332 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05009333
9334 ret = init_hw_breakpoint();
9335 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02009336
9337 /* do not patch jump label more than once per second */
9338 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01009339
9340 /*
9341 * Build time assertion that we keep the data_head at the intended
9342 * location. IOW, validation we got the __reserved[] size right.
9343 */
9344 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
9345 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009346}
Peter Zijlstraabe43402010-11-17 23:17:37 +01009347
Cody P Schaferfd979c02015-01-30 13:45:57 -08009348ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
9349 char *page)
9350{
9351 struct perf_pmu_events_attr *pmu_attr =
9352 container_of(attr, struct perf_pmu_events_attr, attr);
9353
9354 if (pmu_attr->event_str)
9355 return sprintf(page, "%s\n", pmu_attr->event_str);
9356
9357 return 0;
9358}
9359
Peter Zijlstraabe43402010-11-17 23:17:37 +01009360static int __init perf_event_sysfs_init(void)
9361{
9362 struct pmu *pmu;
9363 int ret;
9364
9365 mutex_lock(&pmus_lock);
9366
9367 ret = bus_register(&pmu_bus);
9368 if (ret)
9369 goto unlock;
9370
9371 list_for_each_entry(pmu, &pmus, entry) {
9372 if (!pmu->name || pmu->type < 0)
9373 continue;
9374
9375 ret = pmu_dev_alloc(pmu);
9376 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
9377 }
9378 pmu_bus_running = 1;
9379 ret = 0;
9380
9381unlock:
9382 mutex_unlock(&pmus_lock);
9383
9384 return ret;
9385}
9386device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009387
9388#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04009389static struct cgroup_subsys_state *
9390perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009391{
9392 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02009393
Li Zefan1b15d052011-03-03 14:26:06 +08009394 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009395 if (!jc)
9396 return ERR_PTR(-ENOMEM);
9397
Stephane Eraniane5d13672011-02-14 11:20:01 +02009398 jc->info = alloc_percpu(struct perf_cgroup_info);
9399 if (!jc->info) {
9400 kfree(jc);
9401 return ERR_PTR(-ENOMEM);
9402 }
9403
Stephane Eraniane5d13672011-02-14 11:20:01 +02009404 return &jc->css;
9405}
9406
Tejun Heoeb954192013-08-08 20:11:23 -04009407static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009408{
Tejun Heoeb954192013-08-08 20:11:23 -04009409 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
9410
Stephane Eraniane5d13672011-02-14 11:20:01 +02009411 free_percpu(jc->info);
9412 kfree(jc);
9413}
9414
9415static int __perf_cgroup_move(void *info)
9416{
9417 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +01009418 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +02009419 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +01009420 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +02009421 return 0;
9422}
9423
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009424static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009425{
Tejun Heobb9d97b2011-12-12 18:12:21 -08009426 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009427 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -08009428
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009429 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08009430 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009431}
9432
Tejun Heo073219e2014-02-08 10:36:58 -05009433struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08009434 .css_alloc = perf_cgroup_css_alloc,
9435 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -08009436 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02009437};
9438#endif /* CONFIG_CGROUP_PERF */